* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

Html,
body {
    height: 100%;
    scroll-behavior: smooth;
    width: 100%;
    font-family: "Figtree", sans-serif;
    color: #111;
}

.lora {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.figtree {
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.box-width {
    width: 100%;
    max-width: 1428px;
    margin: auto;
}


.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}



.prim-btn {
    text-decoration: none;
    padding: 0.5em 1.2em;
    font-weight: 300;
    position: relative;
    background-color: #CAF9AC;
    border-radius: 50px;
    font-size: 14px;
    line-height: 22px;
    color: #153508;
    text-align: center;
    transition: 0.3s ease;
    font-family: "Figtree", sans-serif;
}



.prim-btn:hover {
    box-shadow: 0 0 0 3px #caf9ac, 0 0 0 6px #153508, 0 2px 4px 6px #00000040;
}

a {
    all: unset;
    cursor: pointer;
}



h1,
h2 {
    font-family: "Lora", serif;
    font-weight: 400;
}

h3 {
    font-family: "Lora", serif;
    font-weight: 400;
    font-size: 28.444px;
    line-height: 34.13333px;
}

p {
    font-size: 16px;
    line-height: 25.6px;
    font-weight: 300;
}

.graphic-shape {
    width: 100%;
}

#standard_JBfzFA-svg {
    width: 100%;
    margin-bottom: -5px;
}



@media (max-width: 1428px) {
    .box-width {
        max-width: 93%;
    }
}

@media (max-width: 1024px) {
    .box-width {
        max-width: 88%;
    }

}

@media (max-width: 767px) {
    #standard_JBfzFA-svg {
        width: 100%;
        margin-bottom: -6px;
    }

    .prim-btn {
        padding: 4.2px 16.8px;
    }

    h3 {
        font-size: 22.75px;
        line-height: 27.3px;
    }

    p {
        font-size: 14px;
        line-height: 22.4px;
    }

}

/* header  */

.sub-header {
    height: 33px;
    display: flex;
    align-items: center;
    background: #ECFDD1;
    overflow: hidden;
}

.marquee-sub {
    display: inline-flex;
    white-space: nowrap;
    animation: marquee 55s linear infinite;
    width: 100%;
}

.marquee-sub:hover {
    animation-play-state: paused;
}

.marquee-sub span {
    padding: 3px 50px 0;
    font-size: 12px;
    color: #31242e;
    font-weight: 300;
    opacity: 0.8;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-90%);
    }
}



/* site header  */



.site-header {
    position: fixed;
    top: 33px;
    left: 0;
    width: 100%;
    z-index: 15;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 37px 8px 36px;
    background: transparent;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2px;
}

.site-header.sticky {
    top: 0;
    background: white;
}

.site-header.hidden {
    transform: translateY(-120%);
}

.header-section {
    width: 33.3%;
    padding: 0 12px;
}

.search-trigger-alt {
    display: none;
}

.nav-links ul {
    display: flex;
    gap: 8px;
    list-style: none;
}

.nav-links ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.nav-links ul .first-nav {
    padding-right: 6px;
}

.nav-links ul li {
    color: #111;
    padding: 4px 12px;
    font-size: 12px;
    line-height: 19px;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 300;
}

.header-left {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    align-items: center;
}

.header-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-center img {
    max-width: 100px;
}


.curancy-nav {
    font-size: 12px;
    line-height: 19px;
    font-weight: 300;
    padding: 8px 12px;
    transform: uppercase;
    letter-spacing: 2.4px;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    align-items: center;
    padding: 0;
}

.icon-menu {
    margin-right: 12px;
}

.header-icons {
    display: flex;
    gap: 32px;
    padding: 0 12px;
}

.header-spacer {
    height: 60px;
}



/* Popups Drawers  */


/* .menu-drawer */
.md-menu-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
}

.md-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    height: 100vh;
    background: #fff;
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 1000;
    overflow-y: auto;
    pointer-events: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.md-drawer.dimmed {
    background: #f0f0f0;
}

.md-drawer.dimmed .md-menu-link,
.md-drawer.dimmed .md-country-selector {
    opacity: 0.5;
    transition: 0.3s ease;
}

.md-drawer.dimmed .md-menu-link:hover,
.md-drawer.dimmed .md-country-selector:hover {
    opacity: 1;
}

.md-drawer.dimmed .md-menu-link.active,
.md-drawer.dimmed .md-country-selector.active {
    opacity: 1;
}

.md-drawer::-webkit-scrollbar {
    display: none;
}

.md-drawer.open {
    transform: translateX(0);
    pointer-events: all;
}

.md-drawer-header {
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.md-drawer-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #111;
}

.md-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.md-menu-list {
    list-style: none;
}

.menu-btn {
    cursor: pointer;
}

.md-menu-item {
    position: relative;
}

.md-menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 36px;
    color: #111;
    text-decoration: none;
    font-size: 12px;
    font-weight: 300;
    line-height: 19px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.md-menu-link.active {
    position: relative;
}

.md-country-selector.active span::after,
.md-menu-link.active span::after {
    width: 100%;
}

.md-country-selector span::after,
.md-menu-link span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    transition: all .3s ease-out;
    background-color: #111111;
}

.md-country-selector span,
.md-menu-link span {
    position: relative;
}

@keyframes slideIn {
    from {
        width: 0;
        left: 50%;
    }

    to {
        width: calc(100% - 48px);
        left: 24px;
    }
}

.md-chevron {
    transition: transform 0.3s ease;
    pointer-events: none;
}

.md-chevron.rotated {
    transform: rotate(180deg);
}

.md-subdrawer {
    position: fixed;
    top: 0;
    left: 400px;
    width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    transition: transform 0.4s ease, opacity 0.2s ease;
    z-index: 999;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.md-subdrawer.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
}

.md-subdrawer::-webkit-scrollbar {
    display: none;
}

.md-subdrawer-header {
    padding: 92px 36px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.md-back-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: none;
}

.md-subdrawer-title {
    color: #111;
    font-size: 12px;
    font-weight: 700;
    line-height: 19px;
}

.md-submenu-list {
    list-style: none;
}

.md-submenu-item {
    padding: 12px 36px;
    color: #111;
    font-size: 12px;
    font-weight: 300;
    line-height: 19px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.md-country-selector {
    padding: 48px 36px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    line-height: 19.2px;
    font-weight: 300;
    margin-top: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.md-flag {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #000;
}

.md-flag svg {
    width: 36px;
    height: 36px;
    margin-top: -5px;
}

.md-country-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.md-country-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.md-country-name {
    color: #333;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.md-country-currency {
    color: #999;
    font-size: 12px;
    margin-left: auto;
}

.md-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgb(255 255 255 / 0.3);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
    pointer-events: none;
}

.md-overlay.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* SEARCH DRAWER */
.md-search-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 480px;
    height: 100vh;
    background: #fff;
    padding: 18px 30px;
    box-sizing: border-box;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 1001;
}

.md-search-drawer.open {
    transform: translateX(0);
}

.md-search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.cart-btn {
    cursor: pointer;
}

.md-search-title {
    font-size: 20px !important;
    font-weight: 500;
    line-height: 24px;
}

.md-search-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.md-search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
}

.search-btn {
    cursor: pointer;
}

/* WRAPPER */
.search-input-wrap {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    height: 55px;
    padding: 18px 50px 15px 15px;
    border-radius: 7px;
    border: 0px solid #dddddd;
    box-shadow: inset 2px 2px 8px rgba(0, 0, 0, .18);
    font-size: 1rem;
    outline: none;
}

.search-input:focus {
    border: 4px solid #2158ee;
}

.search-label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #111;
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
    pointer-events: none;
    transition: 0.3s ease all;
}

.search-input:focus+.search-label,
.search-input:not(:placeholder-shown)+.search-label {
    top: 12px;
    left: 12px;
    font-size: 0.5rem;
    color: #111;
    padding: 0 5px;
}

/* cart */
.md-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 480px;
    max-width: 92vw;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.md-cart-drawer.open {
    transform: translateX(0);
}

.md-cart-header {
    padding: 16px 30px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.md-cart-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Lora", serif;
}

.md-cart-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px 9px 6px;
}

.md-cart-content {
    overflow-y: auto;
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.md-cart-empty-title {
    font-size: 20px;
    font-weight: 300;
    line-height: 32px;
    margin: 0px 0 12.6px 0;
    text-transform: uppercase;
}

.md-cart-empty-poem p {
    font-size: 13.6px;
    line-height: 21.76px;
    font-weight: 300;
    font-family: serif;
    font-style: italic;
    opacity: 0.65;
}

.md-cart-footer {
    padding: 20px 30px;
    border-top: 1px solid #e5e5e5;
    background: #fff;
    flex-shrink: 0;
}

.md-checkout-btn {
    width: 100%;
    padding: 16px;
    background: #111;
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background 0.3s;
}





/* Hero-section  */


.hero-sec {
    position: relative;
}

.hero-sec video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-sec svg {
    position: absolute;
    bottom: -1px;
    left: 0;
}




/* your-glow-up */


.glow-up-head {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 40px 0px;
    max-width: 60%;
    margin: auto;
}

.glow-up-head h2 {
    font-size: 53.3px;
    line-height: 64px;
}

.glow-up-head p {
    font-size: 20px;
    line-height: 32px;
}

.glow-up-head p b {
    font-weight: 700;
}

.glow-up-cards-wrapper {
    display: flex;
    gap: 12px;
    padding: 40px 0;
}

.glow-card {
    width: 25%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.glow-card img {
    width: 100%;
    object-fit: cover;
    transition: 0.3s ease;
    height: 100%;
    aspect-ratio: 2/3;
}

.glow-card:hover img {
    transform: scale(1.1);
}

.glow-card a {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translate(-50%);
    padding: 0.3rem 1.25rem;
}



/* .starter-pack  */

.starter-pack {
    padding: 40px 00 80px;
}

.inner-starter-pack {
    width: 100%;
    padding: 0 16.67% 0 8.33%;
    display: flex;
    gap: 16px;
}

.left-starter {
    width: 46.67%;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between;
}

.starter-video {
    width: 75%;
    max-height: 368px;
    overflow: hidden;
    border-radius: 16px;
    margin-left: auto;
}

.starter-video video {
    width: 100%;
    object-fit: cover;
}


.starter-pack-head {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 48px 0;
    max-width: 75%;
}

.starter-pack-head h4 {
    font-size: 28.4px;
    line-height: 34.13px;
    font-weight: 300;
    letter-spacing: 5.68px;
    text-transform: uppercase;
}


.right-starter {
    width: 53.33%;
    overflow: hidden;
    max-height: 672px;
    border-radius: 16px;
    margin-top: 48px;
}

.right-starter img {
    border-radius: 16px;
    width: 100%;
    transition: 0.3s ease;
    object-fit: cover;
    height: 100%;
}

.right-starter:hover img {
    transform: scale(1.1);
}

.starter-video-res {
    display: none;
}




/* best-seller */

.best-seller {
    padding: 40px 0 0;
    background-color: #ECFDD1;
}

.best-seller-head-1 {
    padding-bottom: 28px;
}

.main-swiper-in {
    position: relative;
}

.seller-card {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.seller-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.upper-seller-card {
    position: relative;
    border-radius: 16px;
    aspect-ratio: 6/9;
    overflow: hidden;
}

.saller-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.3s ease;
    opacity: 0;
}

.saller-img-2 {
    width: 100%;
    opacity: 1;
}

.seller-card:hover .saller-img-1 {
    transform: scale(1.1);
    opacity: 1;
}

.seller-card:hover .saller-img-2 {
    opacity: 0;
}

.lower-seller-card {
    color: #31242e;
    padding: 25px 0 24px;
}

.lower-seller-card span {
    font-size: 12px;
    line-height: 19px;
    font-weight: 300;
}

.lower-seller-card h5 {
    font-family: "Lora", serif;
    font-size: 18px;
    line-height: 21px;
    font-weight: 400;
    padding: 2px 0 8px;
}

.lower-seller-card h6 {
    font-size: 13.6px;
    line-height: 21.7px;
    font-weight: 300;
}

.lower-seller-card p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
}


/* Global swiper  */

.swiper {
    width: 100%;
    height: 100%;
}


.all-swiper-btns {
    height: 38px !important;
    width: 38px !important;
    border-radius: 50px;
    transition: 0.3s ease;
}

.swiper-button-next-1,
.swiper-button-prev-1 {
    color: #000 !important;
    background-color: #ECFDD1;
}

.all-swiper-btns:hover {
    box-shadow: 0 0 0 3px #ecfdd1, 0 2px 4px 3px #00000026 !important;
}

.all-swiper-btns:after {
    font-size: 12px !important;
}

.swiper-button-next {
    right: -20px !important;
}

.swiper-button-prev {
    left: -20px !important;
}

.view-all-btn {
    height: 41px;
    display: flex;
    align-items: flex-end;
}

.view-all-btn a {
    font-size: 12px;
    line-height: 19px;
    font-weight: 300;
    color: #47611e;
    text-decoration: underline;
    text-underline-offset: 3px;
}



/* before / after  */


.before-after {
    display: flex;
    padding: 70px 0 24px;
}


.comp-section {
    position: relative;
    width: 100%;
    border-radius: 16px;
    height: 520px;
    overflow: hidden;
}

.comp-left,
.comp-right {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.comp-left img,
.comp-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.comp-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #fff;
    cursor: ew-resize;
    z-index: 2;
}

.comp-section,
.comp-left,
.comp-right,
.comp-line {
    user-select: none;
    -webkit-user-drag: none;
}

.comp-left::after {
    content: 'Before';
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    color: #111;
    position: absolute;
    left: 30px;
    top: 25px;
}

.comp-right::after {
    content: 'After';
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    color: #111;
    position: absolute;
    right: 30px;
    top: 25px;
}

.comp-line {
    cursor: ew-resize;
    position: relative;
}

.comp-icon {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
}

.comp-icon svg {
    width: 16px;
}

.left-before-after {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 9% 20px 8.5%;
}

.left-before-after h3 {
    margin-bottom: 16px;
}

.left-before-after p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    color: #111;
}


.right-before-after {
    width: 50%;
    padding-left: 12px;
}

/* .fresh-skin */


.fresh-skin {
    flex-direction: row-reverse;
    display: flex;
    padding: 24px 0 54px;
}


.fresh-skin .left-before-after h3 {
    margin: 0;

}


.fresh-skin .left-before-after h4 {
    font-size: 23px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
}


.fres-skin-btn {
    width: fit-content;
    margin-top: 24px;
}

.fres-skin-right-before-after {
    padding: 0 16px 0 0;
}

.fres-skin-right-before-after img {
    width: 100%;
    height: 520px;
    border-radius: 16px;
    object-fit: cover;
}

.fresh-skin .left-before-after {
    padding: 20px 8.5% 20px 9%;
}








/* CTA  */





.section-cta {
    background-color: #FCE6EA;
    padding: 0px 0px 80px;
    text-align: center;
    margin-top: -8px;
}

.section-cta__title {
    padding-top: 70px;
    font-size: 42.6px;
    line-height: 51.2px;
    margin-bottom: 16px;
    font-weight: 400;
}

.section-cta__subtitle {
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 300;
    color: #000;
}



/* Form */
.section-cta__form {
    position: relative;
}

.section-cta__input-group {
    position: relative;
    max-width: 320px;
    margin: auto;
}

.section-cta__input {
    width: 320px;
    height: 52px;
    padding: 22px 50px 13px 15px;
    font-family: "Figtree", sans-serif;
    border-radius: 8px;
    border: 0px solid;
    box-shadow: inset 2px 2px 8px rgba(0, 0, 0, .25);
    font-size: 1rem;
    outline: none;
}

.section-cta__input:focus {
    border: 4px solid #2158ee;
}

.section-cta__label {
    position: absolute;
    font-family: "Figtree", sans-serif;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: 14px;
    pointer-events: none;
    transition: 0.3s ease all;
    font-weight: 200;
}

.section-cta__input:focus+.section-cta__label,
.section-cta__input:not(:placeholder-shown)+.section-cta__label {
    top: 12px;
    left: 12px;
    font-size: 0.5rem;
    opacity: 0.85;
    padding: 0 5px;
}

/* Button */
.section-cta__button {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    font-size: 1.2rem;
    cursor: pointer;
}

.section-cta__button svg {
    height: 16px;
}









/* footer */


.footer {
    padding: 64px 0 80px;
    background-color: #FCE6EA;
    position: relative;
}

.scroll-to-top {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    background-color: #000;
    padding: 12.8px 12.8px 2px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    transition: 0.4s ease;
}

.scroll-to-top:hover {
    padding-bottom: 8px;
}

.main-footer {
    display: flex;
    gap: 18px;
    padding: 0 2px;
}

.foot-part {
    width: 25%;
}

.logo-footer {
    padding: 46px 0px 91.5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-footer img {
    max-width: 900px;
}

.foot-part h6 {
    border-top: 0px solid #e6cdd2;
    padding: 0.75em 0em;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
}

.foot-part .parts-content {
    list-style: none;
}

.foot-part .parts-content li {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    padding: 3.8px 0;
}

.parts-content p span {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* .sub-footer  */

.sub-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 85px;
    border-top: 1px solid #e6cdd2;
}

.sub-list-cards {
    display: flex;
    list-style: none;

}

.sub-copyright {
    display: flex;
    flex-direction: column;
    gap: 19px;
    align-items: flex-end;
    padding-right: 1px;
}

.sub-flag {
    width: 25px;
    height: 25px;
    border-radius: 50px;
    border: 1.5px solid black;
    object-fit: cover;
}

.Language-sub {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #000;
    text-underline-offset: 3px;
    line-height: 20px;
}

.Language-sub {
    text-decoration: underline;
}

.power-text {
    font-size: 13.6px;
    text-decoration: none;
    line-height: 21.76px;
    font-weight: 300;
    color: #000;
}


.sub-close {
    display: none;
}


.acc-icon {
    display: none;
}




/* .head-seller-sec */

.head-seller-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 72px;
}

.head-sel-left {
    width: 50%;
    padding: 0% 8%;
}

.head-sel-left p {
    margin-bottom: 24px;
    color: #31242e;
}

.head-sel-right {
    width: 50%;
}

.head-sel-right a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #81975C;
    color: #fff;
    cursor: not-allowed;
}

.head-sel-right a:hover {
    box-shadow: none;
}


.head-sel-left h3 {
    font-size: 36px;
    font-weight: 300;
    line-height: 43px;
    margin-bottom: 11px;
    color: #31242e;
}


.price-badge {
    font-size: 11px;
    line-height: 11px;
    font-weight: 300;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 6px;
    background-color: #dd4242;
    color: #fff;
    position: absolute;
    z-index: 15;
    width: 70px;
    left: 24px;
    top: 24px;
}

.view-all-btn-2 {
    justify-content: center;
}




/* suggestion  */


.routine-product-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.routine-product-images {
    width: 90px;
    height: 135px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}


.img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.3s ease;
    opacity: 0;
    height: 100%;
}

.img-hover {
    height: 100%;
    width: 100%;
    opacity: 1;
}

.routine-product-card:hover .img-main {
    transform: scale(1.1);
    opacity: 1;
}

.routine-product-card:hover .img-hover {
    opacity: 0;
}



.routine-product-images img {
    width: 100%;
}


.routine-container {
    padding: 20px 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.routine-image-area {
    width: 50%;
    position: relative;
}

.routine-image-area img {
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.routine-products {
    width: 50%;
    padding: 0 8.2% 0 8.5%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}


.routine-product-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}



.routine-quick-btn {
    outline-style: none;
    border: none;
    font-size: 12px;
    line-height: 19px;
    font-weight: 300;
    width: 40px;
    height: 40px;
    padding: 0;
    margin-left: auto;
    margin-right: 16px;
    transition: 0.3s ease;
    cursor: pointer;
    border: 4px solid #EDFDE2;
}

.routine-quick-btn:hover {
    border: 0px solid #CAF9AC;
    transform: scale(1.2);
}

.routine-product-info p {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 6px;
    font-family: "Lora", serif;
    font-weight: 400;
}

.routine-product-info span {
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
}


.hotspot-btn {
    height: 40px;
    width: 40px;
    border-radius: 50px;
    background-color: #caf9ac;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    color: #153508;
    text-decoration: none;
    transition: 0.3s ease;
    position: absolute;
}

.hotspot-btn span {
    z-index: 2;
}

.hotspot-btn:hover {
    transform: scale(1.4);
}

.hotspot-btn:before {
    animation: hotspot-blink 2s ease-in-out infinite both;
    content: "";
    background: inherit;
    opacity: .35;
    position: absolute;
    width: 140%;
    height: 140%;
    border-radius: 50%;
}


.hotspot-1 {
    top: 15%;
    left: 80%;
}

.hotspot-2 {
    top: 55%;
    left: 10%;
}

.hotspot-3 {
    top: 60%;
    left: 30%;
}

.hotspot-4 {
    top: 65%;
    left: 90%;
}

@keyframes hotspot-blink {
    0% {
        opacity: 1;
        transform: scale(0.6);
    }

    75% {
        opacity: 0;
        transform: scale(1.4);
    }

    100% {
        opacity: 0;
        transform: scale(1.4);
    }
}





/* Responsive  */


@media (max-width: 1024px) {

    /* Header  */
    .curancy-nav,
    .icon-search,
    .nav-links {
        display: none;
    }

    .search-trigger-alt {
        display: block;
    }

    .header-left {
        gap: 20px;
    }

    .header-inner {
        max-width: 90%;
        padding: 2px 1px 0;
    }


    /* Hero-section  */

    .hero-sec video {
        min-height: 860px;
    }

    /* Glow up  */

    .glow-up-cards-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .glow-card {
        width: 49%;
    }


    /* .inner-starter-pack  */

    .inner-starter-pack {
        padding: 0;
    }

    .right-starter {
        padding: 0;
        width: 50%;
        margin-top: 74px;
    }

    .left-starter {
        padding: 0;
        width: 50%;
    }

    .starter-pack-head p br {
        display: none;
    }

    .starter-pack-head,
    .starter-video {
        width: 82%;
        max-width: 82%;
    }

    /* best seller  */


    .best-seller {
        padding-top: 64px;
    }


    /* Before-after  */


    .left-before-after {
        padding: 20px 12px 20px 0;
    }

    .comp-section {
        height: 255px;
    }

    .left-before-after h3 {
        margin-bottom: 12px;
    }

    .hotspot-4 {
        left: unset;
        right: 6%;
    }


    /* .fresh-skin */


    .fresh-skin .left-before-after {
        padding: 20px 0px 20px 12px;
    }

    .fres-skin-right-before-after img {
        height: 255px;
    }


    /* 2-best seller  */

    .head-sel-left {
        padding: 0;
    }

    .head-seller-sec {
        gap: 24px;
    }

    .head-seller-sec {
        padding-bottom: 48px;
    }

    .head-sel-right a {
        padding: 4.2px 16.8px;
    }

    .view-all-btn-2 {
        padding-bottom: 20px;
    }



    /* suggestion  */

    .routine-products {
        padding: 0 1%;
    }



    /* footer  */

    .main-footer {
        flex-wrap: wrap;
        gap: 50px 26px;
    }

    .foot-part {
        width: 48%;
    }

    .logo-footer {
        padding: 46px 0 92px;
    }

    .sub-footer {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 64px;
        padding-top: 80px;
    }

    .sub-copyright {
        align-items: center;
    }

    .md-search-drawer,
    .md-cart-drawer,
    .md-drawer {
        max-width: 375px;

    }
}

@media (max-width: 768px) {

    .swiper-button-prev {
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
        left: 0 !important;
    }

    .swiper-button-next {
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
        right: 0 !important;
    }

    .wrapper-seller,
    .inner-best-seller {
        max-width: 100%;
    }

    .swiper-wrapper-pad {
        padding: 0px 24px 0 24px;
    }

    .head-sel-right {
        display: flex;
        justify-content: center;
    }

    .view-all-btn {
        padding: 0 24px;
    }

    .best-seller-head-1 {
        padding: 0 24px 16px;
    }

    .head-seller-sec {
        padding: 24px 24px 0 24px;
    }

    .head-sel-right a {
        max-width: fit-content;
    }

    /* Header  */

    .sub-header {
        height: 38.4px;
    }

    .marquee-sub {
        animation-duration: 15s;
    }

    .marquee-sub span {
        padding: 0px 12px;
    }

    .site-header {
        padding: 16px 0;
        width: 100vw;
        top: 36px;
    }

    .header-inner {
        padding: 0 2px;
    }

    .header-left {
        padding: 0;
        justify-content: flex-start;
        gap: 12px;
    }

    .header-section {
        padding: 0;
    }

    .header-section img {
        max-width: 90px;
    }

    .header-icons {
        padding: 0;
        gap: 24px;
    }

    /* pop up responsive  */


    .md-search-drawer {
        width: 92%;
        padding: 18px 24px;

    }



    .md-cart-header {
        padding: 16px 24px 12px;
    }

    .md-search-title {
        font-size: 16px !important;
    }

    .md-cart-title {
        font-size: 16px;
        line-height: 20px;
    }

    .md-cart-empty-title {
        font-size: 18px;
        line-height: 28px;
    }

    .md-cart-empty-poem p {
        font-size: 12px;
        line-height: 19px;
    }

    .md-drawer {
        width: 90%;
        z-index: 998;
    }

    .md-search-drawer,
    .md-cart-drawer,
    .md-drawer {
        max-width: 375px;

    }

    .md-drawer-header {
        padding: 18px 24px;
    }

    .md-menu-link {
        padding: 12px 28px;
    }

    .md-country-selector {
        padding: 24px 28px 12px;
        margin-top: 24px;
    }

    .md-subdrawer {
        width: 90%;
        left: 0;
        transform: translateX(100%);
    }

    .md-subdrawer-header {
        padding: 15px 24px;
        justify-content: space-between;
    }

    .md-back-btn {
        display: block;
        padding: 9px 11px;
    }

    .sub-close {
        display: block;
    }

    .md-subdrawer-title {
        font-weight: 300;
    }


    /* .hero-sec  */

    .hero-sec video {
        min-height: 510px;
        margin-bottom: -10px;
    }


    /* .glow-up-section  */

    .your-glow-up {
        max-width: 100%;
    }

    .glow-up-head {
        max-width: 90%;
        text-align: start;
        padding: 32px 0 24px;
    }

    .glow-up-head h2 {
        font-size: 28px;
        line-height: 34px;
    }

    .glow-up-head p {
        font-size: 18px;
        line-height: 28px;
    }

    .glow-card {
        border-radius: 0;
        width: 49.4%;
    }

    .glow-up-cards-wrapper {
        gap: 4px;
        padding: 24px 0;
    }

    .glow-card a {
        padding: 4.2px 16.8px;
        width: 88px;
    }



    .best-seller {
        padding: 40px 0 28px;
    }

    .before-after {
        padding-top: 40px;
        flex-direction: column-reverse;
    }

    .left-before-after {
        width: 100%;
        padding: 28px 0 0 0;
        text-align: center;
    }

    .right-before-after {
        padding: 0;
        width: 100%;
    }

    /* .fresh-skin */

    .fresh-skin {
        flex-direction: column-reverse;
        max-width: 100%;
        padding-bottom: 40px;
    }

    .fres-skin-right-before-after img {
        border-radius: 0;
    }

    .fres-skin-btn {
        width: unset;
    }

    .fresh-skin .left-before-after {
        padding: 28px 24px 24px;
    }


    /* best 2 */

    .head-seller-sec {
        flex-direction: column;
        gap: 0;
    }

    .head-sel-left {
        width: 100%;
        text-align: center;
    }

    .head-sel-left h3 {
        font-size: 28px;
        line-height: 34px;
    }

    .lower-seller-card h5 {
        font-size: 16px;
        line-height: 19px;
    }

    .lower-seller-card span {
        font-size: 11px;
        line-height: 17px;
    }

    .lower-seller-card h6 {
        font-size: 12px;
        line-height: 19px;
    }

    .best-seller-2 {
        padding: 0;
    }

    .best-seller-2 .head-seller-sec {
        padding-bottom: 24px;
    }

    /* starter pack  */

    .starter-pack {
        padding: 40px 0;
        max-width: 100%;
    }

    .inner-starter-pack {
        flex-direction: column-reverse;
        max-width: 100%;
    }

    .left-starter {
        flex-direction: column-reverse;
        width: 100%;
    }


    .down-left-start {
        width: 100%;
        max-width: 100%;
    }

    .right-starter {
        width: 100%;
        overflow: scroll;
        border-radius: 0;
        display: flex;
        gap: 16px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin-top: 0;
    }

    .left-before-after p {
        font-size: 14px;
        line-height: 22px;
    }

    .right-starter::-webkit-scrollbar {
        display: none;
    }

    .right-img {
        display: none;
    }

    .down-left-start-res img {
        width: 50%;
    }

    .down-left-start-desk {
        display: none;
    }

    .up-left-start {
        padding: 16px 24px;
        width: 100%;
        max-width: 100%;
    }

    .starter-pack-head {
        padding: 24px;
        width: 100%;
        max-width: 100%;
    }

    .starter-pack-head h4 {
        font-size: 23px;
        line-height: 27px;
    }

    .starter-pack-head h4 br {
        display: none;
    }

    .starter-video-res {
        display: block;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        max-height: 400px;
        min-width: 266px;
    }

    .right-starter img {
        min-width: 266px;
        border-radius: 0;
        transform: scale(1) !important;
        height: 400px;
    }

    .starter-video-des {
        display: none;
    }

    .routine-products {
        gap: 32px;
    }

    .routine-product-info p {
        font-size: 16px;
        line-height: 19px;
    }

    .routine-product-info span {
        font-size: 12px;
        line-height: 19px;
    }



    /* CTA  */

    .section-cta__container {
        padding: 0 16px;
    }

    .section-cta__title {
        padding-top: 40px;
        font-size: 23px;
        line-height: 27px;
    }

    .section-cta__subtitle {
        font-size: 14px;
        line-height: 22px;
        margin-top: 16px;

    }

    .section-cta__input {
        width: 100%;
    }

    .section-cta {
        padding-bottom: 40px;
    }


    .routine-container {
        flex-direction: column;
        max-width: 90%;
        padding-top: 30px;
    }

    .routine-products,
    .routine-image-area {
        width: 100%;
        padding: 0;
    }

    .hotspot-4 {
        left: 85%;
    }

    .hotspot-2 {
        left: 5%;
        top: 45%;
    }

    .hotspot-3 {
        left: 25%;
    }



    .footer {
        padding: 40px 0;
    }

    .inner-footer {
        max-width: 88%;
    }

    .acc-icon {
        display: block;
    }

    .main-footer {
        flex-direction: column;
        gap: 0;
    }

    .foot-part {
        width: 100%;
    }


    .foot-part .parts-head {
        border-top: 1px solid #e6cdd2;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-size: 14px;
        line-height: 22px
    }

    .foot-part .acc-icon {
        transition: 0.3s ease;
    }

    .foot-part.open .acc-icon {
        transform: rotate(180deg);
    }

    .foot-part .parts-content {
        overflow: hidden;
        height: 0;
        transition: height 0.4s ease;
        padding: 0;
        margin: 0;
    }

    .no-accord .parts-content {
        height: 100% !important;
        padding: 0 0 10px !important;
    }

    .foot-part.open .parts-content {
        padding: 10px 0;
    }

    .logo-footer {
        padding-top: 6px;
        padding-bottom: 60px;
    }

    .power-text {
        font-size: 12px;
        line-height: 19px;
    }

    .sub-footer {
        gap: 56px;
        padding-top: 48px;
    }
}




/* Product page  */

.pro-swip-btns:hover {
    box-shadow: 0 0 0 3px #fff, 0 2px 4px 3px #00000026 !important;

}





/* gallery  */


.pdp-hero {
    padding: 108px 0;
}

.pdp-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.pdp-gallery {
    width: 57.65%;
    position: sticky;
    top: 100px;
    left: 0;
}

.pdp-content {
    width: 40.7%;
    position: sticky;
    top: 100px;
    right: 0;
}

.pdp-sticky {
    position: sticky;
    top: 108px;
    max-width: 464px;
    margin: 0 auto;
    padding: 40.5px 0;
    display: flex;
    flex-direction: column;
}

/* Breadcrumbs */
.pdp-breadcrumbs {
    display: flex;
    font-size: 12px;
    line-height: 19px;
    font-weight: 300;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 23.5px;
}

.pdp-breadcrumbs li::after {
    content: '→';
    margin: 0 10px;
}

.pdp-breadcrumbs li:last-child::after {
    display: none;
}

.pdp-breadcrumbs li:last-child {
    opacity: 0.6;
}

/* Title & Price */
.pdp-title {
    font-size: 35.5px;
    line-height: 42.6px;
    font-weight: 400;
    margin-bottom: 8px;
}

.pdp-price {
    font-size: 20px;
    line-height: 32px;
    font-weight: 300;
    margin-bottom: 3px;
}

.pdp-tax {
    font-size: 10px;
    line-height: 17px;
    opacity: 0.7;
    font-weight: 300;
    margin-bottom: 28.3px;
}

.pdp-quantity-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10.7px 12px;
    border: 1px solid #ddd;
    border-radius: 40px;
}

.pdp-qty-btn {
    border: none;
    background: none;
    cursor: pointer;
    width: 20px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    opacity: 0.5;
}

.pdp-qty-btn svg {
    width: 16px;
}

.pdp-qty-number {
    width: 30px;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
}

.pdp-atc-btn {
 height: 34px;
 flex: 1;
 display: flex;
 align-items: center;
 justify-content: center;
}



.pdp-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}

/* Stock Bullet */
.pdp-stock {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    padding-left: 20.8px;
    position: relative;
}

.pdp-stock::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #31862D;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.pdp-stock::after {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #31862D;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-40%);
    animation: ping 1.6s cubic-bezier(0, 0, .2, 1) infinite;
    opacity: 0.75;
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2) translateY(-30%);
        opacity: 0;
    }
}


.pdp-description {
    padding: 24px 0 28.444px;
    font-weight: 300;
}

/* Accordion */
.pdp-accordion {
    width: 100%;
}

.pdp-accordion-item {
    border-top: 1px solid #dddddd;
}

.pdp-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    cursor: pointer;
}

.pdp-accordion-header h4 {
    margin: 0;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
}

.pdp-accordion-header svg {
    width: 18px;
    transition: transform 0.6s ease 0.3s;
}

.pdp-accordion-header.active svg {
    transform: rotate(180deg);
    transition: transform 0.6s ease 0s;
}

.pdp-accordion-content-wrapper {
    overflow: hidden;
    height: 0;
    transition: height 0.4s ease;
}

.pdp-accordion-content {
    padding: 0 0 15px;
}



/* Suggested Product */

.pdp-upsell-wrapper{
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.pdp-upsell {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 16px;
}

.pdp-upsell-img {
    width: 72px;
    height: 108px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.pdp-upsell-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pdp-upsell:hover .pdp-upsell-img img {
    transform: scale(1.15);
}

.pdp-upsell-info{
    flex: 1;
}

.pdp-upsell-info p {
    margin: 0;
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
    font-family: "Lora", serif;
    margin-bottom: 4px;
}

.pdp-upsell-info span {
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
}

.pdp-upsell-btn {
    padding: 11.45px;
    background: #CAF9AC;
    color: #153508;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdp-upsell-plus {
    position: absolute;
    top: 60%;
    right: 20%;
    width: 12px;
    height: 12px;
    background: #153508;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gallery Grid (Desktop) */
.pdp-grid-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 99%;
}

.pdp-grid-item{
    aspect-ratio: 1 / 1;
}

.pdp-grid-item:first-child {
    grid-column: 1 / 3;
}

.pdp-grid-item img {
    width: 100%;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.25s ease;
    height: 100%;
    object-fit: cover;
}

/* Lightbox */
.pdp-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 999999;
    max-width: 100vw;
    max-height: 100vh;
}

.pdp-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.light-img-slides{
    position: relative;
}

.light-img-swip{
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    aspect-ratio: 3 / 5;
}

.light-img-swip img{
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.light-img-swip p{
    font-size: 10px;
    line-height: 17px;
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translate(-50%);
}

.pag-num-light {
    font-size: 10px;
    line-height: 17px;
    position: absolute;
    left: 50%;
    top: 26px;
    font-weight: 300;
    transform: translate(-50%);
}

.pdp-lightbox-inner {
    width: 100%;
    height: 100%;
    background: white;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdp-lb-next{
    right: 22px !important;
    background-color: #fff;
    color: #000 !important;
}

.pdp-lb-prev{
    left: 22px !important;
    background-color: #fff;
    color: #000 !important;
}


.pdp-lb-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 9px 9px 3px;
    border-radius: 50px;
    background-color: #CAF9AC;
}

.pdp-lb-pagination {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: white;
    font-weight: 300;
}

/* Swiper Custom */
.pdp-main-swiper .swiper-slide img,
.pdp-thumb-swiper .swiper-slide img {
    width: 100%;
    object-fit: cover;
}

.pdp-thumb-swiper {
    margin-top: 22px;
}

.pdp-thumb-swiper .swiper-slide {
    cursor: pointer;
}

.light-res-article{
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {

    .pdp-hero{
        padding: 108px 0 78px;
    }
   
    .pdp-gallery,
    .pdp-content {
    position: relative;
    top: 24px;
   
}

  .pdp-grid-gallery {
        display: none;
    }

    .pdp-mobile-gallery {
        display: block !important;
    }

    .pdp-main-swiper .swiper-slide img{
        border-radius: 12px;
        aspect-ratio: 1 / 1;
    } 
    .pdp-thumb-swiper .swiper-slide img{
        border-radius: 12px;
        aspect-ratio: 1 / 1;
    }

    .pdp-nav-prev,
    .pdp-nav-next{
        background-color: #fff;
        color: #000 !important;
    }

    .pdp-nav-prev{
        left: 20px !important;
    }
    
    .pdp-nav-next{
        right: 20px !important;
    }


    .pdp-layout {
        flex-direction: column;
    }

    .pdp-gallery,
    .pdp-content {
        width: 100%;
    }

    .pdp-sticky {
        position: static;
        max-width: 100%;
        padding: 0;
    }

    .light-img-swip{
        aspect-ratio: 4 / 7;
    }
}

@media (max-width: 767px) {
     .pdp-hero {
        padding: 56px 0 24px;
        max-width: 100% !important;
    }

    .pdp-gallery,
    .pdp-content {
    top: 0px;
}

.pdp-layout{
    padding: 12px 24px;
}

.pdp-thumb-swiper{
    margin: 0;
}

     .pdp-lightbox-swiper{
        display: none !important;
    }

    .light-res-article{
    display: flex;
    flex-direction: column;
    }

    .pdp-breadcrumbs {
        font-size: 11px;
        line-height: 17px;
    }

    .pdp-price{
        font-size: 14px;
        line-height: 22.4px;
    }

    .pdp-breadcrumbs{
        margin-bottom: 16px;
    }
   


      .pdp-main-swiper .swiper-slide img{
        border-radius: 0px;
        aspect-ratio: 1 / 1;
    } 
    .pdp-thumb-swiper .swiper-slide img{
        border-radius: 0px;
        aspect-ratio: 1 / 1;
    }


    .pdp-title {
        font-size: 28px;
        line-height: 34px;
    }

   .pdp-nav-prev{
        left: 0px !important;
    }
    
    .pdp-nav-next{
        right: 0px !important;
    }


    .pdp-atc-btn {
        height: 39.6px;
    }

    .pdp-qty-number{
        font-size: 14px;
    }
    
    .pdp-accordion-header h4{
        font-size: 14px;
        line-height: 22px;
    }

    .pdp-accordion-header{
        padding: 12.9px 0;
    }

    .add-rec h3{
        font-size: 19.37px !important;
        line-height: 23px !important;
    }

    .pdp-upsell-wrapper{
        gap: 12px;
    }

    .pdp-upsell-info p {
        font-size: 13px;
        line-height: 16px;
        margin-bottom: 2px;
    }

    .pdp-upsell-info span {
        font-size: 12px;
        line-height: 19px;
    }

    .light-res-article{
        overflow: scroll;
    }


.light-res-article::-webkit-scrollbar {
    display: none; 
}

    .pdp-lightbox-inner{
        align-items: start;
        overflow: scroll;
        -ms-overflow-style: none;  
        scrollbar-width: none; 
    }

    .light-img-swip p,
    .pag-num-light{
        padding: 7px 10.5px;
        background-color: #fff;
        border-radius: 12px;
        top: 10.5px;
        left: 10.5px;
        transform: translate(0);
        font-size: 9px;
        line-height: 15px;
    }

    .light-img-swip p{
        top: unset;
        bottom: 10.5px;
    }

    .light-img-swip{
        position: relative;
        aspect-ratio: unset;
    }

    .light-img-swip img{
        height: 100%;
        width: 100%;
        object-fit: cover;
        border-radius: 0;
    }

    .pdp-lb-close{
        top: 35px;
        right: 35px;
    }
}




/* video section  */


.section-action-video {
    background-color: #FCE6EA;
    padding: 0 0 40px;
}

.section-video-grid {
    display: flex;
    gap: 24px;
}

.section-video-item {
    width: 25%;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 2/3;
}

.section-video-grid video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-inner-video .section-heading {
    padding: 40px 0 32px;
}

.video-swiper .section-video-item {
    width: 100%;
}

.swiper-button-next-vid,
.swiper-button-prev-vid {
    color: #000 !important;
    background-color: #FCE6EA;
}

.swiper-button-next-vid:hover,
.swiper-button-prev-vid:hover {
    box-shadow: 0 0 0 3px #FCE6EA, 0 2px 4px 3px #00000026 !important;
}

.video-swiper {
    display: none;
}


/* review  */
.review-section {
    padding-bottom: 40px;
}

.review-item {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-item span {
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
    opacity: 0.6;
}

.review-item p {
    font-size: 20px;
    line-height: 32px;
    font-weight: 300;
}

.review-item h3 {
    font-weight: 400;
    font-size: 23.33px;
    line-height: 28px;
}

.review-stars svg {
    width: 85px;
    height: auto;
}


.swiper-button-next-rev,
.swiper-button-prev-rev {
    color: #000 !important;
    background-color: #fff;
}


/* pro best seller  */


.product-best-seller {
    padding: 40px 0;

}


.best-seller-head-pro {
    padding-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}


.product-best-seller .lower-seller-card h5 {
    color: #111;
}

.swiper-button-next-2,
.swiper-button-prev-2 {
    color: #000 !important;
    background-color: #fff;
}






@media (max-width: 1024px) {
    .video-swiper {
        display: block;
    }

    .section-video-grid {
        display: none;
    }

    .review-section {
        padding: 80px 0 40px;
    }

    .review-item span {
        padding-top: 3px;
    }

}


@media (max-width: 768px) {


    /* video  */

    .section-action-video {
        padding-bottom: 24px;
    }

    .section-inner-video .section-heading {
        padding: 24px 0 8px;
    }

    /* review  */

    .review-section {
        padding: 24px 0;
        max-width: 100%;
    }

    .review-item h3 {
        font-size: 19px;
        line-height: 23px;
    }

    .review-item p {
        font-size: 14px;
        line-height: 22px;
    }

    .review-item span {
        font-size: 12px;
        line-height: 19px;
    }

    .review-item {
        max-width: 88%;
        margin: auto;
    }

    /* product  */

    .product-best-seller .upper-seller-card {
        aspect-ratio: 2/3;
    }

    .best-seller-head-pro {
        padding: 0 24px 16px;
    }

    .product-best-seller .swiper-wrapper-pad {
        padding: 0;
    }

}