@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Quicksand:wght@300..700&display=swap');

/* Reset Css */

* {
    margin: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
    font-size: 62.5%;
}


body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-size: 1.5rem;
    font-family: "Inter", sans-serif;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
    margin: 0;
}

#root,
#__next {
    isolation: isolate;
}

/* Common CSS */

/* .container {
    max-width: 1560px;
} */

.padding-area {
    padding: 7rem 0;
}

.main-btn {
    display: inline-block;
    padding: 1.5rem 2.5rem;
    font-size: 1.6rem;
    background-color: #f6af91;
    color: #191919;
    text-decoration: none;
    transition: 0.5s all;
    border-radius: 50px;
}

.main-btn.cart {
    background-color: #1c5d68;
    border-radius: 0;
    color: #fff;
}

.main-btn:hover {
    background-color: #191919;
    color: #fff;
}

.row {
    row-gap: 40px;
}

a {
    text-decoration: none;
}

/* Main Css */

/* Header */

.top-hd {
    padding: 0 5rem;
    position: relative;
    background-color: #ffede9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ebdad7;
}

.cart svg {
    width: 4rem;
}

.top-hd p {
    width: calc(100% - 5rem);
    text-align: center;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
}

.nav-container {
    background-color: #ffede9;
    position: relative;
    padding: 25px 0;
}

header .cart {
    color: #191919;
    display: inline-block;
    position: relative;
}

header .cart span{
    position: absolute;
    top: 0px;
    right: -5px;
    background-color: #f6af91;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    font-size: 11px;
    z-index: 1;
    border-radius: 50%;
}

header .nav-link {
    font-size: 1.6rem;
    font-weight: 600;
    color: #191919;
    position: relative;
    transition: 0.5s all;
    border-bottom: 2px solid transparent;
}

header .nav-link:hover {
    border-bottom: 2px solid #191919;
}

header .navbar-nav {
    gap: 15px;
}

header #navbarNav {
    justify-content: space-between;
}

header .logo-otr {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

header .dropdown-item {
    font-size: 1.6rem;
    /* margin: 10px 0; */
    padding: 0.8rem 2rem;
    font-size: 15px;
    letter-spacing: 0;
    font-weight: 500;
}

header .ben-itm .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

header.sticky .nav-container{
    background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 0 10px #0004;
    z-index: 99;
}

/* Header End */

.swpr-img {
    width: 100%;
    height: 750px;
}

.bnr-content {
    padding: 20rem 0 0;
    max-width: 51rem;
    text-align: center;
    margin: auto;
}

.bnr-content h1 {
    font-size: 7rem;
    color: #191919;
    padding: 1rem 0;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.bnr-content h5 {
    font-size: 1.8rem;
    padding-bottom: 20px;
    line-height: 1.9;
}

.banner-sec .swiper-pagination-bullet {
    background-color: transparent;
    border: 1px solid #191919;
    width: 12px;
    height: 12px;
    opacity: 1;
    margin: 0 1rem !important;
}

.banner-sec .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #191919;
}

/* Banner end */

/* Product sec */


.hdng h2 {
    font-size: 5rem;
    color: #353334;
    padding: 1rem 0;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.hdng h4 {
    font-size: 1.8rem;
    padding-bottom: 20px;
}

.prdct-swpr .img-bx {
    position: relative;
}

.prdct-swpr .img-bx img {
    width: 30rem;
    object-fit: contain;
    margin-inline: auto;
}

.prdct-swpr .img-bx img:first-child {
    position: absolute;
    inset: 0;
    transition: 0.5s all;
}

.prdct-swpr .prdct-bx:hover .img-bx img:first-child {
    pointer-events: none;
    opacity: 0;
}

.prdct-dtls {
    text-align: center;
    margin-top: 2rem;
}

.prdct-dtls .tp-icns-otr {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.prdct-dtls .tp-icns {
    width: 30px;
}

.prdct-dtls .tp-icns img {
    width: 100%;
}

.pr-nm {
    font-size: 16px;
    font-weight: 600;
    font-family: Inter, sans-serif;
    margin: 1rem 0;
    color: #000;
    text-align: center;
}

.pr-prc {
    font-size: 16px;
    /* text-align: center; */
}

.prdct-swpr .swiper-pagination-bullet {
    background-color: transparent;
    border: 1px solid #191919;
    opacity: 1;
}

.prdct-swpr .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #191919;
}

.prdct-bx {
    position: relative;
}

.chs-prdct-btn {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s all;
    width: 95%;
    margin-inline: auto;
    pointer-events: none;
}

.prdct-bx:hover .chs-prdct-btn {
    opacity: 1;
    pointer-events: all;
}

/* Product Modal */

.modal-dialog {
    max-width: 850px;
    width: 100%;
}

.modal-body {
    padding: 20px;
}

.mdl-otr {
    display: flex;
    align-items: center;
}

.mdl-otr>* {
    width: 50%;
}

.strs {
    color: #f08354;
    margin-bottom: 10px;
    text-align: left;
}

.strs i {
    display: inline-block;
}

.btl-qntty h4 {
    font-size: 16px;
    margin: 1rem 0;
}

.btl-qntty .qntty {
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #191919;
    cursor: pointer;
}

.btl-qntty .qntty a{
    color: #000;
    width: 100%;
    height: 100%;
    /* line-height: 100%; */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btl-qntty .qntty.active {
    background-color: #f6af91;
}

.qntty-bx {
    max-width: 600px;
    display: flex;
    border: 2px solid #191919;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.qntty-bx .rght-sd {
    width: 70%;
    text-align: center;
}

.fl-dtls a {
    display: inline-block;
    text-decoration: none;
    margin: 20px 0;
    color: #191919;
}

.offcanvas.show {
    z-index: 2222;
}

.crt-btm-cntnt {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    position: relative;
}

.crt-btm-otr {
    text-align: center;
}

.crt-btm-cntnt .crt-img img {
    width: 80px;
}

.crt-btm-cntnt .crt-name p {
    font-weight: 600;
    margin: 10px 0;
}

.crt-btm-cntnt .crt-name span {
    display: block;
    text-align: right;
    font-weight: 600;
    color: #000;
}

.crt-btm-cntnt .crt-name span del {
    margin-right: 5px;
    opacity: 0.5;
}

.crt-btm-cntnt .crt-name span.save {
    color: #2ea818;
}

.crt-name {
    width: calc(100% - 120px);
    text-align: right;
}

.del-bx {
    margin: 10px 0;
    cursor: pointer;
    width: 15px;
}

.cart-footer {
    padding: 20px;
    background-color: #FFEDE9;
    margin-top: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.cart-footer .main-btn {
    margin-bottom: 10px;
}

.offcanvas-header {
    padding: 30px;
}

.offcanvas-body {
    padding: 0;
}

.btls {
    opacity: 0.5;
}

.qnty-crt-bx {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0;
    width: 30%;
}

.qnty-crt-bx button, .qnty-crt-bx input{
    border: 0;
    background-color: transparent;
    outline: 0;
    font-size: 18px;
    width: 30%;
    text-align: center;
}

.ttl-crt-bx {
    height: calc(100vh - 250px);
    overflow: auto;
    scrollbar-color: #1c5d68 #f7f7f7;
    scrollbar-width: thin;
}

.upgrd {
    width: 95%;
    text-align: center;
}

.crt-btm-cntnt.add-on {
    justify-content: start;
}

.addbx {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.addbx>* {
    width: 49%;
}

.crt-btm-cntnt.add-on .crt-name {
    width: calc(100% - 80px);
}

.crt-btm-cntnt.add-on .crt-name select {
    width: 100%;
    height: 100%;
    padding: 1.5rem 2.5rem;
}

.crt-btm-cntnt.add-on .crt-name span {
    text-align: left;
}

.crt-btm-cntnt.add-on .crt-name p {
    text-align: left;
}



/* Count Sec */

.count-sec {
    background: url(../images/count-bg.png);
    background-size: cover;
    position: relative;
    padding: 200px 0 100px 0;
}

.count-sec .hdng p {
    line-height: 2;
    max-width: 550px;
    font-size: 1.6rem;
}

.count-sec::before {
    position: absolute;
    content: "";
    background: url(../images/count-top.webp);
    top: -1px;
    left: 0;
    right: 0;
    width: 100%;
    height: 113px;
}

.count-sec::after {
    position: absolute;
    content: "";
    background: url(../images/count-bottom.webp);
    bottom: -1px;
    left: 0;
    right: 0;
    width: 100%;
    height: 82px;
    background-repeat: no-repeat;
}

.barriers-sec {
    background-color: #f9dfa6;
}

.shpng-bx {
    background-color: #fff;
    margin-top: 40px;
    border-radius: 25px;
    padding: 35px;
    max-width: 500px;
    box-shadow: 10px 10px #1c5d68;
}

.icon-box {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.icon-box .icon {
    width: 90px;
}

.icon-box .shpng-text {
    width: calc(100% - 90px);
    padding-left: 25px;
}

.shpng-title {
    font-weight: 700;
    font-size: 24px;
    margin: 10px 0;
}

/* Mother Sec */

.mthr-ntr {
    background: url(../images/mother_nature.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.mthr-ntr .hdng p {
    max-width: 700px;
    margin-inline: auto;
    line-height: 2;
    font-size: 18px;
}

.mthr-swpr-otr {
    position: relative;
    margin-top: 8rem;
}

.mthr-swpr .img-box {
    width: 215px;
    height: 215px;
    border-radius: 50%;
    margin-inline: auto;
}

.mthr-swpr .img-box img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.mthr-swpr-para {
    text-align: center;
}

.mthr-swpr-para h4 {
    font-size: 2.5rem;
    margin: 2rem 0;
}

.mthr-swpr-para p {
    line-height: 2;
    width: 230px;
    margin-inline: auto;
}

.mthr-swpr {
    padding-inline: 20px;
}

.mthr-swpr-otr .swiper-button-next,
.mthr-swpr-otr .swiper-button-prev {
    color: #191919;
}

.mthr-swpr-otr .swiper-button-prev:after,
.mthr-swpr-otr .swiper-button-next:after {
    font-size: 30px;
}

/* Health Gurantee */

.hlth-grntee {
    background: url(../images/grntee-1.jpg);
    min-height: 650px;
    background-size: cover;
    width: 100%;
    background-position: center;
    background-attachment: fixed;
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hlth-grntee .hdng {
    max-width: 670px;
    /* margin-inline: auto; */
    padding-top: 100px;
}

.hlth-grntee .hdng p {
    line-height: 2;
    font-weight: 500;
    font-size: 16px;
}

/* Footer */

.ftr-cntnt h4 {
    font-size: 2.2rem;
    margin: 2rem 0;
    border-bottom: 2px solid #191919;
    font-weight: 700;
    width: fit-content;
}

.ftr-cntnt p {
    line-height: 2;
    padding-right: 20px;
}

.ftr-cntnt ul {
    list-style: none;
    padding: 0;
}

.ftr-cntnt ul li {
    font-size: 18px;
    margin: 10px 0;
}

.ftr-cntnt ul li strong {
    display: inline-block;
}

.ftr-cntnt ul li p {
    font-size: 15px;
}

.ftr-cntnt ul li .ftr-link {
    color: #191919;
    font-size: 15px;
    text-decoration: none;
    transition: 0.5s all;
}

.ftr-cntnt ul li .ftr-link:hover {
    color: #1c5d68;
}

.cntct-bx {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 15px 0;
}

.cntct-bx .cntct-txt {
    font-size: 16px;
    text-decoration: underline;
    font-weight: 500;
    color: #000;
}

.bnft-cntnt .ftr-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
}

.ftr-box {
    height: 100%;
    padding: 100px 0;
}

.ftr-box.frst {
    border-right: 5px solid #000;

}

.ftr-otr {
    border-top: 5px solid #000;
    border-bottom: 5px solid #000;

}

footer .row {
    justify-content: space-between;
}

footer .bottom-ftr {
    padding: 40px 0;
}

.footer__copyright {
    display: flex;
    gap: 10px;
}

.copyright-link a {
    text-decoration: none;
    color: #000;
}

/* Product Page Swiper CSS */



.product-sec {
    background-color: #ffede9;
}

.product-sec .swiper {
    width: 100%;
    height: 100%;
}

.product-sec .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-sec .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-sec .swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.product-sec .swiper-slide {
    background-size: cover;
    background-position: center;
}

.product-sec .mySwiper2 {
    height: 80%;
    width: 100%;
}

.product-sec .mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.product-sec .mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
}

.product-sec .mySwiper .swiper-slide-thumb-active {
    border: 2px solid #191919;
}

.product-sec .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prdct-cntnt .pr-nm {
    font-size: 3rem;
    text-align: left;
}

.prdct-tab-otr {
    padding-top: 1rem;
    border-top: 2px solid #000;
}

.prdct-tab-otr .resp-tab-item {
    font-size: 16px;
    font-weight: 700;
}

.prdct-tab-otr .resp-tabs-list {
    margin-bottom: 2rem;
}

.prdct-tab-otr .resp-tab-item.resp-tab-active {
    border-bottom: 2px solid #000;
}

.sbscrb-bx {
    max-width: 500px;
    display: flex;
    margin-top: 40px;
    border: 2px solid #000;

}

.sbscrb-bx .sbscrb-btn {
    width: 50%;
    padding: 15px;
    background-color: transparent;
    color: #000;
    text-align: center;
    font-weight: 700;
    transition: 0.5s all;
}

.sbscrb-bx .sbscrb-btn:hover {
    background-color: #f6af91;
}

.sbscrb-bx .sbscrb-btn.active {
    background-color: #f6af91;

}

.sbscrb-bx .sbscrb-btn:first-child {
    border-right: 2px solid #000;
}

.prdct-cntnt {
    padding: 0 10px;
}

.prdct-tb-cntnt ul {
    padding: 0;
    list-style: none;
    margin-top: 2rem;
}

.prdct-tb-cntnt li{
    padding-left: 22px;
    margin-bottom: 10px;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    font-family: Inter, sans-serif;
    line-height: 26px;
}

.prdct-tb-cntnt span {
    margin-bottom: 10px;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    font-family: Inter, sans-serif;
    line-height: 26px;
}

.prdct-tb-cntnt li span {
    position: absolute;
    width: 17px;
    height: 17px;
    top: 3px;
    left: 0;
}

.prdct-tb-cntnt {
    min-height: 250px;
    max-height: 150px;
    overflow: auto;
    scrollbar-color: #1c5d68 #f7f7f7;
    scrollbar-width: thin;
    position: relative;
}

.product-sec {
    position: relative;
}

.product-sec::after {
    position: absolute;
    content: "";
    height: 84px;
    width: 100%;
    background-size: cover;
    background: url(../images/product-bottom.webp);
    left: 0;
    bottom: 0;
}

/* Product page - Benefit Sec */

.bnft-cntnt img {
    width: 50px;
    margin: auto;
}

.bnft-cntnt h4 {
    margin-top: 10px;
    font-weight: 700;
}

/* Resolution */

.rsltn-sec .hdng {
    padding: 50px;
}

.rsltn-sec .hdng h2 {
    font-size: 4rem;
}

.rsltn-sec {
    background-color: #f9dfa6;
}

.rsltn-sec-otr {
    background-color: #fff;
    border-radius: 50px;
    overflow: hidden;
}

.rsltn-sec .hdng p {
    line-height: 2;
    max-width: 526px;
    font-size: 16px;
}

/* Generation Sec */

.gnrtn-sec {
    background-color: #eaac93;
}

.gnrtn-sec .hdng {
    max-width: 750px;
    margin: auto;
}

/* Cart Page */

.crt-hdng {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
}

.cntinue-shpng {
    color: #f6af91;
    text-decoration: underline;
}

.cart-table table {
    width: 100%;
}

.cart-table thead th {
    padding: 2rem 2rem 2rem 0;
    border-bottom: 1px solid #0003;
    color: #0007;
    font-size: 14px;
}

.cart-table thead th:first-child {
    width: 60%;
}

.crt-prdct-img {
    max-width: 120px;
}

.cart-table tbody td {
    padding: 3rem 2rem 2rem 0;
}

.crt-prdct-img img {
    width: 100%;
}

.cart-item-media {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-media a {
    font-size: 1.8rem;
    color: #000;
    font-weight: 600;
}

.cart-table .qnty-crt-bx {
    margin: 0;
    padding: 10px;
    border: 1px solid #000;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    width: 12rem;
}

.cart-table .qnty-crt-bx span {
    cursor: pointer;
}

.del-btn svg {
    height: 1.5rem;
    width: 1.5rem;
    color: #f08354;
}

.qntty-del-bx {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cart-table {
    border-bottom: 1px solid #0003;
}

.cart-bottom-total .totals {
    display: flex;
    justify-content: end;
    gap: 10px;
    align-items: center;
    margin-bottom: 2rem;
}

.tax-note {
    margin-bottom: 2rem;
    text-align: right;
}

.cart-bottom-total {
    margin-top: 4rem;
    max-width: 40rem;
    margin-left: auto;
}

.cart-bottom-total a.shop-pay {
    display: inline-block;
    width: 100%;
    padding: 0 30px;
    border-radius: 50px;
    text-align: center;
}

.cart-bottom-total a.g-pay {
    display: inline-block;
    width: 100%;
    padding: 0 30px;
    border-radius: 50px;
    text-align: center;
}

.cart-bottom-total a img {
    width: 80px;
    height: 50px;
    object-fit: contain;
    margin-inline: auto;
    display: block;
}

.cart-bottom-total a.paypal {
    display: inline-block;
    width: 100%;
    padding: 0 30px;
    border-radius: 50px;
    text-align: center;
}

.cart-bottom-total a.shop-pay {
    background-color: #5a31f4;
}

.cart-bottom-total a.paypal {
    background-color: #ffc439;
}

.cart-bottom-total a.g-pay {
    background-color: #000;
}

/* Checkout Sec */

.checkout-sec {
    border-top: 1px solid #0004;
}

.exprs-chckout-btn a img {
    width: 80px;
    height: 50px;
    object-fit: contain;
    margin-inline: auto;
    display: block;
}

.exprs-chckout-btn a {
    display: inline-block;
    padding: 0 30px;
    border-radius: 10px;
    text-align: center;
    height: 50px;
    width: 32%;
}

.exprs-chckout-btn a.shop-pay {
    background-color: #5a31f4;
}

.exprs-chckout-btn a.paypal {
    background-color: #ffc439;
}

.exprs-chckout-btn a.g-pay {
    background-color: #000;
}

.exprs-chckout-btn {
    display: flex;
    justify-content: space-between;
}

.chckout-cntnt {
    padding-top: 4rem;
}

.chckout-cntnt .divider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.chckout-cntnt .divider span {
    width: 45%;
    height: 2px;
    background-color: #0004;
}

.chckout-cntnt .divider p {
    font-size: 14px;
    color: #0007;
    width: 7%;
    text-align: center;
}

.checkout-form .cntct-bx {
    display: block;
}

.checkout-form .cntct-bx .flx-bx {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-form .cntct-bx h4 {
    font-size: 2.5rem;
    font-weight: 600;
}

.checkout-form .form-control {
    padding: 15px;
    font-size: 15px;
    margin-top: 15px;
    appearance: auto;
}

.checkout-form .form-control:focus {
    box-shadow: none;
    border-color: #0004;
}

.eml-nws {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 15px;
}

.cntct-bx .row {
    gap: 0;
}

.cntct-bx .inptBx {
    position: relative;
}

.cntct-bx .srchbx {
    background: url(../images/search.png);
    width: 15px;
    height: 15px;
    background-size: contain;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
}

.inptBx label {
    font-size: 15px;
    font-weight: 400;
}

.news-offrbx {
    margin-top: 15px;
}

.news-offrbx label {
    margin-top: 15px;
    cursor: pointer;
    margin-left: 5px;
}

.mbl-cntct-bx span {
    background: url(../images/contact.png);
    width: 15px;
    height: 15px;
    background-size: contain;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);

}

.mbl-cntct-bx {
    position: relative;
}

.mbl-cntct-bx .form-control {
    padding-left: 40px;
}

.mbl-cntct-bx-otr p {
    margin-top: 15px;
    font-size: 13px;
    color: #333;
}

.mbl-cntct-bx-otr p a {
    color: #333;
    text-decoration: underline;
}

.av-sh-otr h5 {
    margin: 15px 0;
    font-size: 2rem;
    font-weight: 700;
}

.av-sh-otr h6 {
    font-size: 13px;
    padding: 20px;
    color: #3333339a;
    background-color: #f4f4f4;
}

/* Checkout Accordion */

.payment-accrdion-bx {
    padding-top: 10px;
}

.accordion-tab-container {
    cursor: pointer;
}

.accordion-item .display {
    max-height: 0;
    overflow: hidden;
}

.accordion-item.active .display {
    max-height: 100%;
    overflow: hidden;
    background-color: #f4f4f4;
    padding: 20px;
}

.accrdn-top-otr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #f0f5ff;
    border: 2px solid #0003;
}

.accordion-item.active .accrdn-top-otr {
    border: 2px solid #1773b0;
}

.accordion-item .accrdn-top-otr span {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #1c5d68;
    border-radius: 50%;
    transition: 0.5s all;
}

.accordion-item.active .accrdn-top-otr span {
    border: 7px solid #1c5d68;
}

.pymnt-otr .accordion-item p {
    margin-top: 0;
}

.accrdn-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.accrdn-img img {
    width: 200px;
    height: 40px;
    object-fit: contain;
    padding: 10px 0;
}

.main-btn.paynw {
    background-color: #1773b0;
    border-radius: 5px;
    color: #fff;
    text-align: center;
}

.main-btn.paynw:hover {
    background-color: #191919;
}

.chkout-pg-btm {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #0003;
}

.chkout-pg-btm a {
    padding: 10px;
    display: inline-block;
    color: #1773b0;
    text-decoration: underline;
}

.chckout-cntnt.rght {
    background-color: #e8bfa6;
    padding: 40px;
    position: sticky;
    top: 0;
    right: 0;
    height: 100vh;
}

.chkt-img-bx {
    position: relative;
    padding: 5px;
    border: 1px solid #0005;
    max-width: 70px;
    width: 100%;
    height: 60px;
    border-radius: 5px;
}

.chkt-img-bx img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.chkt-img-bx span {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #666;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    top: -10px;
    right: -10px;
    font-size: 11px;
}

.chckout-cntnt .prdct-bx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.dscnt-cd,
.sb-ttl,
.shppng,
.total-amnt {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

.dscnt-cd input {
    padding: 10px;
    width: 67%;
    border: 1px solid #525151;
    border-radius: 5px;
}

.dscnt-cd .apply-cpn {
    padding: 10px 20px;
    background-color: #b4b2b2;
    width: 30%;
    border: 1px solid #525151;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    transition: 0.5s all;
}

.dscnt-cd .apply-cpn:hover {
    background-color: #000;
    color: #fff;
}

.chkt-prdct-bx{
    display: flex;
    align-items: center;
    gap: 20px;
    width: 90%;
}
    

.about-sec.chs-us span {
    display: inline-block;
    vertical-align: baseline;
    margin-right: 10px;
}

.about-sec.chs-us span img {
    width: 17px;
}

.about-sec.chs-us p {
    max-width: 650px;
    text-align: center;
    margin: 10px auto;
    line-height: 2;
}

.about-sec h3 {
    font-size: 4rem;
    font-weight: 500;
    margin: 20px 0;
    font-family: "Quicksand", sans-serif;
}

.about-sec.chs-us {
    background: none;
}

.about-sec {
    background: url(../images/about-bg.png);
    background-size: cover;
}

.about-sec p {
    line-height: 2;
    margin: 10px 0;
}

.faq-sec {
    background: url(../images/faq-bg.webp);
    background-size: cover;
    background-position: center;
}

.faq-accrdn-otr {
    max-width: 75rem;
    margin-inline: auto;
}

.faq-accrdn-otr .accordion-main:first-child {
    border-top: 3px solid #000;

}

.faq-accrdn-otr .accordion-main {
    padding: 20px 25px;
    border-bottom: 3px solid #000;

}

.faq-accrdn-otr .accordion-main .accordion-tab-container {
    position: relative;
}

.faq-accrdn-otr .accordion-main .accordion-tab-container::after {
    position: absolute;
    content: "+";
    font-size: 3rem;
    color: #000;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    transition: 0.3s all;
}

.faq-accrdn-otr .accordion-main.active .accordion-tab-container::after {
    content: "-";
    font-size: 4rem;
}

.faq-accrdion-sec .accordion-item {
    overflow: hidden;
    max-height: 0;
}

.accordion-main.active .accordion-item {
    max-height: 100%;
}

.accordion-item p {
    font-size: 1.8rem;
    margin-top: 2rem;
    line-height: 2;
}

/* Contact Page Design */

.cntct-sec .hdng p {
    font-size: 18px;
    line-height: 2;
}

.cntct-sec .hdng a {
    color: #1c5d68;
    text-decoration: underline;
    font-weight: 600;
}

.cntct-frm {
    margin-top: 4rem;
}

.cntct-frm .input-bx input {
    border: 3px solid #000;
    padding: 12px 24px;
    min-height: 55px;
    font-size: 16px;
    color: #000;
}

.cntct-frm .input-bx input:focus {
    box-shadow: none;
}

.cntct-frm .input-bx input::placeholder,
.cntct-frm .input-bx textarea::placeholder {
    color: #0004;
    font-weight: 600;
}

.cntct-frm .input-bx textarea {
    border: 3px solid #000;
    padding: 12px 24px;
    min-height: 150px;
    font-size: 16px;
    color: #000;
}

.cntct-frm .input-bx textarea:focus {
    box-shadow: none;
}

.cntct-frm .row {
    row-gap: 20px;
}

.cntct-frm label {
    font-size: 16px;
    color: #000;
    margin: 10px 0;
    font-weight: 700;
}

.cntct-frm .input-bx input[type=submit] {
    border: none;
    padding: 10px 30px;
}

.cntct-frm .input-bx input[type=submit]:hover {
    color: #fff;
}

.eml-phn-flx-bx {
    display: flex;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
}

.eml-phn-otr {
    padding: 80px;
    background-color: #f6af91;
    width: 50%;
}

.eml-phn-flx-bx .eml-phn-otr:last-child {
    background-color: #f9dfa6;
}

.eml-phn-otr span {
    display: inline-block;
}

.eml-phn-otr svg {
    width: 24px;
    transform: rotate(-45deg);
    margin-left: 10px;
    color: #000;
    font-weight: 600;

}

.eml-phn-otr h3 {
    font-size: 3.5rem;
    font-family: "Quicksand", sans-serif;
    margin-bottom: 3rem;
}

.eml-phn-otr a {
    font-family: "Quicksand", sans-serif;
    color: #000;
    font-size: 2.5rem;
    font-weight: 600;
}


.lv-hlth-cc-cre .hdng p {
    max-width: 650px;
    text-align: center;
    margin: 10px auto;
    line-height: 2;
}

.lv-hlth-cc-cre .hdng p a {
    color: #1c5d68;
    font-weight: 600;
}

.thankyou_sec {
    background: url(../images/about-bg.png);
    background-size: cover;

}

.thankyou_sec h3 {
    font-family: "Quicksand", sans-serif;
    color: #000;
    font-size: 4rem;
    margin-bottom: 10px;
}

.thankyou_sec p {
    font-family: "Quicksand", sans-serif;
    color: #000;
    font-size: 2rem;
    margin: 10px 0;
}

.order_details_table td,
.order_details_table th {
    padding: 15px;
}

/* Terms Page */

.terms-sec p {
    font-size: 15px;
    margin: 20px 0;
}

.terms-sec p a {
    color: #1c5d68;
    font-weight: 600;
}

.terms-sec h2 {
    font-size: 24px;
    font-family: "Quicksand", sans-serif;
    margin: 20px 0;
    font-weight: 700;
    border-bottom: 1px solid;
    width: fit-content;
}

.terms-sec h4 {
    font-size: 18px;
    text-transform: uppercase;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
}

.terms-sec h5 {
    font-size: 16px;
    text-transform: uppercase;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
}

/* Privacy Page */

.privacy-sec p {
    font-size: 15px;
    margin: 20px 0;
}

.privacy-sec p a {
    color: #1c5d68;
    font-weight: 600;
}

.privacy-sec h2 {
    font-size: 24px;
    font-family: "Quicksand", sans-serif;
    margin: 20px 0;
    font-weight: 700;
    width: fit-content;
}

.privacy-sec h4 {
    font-size: 18px;
    text-transform: uppercase;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
}

/* Accessibility Page */

.accessibility-sec p {
    font-size: 15px;
    margin: 20px 0;
}

.accessibility-sec p a {
    color: #1c5d68;
    font-weight: 600;
}

.accessibility-sec h2 {
    font-size: 24px;
    font-family: "Quicksand", sans-serif;
    margin: 20px 0;
    font-weight: 700;
    width: fit-content;
}

/* Collection Page */

.cllctn-otr .img-bx{
    background-color: #ffede9;
}

.cllctn-otr a{
    color: #000;
    font-size: 4rem;
    margin: 10px 0;
    font-family: "Quicksand", sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.cllctn-otr a i{
    vertical-align: middle;
    font-size: 13px;
}

/* Side Cart */

.sideCart .qnty-crt-bx{
    width: 100%;
    justify-content: end;
    margin-left: auto;
}

.sideCart .qnty-crt-bx-inr{
    width: 45%;
    border: 1px solid #0002;
}

.sideCart .qnty-crt-bx-inr>*{
    border-right: 1px solid #0002;
    display: inline-block;
}
.sideCart .qnty-crt-bx-inr>*:last-child{
    border: 0;
}

.sideCart .qnty-crt-bx span{
    width: 55%;
}

.sideCart .crt-name{
    text-align: left;
}

.sideCart .crt-btm-cntnt .btls{
    text-align: left;
}

.sideCart .del-bx {
    position: absolute;
    right: 15px;
}

/* Cookie Consent */

#cookiePopup {
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        background: #f6af91;
        padding: 15px;
        /* display: flex; */
        flex-wrap: wrap;
        z-index: 999999;
        gap: 20px;
        align-items: center;
        justify-content: center;
        text-align: center;
        display: none;
    }

    #cookiePopup h4 {
        font-size: 25px;
        color: #fff;
        margin-bottom: 15px;
    }

    #cookiePopup p {
        font-size: 15px;
        color: #fff;
        margin-bottom: 15px;
        letter-spacing: 1px;
        line-height: 1.5;
        max-width: 850px;
    }

    #cookiePopup p a {
        color: #fff;
        text-decoration: underline;
    }

    .cookieBtns {
        display: inline-flex;
        gap: 10px;
    }

    .cookieBtns button {
        font-size: 15px;
        margin: 10px 0;
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        background: #f6af91;
        cursor: pointer;
        transition: all 0.5s ease;
        border: 2px solid #fff;
    }

    .cookieBtns button:last-child {
        background-color: #fff;
        color: #f6af91;
    }

.check-btnn {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 25px;
}
  .cart-left .row , .cart-right .row{
        row-gap:0;
    }
    .accordion-item p {
    font-size: 1.8rem;
    margin-top: 0;
    line-height: 2;
}
input.btn.btn-primary {
    padding: 12px 40px;
    font-size: 16px;
    width: 100%;
}
.step-title h4 {
    font-size: 30px;
    margin-top: 15px;
    color: #000;
}
.cart-left h2{
font-size: 30px;
    margin-top: 15px;
    color: #000;
}

.qntty-btl-bx.active{
    background-color: #f6af91;
}

.bnft-cntnt.rte ul li:before, .bnft-cntnt.rte p:before{
    content: "";
    background: url(../images/Logo_LUV15-svg.webp);
    width: 17px;
    height: 17px;
    position: absolute;
    top: 3px;
    left: 0;
    z-index: 1;
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center;
}

.prdct-tb-cntnt p{
    font-size: 14px;
    font-weight: 500;
    font-family: Inter, sans-serif;
    line-height: 26px;
}
.shpng-text p, .hdng p{
    font-size: 18px;
}