:root {
    /* Contain */
    --desktop-lg: 1176px;
    --desktop-sm: 1100px;
    --tablet-lg: 920px;
    --tablet-sm: 100%;
    --mobile-lg: 100%;
    --mobile-sm: 100%;
    --side-padding: 16px;

    /* Section Paddings */
    --sec-pad-bg: 600px;
    --sec-pad-xl: 160px;
    --sec-pad-lg: 100px;
    --sec-pad-md: 80px;
    --sec-pad-sm: 48px;

    /* Font Size */
    --size-1: 48px;
    --size-1A: 44px;
    --size-2: 40px;
    --size-2A: 32px;
    --size-2B: 24px;
    --size-3: 20px;
    --size-4: 18px;
    --size-5: 16px;
    --size-6: 14px;
    --size-p: 18px;

    /* Font weight */
    --w-bold: 700;
    --w-semi: 600;
    --w-med: 500;
    --w-reg: 400;

    /* Line Height */
    --line-high: 1.44;
    --line-more: 1.5;
    --line-less: 1.3;

    /* Color */
    --color-white: #ffffff;
    --color-click: #ed0467;
    --color-click-hover: #be0352;
    --color-pink-light: #ffebf3;
    --color-text: #626262;
    --color-gray: #dbdbdb;
    --color-button: #edf0f8;
    --color-button-hover: #fcd4e4;
    --color-black: #0e0a0b;
    --color-list: #171717;
    --color-green: #9eff54;
    --color-red: #ff0000;
    --grad-pink-trans: rgba(237, 4, 103, 0);
    --grad-pink: rgba(237, 4, 103, 100%);
    --grad-l-pink: rgba(237, 4, 103, 9%);

    --font-lemon: "Lemon Jelly Personal Use", serif;
    --font-avenir: "Avenir LT Std", serif;
    --font-libre: "Libre Caslon Text", serif;
}

/* General Parameters */
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Libre Caslon Text", serif;
}
* {
    margin: 0;
    padding: 0;
}
img {
    width: 100%;
    height: auto;
}
h1 {
    font-family: "Libre Caslon Text", serif;
    font-size: var(--size-1);
    line-height: var(--line-high);
    font-weight: var(--w-bold);
}
h2 {
    font-family: "Libre Caslon Text", serif;
    font-size: var(--size-2);
    line-height: var(--line-high);
    font-weight: var(--w-bold);
}
h3 {
    font-family: "Avenir LT Std", serif;
    font-size: var(--size-3);
    line-height: var(--line-high);
}
h4 {
    font-family: "Avenir LT Std", serif;
    font-size: var(--size-4);
    line-height: var(--line-less);
}
h5 {
    font-family: "Avenir LT Std", serif;
    font-size: var(--size-5);
    color: var(--color-white);
    font-weight: var(--w-med);
}
h6 {
    font-family: "Avenir LT Std", serif;
    font-size: var(--size-6);
    font-weight: var(--w-reg);
}
p {
    font-family: "Avenir LT Std", serif;
    font-size: var(--size-p);
    line-height: var(--line-high);
    font-weight: var(--w-med);
}
a {
    display: inline-block;
    text-decoration: none;
}

/* Pre-defined Classes */
.contain {
    display: block;
    max-width: calc(var(--desktop-lg) + (var(--side-padding) * 2));
    padding: 0 var(--side-padding);
    margin: 0 auto;
}
.contain-full {
    box-sizing: border-box;
    display: block;
    padding: 0 var(--side-padding);
    width: 100%;
}
.row {
    display: flex;
    flex-direction: row;
}
.row-not {
    display: flex;
    flex-direction: row;
}
.sec-padding {
    padding: 98px 0;
}
.active {
    display: block;
}
.p-event {
    pointer-events: none;
}
.header-space {
    min-height: 124px;
    width: 100%;
    /* background-color: var(--color-black); */
}

/* Buttons */
.click,
.click:link,
.click:visited {
    font-family: "Avenir LT Std", serif;
    font-size: var(--size-4);
    display: inline-block;
    /* transition: all 0.3s; */
    color: var(--color-white);
    background-color: var(--color-click);
    padding: 10px 24px;
    border-radius: 24px;
}
.click:hover,
.click:active {
    background-color: var(--color-click-hover);
}
.click-2,
.click-2:link,
.click-2:visited {
    font-family: "Avenir LT Std", serif;
    font-size: var(--size-4);
    display: inline-block;
    /* transition: all 0.3s; */
    color: var(--color-click);
    border-bottom: 1px solid transparent;
}
.click-2:hover,
.click-2:active {
    color: var(--color-white);
    border-bottom: 1px solid var(--color-white);
}
.click-3,
.click-3:link,
.click-3:visited {
    font-family: "Avenir LT Std", serif;
    font-size: var(--size-4);
    display: inline-block;
    /* transition: all 0.3s; */
    color: var(--color-click);
    border-bottom: 1px solid transparent;
}
.click-3:hover,
.click-3:active {
    color: var(--color-black);
    border-bottom: 1px solid var(--color-black);
}
.click-4,
.click-4:link,
.click-4:visited {
    font-family: "Avenir LT Std", serif;
    font-size: var(--size-4);
    display: inline-block;
    /* transition: all 0.3s; */
    color: var(--color-click);
    background-color: var(--color-white);
    padding: 10px 24px;
    border-radius: 24px;
}
.click-4:hover,
.click-4:active {
    transform: scale(1.1);
}
.click-5,
.click-5:link,
.click-5:visited {
    font-family: "Avenir LT Std", serif;
    font-size: var(--size-4);
    display: inline-block;
    /* transition: all 0.3s; */
    color: var(--color-click);
    background-color: var(--color-white);
    padding: 10px 24px;
    border-radius: 24px;
}
.click-5:hover,
.click-5:active {
    background-color: var(--color-click);
    color: var(--color-white);
}
.click-6,
.click-6:link,
.click-6:visited {
    font-family: "Avenir LT Std", serif;
    font-size: var(--size-4);
    display: inline-block;
    /* transition: all 0.3s; */
    color: var(--color-click);
    background-color: transparent;
    border: 1px solid var(--color-click);
    padding: 10px 24px;
    border-radius: 24px;
}
.click-6:hover,
.click-6:active {
    background-color: var(--color-click);
    color: var(--color-white);
}
.click-7,
.click-7:link,
.click-7:visited {
    font-family: "Avenir LT Std", serif;
    font-size: var(--size-4);
    display: inline-block;
    /* transition: all 0.3s; */
    color: var(--color-white);
    background-color: transparent;
    border: 1px solid var(--color-white);
    padding: 10px 24px;
    border-radius: 24px;
}
.click-7:hover,
.click-7:active {
    background-color: var(--color-white);
    color: var(--color-click);
}

/* Desktop */
#advertisement {
    text-align: center;
    padding: 10px 20px;
    background-color: #ed0467;
    color: #fff;
}
.header_shift {
    top: 54px !important;
}
#header {
    position: absolute;
    left: 0;
    top: 20px; /* 20px before */
    width: 100%;
    z-index: 3;
}
#header .row-not {
    justify-content: space-between;
    align-items: center;
}
.header-logo img {
    height: 80px;
}
.header-nav .menu {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 32px;
}
.header-nav .menu a {
    font-family: "Avenir LT Std", serif;
    color: var(--color-white);
    /* transition: all 0.3s; */
}
.header-nav .menu a:hover,
.header-nav .menu a:active {
    color: var(--color-click);
}
.header-clicks {
    display: flex;
    flex-direction: row;
    gap: 16px;
}
.header-button {
    display: none;
    padding: 2px;
    background-color: transparent;
    border: none;
    outline: none;
    position: relative;
    height: 38px;
    width: 38px;
}
.header-button::before,
.header-button::after,
.header-button span {
    background-color: var(--color-white);
    border-radius: 10px;
    display: block;
    width: 34px;
    height: 4px;
    /* transition: all 0.3s; */
}
.header-button span {
    transform: translateY(2px);
}
.header-button::before {
    content: "";
    position: absolute;
    transform: translateY(-8px);
}
.header-button::after {
    content: "";
    position: absolute;
    transform: translateY(8px);
}
.header-button.open span {
    display: none;
}
.header-button.open::before {
    transform: rotate(-45deg) translateY(0);
}
.header-button.open::after {
    transform: rotate(45deg) translateY(0);
}
.drop-menu {
    box-sizing: border-box;
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    background-color: var(--color-black);
    padding: 44px 0;
    display: none;
    z-index: 15;
}
.drop-menu .header-button {
    margin-left: auto;
}
.drop-menu .menu {
    margin-top: 30px;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.drop-menu .menu a:link,
.drop-menu .menu a:visited {
    font-family: "Avenir LT Std", serif;
    font-size: var(--size-2);
    color: var(--color-white);
    /* transition: all 0.3s; */
}
.drop-menu .menu a:hover,
.drop-menu .menu a:active {
    color: var(--color-click);
}
/* Special Header */
.woocommerce-thankyou-order-received .header-nav .menu a,
.woocommerce-checkout .header-nav .menu a,
.woocommerce-cart .header-nav .menu a,
.single-product .header-nav .menu a {
    color: var(--color-black);
}
.woocommerce-thankyou-order-received .header-nav .menu a:hover,
.woocommerce-checkout .header-nav .menu a:hover,
.woocommerce-cart .header-nav .menu a:hover,
.single-product .header-nav .menu a:hover {
    color: var(--color-click);
}
.woocommerce-thankyou-order-received .header-clicks a:first-child,
.woocommerce-checkout .header-clicks a:first-child,
.woocommerce-cart .header-clicks a:first-child,
.single-product .header-clicks a:first-child {
    border: 1px solid var(--color-black);
    color: var(--color-black);
}
.woocommerce-thankyou-order-received .header-clicks a:last-child,
.woocommerce-checkout .header-clicks a:last-child,
.woocommerce-cart .header-clicks a:last-child,
.single-product .header-clicks a:last-child {
    border: 1px solid var(--color-black);
    background-color: var(--color-black);
    color: var(--color-white);
}
.woocommerce-thankyou-order-received .header-clicks a:first-child:hover,
.woocommerce-thankyou-order-received .header-clicks a:last-child:hover,
.woocommerce-checkout .header-clicks a:first-child:hover,
.woocommerce-checkout .header-clicks a:last-child:hover,
.woocommerce-cart .header-clicks a:first-child:hover,
.woocommerce-cart .header-clicks a:last-child:hover,
.single-product .header-clicks a:first-child:hover,
.single-product .header-clicks a:last-child:hover {
    border: 1px solid var(--color-click);
    background-color: var(--color-click);
    color: var(--color-white);
}
.woocommerce-thankyou-order-received .header-button::before,
.woocommerce-thankyou-order-received .header-button::after,
.woocommerce-thankyou-order-received .header-button span,
.woocommerce-checkout .header-button::before,
.woocommerce-checkout .header-button::after,
.woocommerce-checkout .header-button span,
.woocommerce-cart .header-button::before,
.woocommerce-cart .header-button::after,
.woocommerce-cart .header-button span,
.single-product .header-button::before,
.single-product .header-button::after,
.single-product .header-button span {
    background-color: var(--color-black);
}
.header-button.open::before,
.header-button.open::after,
.header-button.open span {
    background-color: var(--color-white);
}

#hero {
    background-image: url("images/hero-bg.png");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: calc(var(--sec-pad-xl) + 40px) 0 calc(50px + var(--sec-pad-lg) * 2) 0;
    position: relative;
}
#hero::after {
    content: "";
    background-image: url(images/header-divider.svg);
    background-size: cover;
    background-position: top center;
    position: absolute;
    bottom: -1px;
    width: 100%;
    height: 345px;
    z-index: 5;
}
.hero-text {
    width: 100%;
    max-width: 785px;
}
.hero-text h1 {
    color: var(--color-white);
    margin: 0;
}
.hero-text p {
    margin-bottom: 42px;
    color: var(--color-white);
    max-width: 75%;
}
.hero-clicks {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 36px;
    margin-bottom: 56px;
}
.hero-stars {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.hero-stars img {
    width: 18px;
    height: auto;
}
.hero-stars span {
    font-family: "Avenir LT Std", serif;
    color: var(--color-white);
    font-size: var(--size-5);
    margin-left: 12px;
}
.hero-p {
    font-family: "Avenir LT Std", serif;
    color: var(--color-white);
    font-size: var(--size-5);
    margin-top: 7px;
}
.hero-img img {
    position: absolute;
    right: 0;
    bottom: 8%;
    width: 800px;
}
#banner {
    background-image: url(images/banner-bg.svg);
    background-size: cover;
    background-position: center right;
    padding: calc(var(--sec-pad-xl) + 40px) 0 calc(50px + var(--sec-pad-md)) 0;
    position: relative;
}
#banner::after {
    content: "";
    background-image: url(images/wave-2.svg);
    background-size: cover;
    background-position: top center;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 142px;
    z-index: 5;
}
#banner .row {
    justify-content: space-between;
}
.banner-text {
    width: 100%;
    max-width: 650px;
}
.banner-name {
    display: block;
    font-family: var(--font-lemon);
    color: var(--color-white);
    font-size: var(--size-2);
    margin-bottom: 24px;
    width: fit-content;
}
.banner-text h1 {
    color: var(--color-click);
    margin-bottom: 48px;
}
.banner-text p {
    margin-bottom: 42px;
    color: var(--color-white);
    max-width: 89%;
}
.banner-img img {
    max-width: 560px;
    height: auto;
}
#single-badges {
    padding-bottom: var(--sec-pad-lg);
}
#badges {
    padding: 1px 0 var(--sec-pad-sm) 0;
}
#single-badges .row-not,
#badges .row-not {
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    row-gap: 40px;
}
.badge-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.badge-card img {
    width: 70px;
    height: auto;
    margin-bottom: 16px;
}
.badge-card h5 {
    color: var(--color-click);
    font-weight: 700;
}

#wand {
    padding: var(--sec-pad-lg) 0 var(--sec-pad-md) 0;
    position: relative;
}
#wand .flower-img {
    position: absolute;
    top: -195px;
    right: 0;
    width: 180px;
    z-index: 2;
}
#wand .row {
    align-items: center;
    justify-content: center;
    column-gap: 180px;
}
.wand-text {
    width: 581px;
    transform: translateX(90px);
}
.wand-text h2 {
    margin-bottom: 24px;
}
.wand-text p {
    color: var(--color-text);
    margin-bottom: 36px;
}
.wand-clicks {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 36px;
}

#control {
    padding: var(--sec-pad-lg) 0 var(--sec-pad-lg) 0;
    position: relative;
}
#control .flower-2 {
    position: absolute;
    left: 0;
    top: -10%;
    width: 370px;
    z-index: -1;
}
#control h2 {
    text-align: center;
    max-width: 60%;
    margin: 0 auto;
    margin-bottom: 30px;
}
#control .row {
    flex-direction: column;
    justify-content: center;
}
#control h4 {
    max-width: 140px;
    margin: 0 auto;
}
.control-details {
    text-align: center;
    max-width: 671px;
    margin: 0 auto;
    color: var(--color-text);
    margin-bottom: 40px;
}
.control-badges {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    row-gap: 40px;
}
.control-card {
    text-align: center;
    color: var(--color-black);
}
.control-card img {
    width: 107px;
    height: auto;
    margin-bottom: 16px;
}
#health-new {
    position: relative;
}
#health {
    padding-top: var(--sec-pad-sm);
    position: relative;
}
#health-new::before {
    content: "";
    background-image: url(images/bottom-wave-pink.svg);
    background-size: cover;
    background-position: bottom center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 132px;
    z-index: 5;
}
#health::before {
    content: "";
    background-image: url(images/lady-divider.svg);
    background-size: cover;
    background-position: top center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 132px;
    z-index: 5;
}
.health-new-bg {
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: calc(var(--sec-pad-xl) + var(--sec-pad-lg)) 0
        calc(var(--sec-pad-xl) + var(--sec-pad-lg)) 0;
}
.health-bg {
    position: relative;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: calc(var(--sec-pad-xl) + var(--sec-pad-lg)) 0
        calc(var(--sec-pad-xl) + var(--sec-pad-lg)) 0;
}
.health-new-bg::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #ed046766;
    background-blend-mode: multiply;
}
.health-bg:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(237, 4, 103, 0) 0%, rgba(237, 4, 103, 0.37) 100%);
    z-index: 1;
}
.health-new-bg::after {
    content: "";
    background-image: url(images/wave-2.svg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 130px;
    z-index: 2;
}
.health-bg:after {
    content: "";
    background-image: url(images/wave-bg.svg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 425px;
    z-index: 2;
}
#health-new .row-not,
#health .row-not {
    position: relative;
    z-index: 3;
    flex-direction: column;
    align-items: center;
}
.health-title {
    display: block;
    font-family: var(--font-libre);
    font-size: var(--size-2A);
    color: var(--color-white);
    font-weight: var(--w-bold);
    text-align: center;
    margin-bottom: 28px;
}
#health-new h2 {
    color: var(--color-white);
    font-family: var(--font-avenir);
    font-size: var(--size-2A);
    font-weight: var(--w-reg);
    text-align: center;
    margin-bottom: 30px;
    max-width: 90%;
}
#health h2 {
    color: var(--color-white);
    font-size: var(--size-2A);
    text-align: center;
    margin-bottom: 30px;
    max-width: 80%;
}
#health-new a,
#health a {
    text-align: center;
    margin-bottom: 24px;
}
.health-trade {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
}
.health-trade img {
    width: 32px;
    height: auto;
}
.health-trade h6 {
    color: var(--color-white);
}

#choose {
    background-color: var(--color-black);
}
#choose .row {
    align-items: center;
    justify-content: space-between;
}
#choose h2 {
    max-width: 400px;
    margin-bottom: 40px;
    color: var(--color-white);
}
.choose-grid {
    display: grid;
    grid-template-columns: auto auto;
    gap: 40px;
    margin-bottom: 78px;
}
.choose-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}
.choose-card img {
    width: 90px;
    height: auto;
}
.choose-card h3 {
    max-width: 225px;
    color: var(--color-white);
    font-weight: var(--w-reg);
}
.choose-img img {
    width: 100%;
    height: auto;
}
#benefit {
    position: relative;
    padding-top: calc(var(--sec-pad-lg) * 3);
    padding-bottom: var(--sec-pad-lg);
    background-color: var(--color-white);
}
#benefit::before {
    content: "";
    background-image: url(images/benefit-bg.svg);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 455px;
    z-index: 1;
}
#benefit .black-flower {
    position: absolute;
    left: 0;
    top: 2%;
    z-index: 5;
    width: 250px;
}
#benefit .black-flower-2 {
    position: absolute;
    right: 0;
    top: 22%;
    z-index: 5;
    width: 250px;
}
#benefit .contain {
    position: relative;
    z-index: 2;
}
#benefit .row-not {
    justify-content: center;
    gap: 280px;
}
#benefit h2 {
    color: var(--color-black);
    text-align: center;
    margin: 0 auto 100px 0;
}
.benefit-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 473px;
    margin-top: 60px;
}
.benefit-card:first-child {
    padding-top: 30px;
}
#benefit .number {
    font-family: "Libre Caslon Text", serif;
    color: var(--color-click);
    font-size: var(--size-2A);
}
#benefit .title {
    font-family: "Avenir LT Std", serif;
    color: var(--color-black);
    font-size: var(--size-2B);
    font-weight: var(--w-bold);
    margin-bottom: 16px;
}
#benefit p {
    color: var(--color-black);
}
.benefit-img {
    position: relative;
    width: 180px;
}
.benefit-img img {
    position: sticky;
    top: 25%;
    left: 0;
    width: 100%;
    z-index: 1;
}
#quote {
    padding-top: var(--sec-pad-lg);
    padding-bottom: var(--sec-pad-lg);
}
#quote.p_quote {
   padding-top: 0;
}
#quote .row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#quote img {
    width: 51px;
    height: auto;
    margin-bottom: 20px;
}
#quote h2 {
    margin-bottom: 50px;
}
#quote p {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px auto;
}
#quote .author {
    font-family: "Avenir LT Std", serif;
    font-size: var(--size-2B);
    display: block;
    text-align: center;
}
#test {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#test img {
    position: relative;
    width: 157px;
    z-index: 1;
    margin-bottom: -75px;
}
.test-bg {
    width: 100%;
    height: 350px;
    background-image: url(images/quote-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.test-bg span {
    font-family: "Libre Caslon Text", serif;
    font-size: var(--size-2A);
    color: var(--color-white);
    text-align: center;
    display: block;
}
.test-bg p {
    color: var(--color-white);
    max-width: 900px;
    margin: 20px auto 0 auto;
    padding: 0 20px;
}
#treat {
    padding-top: calc(var(--sec-pad-lg) + var(--sec-pad-sm));
    padding-bottom: calc(var(--sec-pad-lg) + var(--sec-pad-sm));
}
#treat .contain {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#treat h2 {
    margin: 0 auto;
    max-width: 1007px;
    text-align: center;
    margin-bottom: 54px;
}
#treat .row-not {
    gap: 20px;
    max-width: 760px;
    margin: 0 auto 54px auto;
}
.treat-card {
    padding: 20px 26px;
    border: 1px solid var(--color-click);
    border-radius: 16px;
    background: linear-gradient(to bottom right, var(--grad-l-pink), var(--grad-pink-trans));
    width: 50%;
    box-sizing: border-box;
}
.treat-card h3 {
    color: var(--color-click);
    font-size: var(--size-2B);
    margin-bottom: 12px;
}
#treat .click-3 {
    margin-bottom: 23px;
}
#treat .click {
    margin: 0 auto;
    text-align: center;
}

.author-bg {
    padding: calc(var(--sec-pad-lg) + 30px) var(--sec-pad-lg);
    /* background-image: url(images/author.png); */
    /* background-position: center center; */
    /* background-repeat: no-repeat; */
    /* background-size: cover; */
    background-color: var(--color-black);
    border-radius: 36px;
}
#author .row {
    column-gap: 70px;
    align-items: center;
}
.author-img img {
    width: 335px;
    height: auto;
    box-shadow: 0px 4px 79px 22px rgba(237, 4, 103, 0.27);
    border-radius: 200px;
}
.author-text h2 {
    color: var(--color-white);
    margin-bottom: 23px;
}
.author-text p {
    display: inline;
    color: var(--color-white);
    margin-bottom: 44px;
}
.author-text a.click-7 {
    font-weight: var(--w-bold);
    color: var(--color-click);
}
.author-text .read-button {
    cursor: pointer;
    display: inline;
    font-family: "Avenir LT Std", serif;
    font-size: var(--size-4);
    display: inline-block;
    background-color: transparent;
    border: 0;
    padding: 0;
    margin-left: 6px;
    font-weight: var(--w-med);
    color: var(--color-click);
}
.author-text .read-button:hover {
    border-bottom: 1px solid var(--color-click);
}
#single-content,
#main-blogs {
    padding: var(--sec-pad-lg) 0;
}
#blogs {
    padding-top: calc(var(--sec-pad-lg) * 2);
    padding-bottom: calc(var(--sec-pad-lg) + var(--sec-pad-md));
}
#related-blogs {
    padding-bottom: var(--sec-pad-lg);
}
#related-blogs h2,
#blogs h2 {
    margin: 0 auto 37px auto;
    text-align: center;
    max-width: 707px;
}
#main-blogs .row-not {
    column-gap: 20px;
    row-gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
#related-blogs .row-not,
#blogs .row-not {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
#related-blogs .row-not > *,
#main-blogs .row-not > *,
#blogs .row-not > * {
    width: 32%;
}
.blogs-card {
    display: flex;
    flex-direction: column;
}
.blogs-card-wrap:link,
.blogs-card-wrap:hover,
.blogs-card-wrap:active,
.blogs-card-wrap:visited {
    color: var(--color-black);
}
.blogs-card-wrap:hover + a.click-3 {
    color: var(--color-black);
    border-bottom: 1px solid var(--color-black);
}
.blogs-card img {
    height: 250px;
    border-radius: 24px;
    margin-bottom: 20px;
    object-fit: cover;
    object-position: center center;
}
.blogs-card .title {
    font-family: "Avenir LT Std", serif;
    font-weight: var(--w-semi);
    font-size: var(--size-2B);
    line-height: var(--line-more);
    display: inline-block;
    margin-bottom: 12px;
    flex-grow: 1;
}
.blogs-card p {
    margin-bottom: 20px;
}
.blogs-card a {
    font-weight: var(--w-bold);
}
#main-blogs .click-6,
#blogs .click-6 {
    margin-top: 60px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
#note {
    padding-bottom: var(--sec-pad-xl);
}
#note .row {
    padding: 34px 65px;
    background: var(--color-black);
    border-radius: 32px;
    gap: 40px;
    align-items: center;
}
.note-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}
.note-img img {
    width: 80px;
}
.note-img h5 {
    color: var(--color-white);
    font-weight: var(--w-semi);
    width: 105px;
}
#note p {
    color: var(--color-white);
}
#newsletter {
    padding: calc(var(--sec-pad-md) + 8px) 0;
    background-image: url(images/newsletter-bg.png);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    color: var(--color-white);
}
#newsletter h2 {
    margin-bottom: 20px;
}
#newsletter .paragraph {
    max-width: 552px;
    margin: 0 auto 32px auto;
}
#newsletter form p {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 24px;
}
#newsletter form .newsletter {
    font-family: "Avenir LT Std", serif;
    outline: none;
    padding: 22px 34px;
    font-size: var(--size-5);
    font-weight: var(--w-bold);
    border-radius: 50px;
    background-color: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
}
#newsletter form .newsletter::placeholder {
    color: var(--color-white);
}
#newsletter form .wpcf7-form-control-wrap span {
    text-align: left;
    color: var(--color-white);
    margin-top: 10px;
}
#newsletter form .wpcf7-response-output {
    font-family: "Avenir LT Std", serif;
    width: fit-content;
    margin: 20px auto 0 auto;
}
#newsletter form .subscribe {
    font-family: "Avenir LT Std", serif;
    max-height: 64px;
    outline: none;
    padding: 22px 41px;
    border: 1px solid var(--color-white);
    background-color: var(--color-white);
    font-size: var(--size-5);
    font-weight: var(--w-bold);
    color: var(--color-click);
    border-radius: 50px;
    /* transition: all 0.3s; */
}
#newsletter form .subscribe:hover,
#newsletter form .subscribe:active {
    background-color: transparent;
    color: var(--color-white);
}
#newsletter form .wpcf7-spinner {
    position: absolute;
    bottom: -30px;
    right: 10px;
    background-color: var(--color-white);
}
#newsletter form .wpcf7-spinner::before {
    background-color: var(--color-click);
}
#commit-reverse {
    padding: var(--sec-pad-md) 0 var(--sec-pad-xl) 0;
    position: relative;
    z-index: 1;
}
#commit {
    padding: var(--sec-pad-lg) 0 0 0;
    position: relative;
    z-index: 1;
}
#commit-reverse.text-white h2,
#commit-reverse.text-white p,
#commit.text-white h2,
#commit.text-white p {
    color: #fff !important;
}
.commit-f-right {
    position: absolute;
    width: 100%;
    height: auto;
    max-width: 520px;
    right: 0;
    top: -18%;
    z-index: -1;
}
.commit-f-left {
    position: absolute;
    width: 100%;
    height: auto;
    max-width: 500px;
    left: 0;
    bottom: 18%;
    z-index: -1;
}
#commit-reverse .row,
#commit .row {
    justify-content: space-between;
    align-items: center;
}
.commit-reverse-text,
.commit-text {
    width: 50%;
}
.commit-reverse-text h2,
.commit-reverse-text p,
.commit-text h2,
.commit-text p {
    margin-bottom: 28px;
}
#step {
    background-image: url(images/steps-bg-2.svg);
    background-size: cover;
    background-position: center center;
    color: var(--color-white);
    padding: calc(var(--sec-pad-xl) * 3) 0 calc(var(--sec-pad-xl) * 3 - 155px) 0;
    position: relative;
}
.step-left-flower {
    position: absolute;
    left: 0;
    top: 20%;
    width: 300px;
    height: auto;
    z-index: 1;
}
.step-flower {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 300px;
    height: auto;
    z-index: 1;
}
#step .row-not {
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.step-points {
    width: 100%;
    max-width: 384px;
}
.step-points ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.step-points li {
    font-family: var(--font-avenir);
    font-size: calc(var(--size-2B) + 4px);
    color: var(--color-white);
    cursor: pointer;
}
.step-points span {
    font-family: var(--font-libre);
    display: inline-block;
    color: var(--color-text);
    margin-right: 18px;
}
.step-points li.active {
    color: var(--color-click);
    font-size: 30px;
}
.step-points li span.active {
    color: var(--color-click);
    font-size: calc(var(--size-2B) + 4px);
}
.step-paragraphs {
    width: 100%;
    max-width: 590px;
}
.step-paragraphs p {
    position: relative;
    font-size: var(--size-3);
    z-index: 2;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 1s, height 1s;
}
.step-paragraphs p.active {
    opacity: 1;
    height: auto;
}
.mobile {
    display: none;
}
#faq-new {
    padding: calc(var(--sec-pad-xl) + 60px) 0 var(--sec-pad-xl) 0;
    position: relative;
}
#faq-new:before {
    content: "";
    background-image: url(images/top-wave-black.svg);
    background-size: cover;
    background-position: bottom center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 130px;
}
#faq {
    background-image: url(images/faq-bg.svg);
    background-position: top center;
    background-size: cover;
    padding: var(--sec-pad-xl) 0;
    position: relative;
}
.faq-flower-l {
    position: absolute;
    left: 0;
    bottom: -70px;
    width: 330px;
}
.faq-flower-r {
    position: absolute;
    right: 0;
    bottom: -100px;
    width: 250px;
}
#faq-blog h2,
#faq-new h2,
#faq h2 {
    color: var(--color-click);
    margin-bottom: 60px;
    text-align: center;
}
.faq-accordion {
    max-width: 700px;
    margin: 0 auto;
}
.faq-acc-group:not(:last-child) {
    margin-bottom: 28px;
}
#faq-blog {
    background-image: url("https://theme.prettytightkitty.com/wp-content/uploads/2024/05/Rectangle-52.png");
    background-position: top center;
    background-size: cover;
    padding: var(--sec-pad-xl) 0;
    position: relative;
    color: var(--color-white);
}
#faq-blog .acc-toggle::after {
    filter: invert(1);
}
#faq-blog .acc-content {
    border-bottom: 1px solid var(--color-white);
    padding-bottom: 10px;
}
#faq-blog .faq-flower-r {
    bottom: -40px;
}
.acc-toggle {
    margin-bottom: 8px;
    position: relative;
    cursor: pointer;
}
.acc-toggle::after {
    content: url(images/arrow.svg);
    width: 12px;
    height: auto;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.8s;
}
.acc-toggle.active::after {
    transform: translateY(-50%) rotate(180deg);
}
.acc-content {
    display: none;
}
#banner-three {
    padding: calc(var(--sec-pad-xl) + var(--sec-pad-lg)) 0
        calc(var(--sec-pad-xl) + var(--sec-pad-md)) 0;
    text-align: center;
    color: var(--color-white);
    position: relative;
    background-image: url(images/banner-3.png);
    background-size: cover;
    background-position: center center;
}
#banner-three.single-banner {
    background-image: url(http://prettytightkitty.com/wp-content/uploads/2024/05/single-banner.png);
}
#banner-new {
    padding: calc(var(--sec-pad-xl) + var(--sec-pad-lg)) 0
        calc(var(--sec-pad-xl) + var(--sec-pad-md)) 0;
    text-align: center;
    color: var(--color-white);
    position: relative;
    background-position: center center;
    background-size: cover;
}
#banner-three::after,
#banner-new::after {
    content: "";
    background-image: url(images/wave-2.svg);
    background-size: cover;
    background-position: top center;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 130px;
    z-index: 1;
}
#banner-three .contain,
#banner-new .contain {
    max-width: 630px;
}
#banner-three h1,
#banner-new h1 {
    color: var(--color-click);
    font-size: var(--size-1A);
    margin-bottom: 24px;
}
#banner-three p,
#banner-new p {
    margin-bottom: 44px;
}
.banner-left {
    position: absolute;
    left: 0;
    bottom: 150px;
    z-index: 2;
    width: 300px;
    height: auto;
}
.banner-right {
    position: absolute;
    right: 0;
    bottom: -30px;
    z-index: 2;
    width: 300px;
    height: auto;
}
#structure {
    padding: var(--sec-pad-lg) 0 calc(var(--sec-pad-xl) + var(--sec-pad-md)) 0;
    text-align: center;
    position: relative;
}
#structure:after {
    content: "";
    background-image: url(images/wave-before.svg);
    background-position: top center;
    background-size: cover;
    width: 100%;
    height: 130px;
    position: absolute;
    left: 0;
    bottom: -1px;
}
#structure .title {
    margin: 0 auto 72px auto;
}
#structure .product {
    margin: 0 auto 76px auto;
    max-width: 970px;
}
#structure .remote {
    margin: 0 auto 150px auto;
    max-width: 567px;
}
#structure .title-2 {
    margin: 0 auto 34px auto;
}
#structure p {
    margin: 0 auto;
    max-width: 790px;
}
#parameter {
    padding: var(--sec-pad-lg) 0;
    color: var(--color-white);
    background-color: var(--color-black);
    position: relative;
}
#parameter .contain {
    position: relative;
    z-index: 1;
}
.parameter-f-left {
    position: absolute;
    left: 0;
    top: 28%;
    width: 600px;
    height: auto;
}
.parameter-f-right {
    position: absolute;
    right: 0;
    top: -5%;
    width: 600px;
    height: auto;
}
#parameter .title {
    max-width: 590px;
    margin: 0 auto 40px auto;
    text-align: center;
}
#parameter .content {
    max-width: 805px;
    margin: 0 auto 140px auto;
    text-align: center;
}
.parameter-step {
    text-align: center;
}
.parameter-step:not(:last-child) {
    margin-bottom: 130px;
}
.parameter-img {
    max-width: 360px;
    margin-bottom: 40px;
}
.parameter-step h3 {
    font-size: var(--size-2B);
    color: var(--color-click);
    margin-bottom: 58px;
    text-align: center;
}
.parameter-ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 990px;
    margin: 0 auto 0 auto;
    text-align: left;
}
.parameter-li {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: var(--color-list);
    border-radius: 32px;
    gap: 35px;
    padding: 26px 34px;
}
.parameter-li img {
    width: 75px;
    height: 75px;
}
.parameter-li span {
    font-family: var(--font-avenir);
    display: block;
    font-size: calc(var(--size-3) + 2px);
    line-height: 1.3;
}
#content {
    padding: var(--sec-pad-lg) 0;
}
.content-contain {
    display: block;
    padding: 0 var(--side-padding);
    margin: 0 auto;
    max-width: 900px;
}
.content-contain h3:not(:first-child) {
    margin-top: 20px;
}
.content-contain h3 {
    margin-bottom: 10px;
    font-size: var(--size-2B);
}
.content-contain p {
    margin-bottom: 10px;
}
.content-contain ul {
    padding-left: 20px;
}
.content-contain ul + p {
    margin-bottom: 10px;
    padding-left: 20px;
}
.content-contain li {
    font-family: var(--font-avenir);
    font-size: var(--size-p);
}
.content-contain a {
    display: inline-block;
    font-family: var(--font-avenir);
    font-size: var(--size-p);
    margin-bottom: 10px;
    color: #000;
    /* transition: all 0.3s; */
}
.content-contain a:hover {
    color: var(--color-click);
}
#contact {
    padding: var(--sec-pad-md) 0 var(--sec-pad-xl) 0;
    text-align: center;
}
#contact h2 {
    margin-bottom: 98px;
}
#contact .row {
    gap: 20px;
}
.contact-card {
    width: 33.333%;
    background-color: var(--color-black);
    border-radius: 32px;
    padding: 56px 0;
}
.contact-card img {
    width: 50px;
    height: auto;
    margin-bottom: 28px;
}
.contact-card h3 {
    color: var(--color-click);
    font-size: var(--size-2B);
    font-family: var(--font-libre);
    margin-bottom: 12px;
}
.contact-card a {
    color: var(--color-white);
    max-width: 250px;
    line-height: 1.4;
}
.contact-card a:hover {
    text-decoration: underline;
}
#commit.wave {
    padding: var(--sec-pad-lg) 0 calc(var(--sec-pad-xl) + 150px) 0;
    position: relative;
}
#commit.wave::after {
    content: "";
    background-image: url(images/top-wave-pink.svg);
    background-size: cover;
    background-position: top center;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 385px;
}
#single-product {
    padding: var(--sec-pad-sm) 0 var(--sec-pad-lg) 0;
}
#single-product h1 {
    font-size: var(--size-2);
    text-align: left;
    margin-bottom: 60px;
}
#single-product .row {
    justify-content: space-between;
    gap: 20px;
}
.single_image-group {
    width: calc(45% - 30px);
    text-align: center;
}
.main-product-images {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.main-product-image {
    cursor: pointer;
    width: 80px;
    border: 1px solid transparent;
}
.main-product-image img {
    border-radius: 8px;
}
.single-image {
    border-radius: 8px;
    margin-bottom: 20px;
}
.single-image img {
    border-radius: 8px;
    width: 100%;
    height: auto;
}
.tooltip {
    position: absolute;
    top: -20px;
    right: 0;
    font-size: 12px;
    font-family: var(--font-avenir);
    display: none;
}
.coming-button {
    font-family: var(--font-avenir);
    padding: 10px 16px;
    background-color: var(--color-pink-light);
    border-radius: 50px;
    color: var(--color-click);
    font-size: 14px;
}
.single-text {
    width: calc(55% - 30px);
    display: flex;
    flex-direction: column;
}
.single-text .title {
    margin-bottom: 16px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.single-text h3 {
    font-size: calc(var(--size-2B) + 4px);
    margin-bottom: 10px;
    max-width: 75%;
}
.single-text .content p {
    margin-bottom: 20px;
    font-size: 14px;
}
.single-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}
.single-rating {
    font-family: var(--font-avenir);
    font-size: var(--size-6);
    color: var(--color-click);
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: var(--color-pink-light);
    border: none;
    border-radius: 50px;
    padding: 14px;
}
.single-rating img {
    margin-right: 14px;
}
.single-share {
    border-radius: 8px;
    padding: 10px 12px 9px 11px;
    background-color: var(--color-button);
    border: none;
    cursor: pointer;
}
.single-share:hover {
    background-color: var(--color-gray);
}
.single-text .stock {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}
.single-status {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 10px;
}
.single-status .dot {
    width: 12px;
    height: 12px;
    border-radius: 10px;
}
.single-status.in-stock .dot {
    background-color: var(--color-green);
    box-shadow: 0 0 13px 6px var(--color-green);
}
.single-status.out-of-stock .dot {
    background-color: var(--color-red);
    box-shadow: 0 0 13px 6px var(--color-red);
}
.single-status p {
    font-size: var(--size-6);
}
.single-buyer {
    font-size: var(--size-6);
    color: #b9bbbf;
}
.single-buyer span {
    color: var(--color-click);
    font-weight: var(--w-bold);
}
.single-price {
    display: flex;
    flex-direction: column-reverse;
    gap: 6px;
    margin-bottom: 26px;
}
.single-price bdi {
    text-decoration: none;
    font-family: var(--font-avenir);
    font-size: var(--size-2A);
    color: var(--color-click);
    font-weight: var(--w-semi);
}
.single-price ins bdi,
.single-price ins {
    text-decoration: none;
    font-family: var(--font-avenir);
    font-size: var(--size-2A);
    color: var(--color-click);
    font-weight: var(--w-semi);
}
.single-price del bdi,
.single-price del {
    font-family: var(--font-avenir);
    color: #0e0a0b80;
    font-size: calc(var(--size-3) + 2px);
}
.single-cart {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}
.single-quantity {
    display: flex;
    flex-direction: row;
    background-color: #f3f3f3;
    border-radius: 50px;
    box-sizing: border-box;
}
.single-quantity button {
    color: var(--color-click);
    outline: none;
    border: none;
    padding: 16px 24px;
    font-size: var(--size-p);
    border-radius: 50px;
    background-color: transparent;
    cursor: pointer;
}
.single-quantity button:hover {
    color: var(--color-click-hover);
}
.single-quantity input {
    font-size: var(--size-p);
    background-color: transparent;
    outline: none;
    border: none;
    height: 100%;
    color: var(--color-click);
    width: 40px !important;
}
.single-quantity input::-webkit-inner-spin-button,
.single-quantity input::-webkit-outer-spin-button {
    appearance: none;
    margin: 0;
}
.single_add_to_cart_button {
    font-family: var(--font-avenir) !important;
    border-radius: 50px !important;
    background-color: var(--color-click) !important;
    width: 100%;
    color: var(--color-white);
    display: flex;
    align-items: center;
    font-size: var(--size-5);
    padding: 16px 0 !important;
}
.single_add_to_cart_button img {
    height: 17px;
    width: auto;
    margin-right: 15px;
    transform: translateY(2px);
}
.single_add_to_cart_button:hover {
    background-color: var(--color-click-hover) !important;
}
.single-text .icons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.single-contact {
    display: flex;
    align-items: center;
    gap: 6px;
}
.single-contact img {
    height: 24px;
    width: auto;
    margin-right: 8px;
}
.single-contact a {
    font-family: var(--font-avenir);
    color: var(--color-click);
    font-size: var(--size-p);
}
.single-contact a[href] {
    text-decoration: underline;
}
#single-hover {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    backdrop-filter: blur(6px);
    background-color: rgba(255, 255, 255, 1);
    padding: 6px 0;
    border-top: 1px solid rgba(190, 190, 190, 1);
}
#single-hover.fixed {
    display: block;
}
#single-hover .row-not {
    justify-content: space-between;
}
.hover-button {
    gap: 20px;
}
.hover-button .single_add_to_cart_button {
    display: flex !important;
    justify-content: center;
    width: 185px;
}
.hover-button .single_add_to_cart_button img {
    transform: none;
}
.hover-button .single-quantity {
    background-color: transparent;
    border: 1px solid rgba(165, 165, 165, 1);
}
.hover-image {
    display: flex;
    align-items: center;
    gap: 20px;
}
.hover-image img.hover-product-image {
    width: 100%;
    max-width: 80px;
    border-radius: 12px;
    box-sizing: border-box;
}
.hover-text h4 {
    max-width: 200px;
}
#single-hover .hover-price {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
#single-hover .total-price {
    font-size: 24px;
    font-weight: var(--w-bold);
    color: var(--color-click);
}
#single-hover .regular-price {
    text-decoration: line-through;
    font-size: 16px;
    font-weight: var(--w-bold);
    color: rgba(14, 10, 11, 0.5);
}
.hover-button {
    display: flex;
    align-items: center;
    gap: 20px;
}
.hover-button form {
    display: flex;
    gap: 20px;
}
.hover-button a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;

    border-radius: 50px;
    font-size: var(--size-5);
    font-family: var(--font-avenir);
    font-weight: var(--w-reg);
    width: fit-content;
}
.hover-button svg,
.hover-button img {
    width: 20px;
    height: auto;
}
.hover-top {
    background-color: var(--color-click);
    color: var(--color-white);
}
.hover-describe {
    border: 1px solid var(--color-click);
    background-color: var(--color-white);
    color: var(--color-click);
}
.hover-describe:hover,
.hover-top:hover {
    background-color: var(--color-click-hover);
    color: var(--color-white);
}
.hover-button svg path {
    fill: var(--color-click);
}
.hover-describe:hover svg path {
    fill: var(--color-white);
}
.hover-price {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    justify-content: left;
    align-items: center;
    font-family: var(--font-avenir);
}
.hover-price del {
    text-decoration: none;
}
.hover-price del bdi {
    color: var(--color-text);
    font-size: var(--size-6);
    text-decoration: line-through;
}
.hover-price ins,
.hover-price ins bdi {
    color: var(--color-click);
    font-size: var(--size-4);
    text-decoration: none;
}
.hover-button.mobile {
    display: none;
}
#single-describe {
    padding-bottom: var(--sec-pad-lg);
}
#single-describe .contain {
    max-width: 1100px;
}
#single-describe h2 {
    margin-bottom: 10px;
}
#single-banner {
    position: relative;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 700px;
}
.single-overlay {
    background: linear-gradient(180deg, #ed0467 -84.48%, rgba(237, 4, 103, 0.2) 90.78%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
#single-banner::after {
    content: "";
    background-image: url(images/single-wave.svg);
    background-size: cover;
    background-position: top center;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 128px;
    z-index: 2;
}
#single-content h1 {
    font-size: var(--size-2);
    margin-bottom: 30px;
}
#single-content h1:not(:first-child) {
    margin-top: 20px;
}
#single-content h2 {
    font-size: var(--size-3);
    margin-bottom: 10px;
    margin-top: 18px;
}
#single-content h3 {
    font-size: var(--size-4);
    margin-bottom: 4px;
    margin-top: 18px;
}
#single-content h4 {
    font-size: var(--size-5);
    margin-bottom: 4px;
    margin-top: 18px;
}
#single-content h5 {
    font-size: var(--size-6);
    margin-bottom: 4px;
    margin-top: 18px;
}
#single-content p {
    margin-bottom: 4px;
    margin-top: 18px;
}
#single-content ul,
#single-content ol {
    font-family: var(--font-avenir);
    font-size: var(--size-p);
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.page-id-131 #banner-new,
.privacy-policy #banner-new {
    background-color: var(--color-black);
}
#main-cart,
#cart-empty {
    padding: var(--sec-pad-sm) 0 var(--sec-pad-lg) 0;
    font-family: var(--font-avenir);
}
#main-cart h1,
#cart-empty h1 {
    font-size: var(--size-2);
    text-align: left;
    margin-bottom: 24px;
}
#main-cart {
    margin-bottom: 30px;
}
#cart-empty .contain,
#main-checkout .contain,
#main-cart .contain {
    max-width: 900px;
}
#main-cart h2.title {
    margin-top: 20px;
}
#main-cart .coupon {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
#main-cart .coupon input {
    width: 100%;
    max-width: 150px;
}
#main-cart button[name="update_cart"] {
    font-weight: var(--w-500);
    border-radius: 50px;
    display: none;
}
#main-cart button[name="update_cart"]:not([disabled]) {
    background-color: var(--color-click);
    color: var(--color-white);
}
#main-cart .coupon button {
    background-color: var(--color-click);
    color: var(--color-white);
    font-weight: var(--w-500);
    border-radius: 50px;
}
#main-cart button[name="update_cart"]:not([disabled]):hover,
#main-cart .coupon button:hover {
    background-color: var(--color-click-hover);
}
#main-cart .wc-proceed-to-checkout a {
    background-color: var(--color-click);
    color: var(--color-white);
    font-weight: var(--w-600);
    border-radius: 50px;
}
#main-cart .wc-proceed-to-checkout a:hover {
    background-color: var(--color-click-hover);
}
#main-cart .product-remove a {
    color: var(--color-click) !important;
}
#main-cart .product-remove a:hover {
    background-color: var(--color-click) !important;
    color: var(--color-white) !important;
}
#main-cart .cart_totals h2 {
    font-size: var(--size-3);
    margin-bottom: 10px;
    margin-top: 50px;
    text-align: left;
}
#main-cart .product-name a {
    color: var(--color-black);
}
#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
    width: 130px;
}
.woocommerce-notices-wrapper {
    display: none !important;
}
#cart-empty .wc-backward {
    background-color: var(--color-click);
    color: var(--color-white);
    font-weight: var(--w-600);
    border-radius: 50px;
}
#cart-empty .wc-backward:hover {
    background-color: var(--color-click-hover);
}
.woocommerce-info {
    border-top-color: var(--color-click);
}
.woocommerce-info::before {
    color: var(--color-click);
}
#main-cart .quantity .qty {
    padding: 4px 0px !important;
    font-size: 16px !important;
}

/* Checkout */
#main-checkout {
    padding: var(--sec-pad-sm) 0 var(--sec-pad-md) 0;
}
#main-checkout .showcoupon {
    color: rgb(var(--color-black));
    font-weight: var(--w-500);
    border-bottom: 1px solid transparent;
}
#main-checkout .showcoupon:hover {
    border-bottom: 1px solid var(--color-black);
}
.custom-checkout-form h3 {
    text-align: left;
    margin-top: 10px;
    margin-bottom: 20px;
}
.woocommerce-shipping-fields__field-wrapper,
.woocommerce-billing-fields__field-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 30px;
}
.woocommerce-shipping-fields__field-wrapper > *:nth-child(1),
.woocommerce-shipping-fields__field-wrapper > *:nth-child(2),
.woocommerce-shipping-fields__field-wrapper > *:nth-child(3),
.woocommerce-shipping-fields__field-wrapper > *:nth-child(4),
.woocommerce-shipping-fields__field-wrapper > *:nth-child(7),
.woocommerce-shipping-fields__field-wrapper > *:nth-child(8),
.woocommerce-shipping-fields__field-wrapper > *:nth-child(9),
.woocommerce-shipping-fields__field-wrapper > *:nth-child(10),
.woocommerce-shipping-fields__field-wrapper > *:nth-child(11),
.woocommerce-billing-fields__field-wrapper > *:nth-child(1),
.woocommerce-billing-fields__field-wrapper > *:nth-child(2),
.woocommerce-billing-fields__field-wrapper > *:nth-child(3),
.woocommerce-billing-fields__field-wrapper > *:nth-child(4),
.woocommerce-billing-fields__field-wrapper > *:nth-child(7),
.woocommerce-billing-fields__field-wrapper > *:nth-child(8),
.woocommerce-billing-fields__field-wrapper > *:nth-child(9),
.woocommerce-billing-fields__field-wrapper > *:nth-child(10),
.woocommerce-billing-fields__field-wrapper > *:nth-child(11) {
    width: calc(50% - 10px) !important;
}
.woocommerce-shipping-fields__field-wrapper > *:nth-child(6),
.woocommerce-shipping-fields__field-wrapper > *:nth-child(5),
.woocommerce-billing-fields__field-wrapper > *:nth-child(6),
.woocommerce-billing-fields__field-wrapper > *:nth-child(5) {
    width: 100% !important;
}
.woocommerce-shipping-fields__field-wrapper label,
.woocommerce-additional-fields__field-wrapper label,
.woocommerce-billing-fields__field-wrapper label {
    color: var(--color-black);
    display: block;
    font-weight: var(--w-600);
    margin-bottom: 2px;
}
.woocommerce-shipping-fields__field-wrapper input,
#main-checkout .checkout_coupon input,
.woocommerce-billing-fields__field-wrapper input {
    font-family: var(--font-avenir);
    font-size: 16px !important;
    outline: none;
    width: 100%;
    border-radius: 6px;
    padding: 14px 10px;
    background-color: transparent;
    border: 1px solid #efe7ec;
    box-sizing: border-box;
}
#main-checkout .select2-selection.select2-selection--single {
    border-radius: 6px;
    border: 1px solid #efe7ec;
    height: 48px;
}
#main-checkout .select2-selection.select2-selection--single:focus {
    border: 1px solid var(--color-click);
}
#main-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 11px;
    right: 6px;
}
.select2-selection__rendered {
    transform: translateY(10px);
}
.checkout_coupon {
    border-radius: 0;
}
.checkout_coupon p:first-child {
    font-weight: var(--w-500);
    margin-bottom: 6px;
}
.checkout_coupon .form-row {
    padding: 0;
}
.checkout_coupon button {
    background-color: var(--color-click) !important;
    color: var(--color-white) !important;
    border-radius: 30px !important;
    font-weight: var(--w-600) !important;
    transform: all 0.3s;
}
.checkout_coupon button:hover {
    background-color: var(--color-click-hover) !important;
}
.woocommerce-additional-fields__field-wrapper {
    margin-bottom: 30px;
}
.woocommerce-additional-fields__field-wrapper textarea {
    outline: none;
    font-family: var(--font-avenir);
    font-size: 16px;
    box-sizing: border-box;
    width: 100%;
    height: 90px;
    border: 1px solid #efe7ec;
    border-radius: 6px;
    background-color: transparent;
    padding: 14px 10px;
}
.woocommerce-additional-fields__field-wrapper textarea:focus,
.checkout_coupon input:focus,
.woocommerce-billing-fields__field-wrapper input:focus {
    border: 1px solid var(--color-click);
}
.woocommerce-checkout-payment {
    border-radius: 0 !important;
}
#place_order {
    background-color: var(--color-click);
    color: var(--color-white);
    border-radius: 30px;
    font-weight: var(--w-600);
    transition: all 0.3s;
}
#place_order:hover {
    background-color: var(--color-click-hover);
}
.woocommerce-info {
    line-height: 1.3;
}
.checkout-title {
    font-size: var(--size-2);
    text-align: left;
    margin-bottom: 30px;
    margin-top: 0 !important;
}
.custom-checkout-section.custom-checkout-order-review {
    font-family: var(--font-avenir);
}
.payment_method_authnet label[for="payment_method_authnet"] img {
    width: 42px;
}
#payment.woocommerce-checkout-payment {
    /* background-color: rgba(237, 4, 103, 0.08); */
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px !important;
}
.wc_payment_methods.payment_methods.methods {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}
.payment_box.payment_method_authnet {
    background-color: #fde5ef !important;
}
.payment_box.payment_method_authnet::before {
    border-bottom-color: #fde5ef !important;
}
#wc-authnet-cc-form {
    display: flex;
    flex-wrap: wrap;
}
#wc-authnet-cc-form .wc-authnet-error {
    width: 100%;
    margin-bottom: 10px;
}
#wc-authnet-cc-form .form-row-wide {
    width: 52%;
}
#wc-authnet-cc-form .form-row-first {
    width: 30%;
}
#wc-authnet-cc-form .form-row-last {
    width: 15%;
}
#authnet-card-cvc,
#authnet-card-expiry,
#authnet-card-number {
    outline: none;
    border: 1px solid #efe7ec;
    border-radius: 6px;
    padding: 14px 10px;
    font-size: var(--size-p) !important;
}
#authnet-card-cvc:focus,
#authnet-card-expiry:focus,
#authnet-card-number:focus {
    border-color: var(--color-click);
}
.woocommerce-privacy-policy-text a {
    color: var(--color-click);
}
.woocommerce-privacy-policy-text a:hover {
    color: var(--color-click-hover);
}

/* Thank you */
.woocommerce-order {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 50px;
}
.woocommerce-thankyou-order-received {
    width: 100%;
    font-family: var(--font-libre);
    font-size: var(--size-1);
    font-weight: var(--w-bold);
    text-align: center;
    margin-bottom: 30px;
}
.woocommerce-thankyou-order-details {
    width: 100%;
    font-family: var(--font-avenir);
    display: flex;
    align-items: center;
    justify-content: center;
}
.woocommerce-thankyou-order-details li {
    font-weight: var(--w-bold) !important;
    color: var(--color-click);
}
.woocommerce-thankyou-order-details strong {
    font-weight: var(--w-reg);
    color: var(--color-black);
}
.woocommerce-customer-details,
.woocommerce-order-details {
    font-family: var(--font-avenir);
    width: calc(50% - 25px);
}
.woocommerce-customer-details h2,
.woocommerce-order-details h2 {
    font-family: var(--font-libre);
    font-size: var(--size-2B);
    margin-bottom: 10px;
}
.woocommerce-order-details .product-name a {
    color: var(--color-click) !important;
}
.woocommerce-order-details .product-name a:hover {
    color: var(--color-click-hover) !important;
}
#single-health {
    position: relative;
}
.single-health_bg {
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
#single-health::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 114px;
    background: url(images/single-before.svg);
    background-size: cover;
    background-position: center -7px;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}
#single-health::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 106px;
    background: url(images/single-after.svg);
    background-size: cover;
    background-position: center 6px;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}
.single-health_bg .container {
    padding-top: 306px;
    padding-bottom: 280px;
    background: linear-gradient(180deg, rgba(237, 4, 103, 0) 0%, rgba(237, 4, 103, 0.94) 100%);
}
#single-health h2 {
    max-width: 685px;
    margin: 0 auto 14px auto;
    text-align: center;
    color: var(--color-white);
}
#single-health p {
    font-size: 20px;
    max-width: 537px;
    margin: 0 auto 0 auto;
    text-align: center;
    color: var(--color-white);
}
.single #commit.first p {
    max-width: 430px;
}
.single #commit-reverse {
    padding-top: 120px;
    padding-bottom: 120px;
}
.single #commit.first {
    padding-top: 0;
    padding-bottom: var(--sec-pad-lg);
}
.single #commit.second {
    padding-top: 0;
    padding-bottom: 120px;
}
.single #single-badges {
    padding-top: 40px;
    padding-bottom: 120px;
}
.single-steps {
    margin: 0 auto;
}
.single-step {
    text-align: center;
}
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-in-out;
}
.single-step.text-in {
    display: block;
    animation: textIn 0.5s ease;
}
.single-step.text-out {
    animation: textOut 1s ease;
}
@keyframes textIn {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0%);
    }
}
@keyframes textOut {
    0% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(-100%);
    }
}
.single-step p {
    max-width: 570px;
    margin: 14px auto 0 auto;
    /* color: rgba(208, 208, 208, 1); */
    color: #fff;
}
#single-points {
    padding-top: 100px;
}
#single-points .contain {
    max-width: 645px;
}
#single-points h2 {
    font-size: var(--size-2);
    color: rgb(var(--color-click));
    text-align: center;
    margin-bottom: 40px;
}
#single-points ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
#single-points li {
    position: relative;
    border: 1px solid rgba(167, 167, 167, 1);
    border-radius: 20px;
    padding: 30px 56px 30px 64px;
    font-size: var(--size-3);
    font-family: var(--font-avenir);
    color: rgba(38, 38, 38, 1);
}
#single-points li::before {
    content: "";
    background-image: url(http://prettytightkitty.com/wp-content/uploads/2024/06/checkmark.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
}
.single #test {
    padding-top: 100px;
    padding-bottom: 100px;
}
#single-step {
    color: var(--color-white);
    position: relative;
    height: 2200px;
}
.single-step_bg {
    background-image: url(http://prettytightkitty.com/wp-content/uploads/2024/06/single-step-1.png);
    background-size: cover;
    background-position: center center;
    position: sticky;
    top: 10px;
    width: 100%;
    height: 800px;
}
.single-step_bg::before {
    content: "";
    background-image: url(images/step-before.png);
    position: absolute;
    top: -14px;
    left: 0;
    width: 100%;
    height: 132px;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    z-index: 4;
    pointer-events: none;
}
.single-step_bg::after {
    content: "";
    background-image: url(images/step-after.png);
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 132px;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    z-index: 4;
    pointer-events: none;
}
#single-step .contain {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 2;
    padding-top: 300px;
}
.single-steps {
    display: flex;
    flex-direction: column;
    gap: 300px;
}
/* Video in product page */
.thumbnail-container {
    text-align: center;
    width: 80px;
}
.thumbnail {
    cursor: pointer;
    width: 300px;
    height: auto;
    transition: transform 0.3s;
    border-radius: 8px;
}
.popup {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}
.popup .video {
    max-width: 90%;
    max-height: 80%;
}
.popup .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

#footer {
    padding-top: calc(var(--sec-pad-md) + 14px);
    background-color: var(--color-black);
}
#footer .row-not {
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-logo img {
    width: 225px;
    margin-bottom: 22px;
}
.footer-logo p {
    font-size: var(--size-5);
    max-width: 390px;
    color: var(--color-white);
    margin-bottom: 37px;
}
.footer-logo .badge-img {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}
.footer-logo .badge-img img {
    width: 100px;
    height: auto;
    margin: 0;
}
.AuthorizeNetSeal {
    width: auto;
}
#footer h5 {
    color: var(--color-white);
    margin-top: 24px;
    margin-bottom: 28px;
    font-weight: var(--w-bold);
}
#footer .menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
#footer .menu a {
    font-family: "Avenir LT Std", serif;
    color: var(--color-white);
    line-height: var(--line-more);
    /* transition: all 0.3s; */
}
#footer .menu a:hover,
#footer .menu a:active {
    color: var(--color-click);
}
.footer-contact .message {
    font-family: "Avenir LT Std", serif;
    color: var(--color-click);
    /* transition: all 0.3s; */
}
.footer-contact .message:hover,
.footer-contact .message:active {
    color: var(--color-white);
}
.footer-contact .contact {
    margin-top: 29px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.footer-contact-item {
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 13px;
    width: 270px;
}
.footer-contact-item .text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-contact-item img {
    width: 16px;
    height: auto;
}
.footer-contact-item span {
    font-family: "Avenir LT Std", serif;
    color: var(--color-white);
}
.footer-contact-item a {
    font-family: "Avenir LT Std", serif;
    color: var(--color-white);
    /* transition: all 0.3s; */
}
.footer-contact-item a[href]:hover {
    color: var(--color-click);
}
.footer-copyright {
    margin-top: 81px;
    text-align: center;
    color: var(--color-white);
    padding-bottom: 10px;
}
.footer-copyright h4 {
    margin-bottom: 12px;
}
.splide__arrow {
    background-color: var(--color-click);
    width: 40px;
    height: 40px;
    opacity: 1;
    transition: all 0.3s;
}
.splide__arrow:hover {
    background-color: var(--color-click-hover);
}
.splide__arrow svg {
    fill: var(--color-white);
}
.footer-link {
    width: 100%;
    background-color: var(--color-black);
    padding-bottom: 45px;
}
.engineered{
    font-family: "Avenir LT Std", serif;
    font-size: var(--size-4);
    color: var(--color-white);
    text-align: center;
}

/* Media Queries */
@media screen and (max-width: 1440px) {
    :root {
        --size-1: 44px;
    }
    .contain {
        max-width: calc(var(--desktop-sm) + (var(--side-padding) * 2));
        padding: 0 var(--side-padding);
    }
    #hero {
        padding: calc(var(--sec-pad-xl) - 10px) 0 calc(50px + var(--sec-pad-lg) * 2) 0;
    }
    .hero-img img {
        bottom: 13%;
        width: 650px;
    }
    #control .flower-2 {
        width: 280px;
    }
    #benefit .black-flower {
        top: 0;
    }
    .wand-text {
        width: 70%;
        transform: translateX(40px);
    }
    .author-bg {
        padding: calc(var(--sec-pad-lg) - 20px) var(--sec-pad-lg);
    }
    .author-text p {
        margin-bottom: 20px;
    }
    .single-step_bg {
        height: 750px;
    }
}
@media screen and (max-width: 1200px) {
    :root {
        --size-1: 36px;
    }
    .contain {
        max-width: calc(var(--tablet-lg) + (var(--side-padding) * 2));
        padding: 0 var(--side-padding);
    }
    .header-nav .menu {
        gap: 16px;
    }
    .header-clicks {
        gap: 8px;
    }
    .header-clicks a:link,
    .header-clicks a:active {
        padding: 8px 18px;
    }
    .hero-img img {
        bottom: 15%;
        width: 550px;
    }
    .hero-clicks,
    .hero-text p,
    .hero-text h1:last-child {
        margin-bottom: 30px;
    }
    #wand .row {
        column-gap: 80px;
    }
    #wand .flower-img {
        top: -130px;
        width: 120px;
    }
    #control .flower-2 {
        top: -2%;
        width: 250px;
    }
    #health-new h2,
    #health h2 {
        font-size: 30px;
    }
    #benefit .black-flower {
        width: 210px;
    }
    #benefit .black-flower-2 {
        top: 18%;
    }
    .choose-card img {
        width: 62px;
    }
    .choose-img {
        width: 30%;
    }
    .author-img img {
        width: 200px;
    }
    .author-bg {
        padding: calc(var(--sec-pad-lg) - 32px) var(--sec-pad-sm);
    }
    #related-blogs .row-not > *,
    #main-blogs .row-not > *,
    #blogs .row-not > * {
        width: 31%;
    }
    .step-left-flower,
    .step-flower {
        width: 250px;
    }
    .faq-flower-l {
        top: 6%;
        width: 227px;
    }
    .faq-flower-r {
        width: 180px;
    }
    .commit-f-left {
        bottom: 6%;
    }
    .footer-logo p {
        max-width: 300px;
    }
}
@media screen and (max-width: 992px) {
    .contain {
        max-width: calc(var(--tablet-sm) + (var(--side-padding) * 2));
        padding: 0 var(--side-padding);
    }
    .row {
        flex-direction: column;
    }
    .row > * {
        width: 100%;
    }
    #advertisement p {
        font-size: 14px;
    }
    .header-nav,
    .header-clicks {
        display: none;
    }
    .header-button {
        display: block;
    }
    #hero {
        padding: calc(var(--sec-pad-xl) - 50px) 0 calc(var(--sec-pad-bg)) 0;
        background-position: top right;
    }
    #hero::after {
        height: 130px;
    }
    .main-product-images {
        order: 2;
        flex-direction: row;
        justify-content: center;
    }
    #single-product .row > *:nth-child(2) {
        order: 1;
    }
    #single-product .row > *:last-child {
        order: 3;
    }
    .hero-img img {
        bottom: -2%;
        width: 600px;
    }
    #badges {
        padding: var(--sec-pad-md) 0 var(--sec-pad-sm) 0;
    }
    #banner {
        padding: calc(var(--sec-pad-xl) - 50px) 0 calc(var(--sec-pad-lg)) 0;
    }
    #banner::after {
        height: 65px;
    }
    .banner-img {
        text-align: center;
    }
    .banner-img img {
        width: 100%;
        max-width: 500px;
    }
    #wand {
        padding: var(--sec-pad-md) 0 var(--sec-pad-md) 0;
    }
    .wand-img {
        text-align: center;
    }
    .wand-img img {
        max-width: 550px;
    }
    .wand-text {
        transform: none;
    }
    #wand .flower-img {
        top: -110px;
    }
    .wand-clicks {
        margin-bottom: 40px;
    }
    #control .flower-2 {
        top: -12%;
        width: 250px;
    }
    #control h2 {
        max-width: 500px;
    }
    .control-details {
        max-width: 800px;
    }
    .health-new-bg,
    .health-bg {
        padding: calc(var(--sec-pad-bg) - 300px) 0 calc(var(--sec-pad-xl) + var(--sec-pad-lg)) 0;
    }
    .choose-img {
        text-align: center;
    }
    .choose-img img {
        max-width: 350px;
    }
    #benefit .row-not {
        gap: 100px;
    }
    #benefit h2 br {
        display: none;
    }
    #quote {
        padding: var(--sec-pad-md) 0;
    }
    #quote .author,
    #quote h2 {
        text-align: center;
    }
    #quote p {
        max-width: 600px;
    }
    #treat {
        padding: var(--sec-pad-md) 0;
    }
    .author-bg {
        background-size: 100% 100%;
        padding: calc(var(--sec-pad-lg) - 32px) var(--sec-pad-sm) calc(var(--sec-pad-lg))
            var(--sec-pad-sm);
    }
    .author-img {
        text-align: center;
        margin-bottom: 40px;
    }
    #main-blogs,
    #blogs {
        padding: var(--sec-pad-md) 0;
    }
    #related-blogs {
        padding-bottom: var(--sec-pad-md);
    }
    #related-blogs .row-not,
    #main-blogs .row-not,
    #blogs .row-not {
        row-gap: 40px;
    }
    #related-blogs .row-not > *,
    #main-blogs .row-not > *,
    #blogs .row-not > * {
        width: 48%;
    }
    #note {
        padding-bottom: var(--sec-pad-md);
    }
    #note .row {
        gap: 20px;
        padding: 26px 28px;
    }
    #commit.wave::after {
        height: 200px;
    }
    .commit-f-right {
        max-width: 450px;
        top: 32%;
    }
    .commit-f-left {
        max-width: 450px;
        bottom: -4%;
    }
    #commit.wave {
        padding: var(--sec-pad-sm) 0 var(--sec-pad-xl) 0;
    }
    #commit-reverse .row {
        row-gap: 30px;
        flex-direction: column-reverse;
    }
    #commit-reverse.new {
        padding: var(--sec-pad-md) 0 var(--sec-pad-lg) 0;
    }
    #commit.wave .row,
    #commit .row {
        row-gap: 30px;
    }
    .commit-reverse-img,
    .commit-img {
        text-align: center;
    }
    .commit-reverse-img img,
    .commit-img img {
        max-width: 500px;
    }
    #health-new::before {
        height: 70px;
    }
    #step {
        padding: calc(var(--sec-pad-xl) * 2 + 100px) 0 calc(var(--sec-pad-xl) * 2 - 100px) 0;
    }
    .step-left-flower,
    .step-flower {
        width: 150px;
    }
    #faq-new {
        padding: calc(var(--sec-pad-lg) + 60px) 0 var(--sec-pad-md) 0;
    }
    #faq-blog,
    #faq {
        padding: var(--sec-pad-md) 0;
    }
    .faq-flower-l {
        top: -8%;
    }
    .faq-flower-r {
        right: 0;
        bottom: -30%;
    }
    .banner-left {
        display: none;
    }
    .banner-right {
        bottom: -80px;
    }
    #banner-three .banner-right,
    #banner-new .banner-right {
        bottom: -40px;
        width: 240px;
    }
    #contact {
        padding: var(--sec-pad-sm) 0 var(--sec-pad-lg) 0;
    }
    .parameter-f-right {
        display: none;
    }
    .parameter-f-left {
        top: 21%;
    }
    #single-product {
        padding: var(--sec-pad-sm) 0 var(--sec-pad-md) 0;
    }
    #single-product .row {
        gap: 40px;
    }
    #single-describe {
        padding-bottom: var(--sec-pad-md);
    }
    .single-image {
        text-align: center;
    }
    #single-product h2 {
        margin-bottom: 24px;
    }
    #single-describe {
        text-align: left;
    }
    .single-text h3 {
        max-width: 450px;
    }
    #single-content {
        padding: var(--sec-pad-md) 0;
    }
    #single-banner {
        height: 500px;
    }
    #single-banner::after {
        height: 64px;
    }
    #main-cart,
    #cart-empty {
        padding: var(--sec-pad-md) 0;
    }
    .single #commit.first p {
        max-width: 100%;
    }
    .single-health_bg .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .hover-button form {
        gap: 10px;
    }
    .hover-button .single_add_to_cart_button {
        padding: 10px 0 !important;
        height: fit-content;
        width: 140px;
    }
    #single-hover .hover-price {
        gap: 14px;
    }
    .hover-button .single-quantity button {
        padding: 9px 16px;
    }
    .hover-text h4 {
        max-width: 145px;
        font-size: 16px;
    }
    #single-step .contain {
        padding-left: 0;
        padding-right: 0;
    }
    .single-step_bg {
        height: 670px;
        top: 50px;
    }
    #single-step .contain {
        padding-top: 260px;
    }
    .single-steps {
        gap: 330px;
    }
    #footer .row-not {
        row-gap: 30px;
    }
    #footer .row-not > *:not(:first-child) {
        width: 36%;
    }
    .footer-logo p {
        max-width: 390px;
    }
}
@media screen and (max-width: 768px) {
    .contain {
        max-width: calc(var(--mobile-lg) + (var(--side-padding) * 2));
        padding: 0 var(--side-padding);
    }
    #advertisement p {
        font-size: 12px;
    }
    #hero {
        overflow: hidden;
    }
    .hero-img img {
        right: -8%;
    }
    .badge-card {
        width: 25%;
    }
    .badge-card:last-child {
        width: 50%;
    }
    #wand .flower-img {
        top: -130px;
    }
    #control {
        padding: var(--sec-pad-sm) 0;
    }
    .control-card {
        width: 50%;
        gap: 10px;
    }
    #control .flower-2 {
        display: none;
    }
    #health-new h2,
    #health h2 {
        font-size: 24px;
        max-width: 100%;
    }
    #benefit .row-not {
        gap: 40px;
    }
    .benefit-img {
        width: 150px;
    }
    .benefit-card {
        margin-top: 36px;
    }
    .parameter-f-left {
        display: none;
    }
    #quote {
        padding: var(--sec-pad-sm) 0;
    }
    #quote h2,
    #quote p {
        margin-bottom: 26px;
    }
    #quote p {
        max-width: 437px;
    }
    #treat {
        padding: var(--sec-pad-sm) 0;
    }
    #treat .row-not {
        flex-direction: column;
        margin-bottom: 30px;
    }
    .treat-card {
        width: 100%;
    }
    #related-blogs .row-not > *,
    #main-blogs .row-not > *,
    #blogs .row-not > * {
        width: 100%;
    }
    .blogs-card img {
        height: 280px;
    }
    #main-blogs .click-6,
    #blogs .click-6 {
        margin-top: 30px;
    }
    #main-blogs,
    #blogs {
        padding: var(--sec-pad-md) 0;
    }
    #newsletter form p {
        gap: 10px;
    }
    #newsletter form .newsletter {
        padding: 16px 20px;
    }
    #newsletter form .subscribe {
        padding: 16px 26px;
    }
    #note {
        padding-bottom: var(--sec-pad-sm);
    }
    #step {
        padding: calc(var(--sec-pad-xl) + 100px) 0 calc(var(--sec-pad-xl) * 2 - 180px) 0;
    }
    .step-points {
        max-width: 230px;
    }
    .step-points li {
        font-size: var(--size-3);
    }
    .step-paragraphs p {
        font-size: var(--size-4);
    }
    .faq-flower-l,
    .faq-flower-r {
        display: none;
    }
    .parameter-li span {
        font-size: calc(var(--size-3) - 2px);
    }
    .custom-checkout-section.custom-checkout-order-review button {
        margin-top: 16px;
    }
    .commit-f-right {
        top: 36%;
    }
    #wc-authnet-cc-form .form-row-wide {
        width: 100%;
    }
    #wc-authnet-cc-form .form-row-first {
        width: 60%;
    }
    #wc-authnet-cc-form .form-row-last {
        width: 35%;
    }
    .hover-image {
        gap: 10px;
    }
    .hover-button {
        gap: 10px;
    }
    .hover-button a {
        font-size: var(--size-6);
    }
    .hover-button a.hover-describe {
        display: none;
    }
    #single-health::before,
    #single-health::after {
        height: 45px;
    }
    .hover-button form {
        flex-direction: column;
    }
    .hover-button .single_add_to_cart_button {
        font-size: 14px;
        width: 100%;
    }
    #footer .row-not {
        row-gap: 30px;
    }
    #footer .row-not > * {
        width: 100% !important;
    }
    .footer-logo p {
        max-width: 100%;
    }
    .single-text .title {
        flex-direction: column-reverse;
        text-align: left;
        align-items: baseline;
        gap: 20px;
    }
}
@media screen and (max-width: 600px) {
    #advertisement p {
        font-size: 11px;
    }
}
@media screen and (max-width: 576px) {
    :root {
        --size-1: 25px;
        --size-1A: 24px;
        --size-2: 22px;
        --size-2A: 20px;
        --size-2B: 18px;
        --size-3: 18px;
        --size-4: 16px;
        --size-5: 14px;
        --size-6: 12px;
        --size-p: 16px;
    }
    h1 {
        line-height: var(--line-less);
    }
    .contain {
        max-width: var(--mobile-sm);
        padding: 0 var(--side-padding);
    }
    .hero-img img {
        bottom: 3%;
        right: -11%;
        right: 40%;
        transform: translateX(50%);
    }
    .header-logo img {
        height: 60px;
    }
    .single-image img {
        height: auto;
        width: 100%;
    }
    #hero {
        padding: calc(var(--sec-pad-xl) - 50px) 0 calc(var(--sec-pad-bg) - 50px) 0;
        background-position: top center;
    }
    #hero::after {
        height: 80px;
    }
    .hero-img img {
        bottom: -4%;
    }
    .hero-text p {
        max-width: 100%;
    }
    #badges {
        padding: var(--sec-pad-sm) 0;
    }
    .banner-text p {
        max-width: 100%;
    }
    .drop-menu {
        padding: 34px 0;
    }
    .badge-card {
        width: 50%;
    }
    #wand .flower-img {
        top: -180px;
    }
    #wand {
        padding: var(--sec-pad-sm) 0;
    }
    #health-new h2,
    #health h2 {
        font-size: 22px;
    }
    .health-new-bg,
    .health-bg {
        padding: calc(var(--sec-pad-bg) - 350px) 0 calc(var(--sec-pad-xl)) 0;
    }
    #treat h2 {
        margin-bottom: 22px;
    }
    .choose-grid {
        grid-template-columns: auto;
        margin-bottom: 30px;
        gap: 20px;
    }
    .choose-card h3 {
        max-width: 100%;
    }
    .benefit-card:first-child {
        padding-top: 0;
    }
    #benefit {
        padding-top: calc(var(--sec-pad-lg) * 1.5);
        padding-bottom: var(--sec-pad-sm);
    }
    #benefit h2 {
        margin-bottom: 20px;
        text-align: left;
    }
    #benefit .black-flower-2,
    #benefit .black-flower {
        display: none;
    }
    #benefit::before {
        height: 125px;
    }
    .benefit-img {
        display: none;
    }
    .benefit-text {
        width: 100%;
    }
    .benefit-card {
        width: 100%;
    }
    .test-bg {
        height: 250px;
    }
    .test-bg span {
        margin-top: 32px;
    }
    #author {
        background-color: #000000;
        padding: var(--sec-pad-sm) 0;
    }
    .author-bg {
        padding: 0;
        background-image: none;
    }
    #newsletter form p {
        flex-direction: column;
        gap: 0;
    }
    #newsletter form .newsletter {
        width: 100%;
        max-width: -webkit-fill-available;
    }
    #commit-reverse,
    #faq,
    #commit {
        padding: var(--sec-pad-sm) 0;
    }
    #commit-reverse.new {
        padding-top: 0;
    }
    .commit-f-right,
    .commit-f-left {
        display: none;
    }
    #commit.wave {
        padding: var(--sec-pad-sm) 0 var(--sec-pad-md) 0;
    }
    #commit.wave::after {
        height: 117px;
    }
    .health-new-bg::after,
    #health-new::before {
        height: 45px;
    }
    .acc-toggle {
        font-size: var(--size-4);
    }
    #step {
        padding: var(--sec-pad-sm) 0;
        background-color: var(--color-black);
    }
    .step-left-flower,
    .step-flower,
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }
    .step-block {
        text-align: center;
    }
    .step-block:not(:last-child) {
        margin-bottom: 32px;
    }
    .step-block h3 {
        font-family: var(--font-avenir);
        font-size: calc(var(--size-2B) + 4px);
        font-weight: var(--w-med);
        color: var(--color-click);
        margin-bottom: 10px;
    }
    .step-block span {
        font-family: var(--font-libre);
        display: inline-block;
        font-weight: var(--w-bold);
        color: var(--color-text);
        margin-right: 18px;
    }
    .step-block p {
        position: relative;
        font-size: var(--size-3);
    }
    .blogs-card img,
    #note .row {
        border-radius: 12px;
    }
    #quote p {
        max-width: 380px;
    }
    .splide__arrow {
        width: 30px;
        height: 30px;
        top: -11%;
    }
    #banner-three,
    #banner-new {
        padding: var(--sec-pad-xl) 0 var(--sec-pad-lg) 0;
    }
    #banner-three h1,
    #banner-new h1 {
        max-width: 310px;
        margin-left: auto;
        margin-right: auto;
    }
    .banner-right {
        display: none;
    }
    #banner-three::after {
        height: 86px;
    }
    #banner-new::after {
        height: 40px;
    }
    #structure {
        padding: var(--sec-pad-sm) 0 var(--sec-pad-md) 0;
    }
    #structure .title {
        margin-bottom: 40px;
    }
    #structure .product {
        margin-bottom: 40px;
    }
    #structure .remote {
        margin-bottom: 80px;
    }
    #structure:after {
        height: 40px;
    }
    #parameter {
        padding: var(--sec-pad-sm) 0;
    }
    #parameter .content {
        margin-bottom: 60px;
    }
    .parameter-step:not(:last-child) {
        margin-bottom: 60px;
    }
    .parameter-step h3 {
        margin-bottom: 30px;
    }
    .parameter-li {
        flex-direction: column;
        gap: 16px;
        padding: 20px 16px;
        border-radius: 16px;
    }
    .parameter-li img {
        width: 60px;
        height: 60px;
        align-self: start;
    }
    #faq-new {
        padding: var(--sec-pad-lg) 0 var(--sec-pad-sm) 0;
    }
    #faq-new::before {
        height: 40px;
    }
    #contact {
        padding: 0 0 var(--sec-pad-sm) 0;
    }
    #contact h2 {
        margin-bottom: 30px;
    }
    #single-product {
        padding: 0 0 var(--sec-pad-sm) 0;
    }
    #single-product .row {
        gap: 30px;
    }
    #single-describe {
        padding-bottom: var(--sec-pad-sm);
    }
    .single-text .stock,
    .single-text .title {
        gap: 10px;
    }
    #single-banner {
        height: 400px;
    }
    #single-banner::after {
        height: 40px;
    }
    #single-content {
        padding: var(--sec-pad-sm) 0;
    }
    #related-blogs {
        padding-bottom: var(--sec-pad-sm);
    }
    #main-cart,
    #cart-empty {
        padding: var(--sec-pad-sm) 0;
    }
    .woocommerce-shipping-fields__field-wrapper input,
    .woocommerce-additional-fields__field-wrapper textarea,
    .checkout_coupon input,
    .woocommerce-billing-fields__field-wrapper input {
        font-size: 14px !important;
    }
    .woocommerce-info {
        font-size: 15px;
    }
    .woocommerce-shipping-fields__field-wrapper > *:nth-child(1),
    .woocommerce-shipping-fields__field-wrapper > *:nth-child(2),
    .woocommerce-shipping-fields__field-wrapper > *:nth-child(3),
    .woocommerce-shipping-fields__field-wrapper > *:nth-child(4),
    .woocommerce-shipping-fields__field-wrapper > *:nth-child(7),
    .woocommerce-shipping-fields__field-wrapper > *:nth-child(8),
    .woocommerce-shipping-fields__field-wrapper > *:nth-child(9),
    .woocommerce-shipping-fields__field-wrapper > *:nth-child(10),
    .woocommerce-shipping-fields__field-wrapper > *:nth-child(11),
    .woocommerce-billing-fields__field-wrapper > *:nth-child(1),
    .woocommerce-billing-fields__field-wrapper > *:nth-child(2),
    .woocommerce-billing-fields__field-wrapper > *:nth-child(3),
    .woocommerce-billing-fields__field-wrapper > *:nth-child(4),
    .woocommerce-billing-fields__field-wrapper > *:nth-child(7),
    .woocommerce-billing-fields__field-wrapper > *:nth-child(8),
    .woocommerce-billing-fields__field-wrapper > *:nth-child(9),
    .woocommerce-billing-fields__field-wrapper > *:nth-child(10),
    .woocommerce-billing-fields__field-wrapper > *:nth-child(11) {
        width: 100% !important;
    }
    .checkout_coupon.woocommerce-form-coupon > * {
        width: 100% !important;
    }
    .tooltip {
        top: 13px;
        right: -55px;
    }
    .hover-button.desktop {
        display: none;
    }
    .hover-button.mobile {
        display: flex;
    }
    .hover-button a {
        padding: 8px 18px;
        margin-top: 6px;
    }
    .hover-image img.hover-product-image {
        max-width: 90px;
    }
    #single-health h2 {
        font-size: 22px;
    }
    #single-health p {
        font-size: 16px;
    }
    .single #step {
        margin-top: 70px;
    }
    #single-points li {
        padding: 10px 18px 10px 36px;
        font-size: 16px;
        border-radius: 10px;
    }
    #single-points li::before {
        left: 8px;
    }
    .single #test img {
        width: 120px;
        margin-bottom: -56px;
    }
    #single-step {
        padding: 0;
        height: 1715px;
    }
    #single-step::after,
    #single-step::before {
        height: 40px;
    }
    .single-health_bg .container {
        padding: 250px 0;
    }
    .single-health_bg {
        background-attachment: scroll;
    }
    .single #commit.first {
        padding-top: 100px;
    }
    #single-health p {
        padding: 0 20px;
    }
    .hover-button {
        flex-direction: column;
        align-items: end;
    }
    .hover-text {
        display: none;
    }
    .hover-button form {
        flex-direction: row;
    }
    .hover-button .single_add_to_cart_button {
        width: 120px;
        font-weight: normal !important;
    }
    .hover-button .single_add_to_cart_button img {
        margin-right: 4px;
        transform: translateY(-1px);
    }
    .single-quantity input {
        width: 20px !important;
    }
    .single-step_bg {
        height: 360px;
        top: 180px;
    }
    .single-step_bg::after,
    .single-step_bg::before {
        height: 40px;
    }
    .single-step {
        padding: 0 20px;
    }
    #single-step .contain {
        padding-top: 120px;
    }
    .single-steps {
        gap: 307px;
    }
}
@media screen and (max-width: 480px) {
    #single-step {
        height: 1760px;
    }
}
@media screen and (max-width: 425px) {
    #hero {
        padding: calc(var(--sec-pad-xl) - 50px) 0 calc(var(--sec-pad-bg) - 115px) 0;
    }
    .hero-img img {
        width: 550px;
        right: 32%;
    }
    .main-product-images {
        gap: 10px;
    }
    .control-card {
        width: 100%;
    }
    #health-new h2,
    #health h2 {
        font-size: 20px;
    }
    #note .row {
        padding: 18px 12px;
    }
    .acc-toggle {
        max-width: 90%;
    }
    .acc-toggle::after {
        right: -30px;
    }
    .single-cart {
        flex-direction: column;
        align-items: start;
    }
    #main-cart .coupon {
        gap: 1px;
    }
    #main-cart .coupon button {
        font-size: 12px;
    }
    .woocommerce-info {
        padding-left: 3em;
    }
    .payment_method_authnet label[for="payment_method_authnet"] img {
        width: 30px;
    }
    #wc-authnet-cc-form p {
        margin: 0 !important;
    }
    #wc-authnet-cc-form .form-row-first {
        width: 100%;
    }
    #wc-authnet-cc-form .form-row-last {
        width: 100%;
    }
    .hover-text h4 {
        font-size: var(--size-5);
    }
    #single-health::before,
    #single-health::after {
        height: 30px;
    }
    #single-points li {
        font-size: 14px;
    }
    .hover-button .single_add_to_cart_button {
        width: 100px;
    }
    .hover-button .single-quantity button {
        padding: 9px 10px;
    }
    #single-step {
        height: 1650px;
    }
    .single-steps {
        gap: 265px;
    }
    #single-step .contain {
        padding-top: 90px;
    }
    .footer-logo .badge-img {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media screen and (max-width: 384px) {
    #single-step {
        height: 1760px;
    }
    .splide__arrow {
        top: -8.5%;
    }
}
