/** Shopify CDN: Minification failed

Line 29:0 All "@import" rules must come first

**/
/* Custom Css */
:root {
    --primary-clr: #809671;
    --secondary-clr: #d2ab80;
    --text-clr: #333333;
    --btn-hover: #8b8a87;
    --bg-clr1: #e5e0d8;
    --bg-clr2: #F9F6F2;
    --white-clr: #fff;
    --dark-clr: #000;
    --fw-light: 400;
    --fw-regular: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-para: "Poppins", sans-serif;
    --fw-heading: "Optima";
    --pad-top: 100px;
    --pad-bottom: 100px;
    --pad-t-0: 0px;
    --pad-b-0: 0px;
    --radius: 15px;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
    font-family: "Optima";
    src: url("/cdn/shop/files/Optima-Medium.eot");
    src: url("/cdn/shop/files/Optima-Medium.eot?#iefix") format("embedded-opentype"),
        url("/cdn/shop/files/Optima-Medium.woff2") format("woff2"),
        url("/cdn/shop/files/Optima-Medium.woff") format("woff"),
        url("/cdn/shop/files/Optima-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Optima";
    src: url("/cdn/shop/files/Optima.eot");
    src: url("/cdn/shop/files/Optima.eot?#iefix") format("embedded-opentype"),
        url("/cdn/shop/files/Optima.woff2") format("woff2"),
        url("/cdn/shop/files/Optima.woff") format("woff"),
        url("/cdn/shop/files/Optima.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Optima";
    src: url("/cdn/shop/files/Optima-Bold.eot");
    src: url("/cdn/shop/files/Optima-Bold.eot?#iefix") format("embedded-opentype"),
        url("/cdn/shop/files/Optima-Bold.woff2") format("woff2"),
        url("/cdn/shop/files/Optima-Bold.woff") format("woff"),
        url("/cdn/shop/files/Optima-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: var(--dark-clr);
    font-family: var(--fw-para) !important;
}

.container,
.page-width,
.shopify-policy__container {
    max-width: 1550px;
    margin: 0 auto;
    padding-left: 25px !important;
    padding-right: 25px !important;
}

.cs-img-zoom {
    overflow: hidden;
    border-radius: var(--radius);
    display: inline-flex;
}

.cs-img-zoom img {
    transition: all 1.3s ease-in-out;
}

.cs-img-zoom:hover img {
    transform: scale(1.07);
}

a {
    text-decoration: none;
    outline: none !important;
    box-shadow: unset;
    transition: all 0.4s ease-in-out;
}

a:hover {
    text-decoration: none;
}

a:focus {
    outline: none !important;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    font-family: var(--fw-para) !important;
    letter-spacing: 0px !important;
    font-weight: 400;
}

span {
    margin: 0;
    font-family: var(--fw-para);
    letter-spacing: 0px !important;
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    line-height: 1.2 !important;
    font-family: var(--fw-heading) !important;
    font-weight: 400;
    letter-spacing: 0 !important;
}

button,
input,
select,
textarea {
    outline: none !important;
    box-shadow: unset !important;
    font-family: var(--fw-para) !important;
}

.btn-cstm {
    font-size: 16px;
    line-height: 1.4;
    font-family: var(--fw-para);
    background: var(--primary-clr);
    color: var(--white-clr);
    border: 1px solid var(--primary-clr);
    min-width: 150px;
    border-radius: 100px;
    padding: 14px 20px;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    text-align: center;
    letter-spacing: 0px;
    outline: none !important;
}

.btn-cstm.btn-white-bg {
    background: var(--white-clr);
    color: var(--dark-clr);
}

.btn-cstm.btn-white-border {
    border-color: var(--white-clr);
    background: transparent;
}

.btn-black-border {
    border-color: #000;
    background: transparent;
    color: #000;
}

.btn-cstm:hover {
    background: var(--dark-clr);
    border-color: var(--dark-clr);
    color: var(--white-clr);
}

.sec-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.p-tb {
    padding-top: 100px;
    padding-bottom: 100px;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.main-heading {
    font-size: 60px;
}

.sec-heading {
    font-size: 36px;
}

.sec-subheading {
    font-size: 32px;
}

.font-28 {
    font-size: 28px;
}

.font-24 {
    font-size: 24px;
}

.sec-smallheading {
    font-size: 14px;
    margin-top: 5px;
    text-transform: uppercase;
}

.sec-para {
    font-size: 20px;
}

.sec-para-small {
    font-size: 16px;
}

.cs-text-center {
    text-align: center;
}

/* Logo Slider Css */
.logos-slider {
    width: 100%;
    overflow: hidden;
}

.logos-slider .sec-heading {
    margin: 0 0 50px;
}

.logos-slider .swiper-slide img {
    transform: none;
}

.logos-slider .swiper-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.logos-slider .swiper-wrapper {
    transition-timing-function: linear !important;
    position: relative;
}

.logos-slider .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    position: relative;
    overflow: hidden;
    padding: 0 10px;
}

.logos-slider-card {
    padding: 44px 50px;
    border-radius: 80px;
    background: var(--bg-clr2);
    min-width: 300px;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.logos-slider-card img {
    width: 40px;
    aspect-ratio: 1/1;
}

/* Face Cream Benefits css */
.face-crm-benefits h2.sec-heading {
    margin: 0 0 30px;
}

.face-crmb-wrap {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
}

.face-crmb-image {
    max-width: 540px;
    margin: 0 auto;
}

.face-crmb-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1.2;
    border-radius: var(--radius);
}

/* .face-crmb-steps {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
  } */

.face-crmb-step {
    border-radius: 500px;
    background: var(--bg-clr2);
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0px 0 0 30px;
    flex-direction: row-reverse;
    border: 1px solid var(--bg-clr2);
}

.face-crmb-step:nth-child(even) {
    flex-direction: row;
    padding: 0 30px 0 0;
}

.face-crmb-step img {
    height: 57px;
    aspect-ratio: 1/1;
}

.face-crmb-step:nth-child(1) {
    left: 13%;
    top: 9%;
}

.face-crmb-step:nth-child(2) {
    right: 15%;
    top: 19%;
}

.face-crmb-step:nth-child(3) {
    left: 0%;
    top: 40%;
}

.face-crmb-step:nth-child(4) {
    right: 7%;
    top: 47%;
}

.face-crmb-step:nth-child(5) {
    left: 14%;
    top: 69%;
}

.face-crmb-step:nth-child(6) {
    right: 12%;
    top: 76%;
}

/* Basic Info css */
.basic-info-wrap {
    display: grid;
    gap: 80px;
    grid-template-columns: repeat(3, 1fr);
}

.basic-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.basic-info-card img {
    max-width: 125px;
    width: 100%;
    flex: 0 0 auto;
    aspect-ratio: 1/1;
}

/* compare now css */

.compare-now-sec {
    position: relative;
}

.compare-now-sec:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 600px;
    background: var(--primary-clr);
    z-index: -1;
}

.compare-now-sec .sec-heading {
    margin-bottom: 40px;
    color: var(--white-clr);
}

.compare-wrap {
    padding: 30px 85px 0;
    background: var(--white-clr);
    border-radius: var(--radius);
}

.cw-t-img img {
    width: 40px;
    aspect-ratio: 1/1;
}

.compare-product-info {
    text-align: center;
}

.compare-product-info img {
    height: 250px;
    object-fit: contain;
    border-radius: var(--radius);
}

.compare-product-info .sec-para {
    color: var(--dark-clr);
    max-width: 200px;
    margin: 5px auto 15px;
    line-height: 1.5 !important;
}

.compare-product-info .sec-para-small {
    font-weight: 600;
    color: var(--primary-clr);
}

.compare-wrap table {
    width: 100%;
}

.compare-wrap table td,
.compare-wrap table th {
    padding: 40px 0px;
    text-align: center;
    color: rgba(0, 0, 0, 0.7);
}

.compare-wrap table tbody td,
.compare-wrap table tbody th {
    border-top: 1px solid #e8e8e8;
}

.cw-t-img {
    display: flex;
    justify-content: center;
}

.compare-wrap table th {
    text-align: start;
    font-size: 20px;
    font-weight: 500;
    color: var(--dark-clr);
}

.compare-wrap table tbody tr:last-child th,
.compare-wrap table tbody tr:last-child td {
    border-bottom: 1px solid #e8e8e8;
}

/* Face Cream Work Css */
.sMain-container {
    display: flex;
}

.smain-content ul {
    list-style: none;
}

.smain-content ul {
    list-style: none;
}

.smain-content * {
    color: var(--white-clr);
}

.smain-content ul li {
    display: flex;
    gap: 25px;
    margin-bottom: 100px;
    align-items: center;
    position: relative;
}

.smain-content ul li:after {
    content: "";
    position: absolute;
    left: 44px;
    bottom: -65%;
    width: 1px;
    height: 65px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            #aac29a 50%,
            rgba(255, 255, 255, 0) 100%);
    border-radius: 0;
}

.smain-content ul li:last-child:after {
    display: none;
}

.simpleContent {
    width: calc(100% - 90px);
    max-width: 480px;
}

.smain-content {
    background: #809671;
}

.mainsMainCOntent {
    overflow: hidden;
}

.smain-content ul li svg,
.smain-content ul li img {
    height: 90px;
    width: 90px;
    flex: 0 0 auto;
}

.smain-content>h2 {
    margin: 0 0 50px 0;
}

.smain-content {
    padding: 100px 50px;
    padding-left: 7vw;
}

.sMain-container>* {
    width: 50%;
}

.smain-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.smain-content h2 {
    padding-bottom: 60px;
    background: #809671;
    position: relative;
    z-index: 10;
}

.smain-content ul li {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.smain-content ul:hover li {
    opacity: 0.5;
}

.smain-content ul li:hover {
    opacity: 1;
}

.simpleContent h4.font-28 {
    margin-bottom: 15px;
}

/* product Bundle css */

.pb-option-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.pb-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #d5d5d5;
    border-radius: 10px;
    padding: 24px 22px;
    background-color: var(--white-clr);
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
    margin-bottom: 25px;
    min-height: 103px;
}

.pb-option:last-child {
    margin-bottom: 0px;
}

.Subscription-switch .pb-option:before {
    display: none;
}

.pb-option input[type="radio"] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin: 0;
    border: 1px solid #d5d5d5;
    opacity: 0.5;
    opacity: 0;
    visibility: hidden;
}

.pb-option:before {
    content: "";
    position: absolute;
    top: 49%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #d5d5d5;
    background: transparent;
}

.pb-option:has(input[type="radio"]:checked):before {
    background: var(--primary-clr);
    border: 1px solid var(--primary-clr);
}

.pb-option .label-price-heading {
    flex-grow: 1;
    padding: 0 15px 0px 35px;
}

.pb-content {
    flex-grow: 1;
    padding: 0 15px 0px 35px;
    font-family: var(--fw-heading);
    line-height: 1.2;
}

.pb-option .label-price-heading .pb-content {
    flex-grow: 1;
    padding: 0;
}

.pb-price,
.subs-pb-price {
    text-align: right;
    font-size: 16px;
    color: var(--primary-clr);
    font-weight: 600;
    font-family: var(--fw-para) !important;
}

.label-price-heading .pb-price {
    text-align: left;
    font-size: 14px;
    margin-top: 7px;
    line-height: 1.2;
}

.pb-strike {
    text-decoration: line-through;
    color: var(--dark-clr);
    margin-right: 0.5rem;
    font-weight: 500;
}

.pb-per-bottle {
    font-size: 12px;
    color: var(--dark-clr);
    font-weight: 400;
    display: block;
    padding-top: 2px;
}

.pb-option:has(input[type="radio"]:checked) {
    border: 1px solid var(--primary-clr);
}

.pb-option input[type="radio"]:checked~.pb-content {
    color: var(--primary-clr);
    opacity: 0.8;
}

.product-bundle-sec {
    background: linear-gradient(0deg, #fff 0%, #f9f6f2 45.67%, #f9f6f2 100%);
}

.pro-b-wrap {
    display: flex;
    gap: 30px;
}

.pro-b-wrap>div {
    width: calc(50% - 15px);
}

.pro-b-image {
    padding: 20px;
    background: var(--white-clr);
    border-radius: var(--radius);
    position: sticky;
    aspect-ratio: 1/0.9;
    height: 100%;
    top: 10px;
}

.pro-b-save-price {
    position: absolute;
    right: 11.8vw;
    top: 9.5vw;
    height: 82px;
    aspect-ratio: 1/1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 5px;
    text-align: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.pro-b-save-price p {
    font-size: 14px;
    line-height: 1.4 !important;
    color: var(--white-clr);
}

.pro-b-save-price p span {
    font-size: 24px;
    line-height: 1.1 !important;
    font-weight: 600;
}

.pro-b-content {
    padding: 50px;
    background: var(--white-clr);
    border-radius: var(--radius);
    font-family: var(--fw-para) !important;
}

.pro-b-content .sec-para-small {
    margin: 8px 0 25px;
    color: rgba(0, 0, 0, 0.7);
}

.pb-btn .btn-cstm {
    width: 100%;
}

.pro-b-image-box {
    width: 100%;
    height: 100%;
    display: flex;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.cw-t-btn .btn-cstm {
    cursor: pointer;
}

/* home hero css */
.hero-banner-sec {
    position: relative;
    padding-top: 55px;
    padding-bottom: 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-banner-sec .sec-subheading,
.hero-banner-sec .h1 {
    color: 000;
}

.hero-banner-sec .h1 {
    font-size: 80px;
    font-weight: bold;
    letter-spacing: -1px;
    line-height: 1 !important;
    margin-top: 5px;
}

.hero-btn {
    display: flex;
    gap: 15px;
    margin: 20px 0 50px;
}

.hero-sub-icons {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

.hero-sub-sec {
    max-width: 560px;
    padding: 48px 20px 48px 46px;
    background: var(--white-clr);
    border-radius: var(--radius);
}

.hero-sub-sec h4 {
    margin-bottom: 30px;
}

.hero-sub-icons li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-sub-icons li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.non-greasy-finish {
    height: 140px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    text-align: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-direction: column;
    position: absolute;
    right: 19%;
    bottom: 14%;
    display: none;
}

.non-greasy-finish img {
    width: 35px;
    margin-bottom: 5px;
}

.non-greasy-finish .sec-para {
    font-size: 18px;
    color: var(--white-clr);
}

.logos-slider .swiper-notification {
    display: none;
}

.home-gallery .page-width {
    padding: 0 !important;
    width: 100%;
    max-width: 100%;
}

.home-gallery .page-width .multicolumn-list {
    gap: 0 !important;
    width: 100% !important;
    display: flex;
    margin: 0 !important;
}

.home-gallery .page-width .multicolumn-list .multicolumn-list__item {
    width: 25%;
    max-width: 25%;
}

.home-gallery .page-width .multicolumn-list .multicolumn-list__item .multicolumn-card__image-wrapper {
    margin: 0;
    padding: 0;
}

.home-gallery .page-width .multicolumn-list .multicolumn-list__item .media {
    padding: 0 !important;
    aspect-ratio: 1/1.24;
    width: 100%;
}

.home-gallery .page-width .multicolumn-list .multicolumn-list__item .media .multicolumn-card__image {
    width: 100%;
    object-fit: cover;
}

footer .footer__content-top {
    padding-top: 100px;
    padding-bottom: 100px;
}

footer.footer {
    background: var(--bg-clr2);
    border: unset;
    padding: 0;
}

footer .footer__content-bottom {
    background: var(--primary-clr);
    padding: 12px 25px;
    border: unset;
    opacity: 1 !important;
    transform: unset !important;
}

footer .footer__content-bottom .footer__copyright.caption {
    margin: 0;
    color: var(--white-clr);
}

footer .footer__content-top .footer__blocks-wrapper {
    gap: 0;
}

footer .footer__content-top .footer__blocks-wrapper .footer-block:first-child {
    width: 30%;
    max-width: 30%;
    display: flex;
    align-items: center;
}

footer .footer__content-top .footer__blocks-wrapper .footer-block:last-child {
    width: 31%;
    max-width: 31%;
}

footer .footer__content-top .footer__blocks-wrapper .footer-block:nth-child(2),
footer .footer__content-top .footer__blocks-wrapper .footer-block:nth-child(3) {
    width: 18%;
    max-width: 18%;
    padding-right: 30px;
}

footer .footer__content-top .footer__blocks-wrapper .footer-block:first-child .footer-block__details-content {
    padding-right: 40px;
}

footer .footer__content-top .footer__blocks-wrapper .footer-block__details-content .footer-block__image-wrapper {
    width: 100%;
    max-width: 100% !important;
    text-align: left;
}

footer .footer__content-top .footer__blocks-wrapper .footer-block__details-content .footer-block__image-wrapper .list-social {
    justify-content: flex-start;
    gap: 10px;
    margin-top: 25px;
}

footer .footer__content-top .footer__blocks-wrapper .footer-block__details-content .footer-block__image-wrapper .image-text {
    margin: 25px 0 30px;
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    opacity: 0.7;
    font-weight: 400;
    font-family: var(--fw-para);
}

footer .footer__content-top .footer__blocks-wrapper .footer-block .newsletter-form {
    max-width: 100%;
    margin: 22px 0 0;
    display: none;
}

footer .footer__content-top .footer__blocks-wrapper .footer-block__details-content .footer-block__image-wrapper img {
    max-width: 375px;
}

footer .footer__content-top .footer__blocks-wrapper .footer-block__details-content .footer-block__image-wrapper .list-social li .link {
    background: rgba(128, 150, 113, 0.25);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
}

footer .footer__content-top .newsletter-form__button .icon {
    width: 2rem;
    margin-right: 7px;
}

footer .footer__content-top .newsletter-form__button .icon path {
    fill: var(--primary-clr);
}

footer .footer__content-top .footer__blocks-wrapper .footer-block__details-content .footer-block__image-wrapper .list-social li .link .icon {
    height: 20px;
    width: 20px;
}

footer .footer__content-top .footer__blocks-wrapper .footer-block__details-content .footer-block__image-wrapper .list-social li .link .icon path {
    fill: var(--primary-clr);
}

footer .footer__content-top .footer__blocks-wrapper .footer-block:nth-child(2) .footer-block-card,
footer .footer__content-top .footer__blocks-wrapper .footer-block:nth-child(3) .footer-block-card,
footer .footer__content-top .footer__blocks-wrapper .footer-block:nth-child(4) .footer-block-card {
    background: #fff;
    padding: 33px 30px;
    border-radius: var(--radius);
    height: 100%;
}

/*footer .footer__content-top .footer__blocks-wrapper .footer-block:nth-child(4) .footer-block-card {
      padding-left: 50px;
  }*/

footer .footer__content-top .footer__blocks-wrapper .footer-block:nth-child(2) .footer-block-card .footer-block__heading,
footer .footer__content-top .footer__blocks-wrapper .footer-block:nth-child(3) .footer-block-card .footer-block__heading,
footer .footer__content-top .footer__blocks-wrapper .footer-block:nth-child(4) .footer-block-card .footer-block__heading {
    font-size: 20px;
    color: #000;
    margin-bottom: 22px;
}

footer .footer__content-top .footer__blocks-wrapper .footer-block:nth-child(3) .footer-block-card .sub-text-news p {
    font-family: var(--fw-para) !important;
    font-size: 16px;
    color: #000;
    max-width: 95%;
    line-height: 1.6;
    opacity: 0.7;
}

footer .footer__content-top .footer__blocks-wrapper .footer-block .footer-block-card ul.footer-block__details-content li {
    width: 100%;
    margin: 0 0 20px;
    display: flex;
}

footer .footer__content-top .footer__blocks-wrapper .footer-block .footer-block-card ul.footer-block__details-content li:last-child {
    margin: 0 0 0px;
}

footer .footer__content-top .footer__blocks-wrapper .footer-block .footer-block-card ul.footer-block__details-content li a.link {
    width: 100%;
    padding: 0;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 14px !important;
    line-height: 1.5 !important;
    transition: all 0.4s ease-in-out;
    letter-spacing: 0;
}

header .header__menu-item span {
    transition: all 0.4s ease-in-out;
    letter-spacing: 0;
    font-weight: 500 !important;
}

footer .footer__content-top .footer__blocks-wrapper .footer-block .footer-block-card ul.footer-block__details-content li a.link.list-menu__item--active,
footer .footer__content-top .footer__blocks-wrapper .footer-block .footer-block-card ul.footer-block__details-content li a.link:hover,
header .header__menu-item span:hover {
    color: var(--primary-clr);
}

footer .footer__content-top .footer__blocks-wrapper .footer-block .newsletter-form__field-wrapper .field__input {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.05);
    font-size: 16px;
    color: #000;
    line-height: 1.5;
    padding: 16px 50px 16px 20px !important;
    min-height: 62px;
    width: 100%;
    font-family: var(--fw-para) !important;
}

footer .footer__content-top .footer__blocks-wrapper .footer-block .newsletter-form__field-wrapper .field__input::placeholder {
    color: #000;
    opacity: 0.3;
}

footer .footer__content-top .footer__blocks-wrapper .footer-block .newsletter-form__field-wrapper .field .field__label {
    display: none;
}

footer .footer__content-top .footer__blocks-wrapper .footer-block .newsletter-form__field-wrapper .field::before {
    display: none;
}

footer .footer__content-top .footer__blocks-wrapper .footer-block .newsletter-form__field-wrapper .field::after {
    display: none;
}

footer .footer__content-top .footer__blocks-wrapper .footer-block .newsletter-form__field-wrapper {
    max-width: 100%;
}

.klaviyo-form.klaviyo-form.klaviyo-form .needsclick.kl-private-reset-css-Xuajs1 h1 {
    display: none;
}

footer input.needsclick {
    border-radius: 10px !important;
    background: rgba(0, 0, 0, 0.05) !important;
    font-size: 16px !important;
    color: #000 !important;
    line-height: 1.5 !important;
    padding: 16px 50px 16px 20px !important;
    min-height: 62px !important;
    width: 100% !important;
    font-family: var(--fw-para) !important;
    border: none !important;
}

footer input.needsclick::placeholder {
    font-family: var(--fw-para) !important;
    color: #000 !important;
    opacity: 0.3;
}

form.needsclick.klaviyo-form.klaviyo-form-version-cid_1.go3279073480.kl-private-reset-css-Xuajs1 {
    padding: 0 !important;
}

.klaviyo-form-Squ3wh.klaviyo-form.form-version-cid-1 {
    margin-top: -40px;
    margin-left: -4px;
}

button.needsclick.go300628013.kl-private-reset-css-Xuajs1 {
    position: absolute;
    min-width: 40px;
    right: 2px;
    top: 16px;
    opacity: 0;
}

[data-testid="form-component"].needsclick:has(button.needsclick.go300628013.kl-private-reset-css-Xuajs1):before {
    content: "";
    position: absolute;
    width: 26px;
    background-image: url(/cdn/shop/files/Arrow_1.svg?v=1745391609);
    height: 18px;
    background-repeat: no-repeat;
    right: 26px;
    top: 34px;
    background-size: contain;
}

[data-testid="form-component"].needsclick:has(button.needsclick.go300628013.kl-private-reset-css-Xuajs1) {
    width: 0 !important;
    padding: 0 !important;
}

/* Collection page bundle custom pricing css */
body.collection .subs-price-re-price-main .main-label-price {
    gap: 0 !important;
}

body.collection .subs-price-re-price-main .main-label-price span.money {
    font-size: 18px !important;
}

body.collection .subs-price-re-price-main .main-label-price .seal_subs_price_main {
    font-size: 15px !important;
}

/* More Question css */
.more-que-sec .rich-text .rich-text__blocks h2 {
    font-size: 28px;
    font-weight: 400;
}

.more-que-sec .rich-text .rich-text__blocks .rich-text__text {
    margin-top: 15px;
}

.more-que-sec .rich-text .rich-text__blocks .rich-text__text p {
    color: #000;
    opacity: 0.7;
}

.more-que-sec .rich-text .rich-text__blocks .rich-text__text p a {
    font-weight: 600;
    color: var(--primary-clr);
}

/* Faq sec css */

.faq-sec-home-page h2.sec-heading {
    margin-bottom: 10px;
}

.faq-sec-home-page p.sec-para-small {
    margin-bottom: 40px;
}

.faq-sec-home-page .collapsible-content-wrapper-narrow {
    max-width: 1245px;
    padding: 0;
}

.faq-sec-home-page .collapsible-content-wrapper-narrow {
    max-width: 1245px;
    padding: 0;
}

.faq-sec-home-page .accordion {
    border: unset !important;
    padding: 0;
    background: transparent;
}

.faq-sec-home-page .accordion details {
    border: 1px solid rgba(128, 150, 113, 0.15) !important;
    border-radius: var(--radius);
    padding: 30px 40px;
}

.faq-sec-home-page .accordion details[open] {
    background: var(--bg-clr2);
    border-color: var(--bg-clr2) !important;
}

.faq-sec-home-page .grid__item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-sec-home-page .accordion details summary {
    padding: 0;
    background: transparent;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.faq-sec-home-page .accordion details summary .accordion__title {
    text-decoration: none !important;
    font-size: 20px;
}

.faq-sec-home-page .accordion details .accordion__content {
    margin: 0;
    padding: 0;
    padding-top: 12px;
}

.faq-sec-home-page .accordion details .accordion__content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7 !important;
}

.faq-sec-home-page .accordion details summary .icon-caret {
    width: 34px;
    height: 34px;
    background: var(--primary-clr);
    border-radius: 50%;
    position: relative;
    top: unset;
    right: unset;
}

.faq-sec-home-page .accordion details summary .icon-caret:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 13px;
    height: 2px;
    background: #fff;
    display: block;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease-in-out;
}

.faq-sec-home-page .accordion details summary .icon-caret:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    height: 13px;
    background: #fff;
    display: block;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease-in-out;
}

.faq-sec-home-page .accordion details[open] summary .icon-caret:after {
    opacity: 0;
    visibility: hidden;
}

.faq-sec-home-page {
    padding-left: 25px;
    padding-right: 25px;
}

header h1.header__heading,
body header .header__heading-link,
header .header__icons {
    width: 25% !important;
    max-width: 25% !important;
    flex: 0 0 auto;
}

.header {
    padding: 20px 25px 20px 25px !important;
}

header h1.header__heading a.header__heading-link.link.link--text.focus-inset {
    width: 100% !important;
    max-width: 100% !important;
}

.hero-sub-icons .sec-para,
.basic-info-card .font-28,
.logos-slider-card .font-28,
.compare-wrap table th,
.face-crmb-step .sec-para {
    font-family: var(--fw-heading) !important;
}

.copyright__content {
    font-size: 1.2rem;
    letter-spacing: 0;
}

.pb-option-badges .sec-para-small {
    margin: 0 !important;
    line-height: 1.3;
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
}

.pb-option-badges {
    position: absolute;
    left: 20px;
    top: -12.5px;
    padding: 5px 14px;
    background: var(--primary-clr);
    border-radius: 50px;
}

.pb-option-group .pb-option:nth-child(3) .pb-option-badges {
    background: var(--secondary-clr);
}

/* Review css */
.reviews-sec {
    background: linear-gradient(180deg, #fff 0%, #f9f6f2 45.67%, #f9f6f2 100%);
}

.reviews-list-item {
    background: var(--white-clr);
    border-radius: var(--radius);
    padding: 36px 36px;
    border: 1px solid var(--white-clr);
    transition: all 0.4s ease-in-out;
}

.reviews-list-item:hover,
.reviews-list-item:focus {
    border: 1px solid var(--primary-clr);
}

.reviews-list-item+.reviews-list-item {
    margin-top: 30px;
}

.reviews-list-item .sec-para-small {
    color: #000;
    opacity: 0.7;
    padding: 15px 0 20px;
}

.reviews-sec .sec-heading {
    margin-bottom: 50px;
}

.reviews-icons {
    display: flex;
    gap: 4px;
}

.reviews-icons svg {
    width: 18px;
    height: 18px;
}

.reviews-name .sec-para {
    color: var(--primary-clr);
    line-height: 1.3;
}

.reviews-btn {
    margin-top: 50px;
}

.reviews-wrap {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

body .menu-drawer .list-social {
    margin-left: 0;
    justify-content: flex-start;
    gap: 10px;
    padding-left: 0;
    margin-top: 9px;
}

body .menu-drawer .list-social li.list-social__item .list-social__link {
    background: rgba(128, 150, 113, 0.25);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    padding: 0;
    justify-content: center;
}

body .menu-drawer .list-social li.list-social__item .list-social__link .icon {
    width: 14px;
    height: 14px;
}

body .menu-drawer .list-social li.list-social__item .list-social__link .icon path {
    fill: var(--primary-clr);
}

.compare-wrap table thead td {
    vertical-align: baseline;
}

/*Start Landing Page*/
.landing-hero-banner .white-btn {
    padding: 15px 40px;
}

.announcement_bar_slide {
    background: #f9f6f2;
    padding: 10px 0 !important;
}

.announcement_bar_slide .swiper-slide {
    padding: 0 35px;
    overflow: inherit;
}

.announcement_bar_slide .logos-slider-card {
    padding: 0;
    min-width: fit-content;
    background: transparent;
}

.announcement_bar_slide .logos-slider-card p {
    font-size: 16px;
    font-family: var(--font-body-family) !important;
}

.announcement_bar_slide .swiper-slide:before {
    content: "-";
    position: absolute;
    left: -4px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.save_btn {
    min-width: 120px;
    text-align: right;
}

.save_btn a {
    background: var(--secondary-clr);
    border-radius: 50px;
    padding: 6px 15px;
    font-size: 11px;
    color: #000;
    font-weight: 600;
    line-height: 1.4;
    display: inline-block;
}

.product-bundle-landing .pro-b-save-price {
    display: none !important;
}

.accordion-wrapper .accordion-header {
    position: relative;
    margin: 0;
    padding: 17px 0;
    font-size: 1.25em;
    font-weight: normal;
    color: #000;
    cursor: pointer;
    border-top: 1px solid rgba(128, 150, 113, 0.15);
    border-bottom: 1px solid rgba(128, 150, 113, 0.15);
}

.accordion-wrapper .accordion-header::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-top-color: #fff;
    background-image: url(/cdn/shop/files/accordian-plus.svg?v=1744719416);
    bottom: 0;
    margin: auto;
    background-repeat: no-repeat;
    background-position: center center;
}

.accordion-wrapper .accordion-header.active::after {
    background-image: url(/cdn/shop/files/minus_2.svg?v=1744719900);
}

.accordion-panel {
    padding: 0 10px 20px;
}

.accordion-wrapper {
    width: 100%;
    margin: 0 auto;
}

.accordion-panel p {
    font-size: 14px;
}

.accordion-wrapper .accordion-header.active {
    border-bottom: none;
}

.more-que-sec .rich-text__text p a {
    text-decoration: underline;
}

.product-bundle-landing .pro-b-image {
    height: 100%;
}

.product-bundle-landing .pro-b-image-full {
    max-height: 100%;
}

/*start-growing-sec*/
.growing_world_sec {
    background: linear-gradient(180deg, #fff 0%, #f9f6f2 45.67%, #f9f6f2 100%);
}

.growing_world_sec .swiper-container {
    padding-top: 30px;
}

.growing_video_icon a {
    pointer-events: none;
}

.swiper-slide-active .growing_video_icon a {
    pointer-events: auto;
}

.growing_world_sec .swiper-slide {
    padding: 0 10px;
}

.growing_world_sec .growing_img img,
.growing_world_sec .video_cs video {
    border-radius: 10px;
    height: 455px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.growing_world_sec .swiper-slide-active .growing_img img,
.growing_world_sec .swiper-slide-active .video_cs video {
    height: 600px;
}

.growing_world_sec .swiper-wrapper {
    align-items: center;
}

.growing_world_sec .swiper-slide-prev .growing_img img,
.growing_world_sec .swiper-slide-next .growing_img img,
.growing_world_sec .swiper-slide-prev .video_cs video,
.growing_world_sec .swiper-slide-next .video_cs video {
    height: 550px;
}

.growing_box_cs {
    position: relative;
}

.growing_video_icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.growing_content_cs {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    padding: 0 20px;
}

.growing_box_cs:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 200px;
    border-radius: 0px 0px 10px 10px;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.42) 100%);
    bottom: 10px;
}

.growing_content_cs h6 {
    color: #fff;
}

.growing_star {
    padding-top: 10px;
}

.growing_world_sec .swiper-slide-active .growing_content_cs {
    bottom: 100px;
}

.growing_world_sec .swiper-button-prev,
.growing_world_sec .swiper-button-next {
    background-image: none;
    width: 50px;
}

.growing_world_sec .swiper-slide-prev .growing_content_cs,
.growing_world_sec .swiper-slide-next .growing_content_cs {
    bottom: 80px;
}

.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-container .popup-box {
    background: #fff;
    padding: 40px 20px 20px;
    border-radius: 12px;
    width: 800px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.popup-container .close-popup {
    position: absolute;
    top: -6px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    color: #000;
}

.popup-container .close-popup:hover {
    color: var(--primary-clr);
}

/* Class that controls visibility */
.popup-container.show-popup {
    display: flex;
}

.popup-container .popup-box iframe {
    border-radius: 10px;
}

.growing_world_sec .swiper-button-prev {
    left: 0px;
}

.growing_world_sec .swiper-button-next {
    right: -2px;
}

.free_shipping_content p {
    font-size: 12px;
    text-align: center;
}

.free_shipping_content p span {
    margin: 0 5px;
}

/*close-growing-sec*/

/*start-account-pages*/
.customer {
    margin: 80px auto !important;
    background: #ffffff;
    padding: 30px !important;
    border: 1px solid #d5d5d5;
    border-radius: 15px;
}

*:focus-visible {
    outline: none;
    outline-offset: none;
    box-shadow: none;
}

.customer ul {
    margin-bottom: 20px !important;
    padding-left: 0 !important;
}

.customer ul li {
    list-style: none;
}

.errors ul li {
    color: red;
    font-size: 12px;
}

.customer h2.form__message {
    font-size: 16px !important;
}

.form__message {
    text-align: left;
}

.customer form button,
.cart__ctas button,
#cart-notification-form button.button,
.cart__warnings a.button {
    font-size: 16px;
    line-height: 1.4;
    font-family: var(--fw-para);
    background: var(--primary-clr);
    color: var(--white-clr);
    border: 1px solid var(--primary-clr);
    min-width: 150px;
    border-radius: 100px;
    padding: 14px 20px;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    text-align: center;
    letter-spacing: 0px;
    outline: none !important;
    text-transform: capitalize;
}

.customer form button:after,
.customer form button:before,
.cart__ctas button:after,
.cart__ctas button:before,
#cart-notification-form button.button:after,
#cart-notification-form button.button:before,
a#cart-notification-button:after,
a#cart-notification-button:before,
.cart__warnings a.button:after,
.cart__warnings a.button:before {
    display: none;
}

.customer form button:hover,
.cart__ctas button:hover,
#cart-notification-form button.button:hover,
.cart__warnings a.button:hover {
    background: var(--dark-clr);
    border-color: var(--dark-clr);
    color: var(--white-clr);
}

.customer .field input,
.customer .select select {
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    padding: 15px 18px;
    height: auto;
}

.customer .field:after,
.customer .field:before,
.customer .select:after,
.customer .select:before {
    display: none;
}

.customer .field label {
    top: 16px;
}

#seal-login-helper {
    display: none;
}

.customer.addresses {
    max-width: 700px !important;
}

.customer.addresses button {
    border-radius: 50px;
    border: 1px solid #000;
}

.customer.addresses button:after,
.customer.addresses button:before {
    display: none;
}

.select .svg-wrapper,
.customer select+.svg-wrapper {
    right: 15px;
    width: 20px;
    height: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.customer.account>div:first-child {
    display: flex;
    justify-content: space-between;
}

.seal-button-plain {
    color: #000 !important;
}

.seal-twoThirds {
    margin-left: 0 !important;
}

.seal-place-order-now-button-wrapper.seal-tac .seal-edit-button,
.seal-button-next-to-input {
    background: var(--primary-clr) !important;
    border-color: var(--primary-clr) !important;
}

.seal-button-next-to-input {
    border-radius: 50px;
}

.seal-layout {
    gap: 10px;
}

div#seal-pause-button,
.seal-button-red,
#seal-unsubscribe-button {
    border-radius: 50px;
    padding: 10px 20px;
}

#seal-pause-button {
    background: #000 !important;
}

#seal-unsubscribe-button {
    background: var(--primary-clr) !important;
}

/*close-account-pages*/

/*start-cart-page*/
.cart__items th {
    color: #000;
    font-size: 16px;
    text-transform: capitalize !important;
}

.cart-item__quantity .button {
    background: transparent;
    border: none;
}

.cart-item__quantity .button .svg-wrapper svg {
    width: 25px;
    height: 25px;
}

.cart-item__quantity .button .svg-wrapper svg path {
    fill: #dc0328;
}

.cart-item__name {
    font-size: 18px;
    font-family: var(--fw-heading);
    text-decoration: none !important;
    max-width: fit-content !important;
}

.cart-item__name:hover {
    color: var(--primary-clr);
}

.cart-item__error-text {
    max-width: 240px;
}

.cart__footer-wrapper:last-child .cart__footer {
    padding-bottom: 80px !important;
}

.cart__warnings {
    padding: 80px 0 !important;
}

.cart-items .cart-item:not(:first-child) {
    position: relative;
}

.cart-items .cart-item:not(:first-child):after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #efefef;
    left: 0;
    top: 15px;
}

.totals__total-value {
    color: #000;
    font-size: 20px !important;
}

.cart-notification-product__name {
    font-size: 16px;
}

a#cart-notification-button {
    border: 1px solid #000;
    border-radius: 50px;
    transition: all 0.5s;
    height: 52px;
}

a#cart-notification-button:hover {
    background: #000;
    color: #fff;
}

.quantity {
    width: 120px;
}

.order div:has(.properties) a {
    line-height: 22px;
    text-decoration: none;
}

.seal-subscription-page {
    padding: 80px 20px !important;
}

.seal-blue {
    color: var(--primary-clr) !important;
}

.seal-layout {
    margin: 0 !important;
}

.seal-full,
.seal-layout {
    margin: 0 !important;
}

/*close-cart-page*/

.review-icon-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    align-items: center;
}

.verified-buyer {
    display: flex;
    align-items: center;
    gap: 5px;
}

.verified-buyer img {
    height: 18px;
    width: 18px;
    object-fit: contain;
}

.packed-ingredients-slider {
    padding-top: 40px;
    background: linear-gradient(-360deg, #fff 0%, #f9f6f2 45.67%, #f9f6f2 100%);
}

.packed-ingredients-slider .page-width {
    max-width: calc(100% - (100vw - 1700px) / 2);
    margin-right: 0;
    margin-left: auto;
    padding-right: 0 !important;
}

.packed-ingredients-slider .packed-swiper {
    overflow: hidden;
    padding-top: 90px;
    position: relative;
}

.packed-box-cs img {
    height: 287px;
    border-radius: 8px;
    width: 100%;
}

.packed-box-cs h6 {
    margin: 23px 0 5px;
}

.packed-box-cs p {
    opacity: 0.7;
}

.packed-ingredients-slider .swiper-slide {
    padding-right: 30px;
}

.packed-ingredients-slider .prev-cs,
.packed-ingredients-slider .next-cs {
    top: 30px;
    background: var(--primary-clr);
    height: 33px;
    width: 33px;
    right: 30px;
    left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.packed-ingredients-slider .next-cs {
    right: 50px;
}

.packed-ingredients-slider .prev-cs {
    right: 90px;
}

.packed-ingredients-slider .prev-cs svg,
.packed-ingredients-slider .next-cs svg {
    width: 12px;
    height: 12px;
}

.packed-ingredients-slider .sec-heading {
    position: relative;
    top: 46px;
}

.google-ratings {
    padding: 50px 0;
}

.ratings-bar .rating-info {
    display: flex;
    flex-direction: column;
}

.rating-info .stars {
    display: flex;
    justify-content: center;
    gap: 1px;
    padding-top: 2px;
}

.floating_shop_btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999999;
}

.new-prdct {
    padding-top: 50px !important;
    padding-bottom: 100px;
    background: radial-gradient(301.1% 50% at 50% 50%,
            #f3ebeb 0%,
            #f3f0ec 48.56%,
            #f9f6f2 100%);
}

.new-prdct .pro-b-content {
    padding: 30px;
}

.new-prdct .pro-b-wrap .pro-b-image {
    width: calc(50% - 15px);
}

@media (min-width:990px) {
    .new-prdct .pro-b-wrap .pro-b-image {
        position: sticky;
        top: 10px;
    }
}

.new-prdct .pro-b-wrap .pro-b-content {
    width: calc(50% - 15px);
}

.growing_world_sec .swiper-button-prev:after,
.growing_world_sec .swiper-button-next:after {
    display: none;
}

.cs-prod-new .pro-b-image-card .verticle .swiper-wrapper .swiper-slide {
    display: flex;
    border-radius: 15px;
    overflow: hidden;
}

.cs-prod-new .pro-b-image-card .verticle .swiper-wrapper .swiper-slide img {
    aspect-ratio: 1/1;
    object-fit: cover;
}

.cs-prod-new .pro-b-image-box .pro-b-image-card .verticle .swiper-notification {
    display: none;
}

/*start-policy-pages*/
.shopify-policy__container {
    padding-top: 80px;
    padding-bottom: 80px;
}

.shopify-policy__container .shopify-policy__title {
    margin-bottom: 30px;
}

.shopify-policy__body p a {
    color: var(--primary-clr);
}

.shopify-policy__body p a:hover {
    text-decoration: underline !important;
}

.shopify-policy__body h5 {
    font-size: 26px;
    margin-bottom: 20px;
}

.shopify-policy__body p {
    margin-bottom: 15px;
}

.shopify-policy__body h5 span {
    font-family: var(--fw-heading) !important;
}

/*close-policy-pages*/
.pro-b-image-box img {
    z-index: 100;
    object-fit: cover;
}

#subscription-product {
    display: none;
}

.sub-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    transform: scale(0.7);
    transform-origin: left;
}

.sub-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.sub-switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.sub-switch-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.sub-switch input:checked+.sub-switch-slider {
    background-color: var(--primary-clr);
}

.sub-switch input:focus+.sub-switch-slider {
    box-shadow: 0 0 1px var(--primary-clr);
}

.sub-switch input:checked+.sub-switch-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.cs-hidden-fld {
    display: none;
}

/* Rounded sliders */
.sub-switch-slider.round {
    border-radius: 34px;
}

.sub-switch-slider.round:before {
    border-radius: 50%;
}

.Subscription-switch .subs-wrap.pb-option {
    justify-content: flex-start;
}

.subs-wrap-content .sec-para-small,
.subs-wrap-content .sec-para-small button {
    margin: 0;
    font-size: 14px;
    color: var(--dark-clr);
    padding: 0;
    border: unset;
    background: transparent;
}

.subs-wrap-content .pb-content.sec-para {
    padding: 0;
    margin-bottom: 0;
}

.subs-wrap-content .sec-para-small button.underline {
    text-decoration: underline;
    cursor: pointer;
}

.doubleBanner .desktop-image img {
    object-position: 70% 100%;
}

#subscription-product .pb-option .label-price-heading .pb-price {
    padding: 0;
}

.pb-option-group .free_shipping_content.discount-text {
    margin-top: 0px;
    margin-bottom: -10px;
}

.pb-option-group .accordion-wrapper .accordion-panel {
    padding-left: 0;
    /* transition: all 0.3s ease-in-out; */
}

.pb-option-group .accordion-wrapper .accordion-header {
    border-bottom: unset;
}

.pb-option-group .accordion-wrapper .accordion-header:nth-child(5),
.accordion-wrapper .accordion-header.active+.accordion-panel:last-child {
    border-bottom: 1px solid rgba(128, 150, 113, 0.15);
}

.pb-option-group .accordion-wrapper .accordion-header.active:nth-child(5) {
    border-bottom: unset;
}

.aboutUsBnr .desktop-image.banner__media img {
    object-position: center;
}

.header-drawer-mob {
    display: flex !important;
    gap: 0;
}

.header-drawer-mob .header__icon_cart {
    margin-right: -5px;
}

.header-drawer-mob .header__icon_cart {
    display: none;
}

/* Bundle Lnading Css */
.cs-prod-new .pro-b-image-box .pro-b-image-card .verticle {
    position: relative;
    margin-top: 5px;
}

/* .cs-prod-new .pro-b-image-card .verticle .swiper-wrapper {
    padding: 0 60px;
    overflow: hidden;
} */

.cs-prod-new .pro-b-image-card .verticle .swiper-button-prev .svg-wrapper,
.cs-prod-new .pro-b-image-card .verticle .swiper-button-next .svg-wrapper {
    border: 1px solid rgb(255 255 255 / 20%);
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 2px 0px 10px #00000029;
}

.cs-prod-new .pro-b-image-card .verticle .swiper-button-next:after,
.cs-prod-new .pro-b-image-card .verticle .swiper-button-prev:after {
    display: none;
}

.cs-prod-new .pro-b-image-card .verticle .swiper-button-prev .svg-wrapper .icon,
.cs-prod-new .pro-b-image-card .verticle .swiper-button-next .svg-wrapper .icon {
    height: .6rem;
}

/* .cs-prod-new .pro-b-image-card .verticle .slider-button[disabled] {
    color: rgba(var(--color-foreground), .3);
    cursor: not-allowed;
    opacity: 0.4;
} */
.cs-prod-new .pro-b-image-card .verticle .swiper-button-prev,
.cs-prod-new .pro-b-image-card .verticle .swiper-button-next {
    height: 25px;
    width: 25px;
    top: auto !important;
    bottom: 50% !important;
    opacity: 0.8;
    transform: translateY(12px) !important;
}

.cs-prod-new .pro-b-image-card .verticle .swiper-button-prev {
    left: 8px;
}

.cs-prod-new .pro-b-image-card .verticle .swiper-button-prev .icon {
    transform: rotate(90deg);
}

.cs-prod-new .pro-b-image-card .verticle .swiper-button-next {
    right: 8px;
}

.cs-prod-new .pro-b-image-card .verticle .swiper-button-next .icon {
    transform: rotate(-90deg);
}

.cs-prod-new .pro-b-image-card .verticle .swiper-button-prev .svg-wrapper .icon path,
.cs-prod-new .pro-b-image-card .verticle .swiper-button-next .svg-wrapper .icon path {
    fill: #666;
}

.pb-btn.w-100-btn {
    width: 100%;
}

.cs-prod-new .pro-b-image-box .pro-b-image-card {
    position: relative;
    width: 100%;
}

.cs-prod-new .pro-b-image-box .pro-b-image-card .pro-b-card-fimg {
    width: 100%;
    border-radius: 15px;
}

.pro-b-image-card .swiperVer .swiper-slide,
.pro-b-image-card[style="display: block;"] {
    opacity: 0;
    visibility: hidden;
    animation: fadeIn 0.1s 0.1s forwards;
}

.pro-b-image-card .swiperVer .swiper-slide img {
    opacity: 0;
    visibility: hidden;
    animation: fadeIn 0.1s 0.1s forwards;
    display: none !important;
}

.pro-b-image-card .swiperVer.swiper-initialized .swiper-slide img {
    display: block !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
        visibility: visible;
    }
}

.scrollable-banner .swiper-button-next:after,
.scrollable-banner .swiper-button-prev:after,
.packed-ingredients-slider .swiper-button-next:after,
.packed-ingredients-slider .swiper-button-prev:after,
.growing_world_sec .swiper-button-next:after,
.growing_world_sec .swiper-button-prev:after {
    display: none;
}

.scrollable-banner .swiper-button-next svg,
.scrollable-banner .swiper-button-prev svg {
    height: 15px;
}

.product-bundle-landing {
    background: var(--bg-clr2);
}


.subs-price-re-price-main .main-label-price {
    display: flex;
    gap: 5px;
}

.subs-price-re-price-main {
    margin-top: 10px !important;
}

.subs-price-re-price-main span.money,
.subs-price-re-price-main .seal_subs_price_main span.seal_subs_price {
    color: var(--primary-clr);
    font-weight: 600;
    font-size: 14px;
}

.subs-price-re-price-main span,
.subs-price-re-price-main .seal_subs_price_main {
    font-size: 14px;
}

.subs-price-re-price-main s span.money {
    color: #000;
    font-weight: 400;
    text-decoration: line-through;
}

.subs-price-re-price-main .seal_subs_price_main {
    padding-top: 5px;
    text-align: left;
}


.guarantee-sec {
    background: linear-gradient(180deg, #FFF 0%, #F9F6F2 45.67%, #F9F6F2 100%);
}

.guarantee-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gw-content {
    width: 50%;
    flex: 0 0 auto;
    padding: 100px 50px 100px 0;
}

.gw-grid {
    width: 50%;
    max-width: 645px;
    flex: 0 0 auto;
    position: relative;
}

.gw-grid-wrap {
    max-width: 645px;
    margin-left: auto;
    width: 100%;
    aspect-ratio: 1 / 1.1;
}

.gw-grid-wrap img {
    /* height: 100%; */
    object-fit: cover;
    object-position: center;
}

.gw-grid-wrap>div+div {
    margin-top: 12px;
}

.gw-grid-wrap>div {
    display: flex;
    gap: 12px;
    height: 32.5%;
}

.gw-row-fst img {
    width: 24%;
}

.gw-row-fst img:nth-child(2) {
    width: 27%;
}

.gw-row-fst img:nth-child(3) {
    width: calc(49% - 24px);
}

.gw-row-snd img {
    width: calc(50% - 6px);
}

.gw-row-trd img {
    width: 24%;
}

.gw-row-trd img:nth-child(2) {
    width: calc(49% - 24px);
}

.gw-row-trd img:nth-child(3) {
    width: 27%;
}

.gw-grid .gw-main-img {
    position: absolute;
    top: 50%;
    left: -7.5vw;
    transform: translateY(-50%);
    max-width: 15vw;
}

.gw-content .sec-para-small {
    max-width: 550px;
    margin: 15px 0 40px;
}

.guarantee-sec .page-width {
    max-width: calc(100% - ((100vw - 1550px) / 2)) !important;
    margin: 0 0 0 auto;
    padding-right: 0 !important;
}

.pb-benefits-list {
    display: flex;
    flex-wrap: wrap;
    margin: 10px -10px 30px;
    row-gap: 12px;
}

.pb-benefits-list li {
    width: 50%;
    padding: 0 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
    line-height: 1.5;
    gap: 5px;
    color: var(--dark-clr);
    flex-grow: 1;
}

.pb-benefits-list li img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.pb-benefits-list li:nth-child(odd) {
    width: 38%;
}

.gw-content .sec-para-small a {
    color: #82966f;
    font-weight: 600;
}

.product-bundle-landing.cs-prod-new .pro-b-image {
    aspect-ratio: unset !important;
}

facet-filters-form .facet-filters__field .select select {
    padding: 0 15px 0 8px;
}

facet-filters-form .facet-filters__field .select span.svg-wrapper {
    right: -2px;
}

/* 13-05-2025 */
