/* ══════════════════════════════════════════════════════════════
   NUTRIBUDDY — MAIN STYLESHEET
   Sections:
   01. CSS Variables & Reset
   02. Custom Cursor
   03. Navbar
   04. Cart Popup
   05. Hero Slider
   06. Trust Bar
   07. Trust Indicators
   08. Products
   09. Diet Chart Section
   10. Ingredients Section
   11. How It Works
   12. Quiz CTA
   13. Certifications Carousel
   14. Testimonials
   15. FAQ
   16. Newsletter
   17. Footer
   18. Shared Utilities & Animations
   19. Responsive
══════════════════════════════════════════════════════════════ */


/* ══════════════════════════════════════════
   01. CSS VARIABLES & RESET
══════════════════════════════════════════ */
:root {
    --btn: linear-gradient(135deg, var(--pk), #6360e2);
    --pk: #FF4D8F;
    --pkl: #FFD6E8;
    --pkd: #C0306F;
    --pu: #7C3AED;
    --pul: #EDE9FE;
    --pud: #5B21B6;
    --ye: #FFD600;
    --yel: #FFFBE0;
    --sk: #00BFFF;
    --skl: #DCFBFF;
    --mn: #00D68F;
    --mnl: #D0FFF2;
    --or: #FF6B35;
    --orl: #FFE8DF;
    --dk: #0D0020;
    --dk2: #1A0A3E;
    --wh: #FFFFFF;
    --cr: #FFFBF5;
    --r: 24px;
    --rL: 44px;
    --border: #E6E6EE;
    --muted: #6b6b80;
    --white: #fff;
}

/* Checkout state/city controls */
.checkout-validation-errors {
    max-width: 1200px;
    margin: 24px auto 0;
    padding: 14px 18px;
    border: 1px solid rgba(240, 68, 56, .22);
    border-radius: 8px;
    background: #fff5f4;
    color: #9f1c12;
    font-family: 'Nunito', sans-serif;
}

.checkout-validation-errors strong {
    display: block;
    margin-bottom: 8px;
    font-weight: 900;
}

.checkout-validation-errors ul {
    margin-left: 18px;
}

.checkout-combobox,
.checkout-city-select-wrap {
    position: relative;
}

.checkout-city-select-wrap input {
    padding-right: 42px;
}

.checkout-combobox-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 30;
    max-height: 240px;
    overflow-y: auto;
    padding: 6px;
    border: 2px solid var(--pkl);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 38px rgba(13, 0, 32, .14);
}

.checkout-combobox-option {
    width: 100%;
    min-height: 38px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: var(--dk);
    cursor: pointer;
    display: block;
    font: inherit;
    font-size: .88rem;
    padding: 9px 11px;
    text-align: left;
}

.checkout-combobox-option:hover,
.checkout-combobox-option.active {
    background: var(--pkl);
    color: var(--pkd);
}

.checkout-combobox-empty {
    color: var(--muted);
    font-size: .84rem;
    font-weight: 700;
    padding: 10px 11px;
}

#addressCard {
    overflow: visible;
    position: relative;
    z-index: 20;
}

#addressCard .card-body,
#newAddrPanel,
#addressFormPanel,
.new-addr-form,
#addressCard .form-grid,
#addressCard .form-group {
    overflow: visible;
}

#paymentCard {
    position: relative;
    z-index: 1;
}

.checkout-city-spinner {
    position: absolute;
    right: 14px;
    top: 50%;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    border: 2px solid rgba(255, 77, 143, .24);
    border-top-color: var(--pk);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    animation: checkoutCitySpin .75s linear infinite;
}

.checkout-city-spinner.show {
    opacity: 1;
}

@keyframes checkoutCitySpin {
    to {
        transform: rotate(360deg);
    }
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

body {
    font-family: 'DM Sans', sans-serif;
    /* background: var(--cr); */
    background: linear-gradient(145deg, #FFF0FA, #F0E5FF, #FFDCF0);
    color: var(--dk);
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

main,
section,
footer,
nav {
    max-width: 100%;
}

/* Hero visual side */
/* add banner 1 slider css  */
/*.slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    padding: 125px 6%;
    opacity: 0;
    pointer-events: none;
    transition: opacity .6s;
}

.slide.active {
    opacity: 1;
    pointer-events: all;
}

 .slide.slide-1 {
    grid-template-columns: 1fr;
    padding: 0;
    background: #fdf1f3;
}

.slide.slide-1 > img {
    width: 100%;
    height: 90%;
    display: block;
    object-fit: contain;
    object-position: center;
} */

/* end tghis  */



.slide-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5
}

.gummy-showcase {
    position: relative;
    width: 360px;
    height: 420px
}

.gummy-jar {
    width: 220px;
    height: 260px;

    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px
}

/* Flying gummies around jar */
.flying-gummy {
    position: absolute;
    font-size: 2rem;
    animation: flyAround 3s ease-in-out infinite
}


.fg1 {
    top: 10px;
    left: -33px;
    animation-delay: 0s
}

.fg1 img {
    height: 110px;
}

.fg2 {
    top: 0;
    right: 131px;
    animation-delay: .8s
}

.fg3 {
    bottom: 6px;
    left: 0;
    animation-delay: 1.4s
}

.fg4 {
    bottom: 20px;
    right: 10px;
    animation-delay: .4s
}

.fg5 {
    top: 28%;
    left: -33px;
    animation-delay: 1.8s;
    font-size: 1.5rem
}

.fg6 {
    top: 60%;
    left: -20px;
    animation-delay: 1.8s;
    font-size: 1.5rem
}

.fg7 {
    top: 35%;
    right: 10px;
    animation-delay: .8s
}

.fg8 {
    top: 28%;
    right: 10px;
    animation-delay: .8s
}


.slide-visual1 img {
    width: 300px;
    animation: floatY 4s ease-in-out infinite;
}



/* ── CURSOR ── */
body.has-custom-cursor,
body.has-custom-cursor * {
    cursor: none !important;
}

@media (hover: none) {

    body.has-custom-cursor,
    body.has-custom-cursor * {
        cursor: auto !important;
    }

    #cur,
    #cur-ring {
        display: none !important;
    }
}

#cur {
    position: fixed;
    width: 18px;
    height: 18px;
    background: var(--pk);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
    transition: width .18s, height .18s, background .18s
}

#cur-ring {
    position: fixed;
    width: 42px;
    height: 42px;
    border: 2.5px solid var(--pu);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: all .1s ease
}

body.cursor-hover #cur {
    width: 46px;
    height: 46px;
    background: var(--ye);
    mix-blend-mode: multiply
}

body.cursor-hover #cur-ring {
    width: 60px;
    height: 60px;
    border-color: var(--pk)
}

/* ══════════════════════════════════════════
   03. NAVBAR
══════════════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 100px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(255, 251, 245, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: box-shadow .3s;
}

nav.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
}

/* Logo */
.logo-new img {
    width: 250px !important;
    display: block;
    margin: 0;

    object-fit: contain;
}

/* Desktop Nav Links */
.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dk);
    font-weight: 700;
    font-size: .9rem;
    white-space: nowrap;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--pk);
}

/* Nav Right Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Cart Button */
#cartIconBtn img {
    width: 23px;
}

#cartIconBtn {
    position: relative;
    background: var(--cr);
    border: 2.5px solid var(--pkl);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    flex-shrink: 0;
}

#cartIconBtn:hover {
    background: var(--pkl);
    border-color: var(--pk);
    transform: scale(1.08);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--pk);
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .62rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--cr);
    animation: cartPop .3s cubic-bezier(.34, 1.56, .64, 1);
}

/* CTA Button */
.nav-cta {
    background: var(--btn);
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: 'Arial', sans-serif;
    font-weight: 700 !important;
    font-size: 1.05rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(255, 77, 143, .35);
    transition: transform .2s, background .2s, box-shadow .2s;
}

.nav-cta:hover {
    background: #e0306f !important;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 22px rgba(255, 77, 143, .45);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    transition: background .2s;
    flex-shrink: 0;
}

.hamburger img {
    width: 24px;
}

.hamburger:hover {
    background: var(--pkl);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--dk);
    border-radius: 2px;
    transition: all .35s cubic-bezier(.34, 1.2, .64, 1);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(26, 10, 46, .3);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 251, 245, .98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 3px solid var(--yel);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .12);
    max-height: 0;
    overflow: hidden;
    transition: max-height .42s cubic-bezier(.4, 0, .2, 1);
}

.mobile-menu.open {
    max-height: 420px;
}

.mobile-menu ul {
    list-style: none;
    padding: 8px 0 0;
}

.mobile-menu ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 6%;
    text-decoration: none;
    color: var(--dk);
    font-weight: 700;
    font-size: .97rem;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    transition: background .2s, color .2s, padding-left .25s;
}

.mobile-menu ul li a:hover {
    background: var(--pkl);
    color: var(--pk);
    padding-left: calc(6% + 8px);
}

.link-emoji {
    font-size: 1.1rem;
}

.mobile-cta-wrap {
    padding: 14px 6% 20px;
}

.mobile-cta-wrap a {
    display: block;
    text-align: center;
    background: var(--btn);
    color: #fff;
    padding: 14px 24px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .95rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 77, 143, .35);
    transition: transform .2s, background .2s;
}

.mobile-cta-wrap a:hover {
    background: #e0306f;
    transform: translateY(-2px);
}


/* ══════════════════════════════════════════
   04. CART POPUP
══════════════════════════════════════════ */
#cart-popup {
    position: fixed;
    right: -420px;
    top: 0;
    bottom: 0;
    width: 380px;
    background: #fff;
    z-index: 99000;
    box-shadow: -8px 0 40px rgba(0, 0, 0, .12);
    transition: right .4s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
}

#cart-popup.open {
    right: 0;
}

.popup-inner {
    padding: 28px 24px;
}

.close-cart {
    width: 36px;
    height: 36px;
    background: var(--pkl);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--pk);
    margin-bottom: 20px;
    transition: all .2s;
    border: none;
}

.close-cart:hover {
    background: var(--pk);
    color: #fff;
}

.cart-inner h4.title-text {
    font-family: 'Arial', sans-serif;
    font-size: 1.3rem;
    color: var(--dk);
    margin-bottom: 20px;
}

.cart-inner h4.title-text span {
    background: var(--pk);
    color: #fff;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    margin-right: 8px;
}

.single-cart-box {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1.5px solid var(--pkl);
    position: relative;
}

.single-cart-box .image-box {
    width: 64px;
    height: 64px;
    background: var(--pkl);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    overflow: hidden;
    padding: 5px;
}

.image-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.single-cart-box h5 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .82rem;
    color: var(--dk);
    margin-bottom: 4px;
}

.cart-popup-variant {
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 5px;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.single-cart-box h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: var(--dk);
}

.cart-popup-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ci-qty-row {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f8f8;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 4px 6px;
}

.ci-qty-row .qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--dk);
    font-size: 1rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
}

.ci-qty-row .qty-btn:hover {
    border-color: var(--pk);
    background: var(--pkl);
    color: var(--pk);
}

.ci-qty-row .qty-val {
    width: 52px;
    height: 30px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    text-align: center;
    font-size: .95rem;
    font-weight: 800;
    color: var(--dk);
    outline: none;
}

.single-cart-box .cart-remove-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--pkl);
    border: none;
    cursor: pointer;
    color: var(--pk);
    font-size: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    flex-shrink: 0;
}

.single-cart-box .cart-remove-btn:hover {
    background: var(--pk);
    color: #fff;
}

.text-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1.5px solid var(--pkl);
}

.text-box h5 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    color: #888;
}

.text-box span {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    color: black;
}

.btn-box {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-box a {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .85rem;
    text-decoration: none;
    transition: all .25s;
}

.btn-box a:first-child {
    background: var(--pkl);
    color: var(--pk);
    border: 2px solid var(--pkl);
}

.btn-box a:first-child:hover {
    background: var(--btn);
    color: #fff;
}

.btn-box a:last-child {
    background: var(--btn);
    color: #fff;
}

.btn-box a:last-child:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 77, 143, .4);
}


/* breadcrumb */
.page-hero {
    background: linear-gradient(135deg, var(--dk) 0%, #260050 50%, #0d0030 100%);
    padding: 130px 5% 56px;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.page-hero-inner {
    margin: 0 auto;
    max-width: 900px;
    position: relative;
    z-index: 2
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 77, 143, .12), transparent 65%);
    border-radius: 50%;
    pointer-events: none
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(124, 58, 237, .1), transparent 65%);
    border-radius: 50%;
    pointer-events: none
}

.page-breadcrumb {
    align-items: center;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    font-size: .9rem;
    gap: 12px;
    justify-content: flex-start;
    margin: 0 0 22px;
    position: relative;
    z-index: 2
}

.page-breadcrumb a {
    color: var(--pk);
    font-weight: 700;
    text-decoration: none
}

.page-breadcrumb a:hover {
    text-decoration: underline
}

/* Reusable Blog-Style Hero */
.blog-hero {
    background: #0d0028;
    padding: 130px 5% 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.blog-hero::before {
    content: '';
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 62% 38% 56% 44%/48% 62% 38% 52%;
    background: radial-gradient(circle, rgba(255, 77, 143, .12), transparent 70%);
    top: -160px;
    right: -120px;
    animation: blobMorph 10s ease-in-out infinite;
    pointer-events: none;
}

.blog-hero::after {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 38% 62% 44% 56%/62% 38% 55% 45%;
    background: radial-gradient(circle, rgba(124, 58, 237, .09), transparent 70%);
    bottom: -80px;
    left: -80px;
    animation: blobMorph 14s ease-in-out infinite reverse;
    pointer-events: none;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
}

.blog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pkl);
    color: var(--pkd);
    border-radius: 50px;
    padding: 8px 20px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .78rem;
    margin-bottom: 20px;
}

.blog-hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2.2rem, 6vw, 3.6rem);
    color: var(--wh);
    line-height: 1.2;
    margin-bottom: 16px;
}

.blog-hero-sub {
    font-size: 1.05rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Reusable Product-Style Hero */
.product-listing-hero {
    background: #0d0028;
    overflow: hidden;
    padding: 100px 5% 60px;
    position: relative;
}

.product-listing-hero::before {
    animation: blobMorph 10s ease-in-out infinite;
    background: radial-gradient(circle, rgba(255, 77, 143, .12), transparent 70%);
    border-radius: 62% 38% 56% 44%/48% 62% 38% 52%;
    content: '';
    height: 560px;
    pointer-events: none;
    position: absolute;
    right: -120px;
    top: -160px;
    width: 560px;
}

.product-listing-hero::after {
    animation: blobMorph 14s ease-in-out infinite reverse;
    background: radial-gradient(circle, rgba(124, 58, 237, .09), transparent 70%);
    border-radius: 38% 62% 44% 56%/62% 38% 55% 45%;
    bottom: -80px;
    content: '';
    height: 380px;
    left: -80px;
    pointer-events: none;
    position: absolute;
    width: 380px;
}

.product-listing-hero-inner {
    margin: 0 auto;
    max-width: 900px;
    padding-top: 23px;
    position: relative;
    z-index: 2;
}

.product-listing-breadcrumb {
    align-items: center;
    color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    font-size: .9rem;
    gap: 12px;
    margin-bottom: 24px;
}

.product-listing-breadcrumb a {
    color: var(--pk);
    font-weight: 700;
    text-decoration: none;
}

.product-listing-breadcrumb a:hover {
    text-decoration: underline;
}

.product-listing-hero-badge {
    background: var(--pkl);
    border-radius: 50px;
    color: var(--pk);
    display: inline-block;
    font-family: 'Nunito', sans-serif;
    font-size: .75rem;
    font-weight: 900;
    margin-bottom: 16px;
    padding: 8px 16px;
}

.product-listing-hero-title {
    color: var(--wh);
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    line-height: 1.3;
    margin-bottom: 20px;
}

.product-listing-hero-sub {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    max-width: 650px;
}

.hero-eyebrow {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--pk);
    margin-bottom: 12px;
    display: block;
    position: relative;
    z-index: 2
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
    line-height: 1.1
}

.hero-title span {
    color: var(--ye)
}

.hero-subtitle {
    font-size: .95rem;
    color: rgba(255, 255, 255, .55);
    max-width: 520px;
    margin: 0 0 24px;
    line-height: 1.7;
    position: relative;
    z-index: 2
}

.hero-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2
}

.meta-pill {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50px;
    padding: 7px 16px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .75rem;
    color: rgba(255, 255, 255, .7);
    display: flex;
    align-items: center;
    gap: 6px
}

/* Privacy and legal content pages */
.privacy-text-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 5% 80px;
}

.privacy-block {
    background: linear-gradient(145deg, #fff, #fff7fc);
    border: 2px solid var(--pkl);
    border-radius: 24px;
    box-shadow: 0 10px 28px rgba(26, 10, 62, .08);
    padding: 42px 44px;
}

.privacy-block h2 {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 700;
    color: var(--dk);
    line-height: 1.15;
    margin-bottom: 20px;
}

.privacy-block h3 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    color: var(--pu);
    font-weight: 400;
    margin: 34px 0 14px;
}

.privacy-block p,
.privacy-block li {
    font-family: 'DM Sans', sans-serif;
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
}

.privacy-block p {
    margin-bottom: 18px;
}

.privacy-block ul {
    margin: 0 0 18px 20px;
}

.privacy-block a {
    color: var(--pk);
    font-weight: 700;
    text-decoration: none;
}

.privacy-block a:hover {
    color: var(--pkd);
    text-decoration: underline;
}

.privacy-block p:last-child {
    margin-bottom: 0;
}

/* Terms page */
.terms-text-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 5% 80px;
}

.terms-block {
    background: linear-gradient(145deg, #fff, #fff7fc);
    border: 2px solid var(--pkl);
    border-radius: 24px;
    box-shadow: 0 10px 28px rgba(26, 10, 62, .08);
    padding: 42px 44px;
}

.terms-block h2 {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 700;
    color: var(--dk);
    line-height: 1.15;
    margin-bottom: 20px;
}

.terms-block h3 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    color: var(--pu);
    font-weight: 400;
    margin: 34px 0 14px;
}

.terms-block p {
    font-family: 'DM Sans', sans-serif;
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.terms-block a {
    color: var(--pk);
    font-weight: 700;
    text-decoration: none;
}

.terms-block a:hover {
    color: var(--pkd);
    text-decoration: underline;
}

.terms-block p:last-child {
    margin-bottom: 0;
}

/* Return policy page */
.return-text-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 5% 80px;
}

.return-block {
    background: linear-gradient(145deg, #fff, #fff7fc);
    border: 2px solid var(--pkl);
    border-radius: 24px;
    box-shadow: 0 10px 28px rgba(26, 10, 62, .08);
    padding: 42px 44px;
}

.return-block h2 {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 700;
    color: var(--dk);
    line-height: 1.15;
    margin-bottom: 20px;
}

.return-block h3 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    color: var(--pu);
    font-weight: 400;
    margin: 34px 0 14px;
}

.return-block p {
    font-family: 'DM Sans', sans-serif;
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.return-block a {
    color: var(--pk);
    font-weight: 700;
    text-decoration: none;
}

.return-block a:hover {
    color: var(--pkd);
    text-decoration: underline;
}

.return-block p:last-child {
    margin-bottom: 0;
}

.pp-layout {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 5% 80px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 36px;
    align-items: start;

}


/* ══════════════════════════════════════════
   05. HERO SLIDER
══════════════════════════════════════════ */
/* ── HERO ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden
}

.slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    padding: 50px 6%;
    opacity: 0;
    pointer-events: none;
    transition: opacity .6s
}

.slide.active {
    opacity: 1;
    pointer-events: all
}

.slide-1 {
    /* background: #fdf1f3; */
    background: linear-gradient(145deg, #fff0f3 0%, #ffe5f8 50%, #ffdcee 100%)
}

.slide-2 {
    background: linear-gradient(145deg, #e6ffe6 0%, #e1ffdd 50%, #d4f6e0 100%)
}

.slide-3 {
    background: linear-gradient(145deg, #FFFCE0 0%, #FFE8D8 50%, #FFF0CC 100%)
}

.blob {
    position: absolute;
    border-radius: 62% 38% 56% 44%/48% 62% 38% 52%;
    opacity: .15;
    animation: blobMorph 9s ease-in-out infinite;
    pointer-events: none
}

.b1 {
    width: 500px;
    height: 500px;
    background: rgb(239, 103, 103);
    top: -120px;
    right: -80px
}

.b2 {
    width: 360px;
    height: 360px;
    background: rgb(244, 62, 62);
    bottom: -80px;
    left: 5%;
    animation-delay: 3s
}

.b3 {
    width: 280px;
    height: 280px;
    background: var(--ye);
    top: 30%;
    right: 38%;
    animation-delay: 6s;
    opacity: .09
}

.slide-text {
    position: relative;
    z-index: 5
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    animation: badgePulse 3s ease-in-out infinite
}

.badge-pk {
    background: var(--pkl);
    color: var(--pk)
}

.badge-sk {
    background: rgb(181, 239, 181);
    color: #299256
}

.badge-ye {
    background: var(--yel);
    color: #907000
}

h1.htitle {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.8rem, 4.2vw, 3.7rem);
    line-height: 1.08;
    color: var(--dk);
    margin-bottom: 18px
}

.htitle .pop {
    display: inline-block;
    color: rgb(208, 13, 13);
    position: relative
}

.htitle .pop::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 9px;
    background: var(--ye);
    border-radius: 4px;
    z-index: -1;
    transform: skewX(-4deg)
}

.htitle .blue {
    color: rgb(52, 197, 52)
}

.htitle .green {
    color: rgb(213 128 16);
}

.htitle .orange {
    color: var(--or)
}

.slide-desc {
    font-size: 1rem;
    line-height: 1.72;
    color: #4A4A5A;
    max-width: 470px;
    margin-bottom: 28px
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.hbtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    transition: all .28s;
    text-decoration: none;
    position: relative;
    overflow: hidden
}

.hbtn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .15);
    transform: translateX(-100%);
    transition: transform .3s
}

.hbtn:hover::before {
    transform: translateX(0)
}

.hbtn-main {
    background: var(--btn);
    color: #fff;
    box-shadow: 0 8px 28px rgba(255, 77, 143, .42)
}


.hbtn-main:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 16px 36px rgba(255, 77, 143, .55)
}

.hbtn-sky {
    background: linear-gradient(135deg, rgb(80 190 55), #047a06);
    color: #fff;
    box-shadow: 0 8px 28px rgba(0, 191, 255, .38)
}

.hbtn-sky:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 16px 36px rgba(0, 191, 255, .52)
}

.hbtn-or {
    background: linear-gradient(135deg, rgb(220, 178, 41), #c04010);
    color: #fff;
    box-shadow: 0 8px 28px rgba(255, 107, 53, .42)
}

.hbtn-or:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 16px 36px rgba(255, 107, 53, .55)
}

.hbtn-ghost {
    background: transparent;
    color: var(--dk);
    border: 2.5px solid rgba(13, 0, 32, .2)
}

.hbtn-ghost:hover {
    background: var(--dk);
    color: #fff;
    transform: translateY(-3px)
}

.hero-trust {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.htrust {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(8px);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 700;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .07);
    animation: floatY 3s ease-in-out infinite;
    border: 1.5px solid rgba(255, 255, 255, .9)
}

.htrust:nth-child(2) {
    animation-delay: .5s
}

.htrust:nth-child(3) {
    animation-delay: 1s
}

.htrust:nth-child(4) {
    animation-delay: 1.5s
}

.slide-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5
}

.gummy-showcase {
    position: relative;
    width: 380px;
    height: 440px
}

.jar-wrap {
    position: relative;
    width: 220px;
    height: 270px;
    margin: 80px auto 0;
    animation: jarFloat 4s ease-in-out infinite
}

.jar-body1 img {
    width: 500px;
    margin-left: -25px;

}

.jar-body2 img {
    width: 500px;
    margin-left: -25px;

}


.jar-body::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, .4) 0%, transparent 60%);
    border-radius: inherit;
    pointer-events: none
}

.jar-label {
    padding: 9px 18px;
    border-radius: 14px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.05rem;
    color: #fff;
    text-align: center;
    line-height: 1.25;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15)
}

.jar-gummies {
    font-size: 2.4rem;
    letter-spacing: 4px;
    animation: gummyBounce 2s ease-in-out infinite
}

.jar-sub {
    font-size: .7rem;
    color: #999;
    font-weight: 600;
    text-align: center
}

.jar-lid {
    position: absolute;
    top: -50px;
    left: -10px;
    width: 240px;
    height: 56px;
    border-radius: 20px 20px 12px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka One', cursive;
    color: #fff;
    font-size: .9rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18)
}

.lid-pk {
    background: linear-gradient(180deg, var(--pk), var(--pkd))
}

.lid-sk {
    background: linear-gradient(180deg, var(--sk), #0088bb)
}

.lid-or {
    background: linear-gradient(180deg, var(--or), #c04010)
}

.jar-shine {
    position: absolute;
    top: 8px;
    left: 18px;
    width: 50px;
    height: 80px;
    background: linear-gradient(160deg, rgba(255, 255, 255, .7), transparent);
    border-radius: 50%;
    transform: rotate(-20deg);
    pointer-events: none
}

.fg {
    position: absolute;
    font-size: 1.9rem;
    animation: fgFly 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .15))
}

.fg1 {
    top: 5px;
    left: 15px;
    animation-delay: 0s
}

.fg2 {
    top: -5px;
    right: 131px;
    animation-delay: .7s;
    font-size: 2.2rem
}

.fg3 {
    bottom: 55px;
    left: -5px;
    animation-delay: 1.3s
}

.fg4 {
    bottom: 20px;
    right: 8px;
    animation-delay: .3s
}

.fg5 {
    top: 42%;
    left: 0;
    animation-delay: 1.9s;
    font-size: 1.4rem
}

.fg6 {
    top: 25%;
    right: -10px;
    animation-delay: 2.4s;
    font-size: 1.5rem
}

.bb {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 12px 16px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .85rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    animation: floatBB 4s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, .9);
    color: var(--dk);
}

/* Featured single card styling */
.bb-featured {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: auto;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    z-index: 15;
    animation: floatBB 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0;
}

/* Icon box - circular and separate */
.bb-featured::before {
    content: attr(data-icon);
    font-size: 2.2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid rgba(255, 255, 255, .9);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    flex-shrink: 0;
}

/* Text box - separate but connected */
.bb-featured::after {
    content: attr(data-text);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--dk);
    white-space: nowrap;
    line-height: 1.2;
    background: white;
    border: 2px solid rgba(255, 255, 255, .9);
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

/* Responsive styles for featured card */
@media (max-width: 1024px) {
    .bb-featured {
        gap: 6px;
    }

    .bb-featured::before {
        width: 48px;
        height: 48px;
        font-size: 1.8rem;
    }

    .bb-featured::after {
        font-size: 0.75rem;
        padding: 10px 14px;
    }
}

@media (max-width: 768px) {
    .bb-featured {
        gap: 5px;
        right: 12px;
    }

    .bb-featured::before {
        width: 44px;
        height: 44px;
        font-size: 1.6rem;
    }

    .bb-featured::after {
        font-size: 0.7rem;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .bb-featured {
        gap: 4px;
        right: 10px;
    }

    .bb-featured::before {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    .bb-featured::after {
        font-size: 0.65rem;
        padding: 6px 10px;
    }
}

.bb1 {
    position: absolute;
    top: -11px;
    right: -55px;
    animation-delay: 0s;
    border-color: var(--pkl)
}

.bb2 {
    position: absolute;
    top: 11%;
    right: -176px;
    animation-delay: 1.4s;
    border-color: var(--skl)
}

.bb3 {
    position: absolute;
    bottom: 55px;
    right: -40px;
    animation-delay: .7s;
    border-color: var(--yel)
}

.bb4 {
    position: absolute;
    top: 18%;
    left: -50px;
    animation-delay: 2s;
    border-color: var(--mnl)
}

.bb5 {
    position: absolute;
    bottom: 28%;
    left: -65px;
    animation-delay: .4s;
    border-color: var(--pul)
}

.spark {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: sparkFloat 4s ease-in-out infinite;
    pointer-events: none
}

.slide-dots {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .15);
    cursor: pointer;
    transition: all .35s;
    border: none
}

.dot.active {
    background: var(--pk);
    width: 30px;
    border-radius: 5px
}

.sarrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .1);
    font-family: 'Fredoka One', cursive
}

.sarrow:hover {
    transform: translateY(-50%) scale(1.12)
}

.sp {
    left: 18px;
    background: white;
    color: var(--dk)
}

.sn {
    right: 18px;
    background: var(--pk);
    color: white
}

.sn:hover {
    background: var(--pkd)
}

.slide-counter {
    position: absolute;
    top: 24px;
    right: 20px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: rgba(0, 0, 0, .2);
    z-index: 100
}

.slide-counter span {
    color: var(--pk)
}

/* product page start*/

/* ── PRODUCT HERO ── */
.pdp-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 40px 5% 60px;
    margin: 0 auto;
    align-items: start;
}

/* Left: Image Gallery */
.pdp-gallery {
    position: sticky;
    top: 90px;
}

.main-img-wrap {
    background: linear-gradient(135deg, #FFF0FA, #F0E8FF, #FFDCF0);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--pkl);
}

.main-img-wrap .badge-bestseller {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--ye);
    color: var(--dk);
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .72rem;
    padding: 6px 14px;
    border-radius: 50px;
}

.p-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: block;
}

.pc-emoji.p-image {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.p-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

/* For nutribuddy product cards - needs absolute positioning for animation */
.pc-emoji.p-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: initial;
    object-position: center;
}

/* For product page main image - no absolute positioning needed */
.main-img-wrap .p-image img {
    position: static;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.p-image .default-img {
    z-index: 2;
}

.p-image .hover-img {
    z-index: 1;
    transform: translateY(100%);
}

.p-image:hover .default-img {
    transform: translateY(-100%);
}

.p-image:hover .hover-img {
    transform: translateY(0);
}

.main-img-wrap .badge-discount {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--pk);
    color: #fff;
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    padding: 8px 14px;
    border-radius: 50px;
}

.main-product-img {
    width: 320px;
    animation: floatY 4s ease-in-out infinite;
}

.floating-badges {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-badge {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 10px 14px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .78rem;
    color: var(--dk);
    animation: floatY 3s ease-in-out infinite;
}

.float-badge:nth-child(2) {
    animation-delay: 1s;
}

.float-badge:nth-child(3) {
    animation-delay: 2s;
}

.fb1 {
    top: 24px;
    right: 70px;
}

.fb2 {
    bottom: 50px;
    left: 16px;
}

.fb3 {
    bottom: 100px;
    right: 16px;
}

.thumb-row {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.thumb {
    width: 76px;
    height: 76px;
    border-radius: 16px;
    border: 2.5px solid var(--pkl);
    background: linear-gradient(135deg, #FFF0FA, #F0E8FF);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all .25s;
    overflow: hidden;
}

.thumb img {
    width: 38px;
}

.thumb.active {
    border-color: var(--pk);
    box-shadow: 0 4px 14px rgba(255, 77, 143, .3);
}

.thumb:hover {
    border-color: var(--pk);
    transform: scale(1.06);
}

/* Right: Product Info */

.pdp-cat {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pk);
    margin-bottom: 8px;
}

.pdp-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--dk);
    line-height: 1.1;
    margin-bottom: 12px;
}

.pdp-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.stars {
    color: var(--ye);
    font-size: 1rem;
}

.rating-val {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: var(--dk);
}

.rating-count {
    font-size: .84rem;
    color: #888;
}

.rating-divider {
    width: 1px;
    height: 16px;
    background: #ddd;
}

/* Price Box */
.price-box {
    background: linear-gradient(135deg, rgba(255, 77, 143, .05), rgba(124, 58, 237, .04));
    border: 2.5px solid var(--pkl);
    border-radius: 24px;
    padding: 22px 24px;
    margin-bottom: 22px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
}

.price-now {
    font-family: 'Fredoka One', cursive;
    font-size: 2.4rem;
    color: var(--pk);
}

.price-old {
    font-size: 1.1rem;
    color: #bbb;
    text-decoration: line-through;
    font-family: 'DM Sans', sans-serif;
}

.price-save {
    background: var(--mnl);
    color: #00a870;
    border-radius: 50px;
    padding: 4px 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .78rem;
}

.price-note {
    font-size: .8rem;
    color: #888;
}

.cashback-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    background: var(--yel);
    border-radius: 12px;
    padding: 8px 14px;
}

.cashback-row span {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .82rem;
    color: #907000;
}

/* Problem and Solution Section */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s cubic-bezier(.34, 1.1, .64, 1), transform .6s cubic-bezier(.34, 1.1, .64, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal.d1 {
    transition-delay: .1s;
}

.reveal.d2 {
    transition-delay: .2s;
}

.reveal.d3 {
    transition-delay: .3s;
}

/* ══════════════════════════════════════════
   MAIN SECTION
══════════════════════════════════════════ */
.ps-section {
    padding: 80px 5%;
    background: var(--cr);
    position: relative;
    overflow: hidden;
}

.ps-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 77, 143, .05), transparent 65%);
    top: -180px;
    right: -120px;
    pointer-events: none;
}

.ps-section::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 214, 143, .05), transparent 65%);
    bottom: -80px;
    left: -80px;
    pointer-events: none;
}

.ps-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ══════════════════════════════════════════
   HEADER SECTION
══════════════════════════════════════════ */
.ps-header {
    text-align: center;
    margin-bottom: 60px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--pk);
    margin-bottom: 12px;
}

.eyebrow::before,
.eyebrow::after {
    content: '';
    width: 22px;
    height: 2px;
    background: var(--pk);
    border-radius: 2px;
}

.ps-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.9rem, 4vw, 3rem);
    color: var(--dk);
    line-height: 1.15;
    margin-bottom: 12px;
}

.ps-title .acc {
    color: var(--pk);
}

.ps-title .acc2 {
    color: var(--mn);
}

.ps-sub {
    font-size: .93rem;
    color: var(--muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ══════════════════════════════════════════
   BLOCK LABELS
══════════════════════════════════════════ */
.block-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.blabel {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .83rem;
}

.bl-prob {
    background: rgba(255, 77, 143, .1);
    color: var(--pkd);
    border: 1.5px solid rgba(255, 77, 143, .2);
}

.bl-sol {
    background: rgba(0, 214, 143, .12);
    color: #007a50;
    border: 1.5px solid rgba(0, 214, 143, .25);
}

.bline {
    flex: 1;
    height: 1.5px;
    background: linear-gradient(90deg, rgba(255, 77, 143, .2), transparent);
    border-radius: 2px;
}

.bline.g {
    background: linear-gradient(90deg, rgba(0, 214, 143, .25), transparent);
}

/* ══════════════════════════════════════════
   PROBLEM GRID
══════════════════════════════════════════ */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 56px;
}

.prob-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 24px 20px;
    transition: all .3s cubic-bezier(.34, 1.2, .64, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.prob-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity .3s;
}

.prob-card:hover {
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 14px 36px rgba(255, 77, 143, .11);
}

.prob-card:hover::before {
    opacity: 1;
}

.pc1::before {
    background: linear-gradient(90deg, var(--pk), var(--pkd));
}

.pc2::before {
    background: linear-gradient(90deg, var(--or), #c04000);
}

.pc3::before {
    background: linear-gradient(90deg, var(--pu), #4c1b9e);
}

.prob-icon {
    width: 299px;
    height: 134px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 14px;
    transition: transform .3s;
}

.prob-icon img {
    width: 215px;
}

.prob-card:hover .prob-icon {
    transform: scale(1.1) rotate(-4deg);
}

.prob-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .93rem;
    color: var(--dk);
    margin-bottom: 6px;
    line-height: 1.3;
}

.prob-text {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ══════════════════════════════════════════
   DIVIDER
══════════════════════════════════════════ */
.ps-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 48px 0;
    position: relative;
}

.ps-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}

.div-badge {
    background: linear-gradient(135deg, var(--pk), var(--pkd));
    color: #fff;
    border-radius: 50px;
    padding: 11px 26px;
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 22px rgba(255, 77, 143, .3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.div-arrow {
    font-size: 1.8rem;
    color: var(--mn);
    position: relative;
    z-index: 2;
    animation: bounce 1.6s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

/* ══════════════════════════════════════════
   SOLUTION HERO
══════════════════════════════════════════ */
.sol-hero {
    /* Commented out original styles */
}

.sol-hero-text img {
    width: 100%;
}

.sol-hero::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 77, 143, .12), transparent 65%);
    top: -100px;
    right: 0;
    pointer-events: none;
}

.sol-hero-text {
    position: relative;
    z-index: 2;
}

.sol-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50px;
    padding: 6px 14px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .68rem;
    color: rgba(255, 255, 255, .8);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.sol-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    color: #fff;
    line-height: 1.18;
    margin-bottom: 10px;
}

.sol-title .hy {
    color: var(--ye);
}

.sol-title .hm {
    color: var(--mn);
}

.sol-desc {
    font-size: .87rem;
    color: rgba(255, 255, 255, .58);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 20px;
}

.sol-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.spill {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50px;
    padding: 6px 13px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .72rem;
    color: rgba(255, 255, 255, .78);
    display: flex;
    align-items: center;
    gap: 5px;
}

.sol-visual {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.gummy {
    font-size: 6.5rem;
    line-height: 1;
    animation: gFloat 3.5s ease-in-out infinite;
    filter: drop-shadow(0 10px 24px rgba(255, 77, 143, .3));
}

@keyframes gFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(-12px) rotate(3deg);
    }
}

.rating {
    text-align: center;
    margin-top: 8px;
}

.rnum {
    font-family: 'Fredoka One', cursive;
    color: var(--ye);
    font-size: 1rem;
}

.rsub {
    font-size: .66rem;
    color: rgba(255, 255, 255, .45);
    margin-top: 2px;
}

/* ══════════════════════════════════════════
   EQUATION CARD
══════════════════════════════════════════ */
.eq-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 30px 28px;
    text-align: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .05);
    position: relative;
    overflow: hidden;
}

.eq-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pk), var(--pu), var(--mn));
}

.eq-lbl {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .67rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

.eq-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    row-gap: 14px;
}

.eq-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.eq-icon img {
    height: 45px;
}

.eq-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: transform .3s;
}

.eq-item:hover .eq-icon {
    transform: scale(1.12) rotate(-5deg);
}

.ei1 {
    background: rgba(255, 77, 143, .08);
}

.ei2 {
    background: rgba(0, 191, 255, .08);
}

.ei3 {
    background: rgba(0, 214, 143, .08);
}

.ei4 {
    background: rgba(255, 214, 0, .12);
}

.eq-nm {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .78rem;
    color: var(--dk);
    max-width: 80px;
    text-align: center;
    line-height: 1.3;
}

.eq-op {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: var(--border);
    padding: 0 10px;
    margin-top: -14px;
}

.eq-eq {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    padding: 0 12px;
    margin-top: -14px;
    background: linear-gradient(135deg, var(--pk), var(--pu));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.eq-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.eq-res-icon img {
    height: 55px;
}

.eq-res-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    /* background: linear-gradient(135deg, var(--pk), var(--pkd)); */
    box-shadow: 0 8px 22px rgba(255, 77, 143, .3);
    animation: gFloat 3.5s ease-in-out infinite;
}

.eq-res-nm {
    font-family: 'Fredoka One', cursive;
    font-size: .95rem;
    color: var(--pk);
}

/* ══════════════════════════════════════════
   SOLUTION GRID
══════════════════════════════════════════ */
.sol-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 24px 20px;
    transition: all .3s cubic-bezier(.34, 1.2, .64, 1);
    cursor: default;
}

.sol-card:hover {
    transform: translateY(-5px);
    border-color: transparent;
}

.sc1:hover {
    box-shadow: 0 14px 34px rgba(255, 77, 143, .12);
}

.sc2:hover {
    box-shadow: 0 14px 34px rgba(0, 214, 143, .12);
}

.sc3:hover {
    box-shadow: 0 14px 34px rgba(0, 191, 255, .12);
}

.sc4:hover {
    box-shadow: 0 14px 34px rgba(124, 58, 237, .12);
}

.sc5:hover {
    box-shadow: 0 14px 34px rgba(255, 214, 0, .12);
}

.sc6:hover {
    box-shadow: 0 14px 34px rgba(255, 107, 53, .12);
}

.sol-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 12px;
    transition: transform .3s;
}

.sol-card:hover .sol-icon {
    transform: scale(1.1) rotate(4deg);
}

.si1 {
    background: rgba(255, 77, 143, .1);
}

.si2 {
    background: rgba(0, 214, 143, .1);
}

.si3 {
    background: rgba(0, 191, 255, .1);
}

.si4 {
    background: rgba(124, 58, 237, .1);
}

.si5 {
    background: rgba(255, 214, 0, .15);
}

.si6 {
    background: rgba(255, 107, 53, .1);
}

.sol-tag {
    font-size: .62rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.st1 {
    background: rgba(255, 77, 143, .1);
    color: var(--pkd);
}

.st2 {
    background: rgba(0, 214, 143, .1);
    color: #007a50;
}

.st3 {
    background: rgba(0, 191, 255, .1);
    color: #0077aa;
}

.st4 {
    background: rgba(124, 58, 237, .1);
    color: var(--pu);
}

.st5 {
    background: rgba(255, 214, 0, .18);
    color: #7a5800;
}

.st6 {
    background: rgba(255, 107, 53, .1);
    color: #b04000;
}

.sol-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .93rem;
    color: var(--dk);
    margin-bottom: 6px;
    line-height: 1.3;
}

.sol-text {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.ps-cta {
    background: linear-gradient(135deg, var(--pk) 0%, var(--pkd) 40%, var(--pu) 100%);
    border-radius: 22px;
    padding: 21px 36px;
    text-align: center;
    margin-top: 56px;
    position: relative;
    overflow: hidden;
}

.ps-cta::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    pointer-events: none;
}

.ps-cta::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 2;
}

.cta-emoji img {
    width: 100px;
}

.cta-emoji {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 3px;
    animation: gFloat 3.5s ease-in-out infinite;
}

.cta-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    color: #fff;
    margin-bottom: 9px;
}

.cta-sub {
    font-size: .88rem;
    color: rgba(255, 255, 255, .62);
    max-width: 440px;
    margin: 0 auto 26px;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-main {
    background: var(--ye);
    color: var(--dk);
    border: none;
    border-radius: 50px;
    padding: 14px 30px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .92rem;
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(255, 214, 0, .38);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.btn-main:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 30px rgba(255, 214, 0, .52);
}

.btn-ghost {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .26);
    border-radius: 50px;
    padding: 12px 26px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .92rem;
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .22);
    transform: translateY(-2px);
}

/* Variant Selectors */
.arrange {
    display: flex;
    gap: 34px;
}

.variant-block {
    margin-bottom: 20px;
}

.variant-label {
    font-family: 'Nunito', cursive;
    font-size: .95rem;
    color: var(--dk);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.variant-label strong {
    color: var(--pk);
}

.variant-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

#flavorRow {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
    /* Firefox */
}

#flavorRow::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

#flavorRow .flavor-opt {
    flex: 0 0 auto;
}

.vopt {
    border: 2.5px solid #e8e8e8;
    border-radius: 12px;
    padding: 10px 18px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .84rem;
    color: var(--dk);
    cursor: pointer;
    transition: all .25s;
    background: white;
}

.vopt:hover {
    border-color: var(--pkl);
}

.vopt.active {
    border-color: var(--pk);
    background: var(--pkl);
    color: var(--pkd);
}

.vopt.disabled {
    opacity: .4;
    cursor: not-allowed;
}

.flavor-opt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border: 2.5px solid #e8e8e8;
    border-radius: 16px;
    padding: 12px 14px;
    cursor: pointer;
    transition: all .25s;
    background: white;
    min-width: 80px;
}

.flavor-opt:hover {
    border-color: var(--pkl);
}

.flavor-opt.active {
    border-color: var(--pk);
    background: var(--pkl);
}

.flavor-emoji img {
    height: 32px;
}

.flavor-emoji {
    font-size: 1.6rem;
}

.flavor-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .65rem;
    color: var(--dk);
    text-align: center;
}

.qty-opt {
    border: 2.5px solid #e8e8e8;
    border-radius: 50px;
    padding: 10px 20px;
    font-family: 'Fredoka One', cursive;
    font-size: .95rem;
    color: var(--dk);
    cursor: pointer;
    transition: all .25s;
    background: white;
    position: relative;
}

.qty-opt:hover {
    border-color: var(--pkl);
}

.qty-opt.active {
    border-color: var(--pk);
    background: var(--pkl);
    color: var(--pkd);
}

.qty-opt .saving-tag {
    position: absolute;
    top: -10px;
    right: -6px;
    background: var(--mn);
    color: white;
    font-size: .58rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Pincode */
.pincode-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 14px 18px;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
}

.pincode-row input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    color: var(--dk);
    background: transparent;
}

.pincode-row button {
    background: var(--pk);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 8px 18px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .82rem;
    cursor: pointer;
    transition: all .2s;
}

.pincode-row button:hover {
    background: var(--pkd);
}

.pincode-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: #888;
    font-weight: 600;
}

/* CTA Buttons */
.cta-row {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.btn-cart {
    flex: 1;
    background: white;
    border: 2.5px solid var(--pk);
    border-radius: 50px;
    padding: 16px 28px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    color: var(--pk);
    cursor: pointer;
    transition: all .28s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-cart:hover {
    background: var(--pkl);
    transform: translateY(-2px);
}

.btn-buy {
    flex: 1;
    background: linear-gradient(135deg, var(--pk), var(--pkd));
    border: none;
    border-radius: 50px;
    padding: 16px 28px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    transition: all .28s;
    box-shadow: 0 8px 26px rgba(255, 77, 143, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-buy:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 34px rgba(255, 77, 143, .55);
}

/* Guarantees */
.guarantees {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.guarantee {
    background: white;
    border: 2px solid #f5f5f5;
    border-radius: 18px;
    padding: 16px 12px;
    text-align: center;
    transition: all .25s;
}

.guarantee:hover {
    border-color: var(--pkl);
    transform: translateY(-3px);
}

.guarantee .g-icon {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.guarantee .g-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .78rem;
    color: var(--dk);
}

.guarantee .g-sub {
    font-size: .7rem;
    color: #999;
    margin-top: 2px;
}

/* Highlights */
.highlights {
    background: linear-gradient(135deg, var(--dk2), #2d0060);
    border-radius: 24px;
    padding: 26px;
    margin-bottom: 24px;
}

.highlights h4 {
    font-family: 'Nunito', sans-serif;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.highlight-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.highlight-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    color: rgba(255, 255, 255, .85);
}

.hl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mn);
    flex-shrink: 0;
}

/*  */


/* ── SECTION COMMONS ── */
.section-wrap {
    padding: 70px 5%;
}

.sec-eye {
    font-family: 'Nunito', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--pk);
    margin-bottom: 8px;
    display: block;
}

.sec-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--dk);
    line-height: 1.15;
    margin-bottom: 12px;
}

.sec-title .acc {
    color: var(--pu);
}

.sec-sub {
    font-size: .98rem;
    color: #666;
    line-height: 1.72;
}

/* ── WHY CHOOSE US (Comparison) ── */
.why-section {
    background: linear-gradient(135deg, #FFF5FF, #F0E8FF, #FFDCF0);
}

.compare-table {
    margin-top: 48px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

.compare-head {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--dk2);
}

.compare-head .ch {
    padding: 20px 24px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.05rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.compare-head .ch.nb {
    background: linear-gradient(135deg, var(--pk), var(--pkd));
    color: white;
}

.compare-head .ch.nb::before {
    content: '⭐';
}

.compare-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: white;
    border-bottom: 1px solid #f5f5f5;
    transition: background .2s;
}

.compare-row:hover {
    background: var(--pkl);
}

.compare-row:last-child {
    border-bottom: none;
}

.cr-feat {
    padding: 18px 24px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    color: var(--dk);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cr-nb {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 77, 143, .03);
}

.cr-oth {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tick {
    font-size: 1.3rem;
}

.cross {
    font-size: 1.1rem;
    color: #ddd;
}

.par {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .82rem;
    color: var(--pk);
}


/* ── BENEFITS / HOW IT TRANSFORMS ── */
.transform-section {
    background: var(--cr);
}

.transform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    margin-top: 48px;
}

.transform-visual {
    background: linear-gradient(135deg, #FFF0FA, #F0E8FF);
    border-radius: 32px;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.transform-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 60% 40%, rgba(255, 77, 143, .12), transparent 60%);
}

.tv-product {
    width: 280px;
    animation: floatY 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.before-after {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 3;
}

.ba-card {
    background: white;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    text-align: center;
    min-width: 110px;
}

.ba-label {
    font-size: .68rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 4px;
}

.ba-val {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    color: var(--dk);
}

.ba-card.after .ba-val {
    color: var(--mn);
}

.ba-arrow {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    color: var(--pk);
}

.transform-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tr-item {
    background: white;
    border-radius: 20px;
    padding: 22px 24px;
    border: 2.5px solid #f5f5f5;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all .3s;
}

.tr-item:hover {
    border-color: var(--pkl);
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(255, 77, 143, .08);
}

.tr-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.tr-body .tr-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    color: var(--dk);
    margin-bottom: 5px;
}

.tr-body .tr-desc {
    font-size: .84rem;
    color: #777;
    line-height: 1.6;
}

.tr-week {
    background: var(--pkl);
    color: var(--pkd);
    border-radius: 50px;
    padding: 3px 10px;
    font-size: .68rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    display: inline-block;
    margin-top: 6px;
}

/* new */
/* ─── FEATURES SECTION ─── */
.features-section {
    padding: 80px 24px;
    background: var(--wf);
}

.feat-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.feat-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: stretch;
}

.feat-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 12px;
}

.feat-sub {
    font-size: .95rem;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 32px;
}

.feat-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feat-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: #fff;
    border-radius: 16px;
    border: 2px solid var(--wb);
    transition: border-color .3s, transform .3s;
}

.feat-item:hover {
    border-color: var(--pk);
    transform: translateX(6px);
}

.feat-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feat-item-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .95rem;
    margin-bottom: 3px;
}

.feat-item-desc {
    font-size: .83rem;
    color: #6B7280;
    line-height: 1.5;
}

/* Comparison box */
.comparison-box {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--sh);
    border: 2px solid var(--wb);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.comp-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: var(--dk);
    margin-bottom: 20px;
    text-align: center;
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
}

.comp-table th {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .8rem;
    padding: 10px 14px;
    text-align: center;
    background: var(--wf);
    border-radius: 8px;
}

.comp-table th:first-child {
    text-align: left;
}

.comp-table td {
    padding: 12px 14px;
    font-size: .85rem;
    border-bottom: 1px solid var(--wb);
    text-align: center;
}

.comp-table td:first-child {
    text-align: left;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: var(--dk);
}

.check {
    color: #00D68F;
    font-size: 1.1rem;
    font-weight: 900;
}

.cross {
    color: #FF4444;
    font-size: 1rem;
}

.comp-us {
    background: rgba(255, 77, 143, .04);
}

.comp-us-head {
    background: white !important;
    color: #ffffff !important;
    border-radius: 8px;
}

/* ─── DID YOU KNOW ─── */
.diyk-section {
    padding: 80px 24px;
}

.diyk-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.diyk-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.diyk-card {
    border-radius: 28px;
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.diyk-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    filter: brightness(.9);
    z-index: 0;
}

.diyk-content {
    position: relative;
    z-index: 1;
}

.diyk-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .7;
    margin-bottom: 12px;
}

.diyk-animal {
    font-size: 6rem;
    margin-bottom: 10px;
    display: block;
}

.diyk-name {
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.diyk-fact {
    font-size: .95rem;
    line-height: 1.7;
    opacity: .85;
}

.diyk-stat-pill {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .85rem;
    margin-top: 16px;
}



/* ── WHY CHOOSE US ── */
.why-section {
    background: var(--dk2);
    padding: 80px 5%;
    position: relative;
    overflow: hidden
}

.why-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, .12), transparent 60%);
    border-radius: 50%;
    pointer-events: none
}

.why-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 77, 143, .08), transparent 60%);
    border-radius: 50%;
    pointer-events: none
}

.why-section .sec-eye {
    color: var(--ye)
}

.why-section .sec-title {
    color: white
}

.why-section .sec-title .acc {
    color: var(--ye)
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
    margin-top: 48px
}

.wc {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--r);
    padding: 30px 26px;
    transition: all .35s;
    cursor: default;
    position: relative;
    overflow: hidden
}

.wc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s
}

.wc:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .15);
    transform: translateY(-6px)
}

.wc:hover::before {
    transform: scaleX(1)
}

.wc1::before {
    --grad: linear-gradient(90deg, var(--mn), var(--sk))
}

.wc2::before {
    --grad: linear-gradient(90deg, var(--pk), var(--pu))
}

.wc3::before {
    --grad: linear-gradient(90deg, var(--sk), var(--mn))
}

.wc4::before {
    --grad: linear-gradient(90deg, var(--ye), var(--or))
}

.wc5::before {
    --grad: linear-gradient(90deg, var(--pu), var(--pk))
}

.wc6::before {
    --grad: linear-gradient(90deg, var(--or), var(--ye))
}

.wc-icon img {
    height: 35px;
}

.wc-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    margin-bottom: 18px;
    transition: transform .3s
}

.wc:hover .wc-icon {
    transform: scale(1.15) rotate(5deg)
}

.wc h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.12rem;
    color: white;
    margin-bottom: 8px
}

.wc p {
    font-size: .84rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.68
}

/* ─── TESTIMONIALS ─── */
.testi-prod {
    padding: 80px 24px;
    background: var(--dk);
}

.tp-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.tp-header {
    text-align: center;
    margin-bottom: 48px;
}

.tp-header .sec-title {
    color: #fff;
}

.tp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.tp-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 28px;
    transition: transform .3s;
}

.tp-card:hover {
    transform: translateY(-4px);
}

.tp-stars {
    color: var(--ye);
    font-size: 1rem;
    margin-bottom: 12px;
}

.tp-text {
    font-size: .9rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.tp-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tp-ava {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.tp-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .9rem;
    color: #fff;
}

.tp-meta {
    font-size: .75rem;
    color: rgba(255, 255, 255, .4);
}

.tp-badge {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .7rem;
    color: var(--mn);
    margin-top: 3px;
}

/* ── PEDIATRICIAN VIDEO ── */
.doc-section {
    background: linear-gradient(135deg, var(--dk2), #2d0060);
    padding: 80px 5%;
}

.doc-section .sec-eye {
    color: var(--pk);
}

.doc-section .sec-title {
    color: white;
}

.doc-section .sec-title .acc {
    color: var(--ye);
}

.doc-section .sec-sub {
    color: rgba(255, 255, 255, .5);
}

.doc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 48px;
}

.doc-video-wrap {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all .3s;
}

.doc-video-wrap:hover {
    background: rgba(255, 255, 255, .12);
}

.doc-play {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border: 2px solid rgba(255, 255, 255, .3);
    transition: all .3s;
}

.doc-video-wrap:hover .doc-play {
    background: var(--pk);
}

.doc-video-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    text-align: center;
    color: rgba(255, 255, 255, .5);
    font-size: .8rem;
}

.doc-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.doc-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 22px;
    transition: all .3s;
}

.doc-card:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateX(6px);
}

.doc-name {
    font-family: 'Fredoka One', cursive;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.doc-cred {
    color: rgba(255, 255, 255, .45);
    font-size: .78rem;
    margin-bottom: 10px;
}

.doc-quote {
    color: rgba(255, 255, 255, .7);
    font-size: .88rem;
    line-height: 1.65;
    font-style: italic;
}

.doc-quote::before {
    content: '"';
    color: var(--pk);
    font-size: 1.4rem;
    font-family: 'Fredoka One', cursive;
}


/* ── Section shell ── */
#nb-ingredients {
    background: #080015;
    position: relative;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
    color: white;
}

/* ── Animated mesh background ── */
.nb-mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.nb-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .14;
    animation: nb-blobPulse var(--dur, 10s) ease-in-out infinite;
    animation-delay: var(--del, 0s);
}

.nb-blob-1 {
    width: 600px;
    height: 600px;
    background: #FF4D8F;
    top: -200px;
    right: -150px;
}

.nb-blob-2 {
    width: 500px;
    height: 500px;
    background: #00D68F;
    bottom: -150px;
    left: -100px;
    --dur: 13s;
    --del: 2s;
}

.nb-blob-3 {
    width: 350px;
    height: 350px;
    background: #FFD600;
    top: 45%;
    left: 42%;
    --dur: 8s;
    --del: 1s;
    opacity: .07;
}

.nb-blob-4 {
    width: 280px;
    height: 280px;
    background: #00BFFF;
    top: 20%;
    left: 15%;
    --dur: 11s;
    --del: 3s;
    opacity: .1;
}

@keyframes nb-blobPulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.15) rotate(8deg);
    }
}

/* ── Floating stars ── */
.nb-star {
    position: absolute;
    border-radius: 50%;
    background: white;
    pointer-events: none;
    animation: nb-twinkle var(--dur, 4s) ease-in-out infinite;
    animation-delay: var(--del, 0s);
}

@keyframes nb-twinkle {

    0%,
    100% {
        opacity: .12;
        transform: scale(1);
    }

    50% {
        opacity: .7;
        transform: scale(1.6);
    }
}

/* ══════════════════════
   HEADER
══════════════════════ */
.nb-ing-header {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 90px 5% 56px;
}

.nb-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(0, 214, 143, .1);
    border: 1.5px solid rgba(0, 214, 143, .25);
    border-radius: 50px;
    padding: 9px 22px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .72rem;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #00D68F;
    margin-bottom: 20px;
}

.nb-ing-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2.1rem, 5vw, 3.5rem);
    line-height: 1.08;
    color: white;
    margin-bottom: 16px;
}

.nb-ing-title .nb-acc-ye {
    color: #FFD600;
}

.nb-ing-title .nb-acc-pk {
    color: #FF4D8F;
}

.nb-ing-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, .45);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ══════════════════════
   CATEGORY FILTER TABS
══════════════════════ */
.nb-cat-row {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 5% 50px;
}

.nb-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .48);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .82rem;
    cursor: pointer;
    transition: var(--nb-trans);
    user-select: none;
}

.nb-cat-pill:hover {
    background: rgba(255, 255, 255, .1);
    color: white;
    border-color: rgba(255, 255, 255, .22);
    transform: translateY(-2px);
}

.nb-cat-pill.nb-active {
    background: var(--nb-pk);
    border-color: var(--nb-pk);
    color: white;
    box-shadow: 0 8px 26px rgba(255, 77, 143, .38);
    transform: translateY(-3px);
}

.nb-cat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ══════════════════════
   MAIN TWO-COLUMN LAYOUT
══════════════════════ */
.nb-ing-body {
    position: relative;
    z-index: 5;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 5% 80px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 28px;
    align-items: start;
}

/* ══════════════════════
   LEFT — INGREDIENT LIST
══════════════════════ */
.nb-list-panel {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--nb-rL);
    overflow: hidden;
    position: sticky;
    top: 88px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nb-list-head {
    padding: 20px 22px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nb-list-head-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 77, 143, .15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.nb-list-head h4 {
    font-family: 'Fredoka One', cursive;
    color: white;
    font-size: .98rem;
    margin-bottom: 1px;
}

.nb-list-head p {
    font-size: .7rem;
    color: rgba(255, 255, 255, .3);
}

.nb-list-scroll {
    max-height: 540px;
    overflow-y: auto;
    padding: 6px 0 8px;
}

.nb-list-scroll::-webkit-scrollbar {
    width: 3px;
}

.nb-list-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.nb-list-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .14);
    border-radius: 2px;
}

/* Group label */
.nb-group-lbl {
    padding: 10px 20px 4px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .6rem;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .2);
}

/* Single item row */
.nb-ing-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    cursor: pointer;
    transition: var(--nb-trans);
    border-left: 3px solid transparent;
    position: relative;
}

.nb-ing-row::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .04);
    opacity: 0;
    transition: opacity .2s;
}

.nb-ing-row:hover::before {
    opacity: 1;
}

.nb-ing-row:hover {
    border-left-color: rgba(255, 255, 255, .18);
}

.nb-ing-row.nb-sel {
    border-left-color: var(--nb-pk);
    background: rgba(255, 77, 143, .07);
}

.nb-row-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: transform .25s;
}

.nb-ing-row.nb-sel .nb-row-icon,
.nb-ing-row:hover .nb-row-icon {
    transform: scale(1.12);
}

.nb-row-text {
    flex: 1;
    min-width: 0;
}

.nb-row-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .84rem;
    color: rgba(255, 255, 255, .88);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nb-row-sub {
    font-size: .68rem;
    color: rgba(255, 255, 255, .32);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nb-badge {
    flex-shrink: 0;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .58rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 20px;
}

.nb-b-ay {
    background: rgba(0, 214, 143, .14);
    color: #00D68F;
}

.nb-b-vi {
    background: rgba(0, 191, 255, .14);
    color: #00BFFF;
}

.nb-b-mi {
    background: rgba(255, 214, 0, .14);
    color: #FFD600;
}

.nb-b-om {
    background: rgba(124, 58, 237, .18);
    color: #b394ff;
}

.nb-b-ba {
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .48);
}

.nb-b-ex {
    background: rgba(255, 107, 53, .14);
    color: #FF6B35;
}

/* ══════════════════════
   RIGHT — DETAIL PANEL
══════════════════════ */
.nb-detail-wrap {
    position: relative;
    min-height: 500px;
}

.nb-detail-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--nb-rL);
    padding: 40px 44px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: none;
    animation: nb-detailIn .38s cubic-bezier(.34, 1.1, .64, 1) both;
}

.nb-detail-card.nb-show {
    display: block;
}

@keyframes nb-detailIn {
    from {
        opacity: 0;
        transform: translateY(22px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Top hero row */
.nb-dc-top {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 28px;
}

.nb-dc-visual {
    width: 88px;
    height: 88px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.nb-dc-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, .2) 0%, transparent 60%);
    border-radius: 22px;
    pointer-events: none;
}

.nb-dc-meta {
    flex: 1;
}

.nb-dc-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 50px;
    padding: 6px 14px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .65rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.nb-dc-name {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    color: white;
    line-height: 1.08;
    margin-bottom: 5px;
}

.nb-dc-sci {
    font-style: italic;
    font-size: .8rem;
    color: rgba(255, 255, 255, .3);
}

/* Benefits chips */
.nb-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
}

.nb-chip {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50px;
    padding: 8px 15px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .76rem;
    color: rgba(255, 255, 255, .8);
    cursor: default;
    transition: var(--nb-trans);
}

.nb-chip:hover {
    background: rgba(255, 255, 255, .12);
    transform: scale(1.04) translateY(-1px);
}

.nb-chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Description block */
.nb-dc-desc {
    font-size: .93rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.8;
    margin-bottom: 24px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: var(--nb-r);
    border-left: 3px solid var(--nb-pk);
    position: relative;
}

.nb-dc-desc::before {
    content: '"';
    font-family: 'Fredoka One', cursive;
    font-size: 4rem;
    color: rgba(255, 77, 143, .15);
    position: absolute;
    top: -8px;
    left: 14px;
    line-height: 1;
    pointer-events: none;
}

/* Fun fact */
.nb-dc-fact {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(255, 214, 0, .06);
    border: 1px solid rgba(255, 214, 0, .15);
    border-radius: var(--nb-r);
    padding: 18px 20px;
    margin-bottom: 20px;
}

.nb-fact-ico {
    font-size: 1.6rem;
    flex-shrink: 0;
    line-height: 1.2;
}

.nb-fact-body {
    flex: 1;
}

.nb-fact-body strong {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFD600;
    margin-bottom: 5px;
}

.nb-fact-body p {
    font-size: .84rem;
    color: rgba(255, 255, 255, .58);
    line-height: 1.65;
}

/* Source strip */
.nb-dc-source {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--nb-r);
}

.nb-src-ico {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.nb-src-body strong {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .8rem;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 2px;
}

.nb-src-body span {
    font-size: .74rem;
    color: rgba(255, 255, 255, .35);
}

/* Empty/placeholder state */
.nb-detail-empty {
    background: rgba(255, 255, 255, .03);
    border: 1px dashed rgba(255, 255, 255, .08);
    border-radius: var(--nb-rL);
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 400px;
}

.nb-detail-empty .nb-empty-ico {
    font-size: 4rem;
    opacity: .25;
    margin-bottom: 18px;
}

.nb-detail-empty h3 {
    font-family: 'Fredoka One', cursive;
    color: rgba(255, 255, 255, .22);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.nb-detail-empty p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .18);
    max-width: 280px;
    line-height: 1.65;
}

/* ══════════════════════
   SUMMARY BAR
══════════════════════ */
.nb-summary-bar {
    position: relative;
    z-index: 5;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 5% 80px;
}

.nb-summary-inner {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;
    padding: 26px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    backdrop-filter: blur(10px);
}

.nb-stat {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.nb-stat-n {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 3px;
}

.nb-stat-l {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .7rem;
    color: rgba(255, 255, 255, .32);
    letter-spacing: .5px;
}

.nb-sdiv {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, .08);
    flex-shrink: 0;
}

.nb-summary-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.nb-summary-cta p {
    font-size: .82rem;
    color: rgba(255, 255, 255, .38);
    max-width: 200px;
    line-height: 1.55;
}

.nb-lab-btn {
    background: linear-gradient(135deg, var(--nb-pk), var(--nb-pkd));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 13px 26px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .84rem;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--nb-trans);
    box-shadow: 0 8px 24px rgba(255, 77, 143, .36);
}

.nb-lab-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 32px rgba(255, 77, 143, .52);
}

/* ══════════════════════
   MOBILE — TABS MODE
══════════════════════ */
.nb-mobile-tabs {
    display: none;
    position: relative;
    z-index: 5;
    padding: 0 5% 24px;
    overflow-x: auto;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
}

.nb-mobile-tabs::-webkit-scrollbar {
    display: none;
}

.nb-mob-tab {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .5);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .78rem;
    cursor: pointer;
    transition: var(--nb-trans);
    white-space: nowrap;
}

.nb-mob-tab.nb-sel-mob {
    background: var(--nb-pk);
    border-color: var(--nb-pk);
    color: white;
    box-shadow: 0 4px 16px rgba(255, 77, 143, .35);
}

/* Mobile accordion card */
.nb-mob-cards {
    display: none;
    position: relative;
    z-index: 5;
    padding: 0 5% 20px;
}

.nb-mob-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px;
}

.nb-mob-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    cursor: pointer;
    transition: var(--nb-trans);
    user-select: none;
}

.nb-mob-card-head:hover {
    background: rgba(255, 255, 255, .04);
}

.nb-mob-card.nb-open .nb-mob-card-head {
    background: rgba(255, 77, 143, .07);
}

.nb-mob-head-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.nb-mob-head-text {
    flex: 1;
    min-width: 0;
}

.nb-mob-head-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .88rem;
    color: rgba(255, 255, 255, .9);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nb-mob-head-sub {
    font-size: .7rem;
    color: rgba(255, 255, 255, .3);
    display: block;
}

.nb-mob-arrow {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, .07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
    transition: transform .3s;
    flex-shrink: 0;
}

.nb-mob-card.nb-open .nb-mob-arrow {
    transform: rotate(180deg);
    color: var(--nb-pk);
}

.nb-mob-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .42s cubic-bezier(.4, 0, .2, 1);
}

.nb-mob-card.nb-open .nb-mob-card-body {
    max-height: 600px;
}

.nb-mob-card-inner {
    padding: 0 18px 20px;
}

/* Mobile chips small */
.nb-mob-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.nb-mob-chip {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .7rem;
    padding: 5px 12px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .09);
    color: rgba(255, 255, 255, .72);
}

.nb-mob-desc {
    font-size: .84rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
    margin-bottom: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .03);
    border-left: 2px solid var(--nb-pk);
    border-radius: 0 10px 10px 0;
}

.nb-mob-fact {
    display: flex;
    gap: 10px;
    background: rgba(255, 214, 0, .05);
    border: 1px solid rgba(255, 214, 0, .12);
    border-radius: 12px;
    padding: 12px 14px;
}

.nb-mob-fact span:first-child {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.nb-mob-fact p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
}

.nb-mob-fact strong {
    color: var(--nb-ye);
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
}

/* Utilities */
.nb-hide-sm {
    display: block;
}

/* end product page */
/* ── TRUST BAR ── */
.tbar {
    background: var(--dk);
    padding: 16px 0;
    overflow: hidden;
    position: relative
}

.tscroll {
    display: flex;
    gap: 52px;
    animation: scrollL 22s linear infinite;
    width: max-content
}

.titem {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ye);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .85rem;
    white-space: nowrap
}

.titem .tic {
    font-size: 1.15rem
}

/* ══════════════════════════════════════════
   07. TRUST INDICATORS
══════════════════════════════════════════ */
.trust-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #FFF5FF 0%, #F5EEFF 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.tc {
    background: white;
    border-radius: var(--r);
    padding: 30px 22px;
    text-align: center;
    border: 2.5px solid var(--pkl);
    box-shadow: 0 6px 28px rgba(0, 0, 0, .05);
    transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.tc::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--pk), var(--pkd));
    opacity: 0;
    transition: opacity .3s;
}

.tc:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--pk);
    box-shadow: 0 22px 50px rgba(255, 77, 143, .18);
}

.tc:hover::before {
    opacity: .04;
}

.tc-icon img {
    height: 45px;
}

.tc-icon {
    font-size: 2.6rem;
    margin-bottom: 12px;
    display: block;
    animation: iconBob 3s ease-in-out infinite;
}

.tc:nth-child(2) .tc-icon {
    animation-delay: .4s;
}

.tc:nth-child(3) .tc-icon {
    animation-delay: .8s;
}

.tc:nth-child(4) .tc-icon {
    animation-delay: 1.2s;
}

.tc:nth-child(5) .tc-icon {
    animation-delay: 1.6s;
}

.tc:nth-child(6) .tc-icon {
    animation-delay: 2s;
}

.tc-n {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: var(--pk);
    line-height: 1;
    margin-bottom: 4px;
}

.tc-l {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .88rem;
    color: var(--dk);
    margin-bottom: 6px;
}

.tc-d {
    font-size: .78rem;
    color: #888;
    line-height: 1.55;
}


/* ══════════════════════════════════════════
   08. PRODUCTS
══════════════════════════════════════════ */
.products-section {
    padding: 80px 10%;
    background: var(--cr);
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 26px;
    margin-top: 48px;
}

.nb-variant-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

.nb-variant-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.nb-variant-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 0, 32, .58);
    backdrop-filter: blur(8px);
}

.nb-variant-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    max-height: min(620px, calc(100vh - 48px));
    overflow: auto;
    border-radius: 28px;
    background: linear-gradient(135deg, #fff 0%, #fff8fc 100%);
    border: 1px solid rgba(255, 77, 143, .16);
    box-shadow: 0 28px 90px rgba(13, 0, 32, .24);
    transform: translateY(18px) scale(.98);
    transition: transform .22s ease;
}

.nb-variant-modal.open .nb-variant-modal__dialog {
    transform: translateY(0) scale(1);
}

.nb-variant-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: var(--pkl);
    color: var(--pk);
    cursor: pointer;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
}

.nb-variant-modal__grid {
    display: grid;
    grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
    gap: 22px;
    padding: 26px;
}

.nb-variant-modal__options,
.nb-variant-modal__summary {
    min-width: 0;
}

.nb-variant-modal__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--mnl);
    color: var(--mn);
    font-family: 'Nunito', sans-serif;
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.nb-variant-modal__options h3 {
    margin: 12px 0 22px;
    color: var(--dk);
    font-family: 'Nunito', sans-serif;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    font-weight: 900;
    line-height: 1.08;
}

.nb-variant-modal__groups {
    display: grid;
    gap: 18px;
}

.nb-variant-modal__label {
    margin-bottom: 9px;
    color: #625b76;
    font-family: 'Nunito', sans-serif;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.nb-variant-modal__row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nb-variant-modal__option {
    min-height: 44px;
    border: 2px solid rgba(255, 77, 143, .14);
    border-radius: 14px;
    background: #fff;
    color: var(--dk);
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-size: .9rem;
    font-weight: 900;
    padding: 0 16px;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.nb-variant-modal__option:hover:not(:disabled),
.nb-variant-modal__option.is-active {
    background: var(--pkl);
    border-color: var(--pk);
    color: var(--pk);
    transform: translateY(-1px);
}

.nb-variant-modal__option:disabled {
    cursor: not-allowed;
    opacity: .42;
    text-decoration: line-through;
}

.nb-variant-modal__stock {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-top: 20px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--mnl);
    color: var(--mn);
    font-family: 'Nunito', sans-serif;
    font-size: .82rem;
    font-weight: 900;
}

.nb-variant-modal__stock.out {
    background: #fff0ee;
    color: #d02f1f;
}

.nb-variant-modal__summary {
    order: -1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(13, 0, 32, .06);
    box-shadow: 0 16px 44px rgba(13, 0, 32, .08);
}

.nb-variant-modal__image {
    display: grid;
    place-items: center;
    min-height: 200px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff7df, #fff);
}

.nb-variant-modal__image img {
    width: 100%;
    max-width: 250px;
    max-height: 200px;
    object-fit: contain;
}

.nb-variant-modal__name {
    margin-top: 14px;
    color: var(--dk);
    font-family: 'Nunito', sans-serif;
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.25;
}

.nb-variant-modal__selected {
    margin-top: 6px;
    color: #625b76;
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.4;
}

.nb-variant-modal__price {
    margin-top: 12px;
    color: var(--pk);
    font-family: 'Fredoka One', cursive;
    font-size: 1.75rem;
    line-height: 1;
}

.nb-variant-modal__price s {
    margin-left: 8px;
    color: #a5a0b5;
    font-family: 'Nunito', sans-serif;
    font-size: .95rem;
    font-weight: 900;
}

.nb-variant-modal__add {
    width: 100%;
    min-height: 50px;
    margin-top: 14px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pk), var(--pkd));
    color: #fff;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-size: .98rem;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(255, 77, 143, .28);
}

.nb-variant-modal__add:disabled {
    cursor: not-allowed;
    opacity: .62;
    box-shadow: none;
}

/* Product listing page layout */
.product-listing-page {
    background: var(--cr);
    padding: 64px 3% 80px;
}

.product-listing-layout {
    display: grid;
    grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
    gap: 30px;
    margin: 0 auto;
    max-width: 1500px;
}

.product-filter-sidebar {
    align-self: start;
    background: #fff;
    border: 2.5px solid var(--pkl);
    border-radius: 28px;
    box-shadow: 0 18px 54px rgba(255, 77, 143, .08);
    padding: 26px 24px;
    position: sticky;
    top: 110px;
}

.filter-head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 22px;
}

.filter-head h2 {
    color: var(--dk);
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
}

.filter-head button {
    background: var(--pkl);
    border: 0;
    border-radius: 999px;
    color: var(--pk);
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-size: .8rem;
    font-weight: 900;
    padding: 10px 18px;
}

.filter-block {
    border-top: 1px solid rgba(13, 0, 32, .09);
    padding: 20px 0;
}

.filter-block:last-child {
    padding-bottom: 0;
}

.filter-block h3 {
    color: var(--dk);
    font-family: 'Nunito', sans-serif;
    font-size: .9rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.filter-block input[type="search"],
.price-filter-inputs input {
    background: #fff;
    border: 2px solid rgba(255, 214, 232, .95);
    border-radius: 14px;
    color: var(--dk);
    font-family: 'DM Sans', sans-serif;
    font-size: .92rem;
    height: 46px;
    outline: none;
    padding: 0 14px;
    width: 100%;
}

.filter-block input:focus {
    border-color: var(--pk);
    box-shadow: 0 0 0 4px rgba(255, 77, 143, .08);
}

.category-filter-btn {
    align-items: center;
    background: #fff;
    border: 2px solid rgba(255, 214, 232, .95);
    border-radius: 16px;
    color: var(--dk);
    cursor: pointer;
    display: flex;
    font-family: 'Nunito', sans-serif;
    font-size: .88rem;
    font-weight: 900;
    justify-content: space-between;
    margin-bottom: 10px;
    min-height: 48px;
    padding: 8px 12px;
    transition: all .2s;
    width: 100%;
}

.category-filter-btn strong {
    align-items: center;
    background: #fff1f7;
    border-radius: 50%;
    color: var(--pk);
    display: inline-flex;
    flex-shrink: 0;
    height: 30px;
    justify-content: center;
    width: 30px;
}

.category-filter-btn.active,
.category-filter-btn:hover {
    background: var(--pkl);
    border-color: var(--pk);
    color: var(--pk);
}

.price-filter-inputs {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr auto 1fr;
    margin-bottom: 8px;
}

.price-filter-inputs span,
.filter-block p {
    color: #5d5a70;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .85rem;
}

.filter-block input[type="range"] {
    accent-color: var(--pk);
    width: 100%;
    margin-top: 6px;
}

.product-listing-results {
    min-width: 0;
}

.product-result-toolbar {
    align-items: center;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(13, 0, 32, .06);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    padding: 18px 22px;
}

.product-result-toolbar strong {
    color: var(--dk);
    font-family: 'Nunito', sans-serif;
    font-size: .95rem;
    font-weight: 900;
}

.product-result-toolbar p {
    color: #626278;
    font-family: 'Nunito', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    margin-top: 2px;
}

.product-result-toolbar select {
    appearance: auto;
    background: #fff;
    border: 2px solid rgba(255, 214, 232, .95);
    border-radius: 14px;
    color: var(--dk);
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    min-width: 160px;
    outline: none;
    padding: 10px 14px;
}

.product-filter-empty {
    margin-top: 24px;
    padding: 34px 24px;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, #fff6fb 100%);
    border: 1px dashed rgba(36, 45, 105, .18);
    border-radius: 24px;
}

.product-filter-empty h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    color: var(--dk);
    margin-bottom: 8px;
}

.product-filter-empty p {
    color: #6e6a7b;
    line-height: 1.6;
}

.product-filter-card[hidden] {
    display: none !important;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 26px;
    margin-top: 48px;
}

/* Product listing page — 3 columns, image fills card */
.product-listing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0;
    gap: 22px;
}

.product-listing-grid .pc {
    box-shadow: none;
}

.product-listing-grid .pc-head {
    height: 250px;
    padding: 0;
    overflow: hidden;
}

.product-listing-grid .pc-head .pc-emoji.p-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.product-listing-grid .pc-head .pc-emoji.p-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    padding: 0;
}

.product-filter-section {
    padding: 90px 20px;
    background:
        radial-gradient(circle at top left, rgba(255, 214, 232, 0.9), transparent 30%),
        radial-gradient(circle at top right, rgba(220, 251, 255, 0.9), transparent 34%),
        linear-gradient(180deg, #fffefd 0%, #fff7fb 100%);
}

.product-filter-shell {
    max-width: 1240px;
    margin: 0 auto;
    padding: 54px 38px 42px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 40px;
    box-shadow: 0 24px 80px rgba(173, 95, 137, 0.12);
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
}

.product-filter-shell::before,
.product-filter-shell::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.product-filter-shell::before {
    width: 220px;
    height: 220px;
    top: -110px;
    right: -80px;
    background: radial-gradient(circle, rgba(255, 77, 143, 0.14), transparent 70%);
}

.product-filter-shell::after {
    width: 240px;
    height: 240px;
    bottom: -120px;
    left: -100px;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.16), transparent 70%);
}

.product-filter-head {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 34px;
}

.product-filter-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 8px 18px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(13, 0, 32, 0.08);
    color: var(--pk);
    font-family: 'Nunito', sans-serif;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.product-filter-title {
    margin-bottom: 14px;
}

.product-filter-sub {
    font-size: 1rem;
    line-height: 1.7;
    color: #5f5b70;
}

.product-filter-pills {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 auto 36px;
    padding: 0 8px;
}

.product-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 8px 20px 8px 8px;
    border: 2px solid var(--pkl);
    border-radius: 999px;
    background: #fff;
    color: var(--dk);
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.product-filter-pill:hover {
    transform: translateY(-3px);
    border-color: var(--pk);
    box-shadow: 0 12px 28px rgba(255, 77, 143, 0.18);
    color: var(--pk);
}

.product-filter-pill.is-active {
    background: linear-gradient(135deg, var(--pk), var(--pkd));
    border-color: var(--pk);
    color: #fff;
    box-shadow: 0 14px 32px rgba(255, 77, 143, 0.28);
}

.product-filter-pill-icon,
.product-filter-pill-count {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-filter-pill-icon {
    background: var(--pkl);
    font-size: 1.1rem;
}

.product-filter-pill.is-active .product-filter-pill-icon {
    background: rgba(255, 255, 255, 0.22);
}

.product-filter-pill-count {
    margin-left: 4px;
    background: var(--pkl);
    color: var(--pk);
    font-size: 0.82rem;
    font-weight: 900;
}

.product-filter-pill.is-active .product-filter-pill-count {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.product-listing-filter {
    margin-top: 36px;
    max-width: 1100px;
}

.product-listing-filter .product-filter-pill {
    box-shadow: 0 4px 16px rgba(255, 77, 143, 0.08);
}

.product-listing-filter .product-filter-pill:hover {
    box-shadow: 0 12px 28px rgba(255, 77, 143, 0.18);
}

.product-listing-filter .product-filter-pill span:nth-child(2) {
    white-space: nowrap;
}

.product-filter-grid {
    position: relative;
    z-index: 1;
}

.product-filter-card {
    animation: filterCardIn 0.35s ease;
}

@keyframes filterCardIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-filter-empty {
    position: relative;
    z-index: 1;
    margin-top: 28px;
    padding: 34px 24px;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, #fff6fb 100%);
    border: 1px dashed rgba(36, 45, 105, 0.18);
    border-radius: 28px;
}

.product-filter-empty-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.product-filter-empty h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    color: var(--dk);
    margin-bottom: 8px;
}

.product-filter-empty p {
    max-width: 460px;
    margin: 0 auto;
    color: #6e6a7b;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .product-filter-section {
        padding: 70px 14px;
    }

    .product-filter-shell {
        padding: 34px 18px 28px;
        border-radius: 28px;
    }

    .product-filter-title {
        font-size: 2rem;
    }

    .product-filter-sub {
        font-size: 0.92rem;
    }

    .product-filter-pills {
        gap: 10px;
        justify-content: flex-start;
        margin-bottom: 24px;
    }

    .product-filter-pill {
        width: 100%;
        justify-content: space-between;
        font-size: 0.92rem;
        min-height: 58px;
        padding-right: 14px;
    }

    .product-filter-pill-icon,
    .product-filter-pill-count {
        width: 36px;
        height: 36px;
    }

    .product-listing-filter .product-filter-pill span:nth-child(2) {
        font-size: 0.9rem;
    }

    .product-filter-grid {
        margin-top: 36px;
    }
}

.pc {
    background: white;
    border-radius: var(--rL);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
    border: 3px solid transparent;
    transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    opacity: 1 !important;
    visibility: visible !important;
}

.pc:hover {
    transform: translateY(-12px) rotate(-.6deg);
    box-shadow: 0 28px 60px rgba(0, 0, 0, .14);
}

.pc-pk {
    border-color: var(--pkl)
}

.pc-pk:hover {
    border-color: var(--pk)
}

.pc-sk {
    border-color: var(--skl)
}

.pc-sk:hover {
    border-color: var(--sk)
}

.pc-pu {
    border-color: var(--pul)
}

.pc-pu:hover {
    border-color: var(--pu)
}

.pc-head {
    aspect-ratio: 3 / 2;
    height: 372px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
    opacity: 1 !important;
    visibility: visible !important;
}

.pc-head-pk {
    background: linear-gradient(135deg, #ffeb89, #fffcd0);
}

.pc-head-sk {
    background: linear-gradient(135deg, #ff8989, #FFD0E8);
}

.pc-head-pu {
    background: linear-gradient(135deg, #95ff89, #dfffd0b0);
}

.pc-emoji img {
    width: 100%;
}

.pc-emoji.p-image img {
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
  
    opacity: 1 !important;
    visibility: visible !important;
}

.pc-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--ye);
    color: var(--dk);
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .68rem;
    padding: 5px 12px;
    border-radius: 20px;
}

.pc-body {
    padding: 21px 26px 19px;
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
    opacity: 1 !important;
    visibility: visible !important;
}

.pc-stars {
    color: var(--ye);
    font-size: .9rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 10px;
    line-height: 1.4;
}

.pc-cat {
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.cat-pk {
    color: var(--pk)
}

.cat-sk {
    color: #0088bb
}

.cat-pu {
    color: var(--pu)
}

.pc-name {
    font-family: 'Nunito', sans-serif;
    font-size: 1.35rem;
    color: var(--dk);
    margin-bottom: 8px;
    line-height: 1.25;
}


/* add ooo */

.newcarda {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.pc-features {
    display: flex;
    flex-direction: column;
    gap: 2px;
    /* margin: 12px 0 18px; */
}

.pc-variant-panel+.pc-features {
    display: none;
}

.pc-variant-panel {
    background: linear-gradient(180deg, #fffdf7 0%, #ffffff 100%);
    border: 1px solid rgba(255, 77, 143, .14);
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(13, 0, 32, .035);
    display: grid;
    gap: 10px;
    margin: 12px 0 18px;
    padding: 12px;
}

.pc-variant-groups {
    display: grid;
    gap: 9px;
}

.pc-variant-label {
    color: #444;
    font-family: 'Nunito', sans-serif;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .04em;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.pc-option-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pc-option-btn {
    background: #fff;
    border: 1px solid rgba(53, 158, 111, .18);
    border-radius: 999px;
    color: #353047;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-size: .7rem;
    font-weight: 900;
    min-height: 30px;
    padding: 4px 10px;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.pc-option-btn.active {
    background: var(--pkl);
    border-color: var(--pk);
    color: var(--pk);
}

.pc-variant-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.pc-stock-pill,
.pc-selected-pill {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-family: 'Nunito', sans-serif;
    font-size: .66rem;
    font-weight: 900;
    min-height: 26px;
    padding: 4px 8px;
}

.pc-stock-pill {
    background: #e8f9f1;
    color: #00885d;
}

.pc-stock-pill.out {
    background: #fff0ee;
    color: #d02f1f;
}

.pc-selected-pill {
    background: #f6f2ff;
    color: #6750a4;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Pills */
.pc-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8e0e9;
    color: #393941;
    min-width: 0;
    min-height: 100%;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    line-height: 1.35;
    transition: all 0.3s ease;
}

/* Icon */
.pc-features span i {
    font-style: normal;
    font-size: 0.9rem;
}

/* Hover Effect (Desktop) */
.pc-features span:hover {
    background: #5a6cff;
    color: #fff;
    transform: translateY(-2px);
}



.pc-desc {
    font-size: .86rem;
    color: #666;
    line-height: 1.65;
    margin-bottom: 18px;
}

.pc-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
}

.pc-price {
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
    color: var(--dk);
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 4px 8px;
    line-height: 1;
}

.pc-price s {
    font-size: .82rem;
    color: #bbb;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    margin-left: 4px;
}

.btn-add {
    border: none;
    padding: 12px 22px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .84rem;
    cursor: pointer;
    transition: all .25s;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-add::after {
    content: '✓ Added!';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mn);
    border-radius: 50px;
    transform: translateY(100%);
    transition: transform .3s;
    color: white;
}

.btn-add.added::after {
    transform: translateY(0);
}

.badd-pk {
    background: linear-gradient(135deg, var(--pk), var(--pkd));
    color: #fff;
    box-shadow: 0 4px 14px rgba(255, 77, 143, .3);
}

.badd-pk:hover {
    transform: scale(1.07);
    box-shadow: 0 8px 22px rgba(255, 77, 143, .45);
}

.badd-sk {
    background: linear-gradient(135deg, var(--sk), #0088bb);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 191, 255, .3);
}

.badd-sk:hover {
    transform: scale(1.07);
}

.badd-pu {
    background: linear-gradient(135deg, var(--pu), var(--pud));
    color: #fff;
    box-shadow: 0 4px 14px rgba(124, 58, 237, .3);
}

.badd-pu:hover {
    transform: scale(1.07);
}


/* ══════════════════════════════════════════
   09. DIET CHART SECTION
══════════════════════════════════════════ */
.diet-section {
    padding: 90px 5%;
    background: linear-gradient(160deg, #FFF5FF 0%, #F0E8FF 40%, #FFDCF0 70%, #FFF5E0 100%);
    position: relative;
    overflow: hidden;
}

.diet-section::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 62% 38% 56% 44%/48% 62% 38% 52%;
    background: radial-gradient(circle, rgba(255, 77, 143, .08), transparent 70%);
    top: -120px;
    right: -100px;
    pointer-events: none;
    animation: blobMorph 10s ease-in-out infinite;
}

.diet-section::after {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 38% 62% 44% 56%/62% 38% 55% 45%;
    background: radial-gradient(circle, rgba(124, 58, 237, .07), transparent 70%);
    bottom: -80px;
    left: -80px;
    pointer-events: none;
    animation: blobMorph 14s ease-in-out infinite reverse;
}

.diet-header {
    text-align: center;
    position: relative;
    z-index: 5;
    margin-bottom: 56px;
}

.stepper-wrap {
    position: relative;
    z-index: 5;
    margin: 0 auto;
}

/* Stepper Progress Bar */
.stepper-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 44px;
}

.sp-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}

.sp-ball {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f0f0f0;
    border: 3px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-family: 'Fredoka One', cursive;
    color: #aaa;
    transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
    position: relative;
    z-index: 2;
}

.sp-step.active .sp-ball {
    background: linear-gradient(135deg, var(--pk), var(--pkd));
    border-color: var(--pk);
    color: white;
    box-shadow: 0 6px 22px rgba(255, 77, 143, .38);
    transform: scale(1.12);
}

.sp-step.done .sp-ball {
    background: linear-gradient(135deg, var(--mn), #00a870);
    border-color: var(--mn);
    color: white;
    box-shadow: 0 4px 16px rgba(0, 214, 143, .3);
}

.sp-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .7rem;
    color: #aaa;
    white-space: nowrap;
    transition: color .3s;
}

.sp-step.active .sp-label,
.sp-step.done .sp-label {
    color: var(--dk);
}

.sp-line {
    width: 100px;
    height: 3px;
    background: #e8e8e8;
    border-radius: 2px;
    margin-bottom: 22px;
    position: relative;
    overflow: hidden;
}

.sp-line-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--mn), var(--sk));
    transform: scaleX(0);
    transform-origin: left;
    border-radius: 2px;
    transition: transform .6s ease;
}

.sp-line-fill.done {
    transform: scaleX(1);
}

/* Form Card */
.diet-card {
    background: white;
    border-radius: 36px;
    padding: 44px 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08), 0 4px 20px rgba(255, 77, 143, .07);
    border: 2.5px solid var(--pkl);
    position: relative;
    overflow: hidden;
}

.diet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--pk), var(--pu), var(--sk));
    border-radius: 36px 36px 0 0;
}

/* Step Panels */
.step-panel {
    display: none;
    animation: stepIn .45s cubic-bezier(.34, 1.2, .64, 1) both;
}

.step-panel.active {
    display: block;
}

.step-head {
    margin-bottom: 30px;
}

.step-emoji {
    font-size: 2.8rem;
    margin-bottom: 10px;
    display: block;
}

.step-head h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.6rem;
    color: var(--dk);
    margin-bottom: 6px;
}

.step-head p {
    font-size: .9rem;
    color: #888;
    line-height: 1.6;
}

/* Age Grid */
.age-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 14px;
    margin-bottom: 32px;
}

.age-card {
    border: 2.5px solid #f0f0f0;
    border-radius: 18px;
    padding: 18px 14px;
    text-align: center;
    cursor: pointer;
    transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
    background: #fafafa;
    position: relative;
}

.age-card:hover {
    border-color: var(--pkl);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(255, 77, 143, .12);
}

.age-card.selected {
    border-color: var(--pk);
    background: linear-gradient(135deg, rgba(255, 77, 143, .06), rgba(255, 77, 143, .02));
    box-shadow: 0 8px 24px rgba(255, 77, 143, .18);
}

.age-card.selected::after {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 10px;
    background: var(--pk);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: .6rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito', sans-serif;
}

.age-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.age-emoji img {
    width: 36px;
}

.age-range {
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    color: var(--dk);
    display: block;
}

.age-label {
    font-size: .72rem;
    color: #999;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

/* Gender Row */
.gender-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.gender-card {
    flex: 1;
    border: 2.5px solid #f0f0f0;
    border-radius: 18px;
    padding: 22px;
    text-align: center;
    cursor: pointer;
    transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
    background: #fafafa;
}

.gender-card:hover {
    border-color: var(--pkl);
    transform: translateY(-3px);
}

.gender-card.selected {
    border-color: var(--pu);
    background: linear-gradient(135deg, rgba(124, 58, 237, .06), rgba(124, 58, 237, .02));
    box-shadow: 0 8px 24px rgba(124, 58, 237, .18);
}

.gender-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 8px;
}

.gender-emoji img {
    width: 42px;
}

.gender-name {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: var(--dk);
}



.prob-tag {
    border: 2px solid #f0f0f0;
    border-radius: 14px;
    padding: 14px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all .28s cubic-bezier(.34, 1.56, .64, 1);
    background: #fafafa;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .84rem;
    color: var(--dk);
    position: relative;
}

.prob-tag:hover {
    border-color: var(--pkl);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 77, 143, .1);
}

.prob-tag.selected {
    border-color: var(--pk);
    background: linear-gradient(135deg, rgba(255, 77, 143, .07), rgba(255, 77, 143, .02));
    box-shadow: 0 6px 18px rgba(255, 77, 143, .16);
}

.prob-tag.selected::before {
    content: '✓';
    position: absolute;
    top: 6px;
    right: 8px;
    background: var(--pk);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: .55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
}

.prob-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}


/* FIXED: removed broken "-icon" suffix */

/* Diet Preference */

/* update diet */
/* BMI Badge */
.bmi-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .8rem;
    margin-top: 12px;
}

/* Height / Weight inputs */
.hw-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
}

.hw-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hw-group label {
    font-family: 'Fredoka One', cursive;
    font-size: .9rem;
    color: var(--dk);
}

.hw-group input {
    padding: 12px 16px;
    border: 2px solid #f0f0f0;
    border-radius: 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    color: var(--dk);
    background: #fafafa;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.hw-group input:focus {
    border-color: var(--pk);
    box-shadow: 0 0 0 3px rgba(255, 77, 143, .1);
    background: #fff;
}

.hw-group input::placeholder {
    color: #bbb;
}

/* Free preview label */
.free-preview-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--mnl);
    color: #00a870;
    border-radius: 50px;
    padding: 5px 14px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .72rem;
    letter-spacing: .8px;
    text-transform: uppercase;
}

/* Day label */
.day-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--pk), var(--pkd));
    color: #fff;
    border-radius: 50px;
    padding: 7px 20px;
    font-family: 'Fredoka One', cursive;
    font-size: .92rem;
    margin-bottom: 16px;
    box-shadow: 0 4px 14px rgba(255, 77, 143, .28);
}

/* Lock / Subscription banner */
.lock-banner {
    background: linear-gradient(135deg, var(--dk2), #2d0060);
    border-radius: 28px;
    padding: 40px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
}

.lock-banner::before {
    content: '🔒';
    position: absolute;
    right: -20px;
    bottom: -30px;
    font-size: 9rem;
    opacity: .04;
    pointer-events: none;
}

.lock-icon-lg {
    font-size: 2.6rem;
    margin-bottom: 12px;
    display: block;
}

.lock-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    color: #fff;
    margin-bottom: 10px;
}

.lock-sub {
    color: rgba(255, 255, 255, .55);
    font-size: .9rem;
    line-height: 1.65;
    max-width: 440px;
    margin: 0 auto 28px;
}

/* Plan cards inside lock banner */
.plan-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 480px;
    margin: 0 auto 24px;
}

.plan-card {
    background: rgba(255, 255, 255, .06);
    border: 1.5px solid rgba(255, 255, 255, .1);
    border-radius: 22px;
    padding: 22px 18px;
    cursor: pointer;
    transition: all .3s;
    text-align: left;
}

.plan-card:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-4px);
}

.plan-card.active {
    border-color: var(--ye);
    background: rgba(255, 214, 0, .08);
    box-shadow: 0 0 0 1px var(--ye);
}

.plan-pop-badge {
    display: inline-block;
    background: rgba(255, 214, 0, .18);
    border: 1px solid rgba(255, 214, 0, .3);
    color: var(--ye);
    border-radius: 50px;
    padding: 3px 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .65rem;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.plan-name {
    font-family: 'Fredoka One', cursive;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 4px;
}

.plan-price {
    font-family: 'Fredoka One', cursive;
    font-size: 1.6rem;
    color: var(--ye);
    margin-bottom: 8px;
}

.plan-price span {
    font-size: .75rem;
    color: rgba(255, 255, 255, .4);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
}

.plan-features {
    font-size: .76rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
}

.plan-features .pf {
    display: flex;
    align-items: center;
    gap: 6px;
}

.plan-features .pf::before {
    content: '✓';
    color: var(--mn);
    font-weight: 900;
    font-size: .7rem;
}

/* Subscribe button */
.btn-subscribe {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--ye);
    color: var(--dk);
    border: none;
    border-radius: 50px;
    padding: 16px 42px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 8px 28px rgba(255, 214, 0, .4);
}

.btn-subscribe:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 36px rgba(255, 214, 0, .55);
}

/* Modal overlay */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 0, 32, .6);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    padding: 20px;
}

.modal-overlay.open {
    display: flex;
}

.modal-box {
    background: #fff;
    border-radius: 36px;
    padding: 44px 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 32px 80px rgba(13, 0, 32, .35);
    animation: stepIn .45s cubic-bezier(.34, 1.2, .64, 1) both;
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--pkl);
    border: none;
    cursor: pointer;
    color: var(--pk);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.modal-close-btn:hover {
    background: var(--pk);
    color: #fff;
}

.modal-h {
    font-family: 'Fredoka One', cursive;
    font-size: 1.6rem;
    color: var(--dk);
    margin-bottom: 6px;
}

.modal-sub {
    font-size: .88rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 24px;
}

.mfield {
    margin-bottom: 14px;
}

.mfield label {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .78rem;
    color: #888;
    display: block;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mfield input {
    width: 100%;
    padding: 13px 18px;
    border: 2px solid #f0f0f0;
    border-radius: 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    color: var(--dk);
    background: #fafafa;
    outline: none;
    transition: border-color .2s;
}

.mfield input:focus {
    border-color: var(--pu);
    background: #fff;
}

.order-summary-box {
    background: linear-gradient(135deg, rgba(124, 58, 237, .05), rgba(255, 77, 143, .05));
    border: 2px solid var(--pul);
    border-radius: 18px;
    padding: 16px 18px;
    margin-bottom: 18px;
}

.os-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Nunito', sans-serif;
}

.os-lbl {
    font-weight: 700;
    font-size: .88rem;
    color: #888;
}

.os-val {
    font-family: 'Fredoka One', cursive;
    font-size: 1.15rem;
    color: var(--pu);
}

.secure-note {
    text-align: center;
    font-size: .75rem;
    color: #aaa;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

/* Success banner */
.success-banner {
    display: none;
    background: linear-gradient(135deg, var(--mnl), #b8fff0);
    border: 2.5px solid var(--mn);
    border-radius: 28px;
    padding: 36px;
    text-align: center;
    margin-bottom: 28px;
    animation: popIn .5s ease both;
}

.success-banner h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: #00765A;
    margin-bottom: 8px;
}

.success-banner p {
    font-size: .9rem;
    color: #007A5A;
    margin-bottom: 18px;
}

/*  */
.diet-pref-row,
#dietPrefRow {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.dpref {
    border: 2px solid #f0f0f0;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all .25s;
    background: #fafafa;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .84rem;
    color: var(--dk);
}

.dpref:hover {
    border-color: var(--skl);
    transform: translateY(-2px);
}

.dpref.selected {
    border-color: var(--sk);
    background: linear-gradient(135deg, rgba(0, 191, 255, .08), rgba(0, 191, 255, .02));
    box-shadow: 0 4px 14px rgba(0, 191, 255, .2);
    color: #0088bb;
}

/* Allergy Tags */
.allergy-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.atag {
    border: 2px solid #f0f0f0;
    border-radius: 50px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    transition: all .25s;
    background: #fafafa;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .8rem;
    color: var(--dk);
}

.atag:hover {
    border-color: var(--orl);
    transform: translateY(-2px);
}

.atag.selected {
    border-color: var(--or);
    background: rgba(255, 107, 53, .07);
    color: var(--or);
    box-shadow: 0 4px 12px rgba(255, 107, 53, .15);
}

/* Step Navigation */
.step-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    gap: 14px;
}

.btn-back {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2.5px solid #e8e8e8;
    background: white;
    border-radius: 50px;
    padding: 13px 26px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .9rem;
    color: #888;
    cursor: pointer;
    transition: all .25s;
}

.btn-back:hover {
    border-color: var(--pk);
    color: var(--pk);
    transform: translateX(-3px);
}

.btn-next {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--pk), var(--pkd));
    border: none;
    border-radius: 50px;
    padding: 15px 34px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .95rem;
    color: white;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 8px 26px rgba(255, 77, 143, .38);
    position: relative;
    overflow: hidden;
}

.btn-next::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .15);
    transform: translateX(-100%);
    transition: transform .3s;
}

.btn-next:hover::before {
    transform: translateX(0);
}

.btn-next:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 34px rgba(255, 77, 143, .5);
}

.btn-next:disabled {
    opacity: .4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-generate {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--mn), #00a870);
    border: none;
    border-radius: 50px;
    padding: 16px 38px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 8px 26px rgba(0, 214, 143, .38);
}

.btn-generate:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 16px 36px rgba(0, 214, 143, .5);
}

/* Loading State */
.loading-state {
    display: none;
    text-align: center;
    padding: 60px 20px;
}

.loading-state.active {
    display: block;
}

.loader-ring {
    width: 80px;
    height: 80px;
    border: 5px solid var(--pkl);
    border-top-color: var(--pk);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 24px;
}

.loading-state h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: var(--dk);
    margin-bottom: 8px;
}

.loading-state p {
    color: #888;
    font-size: .9rem;
}

.loading-facts {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.lfact {
    background: var(--pkl);
    border-radius: 50px;
    padding: 8px 18px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .8rem;
    color: var(--pkd);
    animation: popIn .5s ease both;
}

.lfact:nth-child(2) {
    animation-delay: .3s;
}

.lfact:nth-child(3) {
    animation-delay: .6s;
}

/* Result State */
.result-state {
    display: none;
}

.result-state.active {
    display: block;
}

.result-hero {
    background: linear-gradient(135deg, var(--dk2), #2d0060);
    border-radius: 28px;
    padding: 36px;
    color: white;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.result-hero::before {
    content: '🌿';
    position: absolute;
    right: -10px;
    bottom: -20px;
    font-size: 8rem;
    opacity: .05;
}

.result-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 214, 0, .15);
    border: 1px solid rgba(255, 214, 0, .3);
    border-radius: 50px;
    padding: 7px 16px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .72rem;
    color: var(--ye);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.result-hero h3 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    margin-bottom: 8px;
    color: white;
}

.result-hero p {
    color: rgba(255, 255, 255, .6);
    font-size: .9rem;
    line-height: 1.6;
}

.result-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.rtag {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50px;
    padding: 7px 15px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .78rem;
    color: rgba(255, 255, 255, .82);
    display: flex;
    align-items: center;
    gap: 6px;
}

.meal-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.meal-card {
    border: 2.5px solid #f5f5f5;
    border-radius: 22px;
    padding: 22px;
    transition: all .3s;
}

.meal-card:hover {
    border-color: var(--pkl);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 77, 143, .1);
}

.meal-time {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.meal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.meal-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.meal-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 10px;
}

.meal-name {
    font-family: 'Fredoka One', cursive;
    font-size: 1.05rem;
    color: var(--dk);
    margin-bottom: 6px;
}

.meal-items {
    font-size: .82rem;
    color: #666;
    line-height: 1.6;
}

.meal-tag {
    display: inline-block;
    background: var(--mnl);
    color: #00a870;
    border-radius: 50px;
    padding: 3px 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .68rem;
    margin-top: 10px;
}

.nutrients-section {
    background: linear-gradient(135deg, #f8f5ff, #fff5fb);
    border-radius: 22px;
    padding: 28px;
    margin-bottom: 28px;
}

.nutrients-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    color: var(--dk);
    margin-bottom: 20px;
}

.n-row {
    display: grid;
    grid-template-columns: 130px 1fr 60px;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.n-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .82rem;
    color: var(--dk);
    display: flex;
    align-items: center;
    gap: 7px;
}

.n-track {
    height: 10px;
    background: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
}

.n-fill {
    height: 100%;
    border-radius: 5px;
    animation: fillBar 1.4s cubic-bezier(.34, 1.1, .64, 1) both;
}

.n-val {
    font-family: 'Fredoka One', cursive;
    font-size: .95rem;
    color: var(--dk);
    text-align: right;
}

.product-rec {
    background: linear-gradient(135deg, rgba(255, 77, 143, .05), rgba(124, 58, 237, .05));
    border: 2px solid var(--pkl);
    border-radius: 22px;
    padding: 26px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.prod-emoji {
    font-size: 3.5rem;
    flex-shrink: 0;
}

.prod-info {
    flex: 1;
}

.prod-tag {
    display: inline-block;
    background: var(--pkl);
    color: var(--pkd);
    border-radius: 50px;
    padding: 4px 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .68rem;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.prod-name {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    color: var(--dk);
    margin-bottom: 4px;
}

.prod-why {
    font-size: .84rem;
    color: #666;
    line-height: 1.6;
}

.prod-btn {
    background: linear-gradient(135deg, var(--pk), var(--pkd));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 13px 26px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .88rem;
    cursor: pointer;
    transition: all .25s;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(255, 77, 143, .3);
}

.prod-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(255, 77, 143, .45);
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 28px;
}

.tip-card {
    border: 2px solid #f0f0f0;
    border-radius: 18px;
    padding: 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: all .25s;
}

.tip-card:hover {
    border-color: var(--skl);
    transform: translateY(-3px);
}

.tip-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tip-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .88rem;
    color: var(--dk);
    margin-bottom: 4px;
}

.tip-text {
    font-size: .8rem;
    color: #888;
    line-height: 1.55;
}

.result-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 4px;
}

.btn-restart {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2.5px solid var(--pkl);
    background: white;
    border-radius: 50px;
    padding: 13px 26px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .9rem;
    color: var(--pk);
    cursor: pointer;
    transition: all .25s;
}

.btn-restart:hover {
    background: var(--pk);
    color: white;
    transform: translateY(-2px);
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--dk);
    border: none;
    border-radius: 50px;
    padding: 13px 26px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .9rem;
    color: white;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 0 6px 18px rgba(13, 0, 32, .2);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(13, 0, 32, .3);
}

/* Error Message */
.selection-error {
    display: none;
    color: var(--or);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .82rem;
    margin-top: 10px;
    animation: shake .4s ease;
}

.selection-error.show {
    display: block;
}


/* ══════════════════════════════════════════
   10. INGREDIENTS SECTION
══════════════════════════════════════════ */
.ing-section {
    background: linear-gradient(180deg, #050015 0%, #0D0030 40%, #001A10 100%);
    padding: 0;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
}

.stars-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.sdot {
    position: absolute;
    border-radius: 50%;
    background: white;
    animation: twinkle var(--dur, 3s) ease-in-out infinite;
    animation-delay: var(--del, 0s);
}

.ing-header {
    text-align: center;
    padding: 80px 5% 50px;
    position: relative;
    z-index: 5;
}

.ing-header .sec-eye {
    color: var(--mn);
}

.ing-header .sec-title {
    color: white;
}

.ing-header .sec-title .acc {
    color: var(--ye);
}

/* FIXED: was overridden to black */
.ing-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 5% 50px;
    position: relative;
    z-index: 5;
}

.itab {
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .83rem;
    cursor: pointer;
    transition: all .3s;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .55);
    border: 1.5px solid rgba(255, 255, 255, .08);
}

.itab img {
    width: 16px;


}

.itab.active,
.itab:hover {
    background: rgba(255, 255, 255, .14);
    color: white;
    border-color: rgba(255, 255, 255, .2);
    transform: translateY(-2px);
}

.itab.active {
    box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
}

.ing-panels {
    position: relative;
    z-index: 5;
    margin: 0 auto;
    padding: 0 5% 60px;
}

.ing-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
    animation: fadeInPanel .5s ease;
}

.ing-panel.active {
    display: grid;
}

.ing-planet {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7.5rem;
    position: relative;
    box-shadow: 0 0 90px var(--pglow, rgba(0, 214, 143, .3)), inset 0 0 50px rgba(255, 255, 255, .04);
    animation: planetFloat 5s ease-in-out infinite;
}

.image-big {
    width: 300px;
}

.ing-planet::after {
    content: '';
    position: absolute;
    inset: -22px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .07);
    animation: rotatePlanet 12s linear infinite;
}

.ing-planet::before {
    content: '';
    position: absolute;
    inset: -44px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, .04);
    animation: rotatePlanet 22s linear infinite reverse;
}

.orbit-i {
    position: absolute;
    font-size: 1.7rem;
    animation: orbitI var(--orr, 8s) linear infinite;
    transform-origin: 0 0;
}

.ing-text .ing-num {
    font-family: 'Fredoka One', cursive;
    font-size: 5rem;
    color: rgba(255, 255, 255, .05);
    line-height: 1;
    margin-bottom: -22px;
}

.ing-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Nunito', sans-serif;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.ing-name {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: white;
    line-height: 1.1;
    margin-bottom: 6px;
}

.ing-sci {
    font-style: italic;
    font-size: .85rem;
    color: rgba(255, 255, 255, .38);
    margin-bottom: 20px;
}

.ing-story {
    font-size: .95rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.78;
    max-width: 460px;
    margin-bottom: 22px;
}

.ing-powers {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 22px;
}

.ptag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .76rem;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .82);
    border: 1px solid rgba(255, 255, 255, .1);
    transition: all .2s;
    cursor: default;
}

.ptag:hover {
    background: rgba(255, 255, 255, .12);
    transform: scale(1.06);
}

.ing-fact {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 18px 22px;
    font-size: .84rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.65;
}

.ing-fact strong {
    color: var(--ye);
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
}


/* ══════════════════════════════════════════
   11. HOW IT WORKS
══════════════════════════════════════════ */
.how-section {
    padding: 80px 5%;
    text-align: center;
    background: linear-gradient(135deg, #FFF9F0 0%, #FFF0FA 100%);
}

.steps {
    display: flex;
    justify-content: space-around;
    gap: 0;
    margin-top: 56px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 160px;
    max-width: 210px;
    padding: 0 10px;
    position: relative;
}

.step::after {
    content: '→';
    position: absolute;
    right: -14px;
    top: 26px;
    font-size: 1.6rem;
    color: var(--pk);
    font-family: 'Fredoka One', cursive;
}

.step:last-child::after {
    display: none;
}

.sball {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all .3s;
    cursor: default;
}

.s1 {
    background: rgba(255, 77, 143, .1);
    border: 3.5px solid var(--pk);
}

.s2 {
    background: rgba(0, 191, 255, .1);
    border: 3.5px solid var(--sk);
}

.s3 {
    background: rgba(124, 58, 237, .1);
    border: 3.5px solid var(--pu);
}

.s4 {
    background: rgba(255, 214, 0, .15);
    border: 3.5px solid var(--ye);
}

.snum {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .7rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--pk);
    margin-bottom: 6px;
}

.stitle {
    font-family: 'Fredoka One', cursive;
    font-size: 1.05rem;
    color: var(--dk);
    margin-bottom: 7px;
}

.sdesc {
    font-size: .82rem;
    color: #777;
    line-height: 1.62;
}


/* ══════════════════════════════════════════
   12. QUIZ CTA
══════════════════════════════════════════ */
.quiz-cta {
    margin: 80px 5%;
    border-radius: var(--rL);
    padding: 64px 54px;
    background: linear-gradient(135deg, var(--pu) 0%, #4c1d95 50%, #1e1b4b 100%);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 44px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.quiz-cta::before {
    content: '🌿';
    position: absolute;
    right: 240px;
    bottom: -40px;
    font-size: 10rem;
    opacity: .05;
    pointer-events: none;
}

.quiz-cta::after {
    content: '⭐';
    position: absolute;
    top: 20px;
    right: 290px;
    font-size: 4rem;
    opacity: .07;
    animation: spinSlow 10s linear infinite;
    pointer-events: none;
}

.quiz-label {
    font-family: 'Nunito', sans-serif;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ye);
    margin-bottom: 14px;
    display: block;
}

.quiz-h {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    color: white;
    line-height: 1.2;
    margin-bottom: 14px;
}

.quiz-p {
    color: rgba(255, 255, 255, .6);
    font-size: .95rem;
    line-height: 1.68;
}

.quiz-btn {
    background: var(--ye);
    color: var(--dk);
    border: none;
    padding: 18px 38px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.02rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all .28s;
    box-shadow: 0 8px 28px rgba(255, 214, 0, .38);
}

.quiz-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 36px rgba(255, 214, 0, .55);
}


/* ══════════════════════════════════════════
   13. CERTIFICATIONS CAROUSEL
══════════════════════════════════════════ */
.imgcar-section {
    padding: 80px 5%;
    background: linear-gradient(160deg, #FFFBF5 0%, #FFF0FA 45%, #F0E8FF 80%, #FFFBE0 100%);
    position: relative;
    overflow: hidden;
}

.imgcar-section::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 62% 38% 56% 44%/48% 62% 38% 52%;
    background: radial-gradient(circle, rgba(255, 77, 143, .07), transparent 70%);
    top: -120px;
    right: -100px;
    pointer-events: none;
    animation: blobMorph 12s ease-in-out infinite;
}

.imgcar-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 38% 62% 44% 56%/62% 38% 55% 45%;
    background: radial-gradient(circle, rgba(124, 58, 237, .06), transparent 70%);
    bottom: -60px;
    left: -60px;
    pointer-events: none;
    animation: blobMorph 16s ease-in-out infinite reverse;
}

.imgcar-header {
    text-align: center;
    position: relative;
    z-index: 5;
    margin-bottom: 48px;
}

.imgcar-wrapper {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 16px;
}

.imgcar-viewport {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    height: 260px;
}

.imgcar-pbar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, var(--pk), var(--pu), var(--sk));
    border-radius: 2px;
    z-index: 10;
}

.imgcar-track {
    display: flex;
    gap: 20px;
    transition: transform .55s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

.imgcar-item {
    flex-shrink: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 2.5px solid var(--pkl);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .06);
    transition: transform .38s cubic-bezier(.34, 1.56, .64, 1), box-shadow .38s, border-color .3s;
    cursor: pointer;
}

.imgcar-item:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--pk);
    box-shadow: 0 24px 52px rgba(255, 77, 143, .16), 0 6px 20px rgba(0, 0, 0, .08);
}

.imgcar-item img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    display: block;
    padding: 18px 20px;
    transition: transform .38s cubic-bezier(.34, 1.56, .64, 1);
}

.imgcar-item:hover img {
    transform: scale(1.06);
}

.imgcar-arrow {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    font-family: 'Fredoka One', cursive;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .28s cubic-bezier(.34, 1.56, .64, 1);
}

.imgcar-arrow-prev {
    background: #fff;
    color: var(--dk);
    border: 2.5px solid var(--pkl);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .07);
}

.imgcar-arrow-prev:hover {
    background: var(--pk);
    border-color: var(--pk);
    color: #fff;
    transform: scale(1.12) translateX(-2px);
    box-shadow: 0 10px 24px rgba(255, 77, 143, .38);
}

.imgcar-arrow-next {
    background: linear-gradient(135deg, var(--pk), var(--pkd));
    color: #fff;
    box-shadow: 0 6px 20px rgba(255, 77, 143, .34);
}

.imgcar-arrow-next:hover {
    transform: scale(1.12) translateX(2px);
    box-shadow: 0 12px 28px rgba(255, 77, 143, .52);
}

.imgcar-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
    position: relative;
    z-index: 5;
}

.imgcar-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .13);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .35s;
}

.imgcar-dot.active {
    width: 28px;
    border-radius: 5px;
    background: var(--pk);
    box-shadow: 0 3px 10px rgba(255, 77, 143, .42);
}


/* ══════════════════════════════════════════
   14. TESTIMONIALS
══════════════════════════════════════════ */
testi-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #FFF0FA, #F0E8FF, #FFE8F5);
}

. .testi-section .sec-eye,
.testi-section .sec-title {
    text-align: center;
    display: block;
}

/* reel */

/* ── Reels wrapper ── */
.reels-section-wrap {
    margin-top: 44px;
    position: relative;
}

/* ── Header: title + nav buttons ── */
.reels-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 16px;
    flex-wrap: wrap;
}

.reels-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--dk);
    margin: 0;
}

/* ── Prev / Next buttons ── */
.reels-nav {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.reels-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2.5px solid var(--pkl);
    background: #fff;
    color: var(--dk);
    font-size: 1.4rem;
    font-family: 'Fredoka One', cursive;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .07);
}

.reels-btn:hover {
    background: var(--pk);
    border-color: var(--pk);
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(255, 77, 143, .35);
}

.reels-btn.reels-btn-next {
    background: linear-gradient(135deg, var(--pk), var(--pkd));
    border-color: var(--pk);
    color: #fff;
    box-shadow: 0 4px 14px rgba(255, 77, 143, .35);
}

.reels-btn.reels-btn-next:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 22px rgba(255, 77, 143, .5);
}

.reels-btn:disabled {
    opacity: .35;
    cursor: not-allowed;
    transform: none;
}

/* ── Viewport: clips the track ── */
.reels-viewport {
    overflow: hidden;
    border-radius: 16px;
}

/* ── Sliding track ── */
.reels-row {
    display: flex;
    gap: 16px;
    transition: transform .45s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
    /* NO overflow-x, NO scroll — controlled by JS transform */
}

/* ── Single reel card ── */
.reel {
    flex: 0 0 200px;
    height: 360px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 14px 44px rgba(0, 0, 0, .16);
    transition: transform .3s, box-shadow .3s;
    user-select: none;
}

.reel:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 22px 54px rgba(0, 0, 0, .22);
}

.reel-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .1) 60%, transparent 100%);
}

.reel-prog {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, .2);
    z-index: 3;
}

.reel-bar {
    height: 100%;
    background: var(--pk);
    width: 0;
    border-radius: 2px;
}

.reel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, .22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 2px solid rgba(255, 255, 255, .4);
    transition: all .25s;
    z-index: 3;
    color: #fff;
}

.reel:hover .reel-play-btn {
    background: rgba(255, 255, 255, .4);
}

.reel-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    z-index: 3;
}

.reel-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .84rem;
    color: #fff;
    margin-bottom: 4px;
}

.reel-txt {
    font-size: .72rem;
    color: rgba(255, 255, 255, .78);
    line-height: 1.4;
}

/* ── Dot indicators ── */
.reels-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.reels-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .15);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .3s;
}

.reels-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--pk);
}

/* reel */
.reel:hover {
    transform: scale(1.05);
}

.reel-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5.5rem;
}

.reel-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .1) 65%, transparent 100%);
}

.reel-prog {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, .2);
}

.reel-bar {
    height: 100%;
    background: var(--pk);
    width: 0;
    border-radius: 2px;
}

.reel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, .22);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    border: 2px solid rgba(255, 255, 255, .4);
    transition: all .25s;
}

.reel-ava {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 2.5px solid var(--ye);
    margin-bottom: 7px
}

.reel-stars {
    color: var(--ye);
    font-size: .75rem;
    margin-bottom: 6px;
}



.reel:hover .reel-play-btn {
    background: rgba(255, 255, 255, .38);
}

.reel-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
}

.reel-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .84rem;
    color: white;
    margin-bottom: 3px;
}

.reel-txt {
    font-size: .72rem;
    color: rgba(255, 255, 255, .78);
    line-height: 1.42;
}

.wreviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 22px;
    margin-top: 48px;
}

.wrev {
    background: white;
    border-radius: var(--r);
    padding: 24px;
    box-shadow: 0 5px 22px rgba(0, 0, 0, .06);
    border: 2.5px solid var(--pkl);
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.wrev::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pk), var(--pu));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}

.wrev:hover {
    transform: translateY(-6px);
    border-color: var(--pk);
    box-shadow: 0 18px 40px rgba(255, 77, 143, .13);
}

.wrev:hover::before {
    transform: scaleX(1);
}

.wrev-stars {
    color: var(--ye);
    font-size: .9rem;
    margin-bottom: 10px;
}

.wrev-txt {
    font-size: .88rem;
    color: #555;
    line-height: 1.68;
    margin-bottom: 16px;
    position: relative;
    padding-left: 22px;
}

.wrev-txt::before {
    content: '"';
    font-family: 'Fredoka One', cursive;
    font-size: 2.8rem;
    color: var(--pkl);
    position: absolute;
    top: -10px;
    left: -4px;
    line-height: 1;
}

.wrev-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wrev-ava {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.wrev-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .9rem;
    color: var(--dk);
}

.wrev-meta {
    font-size: .74rem;
    color: #999;
}

.wrev-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(0, 214, 143, .1);
    color: var(--mn);
    font-size: .66rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 20px;
    margin-top: 2px;
}

.rev-summary {
    background: white;
    border-radius: var(--r);
    padding: 28px 32px;
    margin: 36px 0 0;
    display: flex;
    gap: 36px;
    align-items: center;
    box-shadow: 0 6px 28px rgba(0, 0, 0, .07);
    flex-wrap: wrap;
    border: 2.5px solid var(--pkl);
}

.rev-big {
    text-align: center;
}

.rev-big-n {
    font-family: 'Fredoka One', cursive;
    font-size: 4rem;
    color: var(--pk);
    line-height: 1;
}

.rev-big-stars {
    color: var(--ye);
    font-size: 1.2rem;
}

.rev-big-l {
    font-size: .8rem;
    color: #888;
    margin-top: 4px;
}

.rev-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 200px;
}

.rbar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .8rem;
    color: #888;
}

.rbar-track {
    flex: 1;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.rbar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--pk), var(--ye));
    border-radius: 4px;
    transition: width 1.5s ease;
}


/* ══════════════════════════════════════════
   15. FAQ
══════════════════════════════════════════ */
.faq-section {
    padding: 80px 5%;
    margin: 0 auto;
}

.faq-section .sec-eye,
.faq-section .sec-title {
    text-align: center;
    display: block;
}

.faq-list {
    margin-top: 48px;
}

.faq-item {
    border-bottom: 2px solid rgba(0, 0, 0, .07);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 6px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.05rem;
    color: var(--dk);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color .2s;
}

.faq-q:hover {
    color: var(--pk);
}

.faq-tog {
    width: 32px;
    height: 32px;
    background: var(--pkl);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    color: var(--pk);
    flex-shrink: 0;
    transition: all .35s;
    font-family: 'Nunito', sans-serif;
}

.faq-item.open .faq-tog {
    transform: rotate(45deg);
    background: var(--pk);
    color: white;
}

.faq-ans {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(.4, 0, .2, 1);
}

.faq-item.open .faq-ans {
    max-height: 220px;
}

.faq-ans p {
    font-size: .9rem;
    color: #666;
    line-height: 1.72;
    padding: 0 6px 22px;
}


/* ══════════════════════════════════════════
   16. NEWSLETTER
══════════════════════════════════════════ */
.newsletter {
    margin: 0 5% 80px;
    background: linear-gradient(135deg, var(--pu) 0%, #4c1d95 50%, #1e1b4b 100%);
    border-radius: var(--rL);
    padding: 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 77, 143, .07), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.newsletter::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(124, 58, 237, .07), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.newsletter .sec-title {
    color: white;
    margin-bottom: 12px;
}

.newsletter .sec-eye {
    color: var(--pk);
    display: block;
    text-align: center;
}

.nl-sub {
    color: rgba(255, 255, 255, .5);
    font-size: .95rem;
    max-width: 460px;
    margin: 0 auto 28px;
    line-height: 1.68;
}

.nl-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.nl-input {
    flex: 1;
    min-width: 210px;
    padding: 15px 22px;
    background: rgba(255, 255, 255, .07);
    border: 2px solid rgba(255, 255, 255, .1);
    border-radius: 50px;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    outline: none;
    transition: border-color .2s;
}

.nl-input::placeholder {
    color: rgba(255, 255, 255, .3);
}

.nl-input:focus {
    border-color: var(--pk);
}


/* ══════════════════════════════════════════
   17. FOOTER
══════════════════════════════════════════ */
.kiddex-footer {
    background: #06000F;
    position: relative;
    overflow: hidden;
}

/* Animated BG Blobs */
.kiddex-footer .footer-anim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.kiddex-footer .footer-anim .fa-dot {
    position: absolute;
    border-radius: 50%;
    opacity: .04;
    animation: floatY var(--dur, 6s) ease-in-out infinite;
    animation-delay: var(--del, 0s);
}

/* Widget Grid */
.footer-widget-area {
    padding: 64px 5% 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.6fr;
    gap: 40px;
    background-color: #fff7f2;
    position: relative;
    z-index: 2;
}

/* Brand Column */
.fw-brand .footer-logo-text {
    font-family: 'Fredoka One', cursive;
    font-size: 1.75rem;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo-text img {
    height: 120px !important;
    margin: -43px;
}

.fw-brand .footer-contact-list {
    list-style: none;
    margin-bottom: 20px;
}

.fw-brand .footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #000;
    font-size: .82rem;
    margin-bottom: 8px;
}

.fw-brand .footer-contact-list li .fci {
    color: var(--pk);
    font-size: .9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.fci img {
    height: 21px;
}

.fw-brand .footer-contact-list li a {
    color: #000;
    text-decoration: none;
    transition: color .2s;
}

.fw-brand .footer-contact-list li a:hover {
    color: var(--pk);
}

.footer-socials {
    display: flex;
    gap: 1px;
    margin-top: -14px;
    margin-left: -5px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all .25s;
}

.footer-socials a img {
    width: 27px;
}

.footer-socials a:hover {
    background: var(--pk);
    border-color: var(--pk);
    transform: translateY(-3px);
}

/* Link Columns */
.fw-links h4 {
    font-family: 'Arial', sans-serif;
    color: #1027b7;
    font-size: 1.05rem;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.fw-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 3px;
    background: var(--pk);
    border-radius: 2px;
}

.fw-links ul {
    list-style: none;
}

.fw-links ul li {
    margin-bottom: 10px;
}

.fw-links ul li a {
    color: #000;
    text-decoration: none;
    font-size: .84rem;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fw-links ul li a::before {
    content: '›';
    font-size: 1rem;
    color: var(--pk);
    opacity: 0;
    transform: translateX(-6px);
    transition: all .2s;
}

.fw-links ul li a:hover {
    color: var(--pk);
    padding-left: 4px;
}

.fw-links ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Subscribe Column */
.fw-subscribe h4 {
    font-family: 'Arial', sans-serif;
    color: #1027b7;
    ;
    font-size: 1.05rem;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
}

.fw-subscribe h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 3px;
    background: var(--pk);
    border-radius: 2px;
}

.fw-subscribe p {
    font-size: .82rem;
    color: #000;
    line-height: 1.65;
    margin-bottom: 16px;
}

.subscribe-wrap {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2.5px solid var(--pkl);
    border-radius: 50px;
    padding: 5px 5px 5px 20px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 6px 24px rgba(255, 77, 143, .12);
    transition: border-color .3s, box-shadow .3s;
}

.subscribe-wrap:focus-within {
    border-color: var(--pk);
    box-shadow: 0 8px 28px rgba(255, 77, 143, .22);
}

.subs-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: .92rem;
    color: var(--dk);
}

.subs-input::placeholder {
    color: #bbb;
}

.subs-btn {
    background: var(--btn);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 11px 22px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .85rem;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .2s, box-shadow .2s;
}

.subs-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(255, 77, 143, .4);
}

/* Payment Row */
.footer-payment-row {
    padding: 20px 5%;
    border-top: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    background-color: #fff7f2;
    position: relative;
    z-index: 2;
}

.footer-payment-cards {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-card {
    background: rgb(251, 193, 210);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    padding: 5px 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .72rem;
    color: #000;
    transition: all .2s;
}

.payment-card img {
    width: 40px;
}

.payment-card:hover {
    background: rgba(255, 255, 255, .12);
}

/* Bottom Bar — FIXED: unified color from both files */
.footer-bottom-bar {
    background: #491d90;
    padding: 18px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.footer-bottom-bar .copyright {
    font-size: .8rem;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
}

.footer-bottom-bar .copyright a {
    color: white;
    text-decoration: none;
}

.footer-bottom-bar .foot-links {
    display: flex;
    gap: 18px;
    list-style: none;
}

.footer-bottom-bar .foot-links a {
    color: #fff;
    text-decoration: none;
    font-size: .78rem;
    transition: color .2s;
}

.footer-bottom-bar .foot-links a:hover {
    color: var(--pk);
}


/* ══════════════════════════════════════════
   18. SHARED UTILITIES & KEYFRAMES
══════════════════════════════════════════ */
.sec-eye {
    font-family: 'Nunito', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--pk);
    margin-bottom: 8px;
    display: block;
}

.sec-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    color: var(--dk);
    line-height: 1.15;
    margin-bottom: 12px;
}

.sec-title .acc {
    color: var(--pu);
}

/* FIXED: was black, now correct purple */
.sec-sub {
    font-size: .98rem;
    color: #666;
    line-height: 1.72;
}

.reveal {
    opacity: 0;
    transform: translateY(42px);
    transition: opacity .7s cubic-bezier(.34, 1.1, .64, 1), transform .7s cubic-bezier(.34, 1.1, .64, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Keyframes */
@keyframes cartPop {
    0% {
        transform: scale(0) rotate(-20deg);
    }

    70% {
        transform: scale(1.2) rotate(5deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes scrollL {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes blobMorph {

    0%,
    100% {
        border-radius: 62% 38% 56% 44%/48% 62% 38% 52%;
    }

    50% {
        border-radius: 38% 62% 44% 56%/62% 38% 55% 45%;
    }
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 77, 143, 0);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(255, 77, 143, .1);
    }
}

@keyframes jarFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes fgFly {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }

    50% {
        transform: translate3d(0, -10px, 0) rotate(6deg) scale(1.06);
    }
}

@keyframes floatBB {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-9px) rotate(-1deg);
    }
}

@keyframes sparkFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: .45;
    }

    50% {
        transform: translateY(-16px) scale(1.15);
        opacity: 1;
    }
}

@keyframes flyAround {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(0, -10px, 0) rotate(8deg);
    }
}

@keyframes gummyBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes slideInL {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInR {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes spinSlow {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes stepIn {
    from {
        opacity: 0;
        transform: translateX(30px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(.7) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fillBar {
    from {
        width: 0 !important;
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-6px);
    }

    75% {
        transform: translateX(6px);
    }
}

@keyframes twinkle {

    0%,
    100% {
        opacity: .18;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.4);
    }
}

@keyframes rotatePlanet {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitI {
    from {
        transform: rotate(0deg) translateX(155px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(155px) rotate(-360deg);
    }
}

@keyframes planetFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-18px) rotate(2deg);
    }
}

@keyframes fadeInPanel {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconBob {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-7px) rotate(6deg);
    }
}

@keyframes sparkUp {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-80px) scale(0) rotate(180deg);
    }
}


/* ══════════════════════════════════════════
   19-A. PRODUCT DETAIL PAGE (PDP)
══════════════════════════════════════════ */

/* ── PDP Hero ── */
.pdp-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1260px;
    margin: 0 auto;
    padding: 115px 5% 60px;
}

/* ── Gallery ── */
.pdp-gallery {
    position: sticky;
    top: 90px;
}

.main-img-wrap {
    position: relative;
    background: linear-gradient(145deg, #FFF0FA, #F0E5FF, #FFDCF0);
    border-radius: 28px;
    padding: 40px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    overflow: hidden;
}

.main-img-wrap .p-image img {
    width: 100%;
    height: 100%;
    max-height: 340px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.badge-bestseller {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--ye);
    color: var(--dk);
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .75rem;
    padding: 6px 14px;
    border-radius: 50px;
    z-index: 3;
}

.badge-discount {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--pk);
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .75rem;
    padding: 6px 14px;
    border-radius: 50px;
    z-index: 3;
}

.floating-badges {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.float-badge {
    position: absolute;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 50px;
    padding: 6px 14px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .72rem;
    color: var(--dk);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
    animation: floatY 4s ease-in-out infinite;
    white-space: nowrap;
}

.fb1 {
    bottom: 18%;
    left: 4%;
    animation-delay: 0s;
}

.fb2 {
    top: 32%;
    right: 4%;
    animation-delay: 1s;
}

.fb3 {
    bottom: 8%;
    right: 12%;
    animation-delay: 2s;
}

/* Thumbnails */
.thumb-row {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    justify-content: left;
}

.thumb {
    width: 68px;
    height: 68px;
    border-radius: 14px;
    border: 2.5px solid transparent;
    background: var(--pkl);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s;
    overflow: hidden;
}

.thumb img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.thumb.active,
.thumb:hover {
    border-color: var(--pk);
    box-shadow: 0 4px 14px rgba(255, 77, 143, .2);
}

/* ── PDP Info ── */
.pdp-info {
    padding-top: 8px;
}

.pdp-cat {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .82rem;
    color: var(--pu);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pdp-name {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--dk);
    line-height: 1.15;
    margin-bottom: 12px;
}

.pdp-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pdp-rating .stars {
    color: var(--ye);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.pdp-rating .rating-val {
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    color: var(--dk);
}

.pdp-rating .rating-divider {
    width: 1px;
    height: 18px;
    background: #ddd;
}

.pdp-rating .rating-count {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .82rem;
    color: #888;
}

/* ── Price Box ── */
.price-box {
    background: linear-gradient(135deg, #FFF8FB, #FFF0FA);
    border: 1.5px solid var(--pkl);
    border-radius: 20px;
    padding: 20px 22px;
    margin-bottom: 24px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.price-now {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: var(--pk);
}

.price-old {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #bbb;
    text-decoration: line-through;
}

.price-save {
    background: var(--mnl);
    color: var(--mn);
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .75rem;
    padding: 4px 12px;
    border-radius: 50px;
}

.price-note {
    font-size: .8rem;
    color: #888;
    margin-top: 8px;
}

.cashback-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .82rem;
    color: var(--or);
}

/* ── Variant Blocks ── */
.variant-block {
    margin-bottom: 22px;
}

.variant-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    color: var(--dk);
    margin-bottom: 10px;
}

.variant-label strong {
    color: var(--pk);
}

.variant-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

/* Flavor selector */
.flavor-opt {
    width: 19%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 4px; */
    padding: 4px 10px;
    border-radius: 16px;
    border: 2px solid #eee;
    background: #fff;
    cursor: pointer;
    transition: all .25s;
    min-width: 80px;
}

.flavor-opt:hover {
    border-color: var(--pkl);
    background: #FFF8FB;
}

.flavor-opt.active {
    border-color: var(--wh);
    background: var(--wh);
    box-shadow: 0 4px 14px rgba(255, 77, 143, .15);
}

.flavor-emoji {
    font-size: 1.5rem;
}

.flavor-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .72rem;
    color: var(--dk);
}

/* Qty / Pack selector */
.qty-opt {
    position: relative;
    padding: 12px 20px;
    border-radius: 14px;
    border: 2px solid #eee;
    background: #fff;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .85rem;
    color: var(--dk);
    transition: all .25s;
    text-align: center;
}

.qty-opt:hover {
    border-color: var(--pkl);
}

.qty-opt.active {
    border-color: var(--pk);
    background: var(--pkl);
    color: var(--pk);
    box-shadow: 0 4px 14px rgba(255, 77, 143, .15);
}

.saving-tag {
    position: absolute;
    top: -9px;
    right: -6px;
    background: var(--mn);
    color: #fff;
    font-size: .6rem;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 50px;
    white-space: nowrap;
}

/* Vopt (age variant) */
.vopt {
    padding: 10px 18px;
    border-radius: 12px;
    border: 2px solid #eee;
    background: #fff;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .85rem;
    color: var(--dk);
    transition: all .25s;
}

.vopt:hover {
    border-color: var(--pkl);
}

.vopt.active {
    border-color: var(--pk);
    background: var(--pkl);
    color: var(--pk);
}

/* ── Pincode ── */
.pincode-row {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 14px;
    border: 2px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.pincode-label {
    padding: 0 12px;
    font-size: 1.1rem;
}

.pincode-row input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    color: var(--dk);
    min-width: 0;
}

.pincode-row button {
    background: var(--pk);
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .82rem;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
}

.pincode-row button:hover {
    background: var(--pkd);
}

/* ── CTA Buttons ── */
.cta-row {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-cart,
.btn-buy {
    flex: 1;
    padding: 16px 24px;
    border-radius: 16px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    transition: all .3s;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-cart {
    background: var(--pkl);
    color: var(--pk);
    border: 2px solid var(--pk);
}

.btn-cart:hover {
    background: var(--btn);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 77, 143, .3);
}

.btn-buy {
    background: var(--btn);
    color: #fff;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 77, 143, .4);
}

/* ── Guarantees ── */
.guarantees {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    padding: 18px;
    background: #FAFAFA;
    border-radius: 20px;
    border: 1.5px solid #f0f0f0;
}

.guarantee {
    text-align: center;
    padding: 10px 4px;
}

.g-icon {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.g-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .78rem;
    color: var(--dk);
    margin-bottom: 2px;
}

.g-sub {
    font-size: .68rem;
    color: #999;
}

/* ── Highlights ── */
.highlights {
    background: linear-gradient(135deg, #FFFBE0, #FFF8F0);
    border: 1.5px solid var(--yel);
    border-radius: 20px;
    padding: 24px;
}

.highlights h4 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: var(--dk);
    margin-bottom: 16px;
}

.highlight-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .86rem;
    color: #444;
    line-height: 1.6;
}

.hl-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: var(--mn);
    border-radius: 50%;
    margin-top: 7px;
}

/* ══════════════════════════════════════════
   19-B. TRANSFORM SECTION
══════════════════════════════════════════ */
.transform-section {
    background: var(--cr);
}

.transform-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: stretch;
    margin-top: 48px;
}

.transform-visual {
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
}

.transform-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.ba-card {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 18px;
    padding: 16px 22px;
    text-align: center;
    transition: all .3s;
}

.ba-card.after {
    border-color: var(--mn);
    background: var(--mnl);
}

.ba-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #aaa;
    margin-bottom: 4px;
}

.ba-val {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: var(--dk);
}

.ba-arrow {
    font-size: 1.5rem;
    color: var(--pk);
    font-weight: 800;
}

/* Transform list items */
.transform-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tr-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    border: 1.5px solid #f0f0f0;
    transition: all .3s;
}

.tr-item:hover {
    border-color: var(--pkl);
    transform: translateX(6px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .05);
}

.tr-icon img {
    height: 43px;
}

.tr-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.tr-body {
    flex: 1;
}

.tr-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    color: var(--dk);
    margin-bottom: 6px;
}

.tr-desc {
    font-size: .84rem;
    color: #666;
    line-height: 1.65;
    margin-bottom: 8px;
}

.tr-week {
    display: inline-block;
    background: var(--mnl);
    color: var(--mn);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .7rem;
    padding: 3px 12px;
    border-radius: 50px;
}

/* ══════════════════════════════════════════
   19-C. FEATURES SECTION (Pure as Nature)
══════════════════════════════════════════ */
.features-section {
    padding: 80px 5%;
    background: var(--cr);
}

.feat-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.feat-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.feat-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--dk);
    line-height: 1.2;
    margin-bottom: 14px;
}

.feat-sub {
    font-size: .92rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 28px;
}

.feat-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feat-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feat-item-icon img {
    height: 43px;
}

.feat-item-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.feat-item-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .92rem;
    color: var(--dk);
    margin-bottom: 4px;
}

.feat-item-desc {
    font-size: .82rem;
    color: #777;
    line-height: 1.65;
}

/* ── Comparison Box ── */
.comparison-box {
    background: var(--dk2);
    border-radius: 24px;
    padding: 28px 24px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.comp-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Nunito', sans-serif;
    font-size: .8rem;
}

.comp-table th {
    padding: 12px 10px;
    font-weight: 800;
    text-align: center;
    color: #aaa;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: .75rem;
}

.comp-table th:first-child {
    text-align: left;
}

.comp-us-head {
    color: var(--pk) !important;
    font-size: .85rem !important;
}

.comp-table td {
    padding: 10px;
    text-align: center;
    color: rgba(255, 255, 255, .6);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-weight: 700;
    font-size: .78rem;
}

.comp-table td:first-child {
    text-align: left;
    color: rgba(255, 255, 255, .8);
}

.comp-table tr.comp-us td,
.comp-table td.comp-us {
    background: rgba(255, 77, 143, .08);
}

.comp-table .check {
    color: var(--mn);
    font-size: 1.1rem;
    font-weight: 900;
}

.comp-table .cross {
    color: #ff4444;
    font-size: 1.1rem;
    font-weight: 900;
}

/* ══════════════════════════════════════════
   19-D. HOW IT WORKS (PDP)
══════════════════════════════════════════ */
.how-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #FFF0FA, #F5F0FF, #E8F8FF);
    text-align: center;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 48px auto 0;
}

.step {
    background: #fff;
    border-radius: 24px;
    padding: 32px 20px;
    text-align: center;
    border: 1.5px solid #f0f0f0;
    transition: all .3s;
    position: relative;
}

.step:hover {
    transform: translateY(-6px);
    border-color: var(--pkl);
    box-shadow: 0 12px 36px rgba(255, 77, 143, .1);
}

.sball {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    overflow: hidden;
}

.sball img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.s1 {
    background: var(--pkl);
}

.s2 {
    background: var(--skl);
}

.s3 {
    background: var(--mnl);
}

.s4 {
    background: var(--yel);
}

.snum {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pk);
    margin-bottom: 6px;
}

.stitle {
    font-family: 'Fredoka One', cursive;
    font-size: 1.05rem;
    color: var(--dk);
    margin-bottom: 8px;
}

.sdesc {
    font-size: .82rem;
    color: #777;
    line-height: 1.6;
}

/* ══════════════════════════════════════════
   19-E. TESTIMONIALS SECTION (PDP)
══════════════════════════════════════════ */
.testi-section {
    padding: 5px 8%;
    background: var(--cr);
}

.testi-section-new {
    padding: 60px 5%;
    background: var(--cr);
}

.testi-section .sec-eye {
    text-align: center;
    display: block;
}

/* Review Summary */
.rev-summary {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 32px auto 48px;
    background: #fff;
    border-radius: 24px;
    padding: 60px 50px;
    border: 1.5px solid #f0f0f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
}

.rev-big {
    text-align: center;
    min-width: 120px;
}

.rev-big-n {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    color: var(--dk);
}

.rev-big-stars {
    color: var(--ye);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.rev-big-l {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .75rem;
    color: #999;
}

.rev-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rbar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .75rem;
    color: #888;
}

.rbar-track {
    flex: 1;
    height: 8px;
    background: #f0f0f0;
    border-radius: 50px;
    overflow: hidden;
}

.rbar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--ye), var(--or));
    border-radius: 50px;
    transition: width 1s ease;
}

/* ── Reels ── */
.reels-section-wrap {
    width: 100%;
    margin: 0 auto 48px;
}

.reels-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.reels-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.15rem;
    color: var(--dk);
}

.reels-nav {
    display: flex;
    gap: 8px;
}

.reels-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #eee;
    background: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    color: var(--dk);
}

.reels-btn:hover {
    border-color: var(--pk);
    color: var(--pk);
}

.reels-btn-next {
    background: var(--pk);
    border-color: var(--pk);
    color: #fff;
}

.reels-btn-next:hover {
    background: var(--pkd);
    border-color: var(--pkd);
}

.reels-viewport {
    overflow: hidden;
    border-radius: 20px;
}

.reels-row {
    display: flex;
    gap: 16px;
    transition: transform .4s ease;
}

.reel {
    min-width: 200px;
    width: 200px;
    height: 340px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}

.reel-prog {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    height: 3px;
    background: rgba(255, 255, 255, .2);
    border-radius: 50px;
    z-index: 5;
    overflow: hidden;
}

.reel-bar {
    width: 0;
    height: 100%;
    background: #fff;
    border-radius: 50px;
}

.reel-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.reel-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0, 0, 0, .6));
    z-index: 2;
}

.reel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    z-index: 4;
    transition: all .3s;
}

.reel:hover .reel-play-btn {
    background: var(--pk);
    transform: translate(-50%, -50%) scale(1.1);
}

.reel-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 14px;
    z-index: 3;
}

.reel-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .82rem;
    color: #fff;
    margin-bottom: 4px;
}

.reel-txt {
    font-size: .72rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.5;
}

.reels-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}

.reels-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all .25s;
    padding: 0;
}

.reels-dot.active {
    background: var(--pk);
    width: 24px;
    border-radius: 50px;
}

/* ── Written Reviews ── */
.wreviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 0 auto;
}

.wrev {
    background: #fff;
    border-radius: 22px;
    padding: 26px;
    border: 1.5px solid #f0f0f0;
    transition: all .3s;
}

.wrev:hover {
    border-color: var(--pkl);
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .06);
}

.wrev-stars {
    color: var(--ye);
    font-size: .95rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.wrev-txt {
    font-size: .88rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.wrev-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wrev-ava {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.wrev-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .88rem;
    color: var(--dk);
}

.wrev-meta {
    font-size: .74rem;
    color: #999;
}

.wrev-badge {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .7rem;
    color: var(--mn);
    margin-top: 2px;
}

/* ══════════════════════════════════════════
   19-F. FAQ SECTION (PDP)
══════════════════════════════════════════ */
.faq-section {
    padding: 80px 5%;
    background: #fadff6;
}

.faq-section .sec-eye,
.faq-section .sec-title {
    text-align: center;
}

.faq-list {
    margin: 32px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1.5px solid #f0f0f0;
    border-radius: 18px;
    overflow: hidden;
    transition: border-color .3s;
}

.faq-item.open {
    border-color: var(--pkl);
}

.faq-q {
    width: 100%;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .95rem;
    color: var(--dk);
    text-align: left;
    transition: color .2s;
}

.faq-q:hover {
    color: var(--pk);
}

.faq-tog {
    font-size: 1.4rem;
    color: var(--pk);
    font-weight: 300;
    flex-shrink: 0;
    transition: transform .3s;
}

.faq-item.open .faq-tog {
    transform: rotate(45deg);
}

.faq-ans {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-ans {
    max-height: 300px;
    padding: 0 22px 18px;
}

.faq-ans p {
    font-size: .88rem;
    color: #666;
    line-height: 1.72;
}

/* ══════════════════════════════════════════
   19-G. NEWSLETTER (PDP)
══════════════════════════════════════════ */
.newsletter {
    /* max-width: 700px;
  margin: 0 auto; */
    text-align: center;
    padding: 60px 5%;
}

.newsletter .sec-eye,
.newsletter .sec-title {
    text-align: center;
}

.nl-sub {
    font-size: .92rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 24px;
}

.nl-form {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto;
}

.nl-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #eee;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    outline: none;
    transition: border-color .2s;
    min-width: 0;
}

.nl-input:focus {
    border-color: var(--pk);
}

.hbtn {
    border: none;
    cursor: pointer;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    transition: all .3s;
}

.hbtn-main {
    background: var(--btn);
    color: #fff;
}

.hbtn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 77, 143, .35);
}

/* ══════════════════════════════════════════
   11. HOW IT WORKS
══════════════════════════════════════════ */
.how-section {
    padding: 80px 5%;
    text-align: center;
    background: linear-gradient(135deg, #FFF9F0 0%, #FFF0FA 100%);
}

.steps {
    display: flex;
    justify-content: space-around;
    gap: 0;
    margin-top: 56px;
    flex-wrap: wrap;
}

.step-new {
    flex: 1;
    min-width: 160px;
    max-width: 270px;
    padding: 0 10px;
    position: relative;
}

.step-new::after {
    content: '→';
    position: absolute;
    right: -14px;
    top: 26px;
    font-size: 1.6rem;
    color: var(--pk);
    font-family: 'Fredoka One', cursive;
}

.step-new:last-child::after {
    display: none;
}

.sball {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all .3s;
    cursor: default;
}

.s1 {
    background: rgba(255, 77, 143, .1);
    border: 3.5px solid var(--pk);
}

.s2 {
    background: rgba(0, 191, 255, .1);
    border: 3.5px solid var(--sk);
}

.s3 {
    background: rgba(124, 58, 237, .1);
    border: 3.5px solid var(--pu);
}

.s4 {
    background: rgba(255, 214, 0, .15);
    border: 3.5px solid var(--ye);
}

.snum {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .7rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--pk);
    margin-bottom: 6px;
}

.stitle {
    font-family: 'Fredoka One', cursive;
    font-size: 1.05rem;
    color: var(--dk);
    margin-bottom: 7px;
}

.sdesc {
    font-size: .82rem;
    color: #777;
    line-height: 1.62;
}


/* ══════════════════════════════════════════
   INGREDIENT SECTION (#nb-ingredients)
══════════════════════════════════════════ */
#nb-ingredients {
    position: relative;
    padding: 100px 5% 80px;
    background: linear-gradient(180deg, #0D0020 0%, #1A0A3E 50%, #0D0020 100%);
    overflow: hidden;
    color: #fff;
}

/* Mesh background blobs */
.nb-mesh {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.nb-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .15;
    animation: nbBlobFloat 12s ease-in-out infinite alternate;
}

.nb-blob-1 {
    width: 500px;
    height: 500px;
    background: var(--pk);
    top: -10%;
    left: -5%;
}

.nb-blob-2 {
    width: 400px;
    height: 400px;
    background: var(--pu);
    top: 30%;
    right: -10%;
    animation-delay: 3s;
}

.nb-blob-3 {
    width: 350px;
    height: 350px;
    background: var(--sk);
    bottom: -10%;
    left: 30%;
    animation-delay: 6s;
}

.nb-blob-4 {
    width: 300px;
    height: 300px;
    background: var(--mn);
    top: 60%;
    left: -5%;
    animation-delay: 9s;
}

@keyframes nbBlobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -40px) scale(1.15);
    }
}

/* Twinkling stars */
.nb-star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: nbTwinkle var(--dur, 5s) ease-in-out infinite;
    animation-delay: var(--del, 0s);
    opacity: .3;
}

@keyframes nbTwinkle {

    0%,
    100% {
        opacity: .2;
        transform: scale(.8);
    }

    50% {
        opacity: .8;
        transform: scale(1.3);
    }
}

/* Header */
.nb-ing-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 48px;
}

.nb-eyebrow {
    display: inline-block;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 8px 22px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.nb-ing-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
}

.nb-acc-ye {
    color: var(--ye);
}

.nb-acc-pk {
    color: var(--pk);
}

.nb-ing-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    color: rgba(255, 255, 255, .45);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Category filter (desktop) */
.nb-cat-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.nb-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .06);
    border: 1.5px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .55);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .82rem;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all .25s;
}

.nb-cat-pill:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .2);
    color: #fff;
}

.nb-cat-pill.nb-active {
    background: rgba(255, 255, 255, .12);
    border-color: var(--pk);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 77, 143, .15);
}

.nb-cat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

/* Mobile tabs */
.nb-mobile-tabs {
    display: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding: 0 4% 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    scrollbar-width: none;
}

.nb-mobile-tabs::-webkit-scrollbar {
    display: none;
}

.nb-mob-tab {
    flex-shrink: 0;
    background: rgba(255, 255, 255, .06);
    border: 1.5px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .5);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .78rem;
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
    transition: all .2s;
}

.nb-mob-tab.nb-sel-mob {
    background: rgba(255, 77, 143, .15);
    border-color: var(--pk);
    color: #fff;
}

/* Mobile accordion cards */
.nb-mob-cards {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 0 4%;
    position: relative;
    z-index: 2;
}

/* Desktop two-column layout */
.nb-ing-body {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Left list panel */
.nb-list-panel {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    overflow: hidden;
}

.nb-list-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.nb-list-head-icon {
    font-size: 1.6rem;
}

.nb-list-head h4 {
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 2px;
}

.nb-list-head p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .4);
}

.nb-list-scroll {
    max-height: 540px;
    overflow-y: auto;
    padding: 8px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, .15) transparent;
}

.nb-list-scroll::-webkit-scrollbar {
    width: 5px;
}

.nb-list-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .15);
    border-radius: 10px;
}

/* Individual ingredient row */
.nb-ing-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    cursor: pointer;
    transition: background .2s, border-color .2s;
    border-left: 3px solid transparent;
}

.nb-ing-row:hover {
    background: rgba(255, 255, 255, .04);
}

.nb-ing-row.nb-row-active {
    background: rgba(255, 77, 143, .08);
    border-left-color: var(--pk);
}

.nb-ing-row-emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .06);
    border-radius: 12px;
}

.nb-ing-row-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .88rem;
    color: #fff;
}

.nb-ing-row-cat {
    font-family: 'DM Sans', sans-serif;
    font-size: .72rem;
    color: rgba(255, 255, 255, .35);
    margin-top: 2px;
}

.nb-ing-row-badge {
    margin-left: auto;
    font-size: .65rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
    white-space: nowrap;
}

/* Right detail panel */
.nb-detail-wrap {
    position: relative;
    min-height: 400px;
}

.nb-detail-empty {
    text-align: center;
    padding: 80px 30px;
    background: rgba(255, 255, 255, .03);
    border: 1px dashed rgba(255, 255, 255, .1);
    border-radius: 24px;
}

.nb-detail-empty.nb-hidden {
    display: none;
}

.nb-empty-ico {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: .5;
}

.nb-detail-empty h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 10px;
}

.nb-detail-empty p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .3);
    max-width: 340px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Detail card */
.nb-detail-card {
    display: none;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: 36px 32px;
    animation: nbCardIn .4s cubic-bezier(.34, 1.2, .64, 1);
}

.nb-detail-card.nb-card-active {
    display: block;
}

@keyframes nbCardIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.nb-detail-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.nb-detail-emoji {
    font-size: 2.8rem;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    flex-shrink: 0;
}

.nb-detail-name {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 4px;
}

.nb-detail-latin {
    font-family: 'DM Sans', sans-serif;
    font-size: .8rem;
    color: rgba(255, 255, 255, .35);
    font-style: italic;
}

.nb-detail-cat-badge {
    display: inline-block;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .7rem;
    padding: 4px 12px;
    border-radius: 50px;
    margin-top: 6px;
}

.nb-detail-desc {
    font-size: .92rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.7;
    margin-bottom: 24px;
}

.nb-detail-benefits {
    margin-bottom: 24px;
}

.nb-detail-benefits h5 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.nb-benefit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nb-benefit-tag {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .7);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .78rem;
    padding: 6px 14px;
    border-radius: 50px;
}

.nb-detail-dosage {
    background: rgba(0, 214, 143, .08);
    border: 1px solid rgba(0, 214, 143, .15);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nb-dosage-icon {
    font-size: 1.4rem;
}

.nb-dosage-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .78rem;
    color: rgba(255, 255, 255, .4);
}

.nb-dosage-val {
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    color: var(--mn);
}

/* Summary bar */
.nb-summary-bar {
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.nb-summary-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.nb-stat {
    text-align: center;
    min-width: 80px;
}

.nb-stat-n {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
}

.nb-stat-l {
    font-family: 'DM Sans', sans-serif;
    font-size: .72rem;
    color: rgba(255, 255, 255, .35);
    margin-top: 2px;
}

.nb-sdiv {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, .1);
}

.nb-summary-cta {
    text-align: center;
}

.nb-summary-cta p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 10px;
}

.nb-lab-btn {
    background: linear-gradient(135deg, var(--pk), var(--pu));
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .82rem;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}

.nb-lab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 77, 143, .3);
}

/* Mobile accordion card */
.nb-mob-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .2s;
}

.nb-mob-card.nb-mob-open {
    border-color: rgba(255, 77, 143, .3);
}

.nb-mob-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    cursor: pointer;
    transition: background .2s;
}

.nb-mob-card-head:hover {
    background: rgba(255, 255, 255, .03);
}

.nb-mob-card-emoji {
    font-size: 1.3rem;
}

.nb-mob-card-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .85rem;
    color: #fff;
    flex: 1;
}

.nb-mob-card-arrow {
    font-size: .8rem;
    color: rgba(255, 255, 255, .3);
    transition: transform .3s;
}

.nb-mob-open .nb-mob-card-arrow {
    transform: rotate(180deg);
    color: var(--pk);
}

.nb-mob-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s cubic-bezier(.4, 0, .2, 1), padding .35s;
    padding: 0 18px;
}

.nb-mob-open .nb-mob-card-body {
    max-height: 400px;
    padding: 0 18px 18px;
}

.nb-mob-card-desc {
    font-size: .84rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
    margin-bottom: 12px;
}

.nb-mob-card-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.nb-mob-benefit {
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .6);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .72rem;
    padding: 4px 10px;
    border-radius: 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    vertical-align: middle;
}

.btn iconify-icon,
.btn i,
.btn svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
    vertical-align: middle;
}

.btn .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* About Us Page  */

/* Modern How It Works section */
.how-section {
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 214, 0, .18), transparent 28%),
        radial-gradient(circle at 88% 16%, rgba(255, 77, 143, .14), transparent 32%),
        linear-gradient(180deg, #fffdf7 0%, #fff4fb 54%, #f8fff9 100%);
    overflow: hidden;
    padding: 88px 5%;
    position: relative;
    text-align: center;
}

.how-section::before {
    background: linear-gradient(90deg, transparent, rgba(255, 77, 143, .18), rgba(0, 214, 143, .16), transparent);
    content: '';
    height: 1px;
    left: 5%;
    position: absolute;
    right: 5%;
    top: 0;
}

.how-head {
    margin: 0 auto;
    max-width: 720px;
    position: relative;
    z-index: 2;
}

.how-head .sec-eye {
    display: inline-flex;
    margin-bottom: 12px;
}

.how-head .sec-title {
    margin-bottom: 12px;
}

.how-head p {
    color: #6d6478;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    margin: 0 auto;
    max-width: 620px;
}

.steps {
    counter-reset: how-step;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 48px auto 0;
    max-width: 1180px;
    position: relative;
    z-index: 2;
}

.step-new {
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(255, 214, 232, .9);
    border-radius: 24px;
    box-shadow: 0 18px 46px rgba(30, 24, 64, .07);
    display: flex;
    flex-direction: column;
    min-height: 292px;
    overflow: hidden;
    padding: 22px;
    position: relative;
    text-align: left;
    transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}

.step-new:hover {
    border-color: rgba(255, 77, 143, .24);
    box-shadow: 0 26px 60px rgba(30, 24, 64, .12);
    transform: translateY(-8px);
}

.step-new::before {
    background: linear-gradient(90deg, var(--step-accent, var(--pk)), rgba(255, 214, 0, .8));
    content: '';
    height: 5px;
    inset: 0 0 auto;
    position: absolute;
}

.step-new::after {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(30, 24, 64, .08);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(30, 24, 64, .08);
    color: var(--step-accent, var(--pk));
    content: counter(how-step, decimal-leading-zero);
    counter-increment: how-step;
    display: inline-flex;
    font-family: 'Nunito', sans-serif;
    font-size: .76rem;
    font-weight: 900;
    height: 34px;
    justify-content: center;
    min-width: 46px;
    padding: 0 12px;
    position: absolute;
    right: 18px;
    top: 18px;
}

.step-new:last-child::after {
    display: inline-flex;
}

.sball {
    align-items: center;
    background: var(--step-soft, rgba(255, 77, 143, .1));
    border: 2px solid rgba(255, 255, 255, .8);
    border-radius: 18px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .55), 0 14px 30px rgba(30, 24, 64, .08);
    cursor: default;
    display: inline-flex;
    height: 74px;
    justify-content: center;
    margin: 10px 0 22px;
    position: relative;
    transition: all .3s;
    width: 74px;
}

.sball img {
    height: 38px;
    object-fit: contain;
    width: 38px;
}

.s1 {
    --step-accent: var(--pk);
    --step-soft: var(--pkl);
    background: var(--step-soft);
    border-color: rgba(255, 255, 255, .8);
}

.s2 {
    --step-accent: var(--sk);
    --step-soft: rgba(0, 191, 255, .1);
    background: var(--step-soft);
    border-color: rgba(255, 255, 255, .8);
}

.s3 {
    --step-accent: var(--pu);
    --step-soft: var(--pul);
    background: var(--step-soft);
    border-color: rgba(255, 255, 255, .8);
}

.s4 {
    --step-accent: var(--or);
    --step-soft: var(--yel);
    background: var(--step-soft);
    border-color: rgba(255, 255, 255, .8);
}

.snum {
    align-items: center;
    background: var(--step-soft, var(--pkl));
    border-radius: 999px;
    color: var(--step-accent, var(--pk));
    display: inline-flex;
    font-family: 'Nunito', sans-serif;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: 1.8px;
    margin-bottom: 12px;
    min-height: 28px;
    padding: 0 11px;
    text-transform: uppercase;
    width: fit-content;
}

.stitle {
    color: var(--dk);
    font-family: 'Fredoka One', cursive;
    font-size: 1.18rem;
    line-height: 1.25;
    margin-bottom: 10px;
}

.sdesc {
    color: #6d6478;
    font-family: 'DM Sans', sans-serif;
    font-size: .92rem;
    line-height: 1.68;
    margin: 0;
}

@media (max-width: 1024px) {
    .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 580px) {
    .how-section {
        padding: 64px 4%;
    }

    .steps {
        grid-template-columns: 1fr;
        margin-top: 34px;
        max-width: 360px;
    }

    .step-new {
        min-height: 0;
        padding: 20px;
    }

    .sball {
        height: 66px;
        width: 66px;
    }

    .sball img {
        height: 34px;
        width: 34px;
    }
}

/* Premium How It Works refinement */
.how-layout {
    align-items: stretch;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(280px, .78fr) minmax(0, 1.45fr);
    margin: 0 auto;
    max-width: 1180px;
    position: relative;
    z-index: 2;
}

.how-layout .how-head {
    background:
        radial-gradient(circle at 88% 10%, rgba(255, 214, 0, .22), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .72));
    border: 1px solid rgba(255, 214, 232, .95);
    border-radius: 28px;
    box-shadow: 0 24px 58px rgba(30, 24, 64, .09);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    max-width: none;
    padding: 34px;
    text-align: left;
}

.how-layout .how-head .sec-eye {
    width: fit-content;
}

.how-layout .how-head .sec-title {
    font-size: clamp(2rem, 4vw, 3.1rem);
}

.how-stats {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 26px;
}

.how-stats div {
    background: #fff;
    border: 1px solid rgba(255, 214, 232, .9);
    border-radius: 18px;
    padding: 13px 12px;
}

.how-stats strong,
.how-stats span {
    display: block;
}

.how-stats strong {
    color: var(--pk);
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    line-height: 1.1;
}

.how-stats span {
    color: #7c7489;
    font-family: 'Nunito', sans-serif;
    font-size: .72rem;
    font-weight: 900;
    margin-top: 4px;
    text-transform: uppercase;
}

.how-layout .steps {
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    max-width: none;
}

.how-layout .step-new {
    min-height: 236px;
    padding: 24px;
}

.step-top {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.step-top .sball {
    margin: 0;
}

.step-top .snum {
    margin: 2px 0 0;
}

.how-layout .step-new::after {
    display: none;
}

.how-layout .stitle {
    font-size: 1.24rem;
}

.how-layout .sdesc {
    max-width: 92%;
}

/* Organized process timeline override */
.how-section {
    background:
        radial-gradient(circle at 12% 16%, rgba(255, 214, 0, .16), transparent 26%),
        radial-gradient(circle at 88% 14%, rgba(255, 77, 143, .13), transparent 30%),
        linear-gradient(180deg, #fffdf8 0%, #fff7fb 48%, #f7fffb 100%);
    padding: 92px 5%;
}

.how-layout {
    display: block;
    max-width: 1180px;
}

.how-layout .how-head {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: block;
    margin: 0 auto;
    max-width: 760px;
    padding: 0;
    text-align: center;
}

.how-layout .how-head .sec-eye {
    margin-left: auto;
    margin-right: auto;
}

.how-layout .how-head .sec-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 12px;
}

.how-layout .how-head p {
    color: #625b76;
    font-size: 1.02rem;
    line-height: 1.78;
}

.how-stats {
    display: inline-grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, auto));
    justify-content: center;
    margin-top: 24px;
}

.how-stats div {
    align-items: center;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(255, 214, 232, .9);
    border-radius: 999px;
    box-shadow: 0 10px 26px rgba(30, 24, 64, .06);
    display: inline-flex;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
}

.how-stats strong {
    color: var(--pk);
    font-family: 'Nunito', sans-serif;
    font-size: .86rem;
    font-weight: 900;
}

.how-stats span {
    color: #7b7289;
    font-size: .74rem;
    margin: 0;
    white-space: nowrap;
}

.how-layout .steps {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 58px auto 0;
    max-width: 1180px;
    width: 100%;
    position: relative;
}

.how-layout .steps::before {
    background: linear-gradient(90deg, transparent 0%, rgba(255, 77, 143, .28) 18%, rgba(0, 214, 143, .28) 82%, transparent 100%);
    content: '';
    height: 3px;
    left: 8%;
    position: absolute;
    right: 8%;
    top: 62px;
    z-index: 0;
}

.how-layout .step-new {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(30, 24, 64, .08);
    border-radius: 22px;
    box-shadow: 0 18px 42px rgba(30, 24, 64, .075);
    min-height: 286px;
    padding: 24px 20px 26px;
    text-align: center;
    z-index: 1;
}

.how-layout .step-new::before {
    background: linear-gradient(90deg, var(--step-accent, var(--pk)), rgba(255, 214, 0, .88));
    height: 4px;
}

.how-layout .step-new:hover {
    border-color: rgba(255, 77, 143, .24);
    transform: translateY(-8px);
}

.how-layout .step-top {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
    margin-bottom: 18px;
}

.how-layout .sball {
    background: #fff;
    border: 8px solid var(--step-soft, var(--pkl));
    border-radius: 999px;
    box-shadow: 0 0 0 1px rgba(30, 24, 64, .06), 0 14px 30px rgba(30, 24, 64, .08);
    height: 92px;
    margin: 0;
    width: 92px;
}

.how-layout .sball img {
    height: 44px;
    width: 44px;
}

.how-layout .snum {
    background: var(--step-soft, var(--pkl));
    color: var(--step-accent, var(--pk));
    margin: 0;
}

.how-layout .stitle {
    font-size: 1.18rem;
    margin: 0 0 10px;
}

.how-layout .sdesc {
    color: #665f76;
    font-size: .9rem;
    line-height: 1.68;
    margin: 0 auto;
    max-width: 230px;
}

.how-cta-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 34px;
}

.how-cta-row span {
    color: #80778e;
    font-family: 'Nunito', sans-serif;
    font-size: .84rem;
    font-weight: 800;
}

/* ══════════════════════════════════════════
   RESPONSIVE STYLES
══════════════════════════════════════════ */

/* Desktop and Large Tablets (1024px and up) */
@media (min-width: 1025px) {
    .slide {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 50px 6% 100px;
        /* Added bottom padding for trust bar */
    }

    .gummy-showcase {
        width: 380px;
        height: 440px;
    }

    /* Floating cards positioning for desktop */
    .bb1 {
        top: 10px;
        right: -171px;
    }

    .bb2 {
        top: 27%;
        right: -70%;
    }

    .bb3 {
        bottom: 82px;
        right: 251px;
    }

    .bb4 {
        top: 10%;
        left: 30px;
    }

    .bb5 {
        bottom: 44%;
        left: -93px;
    }
}

/* Tablets (768px to 1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
    .slide {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 40px 4% 90px;
        /* Added bottom padding for trust bar */
        align-items: center;
    }

    .slide-text {
        padding-right: 20px;
    }

    .htitle {
        font-size: clamp(2rem, 3.5vw, 2.8rem);
        line-height: 1.15;
    }

    .slide-desc {
        font-size: 0.9rem;
        max-width: 420px;
    }

    .hero-btns {
        gap: 10px;
    }

    .hbtn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .gummy-showcase {
        width: 320px;
        height: 380px;
        margin: 0 auto;
    }

    .jar-body1 img {
        width: 360px;
    }

    .jar-body2 img {
        width: 340px;
    }

    /* Adjusted floating cards for tablets */
    .bb {
        font-size: 0.7rem;
        padding: 7px 14px;
        border-radius: 40px;
    }

    .bb1 {
        top: 5px;
        right: -45px;
    }

    .bb2 {
        top: 15%;
        right: -140px;
    }

    .bb3 {
        bottom: 60px;
        right: -30px;
    }

    .bb4 {
        top: 22%;
        left: -40px;
    }

    .bb5 {
        bottom: 32%;
        left: -50px;
    }

    /* Floating gummies adjustment */
    .fg {
        font-size: 1.6rem;
    }

    .fg2 {
        font-size: 1.8rem;
    }

    .fg5,
    .fg6 {
        font-size: 1.2rem;
    }
}

/* Small Tablets and Large Phones (481px to 767px) */
@media (max-width: 767px) and (min-width: 481px) {
    .slide {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 120px 5% 120px;
        /* Added bottom padding for trust bar */
        text-align: center;
    }

    .slide-text {
        order: 1;
        padding-right: 0;
    }

    .slide-visual {
        order: 2;
        margin-top: 20px;
    }

    .htitle {
        font-size: clamp(1.8rem, 4vw, 2.4rem);
        margin-bottom: 16px;
    }

    .slide-desc {
        font-size: 0.95rem;
        max-width: 100%;
        margin: 0 auto 24px;
    }

    .hero-btns {
        justify-content: center;
        gap: 12px;
    }

    .hero-trust {
        justify-content: center;
    }

    .gummy-showcase {
        width: 280px;
        height: 320px;
        margin: 0 auto;
        position: relative;
    }

    .jar-body1 img {
        width: 300px;
    }

    .jar-body2 img {
        width: 280px;
    }

    /* Repositioned floating cards for small tablets */
    .bb {
        font-size: 0.65rem;
        padding: 6px 12px;
        border-radius: 35px;
        white-space: nowrap;
    }

    .bb1 {
        top: 10px;
        right: -35px;
    }

    .bb2 {
        top: 20%;
        right: -100px;
    }

    .bb3 {
        bottom: 70px;
        right: -25px;
    }

    .bb4 {
        top: 25%;
        left: -35px;
    }

    .bb5 {
        bottom: 35%;
        left: -40px;
    }

    /* Smaller floating gummies */
    .fg {
        font-size: 1.4rem;
    }

    .fg2 {
        font-size: 1.6rem;
    }

    .fg5,
    .fg6 {
        font-size: 1rem;
    }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
    .hero {
        min-height: 580px;
    }

    .slide {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 110px 4% 180px;
        /* Added more bottom padding for stacked trust bar */
        text-align: center;
    }

    .slide-text {
        order: 1;
    }

    .slide-visual {
        order: 2;
        margin-top: 15px;
    }

    .slide-badge {
        font-size: 0.65rem;
        padding: 6px 14px;
        margin-bottom: 16px;
    }

    .htitle {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        line-height: 1.1;
        margin-bottom: 14px;
    }

    .slide-desc {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 22px;
    }

    .hero-btns {
        flex-direction: row;
        gap: 10px;
        align-items: center;
        margin-bottom: 20px;
    }

    .hbtn {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 0.9rem;
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
        gap: 8px;
    }

    .htrust {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .gummy-showcase {
        width: 240px;
        height: 280px;
        margin: 0 auto;
    }

    .jar-wrap {
        width: 180px;
        height: 220px;
        margin: 60px auto 0;
    }

    .jar-body1 img {
        width: 260px;
    }

    .jar-body2 img {
        width: 240px;
    }

    /* Mobile floating cards - closer to product */
    .bb {
        font-size: 0.6rem;
        padding: 5px 10px;
        border-radius: 30px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
    }

    .bb1 {
        top: 15px;
        right: -25px;
    }

    .bb2 {
        top: 25%;
        right: -70px;
    }

    .bb3 {
        bottom: 80px;
        right: -20px;
    }

    .bb4 {
        top: 30%;
        left: -25px;
    }

    .bb5 {
        bottom: 40%;
        left: -30px;
    }

    /* Smaller floating elements */
    .fg {
        font-size: 1.2rem;
    }

    .fg2 {
        font-size: 1.4rem;
    }

    .fg5,
    .fg6 {
        font-size: 0.9rem;
    }

    /* Navigation arrows adjustment */
    .sarrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .sp {
        left: 15px;
    }

    .sn {
        right: 15px;
    }

    /* Slide dots */
    .slide-dots {
        bottom: 15px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    /* Slide counter */
    .slide-counter {
        bottom: 15px;
        right: 15px;
        font-size: 0.8rem;
    }
}

/* Hero Trust Bar Styles */
.hero-trust-bar {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    z-index: 10;
    border-radius: 10px;
}

.trust-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding-right: 15px;
}

.trust-feature:last-child {
    border-right: none;
    padding-right: 0;
}

.trust-icon {
    width: 55px;
    height: 55px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--pkl), rgba(255, 77, 143, 0.1));
    /* border: 2px solid rgba(255, 77, 143, 0.2); */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

/* .trust-icon::before {
    content: '';
    width: 24px;
    height: 24px;
    background: var(--pk);
    border-radius: 50%;
    opacity: 0.3;
} */
.trust-icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    padding: 3px;
}

.trust-content h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--dk);
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.trust-content p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.3;
}

/* Different icon colors for variety */
.trust-feature:nth-child(1) .trust-icon {
    background: linear-gradient(135deg, var(--pkl), rgba(255, 77, 143, 0.1));
    border-color: rgba(255, 77, 143, 0.2);
}

.trust-feature:nth-child(1) .trust-icon::before {
    background: var(--pk);
}

.trust-feature:nth-child(2) .trust-icon {
    background: linear-gradient(135deg, var(--pul), rgba(124, 58, 237, 0.1));
    border-color: rgba(124, 58, 237, 0.2);
}

.trust-feature:nth-child(2) .trust-icon::before {
    background: var(--pu);
}

.trust-feature:nth-child(3) .trust-icon {
    background: linear-gradient(135deg, var(--yel), rgba(255, 214, 0, 0.1));
    border-color: rgba(255, 214, 0, 0.2);
}

.trust-feature:nth-child(3) .trust-icon::before {
    background: var(--ye);
}

.trust-feature:nth-child(4) .trust-icon {
    background: linear-gradient(135deg, var(--mnl), rgba(0, 214, 143, 0.1));
    border-color: rgba(0, 214, 143, 0.2);
}

.trust-feature:nth-child(4) .trust-icon::before {
    background: var(--mn);
}

.htrust img {
    height: 21px;
    width: 21px;
}

/* Responsive styles for trust bar */
@media (max-width: 1024px) {
    .hero-trust-bar {
        padding: 18px 4%;
        gap: 20px;
    }

    .trust-feature {
        padding-right: 10px;
    }

    .trust-icon {
        width: 44px;
        height: 44px;
    }

    .trust-icon::before {
        width: 20px;
        height: 20px;
    }

    .trust-content h4 {
        font-size: 0.85rem;
    }

    .trust-content p {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .hero-trust-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 16px 4%;
    }

    .trust-feature {
        gap: 10px;
        padding-right: 8px;
    }

    /* Remove border from every 2nd item in 2-column layout */
    .trust-feature:nth-child(2n) {
        border-right: none;
        padding-right: 0;
    }

    /* Add border back to odd items except the last row */
    .trust-feature:nth-child(odd):not(:nth-last-child(-n+1)) {
        border-right: 1px solid rgba(0, 0, 0, 0.1);
    }

    .trust-icon {
        width: 40px;
        height: 40px;
    }

    .trust-icon::before {
        width: 18px;
        height: 18px;
    }

    .trust-content h4 {
        font-size: 0.8rem;
    }

    .trust-content p {
        font-size: 0.68rem;
    }
}

@media (max-width: 480px) {
    .hero-trust-bar {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px 4%;
    }

    .trust-feature {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 8px;
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-bottom: 12px;
    }

    .trust-feature:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .trust-icon {
        width: 36px;
        height: 36px;
    }

    .trust-icon::before {
        width: 16px;
        height: 16px;
    }

    .trust-content h4 {
        font-size: 0.75rem;
    }

    .trust-content p {
        font-size: 0.65rem;
        max-width: 200px;
    }
}

/* Extra small devices (360px and below) */
@media (max-width: 360px) {
    .slide {
        padding: 100px 3% 25px;
    }

    .gummy-showcase {
        width: 200px;
        height: 240px;
    }

    .jar-wrap {
        width: 160px;
        height: 200px;
    }

    .jar-body1 img {
        width: 220px;
    }

    .jar-body2 img {
        width: 200px;
    }

    .bb {
        font-size: 0.55rem;
        padding: 4px 8px;
    }

    .bb1 {
        top: 20px;
        right: -20px;
    }

    .bb2 {
        top: 30%;
        right: -50px;
    }

    .bb3 {
        bottom: 85px;
        right: -15px;
    }

    .bb4 {
        top: 35%;
        left: -20px;
    }

    .bb5 {
        bottom: 45%;
        left: -25px;
    }
}

.icon-circle {
    position: absolute;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #fef9dc;
    border: 2.5px solid #f5e97a;
    box-shadow: 0 0 0 8px rgba(250, 235, 100, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
    top: 0px;
    right: 0px;
    animation-delay: 0s;

}

.icon-circle svg {
    width: 38px;
    height: 38px;
}

.text-box {
    background: white;
    border-radius: 12px;
    padding: 10px 16px;
    margin-left: -12px;
    box-shadow: 0 4px 14px rgba(180, 120, 220, 0.15);
}

.text-box p {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #222;
    line-height: 1.5;
}

.benefit-card {
    animation: floatBB 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    /* position: relative; */
}

/* Left Big Icon Circle */
.icon-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(180, 100, 230, 0.15);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.icon-circle svg {
    width: 44px;
    height: 44px;
}

/* Right Text Card - overlaps circle on left */
.text-card {
    background: #ffffff;
    border-radius: 50px;
    padding: 2px 4px 4px 54px;
    box-shadow: 0 4px 20px rgba(180, 100, 230, 0.12);
    margin-left: -45px;
    min-width: 130px;
    position: relative;
    z-index: 1;
}

.text-card .label {
    font-size: 13px;
    font-weight: 700;
    color: #222;
    line-height: 1.5;
}

.icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 5px;
}

@media (max-width: 600px) {

    .text-card {
        background: #ffffff;
        border-radius: 50px;
        padding: 2px 4px 4px 29px;
        box-shadow: 0 4px 20px rgba(180, 100, 230, 0.12);
        margin-left: -33px;
        min-width: 66px;
        position: relative;
        z-index: 1;
    }

    .icon-circle {
        width: 36px;
        height: 36px;
    }

    .bb1 {
        top: -21px;
        right: 71px;
    }

    .text-card .label {
        font-size: 6px;
        font-weight: 700;
        color: #222;
        line-height: 1.5;
    }

    .bb4 {
        top: 5%;
        left: -20px;
    }

    .bb5 {
        bottom: 31%;
        left: -45px;
    }

    .bb2 {
        top: 2%;
        right: -44px;
    }

    .bb3 {
        bottom: 146px;
        right: -44px;
    }

    .jar-body1 img {
        margin-left: 0px;
    }

    .hero-btns {
        display: flex;
        gap: 14px;
        flex-wrap: nowrap;
        margin-bottom: 28px;
        flex-direction: row !important;
    }

    .hbtn {
        width: 100%;
        max-width: 286px;
        padding: 8px 7px;
        font-size: 0.7rem;
        justify-content: center;
    }

    .slide {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        padding: 25px 5%;
    }

    .hero {
        height: auto;
        min-height: 745px;
    }

    .hero {
        min-height: 775px !important;
    }

    .slide {

        padding: 110px 5% !important;
    }

    .slide-visual {
        order: 2;
        margin-top: -46px;
    }

    .hero-trust {
        display: none;
    }

    .hero-trust-bar {
        display: none;
    }

    .hero-btns {
        display: flex;
        gap: 14px;
        flex-wrap: nowrap;
        margin-bottom: 78px;
        flex-direction: row !important;
    }
}


@media (max-width: 1024px) and (min-width: 768px) {
    .jar-body1 img {
        width: 350px;
    }

    .hero {
        height: auto;
        min-height: 769px;
    }

    .slide {
        grid-template-columns: 1fr -3fr;
        text-align: center;
        justify-items: center;
        padding: 65px 5%;
    }

    .hero-trust-bar {
        display: none;
    }

    .bb2 {
        top: -20%;
        right: -36px;
    }

    .bb1 {
        top: -18px;
        right: 175px;
    }

    .bb3 {
        bottom: -138px;
        right: -30px;
    }

    .bb4 {
        top: 51%;
        left: -89px;
    }

    .bb5 {
        bottom: -25%;
        left: 18px;
    }
}

/* Return Modal Styles */
.nb-ret-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 99990;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nb-ret-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.nb-ret-modal {
    background: #fff;
    width: 90%;
    max-width: 580px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.nb-ret-overlay.show .nb-ret-modal {
    transform: translateY(0) scale(1);
}

.nb-ret-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
}

.nb-ret-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--dk, #1e293b);
    font-family: 'Fredoka One', cursive;
}

.nb-ret-close {
    background: transparent;
    border: none;
    font-size: 1.75rem;
    color: #94a3b8;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.nb-ret-close:hover {
    color: #ef4444;
}

.nb-ret-modal-body {
    padding: 24px;
    overflow-y: auto;
}

.nb-ret-modal-body::-webkit-scrollbar {
    width: 6px;
}

.nb-ret-modal-body::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.nb-ret-modal-body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.nb-ret-modal-body::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.nb-ret-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #334155;
    margin-bottom: 16px;
    transition: border-color 0.2s;
    background: #f8fafc;
}

.nb-ret-input:focus {
    outline: none;
    border-color: var(--pk, #ff4d8f);
    background: #fff;
}

.nb-ret-textarea {
    min-height: 100px;
    resize: vertical;
}

.nb-ret-file-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #475569;
}

.nb-ret-file {
    padding: 12px;
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.2s;
    margin-bottom: 16px;
    width: 100%;
}

.nb-ret-file:hover {
    border-color: var(--pk, #ff4d8f);
    background: #fff0f5;
}

.nb-ret-file::file-selector-button {
    background: #fff;
    color: var(--dk, #1e293b);
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-right: 15px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.nb-ret-file::file-selector-button:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.nb-ret-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--pk, #ff4d8f), var(--pkd, #e63977));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 10px;
}

.nb-ret-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 77, 143, 0.3);
}

.nb-ret-msg {
    margin-top: 16px;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 600;
    color: var(--pk, #ff4d8f);
}

.nb-ret-items-wrap {
    margin-bottom: 16px;
}

.nb-ret-items-wrap .nb-ret-item-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 12px;
    background: #f8fafc;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.nb-ret-items-wrap .nb-ret-item-row:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    background: #fff;
}

.nb-ret-items-wrap .nb-ret-item-details {
    flex: 1;
}

.nb-ret-items-wrap .nb-ret-item-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1e293b;
    margin-bottom: 4px;
}

.nb-ret-items-wrap .nb-ret-item-meta {
    font-size: 0.8rem;
    color: #64748b;
}

.nb-ret-items-wrap .nb-ret-qty-input {
    width: 80px;
    padding: 10px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--pk, #ff4d8f);
    transition: border-color 0.2s;
}

.nb-ret-items-wrap .nb-ret-qty-input:focus {
    outline: none;
    border-color: var(--pk, #ff4d8f);
}


.nb-ret-cancel-btn {
    width: 100%;
    padding: 14px;
    background: #f1f5f9;
    color: #475569;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    margin-top: 10px;
}

.nb-ret-cancel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background: #e2e8f0;
}


/* === ORDER DETAILS BLADE OPTIMIZED CLASSES === */
.sidebar-spacer {
    width: 36px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-8 {
    margin-top: 8px;
}

.mb-0 {
    margin-bottom: 0;
}

.m-0 {
    margin-bottom: 0;
    margin-top: 0;
}

.d-none {
    display: none !important;
}

.sp-container {
    margin: 30px auto;
    max-width: 600px;
    flex-wrap: nowrap;
}

.flex-1 {
    flex: 1;
}

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

.sp-ball-center {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-label-margin {
    margin-top: 6px;
}

.order-cancelled-notice {
    background: #ffebee;
    color: #c62828;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
}

.cancelled-notice-text {
    margin: 5px 0 0;
    font-size: 0.9rem;
}

.order-meta-container {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-return-items {
    background: var(--or);
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}

.btn-return-items:hover {
    background: #ea580c;
}

.return-status-badge {
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #fed7aa;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
}

.grid-layout-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.order-card-title {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.order-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

.order-card-strong {
    color: var(--dk);
    display: block;
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.inline-block {
    display: inline-block;
}

.payment-summary-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

.text-mn {
    color: var(--mn);
}

.text-or {
    color: var(--or);
}

.dashed-hr {
    border: 0;
    border-top: 1px dashed #ddd;
    margin: 10px 0;
}

.total-row {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--dk);
}

.payment-method-box {
    margin-top: 15px;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
}

.text-success {
    color: #065f46;
}

.text-danger {
    color: #92400e;
}

.item-product-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.font-medium {
    font-weight: 500;
}

.item-variant-name {
    font-size: 0.75rem;
    color: #777;
}

.item-specs-wrap {
    font-size: 0.7rem;
    color: #888;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2px;
}

.timeline-item-spaced {
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.timeline-time-styled {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 5px;
}

.timeline-status-strong {
    color: var(--dk);
    font-size: 1.05rem;
    display: block;
    margin-bottom: 4px;
}

.timeline-narration {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.timeline-note-box {
    margin-top: 10px;
    padding: 10px 15px;
    background: #f9f9f9;
    border-left: 3px solid var(--mn);
    border-radius: 4px;
    font-size: 0.85rem;
    color: #666;
}

.timeline-empty-styled {
    text-align: center;
    color: #888;
    padding: 20px;
}

.label-lg {
    font-size: 1rem;
    color: var(--dk);
}

.error-msg-styled {
    display: none;
    margin-top: 8px;
    color: #dc2626;
    font-size: 0.85rem;
    font-weight: 600;
}

.flex-gap-10 {
    display: flex;
    gap: 10px;
}

.btn-flex-1 {
    flex: 1;
    margin-top: 0;
}
/* --- ABOUT US CSS --- */

    .about-hero {
      background: linear-gradient(145deg, #FFF0FA 0%, #F0E5FF 50%, #FFDCF0 100%);
      padding: 130px 5% 80px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .about-hero::before {
      content: '';
      position: absolute;
      width: 560px;
      height: 560px;
      border-radius: 62% 38% 56% 44%/48% 62% 38% 52%;
      background: radial-gradient(circle, rgba(255, 77, 143, .12), transparent 70%);
      top: -160px;
      right: -120px;
      animation: blobMorph 10s ease-in-out infinite;
      pointer-events: none;
    }

    .about-hero::after {
      content: '';
      position: absolute;
      width: 380px;
      height: 380px;
      border-radius: 38% 62% 44% 56%/62% 38% 55% 45%;
      background: radial-gradient(circle, rgba(124, 58, 237, .09), transparent 70%);
      bottom: -80px;
      left: -80px;
      animation: blobMorph 14s ease-in-out infinite reverse;
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--pkl);
      color: var(--pkd);
      border-radius: 50px;
      padding: 8px 20px;
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: .78rem;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      margin-bottom: 24px;
      animation: badgePulse 3s ease-in-out infinite;
    }

    .about-hero h1 {
      font-family: 'Fredoka One', cursive;
      font-size: clamp(2.6rem, 5vw, 4.2rem);
      line-height: 1.08;
      color: var(--dk);
      margin-bottom: 20px;
    }

    .about-hero h1 .pop {
      color: var(--pk);
      position: relative;
      display: inline-block;
    }

    .about-hero h1 .pop::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 0;
      right: 0;
      height: 10px;
      background: var(--ye);
      border-radius: 4px;
      z-index: -1;
      transform: skewX(-3deg);
    }

    .hero-desc {
      max-width: 620px;
      margin: 0 auto 40px;
      font-size: 1.08rem;
      color: #4A4A5A;
      line-height: 1.75;
    }

    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      position: relative;
      z-index: 2;
    }

    .hstat {
      background: rgba(255, 255, 255, .82);
      backdrop-filter: blur(12px);
      border: 2px solid rgba(255, 255, 255, .9);
      border-radius: 22px;
      padding: 18px 26px;
      text-align: center;
      box-shadow: 0 8px 28px rgba(0, 0, 0, .07);
      animation: floatY 3s ease-in-out infinite;
      min-width: 130px;
    }

    .hstat:nth-child(2) {
      animation-delay: .5s;
    }

    .hstat:nth-child(3) {
      animation-delay: 1s;
    }

    .hstat:nth-child(4) {
      animation-delay: 1.5s;
    }

    .hstat-num {
      font-family: 'Fredoka One', cursive;
      font-size: 2rem;
      color: var(--pk);
      line-height: 1;
      margin-bottom: 4px;
    }

    .hstat-lbl {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: .76rem;
      color: var(--dk);
      opacity: .75;
    }

    /* SECTION */
    .aj-trust-section {
      background: linear-gradient(145deg, #FFF0FA 0%, #F0E5FF 50%, #FFDCF0 100%);
      padding: 80px 5%;
      font-family: 'DM Sans', sans-serif;
    }

    /* CONTAINER */
    .aj-trust-container {
      max-width: 1200px;
      margin: auto;
    }

    /* DESCRIPTION */
    .aj-trust-desc {
      text-align: center;
      max-width: 900px;
      margin: 0 auto 40px;
      color: #4A4A5A;
      line-height: 1.75;
      font-size: clamp(.95rem, 1.1vw, 1.08rem);
    }

    /* FLEX LAYOUT */
    .aj-trust-flex {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 50px;
    }

    /* GRID */
    .aj-trust-grid {
      flex: 1;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 10px;
    }

    /* IMAGES */
    .aj-trust-grid img {
      width: 100%;
      height: 100%;
      border-radius: 8px;
      object-fit: cover;
      box-shadow: 0 10px 26px rgba(13, 0, 32, .08);
    }

    /* MASONRY EFFECT */
    .aj-trust-grid img:nth-child(3n) {
      grid-row: span 2;
    }

    .aj-trust-grid img:nth-child(5n) {
      grid-row: span 1;
    }

    /* RIGHT CONTENT */
    .aj-trust-content {
      flex: 1;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 8px;
      min-width: 280px;
      padding: 0 10px;
    }

    /* ICON */
    .aj-trust-icon {
      width: 90px;
      height: 90px;
      background: var(--pk);
      border-radius: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 38px;
      margin: 0 auto 16px;
      box-shadow: 0 20px 44px rgba(255, 77, 143, .32);
      border: 2.5px solid rgba(255, 214, 232, .9);
    }

    /* TITLE */
    .aj-trust-title {
      font-family: 'Nunito', sans-serif;
      letter-spacing: 2.2px;
      text-transform: uppercase;
      color: var(--pkd);
      font-weight: 900;
      font-size: .83rem;
      margin: 0 0 14px 0;
      line-height: 1.2;
    }

    /* MAIN HEADLINE */
    .aj-trust-highlight {
      font-family: 'Fredoka One';
      font-size: clamp(1.6rem, 4.2vw, 4.8rem);
      font-weight: 400;
      margin: 0 0 4px 0;
      color: var(--dk);
      line-height: 1;
      letter-spacing: -1px;
    }

    /* SUBHEADING */
    .aj-trust-content .aj-trust-subtitle {
      font-family: 'Fredoka one', cursive;
      font-size: clamp(1.8rem, 3.2vw, 2.2rem);
      font-weight: 700;
      margin: 2px 0 18px 0;
      color: var(--dk);
      line-height: 1.1;
      letter-spacing: -0.5px;
    }

    /* STATS */
    .aj-trust-stats {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 32px;
      margin-top: 8px;
    }

    .aj-trust-stat {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      min-width: 85px;
    }

    .aj-trust-stat strong {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(1.1rem, 2vw, 1.4rem);
      font-weight: 900;
      color: var(--dk);
      letter-spacing: -0.5px;
      line-height: 1;
    }

    .aj-trust-stat span {
      font-family: 'Nunito', sans-serif;
      font-size: clamp(.8rem, 1.2vw, .95rem);
      color: var(--muted);
      line-height: 1.3;
      font-weight: 500;
    }

    /* RESPONSIVE */
    


    /* RESPONSIVE */
    


    .closing-section {
      padding: 36px 5%;
      background: linear-gradient(145deg, #FFF0FA 0%, #F0E5FF 50%, #FFDCF0 100%);
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .closing-section::before {
      content: '';
      position: absolute;
      width: 520px;
      height: 520px;
      border-radius: 62% 38% 56% 44%/48% 62% 38% 52%;
      background: radial-gradient(circle, rgba(255, 77, 143, .09), transparent 70%);
      top: -140px;
      right: -100px;
      animation: blobMorph 11s ease-in-out infinite;
      pointer-events: none;
    }

    .closing-inner {
      max-width: 820px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .closing-emoji {
      font-size: 4rem;
      margin-bottom: 20px;
      display: block;
    }

    .closing-inner h2 {
      font-family: 'Fredoka One', cursive;
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      color: var(--dk);
      line-height: 1.12;
      margin-bottom: 20px;
    }

    .closing-inner h2 .pop {
      color: var(--pu);
      position: relative;
      display: inline-block;
    }


    .closing-inner>p {
      font-size: 1.02rem;
      color: #4A4A5A;
      line-height: 1.8;
      max-width: 600px;
      margin: 0 auto 36px;
    }

    .closing-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 44px;
    }

    .about-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--btn);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 16px 34px;
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: .98rem;
      cursor: pointer;
      text-decoration: none;
      transition: all .3s;
      box-shadow: 0 10px 30px rgba(255, 77, 143, .38);
    }

    .about-btn-primary:hover {
      transform: translateY(-4px) scale(1.04);
      box-shadow: 0 18px 40px rgba(255, 77, 143, .52);
    }

    .about-btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: transparent;
      color: var(--dk);
      border: 2.5px solid rgba(13, 0, 32, .2);
      border-radius: 50px;
      padding: 16px 34px;
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: .98rem;
      cursor: pointer;
      text-decoration: none;
      transition: all .3s;
    }

    .about-btn-ghost:hover {
      background: var(--btn);
      color: #fff;
      transform: translateY(-3px);
    }



    .trust-pill {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, .8);
      backdrop-filter: blur(10px);
      border: 1.5px solid rgba(255, 255, 255, .9);
      border-radius: 50px;
      padding: 9px 18px;
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: .8rem;
      color: var(--dk);
      box-shadow: 0 4px 14px rgba(0, 0, 0, .07);
      animation: floatY 3s ease-in-out infinite;
    }

    .trust-pill:nth-child(2) {
      animation-delay: .6s;
    }

    .trust-pill:nth-child(3) {
      animation-delay: 1.2s;
    }

    .trust-pill:nth-child(4) {
      animation-delay: 1.8s;
    }

    .about-reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity .7s cubic-bezier(.34, 1.1, .64, 1), transform .7s cubic-bezier(.34, 1.1, .64, 1);
    }

    .about-reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .about-reveal-d1 {
      transition-delay: .1s;
    }

    .about-reveal-d2 {
      transition-delay: .2s;
    }

    .about-reveal-d3 {
      transition-delay: .3s;
    }

    .about-reveal-d4 {
      transition-delay: .4s;
    }

    @keyframes blobMorph {

      0%,
      100% {
        border-radius: 62% 38% 56% 44%/48% 62% 38% 52%;
      }

      50% {
        border-radius: 38% 62% 44% 56%/62% 38% 55% 45%;
      }
    }

    @keyframes floatY {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-9px);
      }
    }

    @keyframes badgePulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(255, 77, 143, 0);
      }

      50% {
        box-shadow: 0 0 0 7px rgba(255, 77, 143, .1);
      }
    }

    


    .ns-story-hero {
      --ns-pink-hot: #e91e8c;
      --ns-navy: #1a1464;
      --ns-purple: #7c5cbf;
      --ns-gold: #f5a623;
      --ns-green: #4caf50;
      --ns-font: 'DM Sans', sans-serif;
      --ns-heading: 'Fredoka One', cursive;
      --ns-hand: 'Nunito', sans-serif;
      font-family: var(--ns-font);
      background: linear-gradient(160deg, #fce4ec 0%, #fad4e4 55%, #f8bbd0 100%);
      overflow-x: hidden;
    }

    .ns-story-hero .ns-wrap {
      margin: 0 auto;
      position: relative;
    }

    .ns-story-hero .ns-section {
      position: relative;
      padding: 130px 190px 0;
      overflow: hidden;
    }

    .ns-story-hero .ns-wave {
      position: absolute;
      bottom: 0;
      left: -5%;
      right: -5%;
      pointer-events: none;
      z-index: 0;
    }

    .ns-story-hero .ns-grid {
      display: grid;
      grid-template-columns: 436px 1fr;
      gap: 32px;
      align-items: flex-start;
      position: relative;
      z-index: 2;
    }

    .ns-story-hero .ns-left {
      display: flex;
      flex-direction: column;
      gap: 18px;
      padding-bottom: 130px;
      position: relative;
    }

    .ns-story-hero .ns-tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      width: max-content;
      background: #fff;
      border: 1.5px solid #f0b8d0;
      border-radius: 999px;
      padding: 6px 18px 6px 12px;
      font-family: var(--ns-hand);
      font-size: .78rem;
      font-weight: 800;
      color: var(--ns-navy);
      letter-spacing: 1.8px;
      text-transform: uppercase;
      box-shadow: 0 2px 10px rgba(233, 30, 140, .1);
    }

    .ns-story-hero .ns-headline {
      font-family: var(--ns-heading);
      font-size: 53px;
      font-weight: 300;
      line-height: 1.08;
      color: var(--ns-navy);
      letter-spacing: 0;
    }

    .ns-story-hero .ns-headline-accent {
      color: var(--ns-pink-hot);
      font-style: normal;
      position: relative;
      display: inline-block;
    }

    .ns-story-hero .ns-headline-accent::after {
      content: '\2726';
      font-style: normal;
      font-size: 18px;
      color: var(--ns-pink-hot);
      margin-left: 5px;
      vertical-align: super;
      font-weight: 400;
    }

    .ns-story-hero .ns-divider {
      width: 52px;
      height: 4px;
      background: var(--ns-pink-hot);
      border-radius: 4px;
    }

    .ns-story-hero .ns-body {
      font-family: var(--ns-font);
      font-size: 1.08rem;
      line-height: 1.75;
      color: #4A4A5A;
      max-width: 400px;
    }

    .ns-story-hero .ns-deco-heart-top img {
      height: 55px;
    }

    .ns-story-hero .ns-deco-heart-top {
      position: absolute;
      top: -4px;
      left: 100%;
      pointer-events: none;
      z-index: 3;
      animation: ns-pulse 2s ease-in-out infinite;
    }

    @keyframes ns-pulse {

      0%,
      100% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.2);
      }
    }

    .ns-story-hero .ns-mascot-wrap {
      position: absolute;
      bottom: 0;
      left: 447px;
      z-index: 10;
      width: 197px;
    }

    .ns-story-hero .ns-mascot-img {
      width: 100%;
      filter: drop-shadow(0 10px 22px rgba(124, 92, 191, .3));
      animation: ns-float 3s ease-in-out infinite;
    }

    @keyframes ns-float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-9px);
      }
    }

    .ns-story-hero .ns-right {
      position: relative;
      height: 440px;
      justify-self: start;
      max-width: 540px;
      width: 100%;
    }

    .ns-story-hero .ns-tape {
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%) rotate(-2deg);
      width: 54px;
      height: 17px;
      background: rgba(255, 255, 170, .8);
      border-radius: 2px;
      z-index: 5;
    }

    .ns-story-hero .ns-polar {
      position: absolute;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 8px 28px rgba(0, 0, 0, .14);
    }

    .ns-story-hero .ns-polar img {
      display: block;
      width: 100%;
      object-fit: cover;
      border-radius: 6px 6px 0 0;
    }

    .ns-story-hero .ns-polar-caption {
      font-family: var(--ns-hand);
      font-size: .88rem;
      font-weight: 700;
      color: #444;
      text-align: center;
      padding: 8px 10px 10px;
      line-height: 1.3;
    }

    .ns-story-hero .ns-polar--worry {
      width: 192px;
      top: 10px;
      left: 0px;
      transform: rotate(-7deg);
      z-index: 3;
      padding: 8px 8px 0;
    }

    .ns-story-hero .ns-polar--worry img {
      height: 178px;
    }

    .ns-story-hero .ns-polar--happy {
      width: 305px;
      top: 28px;
      right: -100px;
      transform: rotate(2.5deg);
      z-index: 4;
      padding: 8px 8px 0;
    }

    .ns-story-hero .ns-polar--happy img {
      height: 268px;
    }

    .ns-story-hero .ns-arrow-svg {
      position: absolute;
      top: 270px;
      left: 100px;
      z-index: 6;
      pointer-events: none;
      transform: scale(1.12);
      transform-origin: top left;
    }

    .ns-story-hero .ns-promise {
      position: absolute;
   bottom: 30px !important;
    right: 297px !important;
      background: #fffde7;
      border-radius: 3px;
      padding: 14px 16px;
      width: 188px;
      font-family: var(--ns-font);
      font-size: .92rem;
      line-height: 1.7;
      color: #444;
      box-shadow: 2px 4px 14px rgba(0, 0, 0, .13);
      z-index: 7;
      transform: rotate(5.8deg);
    }

    .ns-story-hero .ns-promise::before {
      content: '';
      position: absolute;
      top: -9px;
      left: 50%;
      transform: translateX(-50%);
      width: 44px;
      height: 9px;
      background: rgba(255, 235, 59, .8);
      border-radius: 2px;
    }

    .ns-story-hero .ns-deco {
      position: absolute;
      pointer-events: none;
      z-index: 8;
      font-size: 18px;
    }

    .ns-story-hero .ns-deco--hrt1 {
      top: 14px;
      left: 222px;
      color: var(--ns-pink-hot);
      font-size: 22px;
    }

    .ns-story-hero .ns-deco--star1 {
      top: 22px;
      right: 14px;
      color: var(--ns-gold);
      font-size: 16px;
    }

    .ns-story-hero .ns-deco--star2 {
      top: 62px;
      left: 38px;
      color: var(--ns-purple);
      font-size: 13px;
    }

    .ns-story-hero .ns-deco--plus1 {
      bottom: 202px;
      left: 58px;
      color: var(--ns-purple);
      font-size: 20px;
      font-weight: 900;
    }

    .ns-story-hero .ns-deco--leaf {
      bottom: 52px;
      right: 200px;
      font-size: 28px;
      transform: rotate(30deg);
    }

    .ns-story-hero .ns-gummy {
      position: absolute;
      pointer-events: none;
      z-index: 1;
    }

    .ns-story-hero .ns-gummy--bear {
      width: 60px;
      bottom: 88px;
      left: 10px;
    }

    .ns-story-hero .ns-gummy--bear img {
      height: 65px;
    }

    .ns-story-hero .ns-gummy--berry {
      width: 52px;
      bottom: 60px;
      right: 14px;
    }

    .for-left img {
      height: 56px;
    }

    .ns-story-hero .ns-gummy--berry svg {
      width: 100%;
      height: auto;
      display: block;
    }

    .ns-story-hero .ns-star-deco {
      position: absolute;
      bottom: 112px;
      left: 74px;
      color: var(--ns-pink-hot);
      font-size: 18px;
      pointer-events: none;
      z-index: 2;
    }

    .ns-story-hero .ns-stats-outer {
      position: relative;
      z-index: 10;
    }

    .ns-story-hero .ns-stats {
      background: #fff;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      padding: 28px 210px;
      gap: 8px;
      border-radius: 0;
    }

    .ns-story-hero .ns-stat {
      display: flex;
      align-items: center;
      gap: 14px;
      border-right: 1px solid #f0dce8;
      padding: 0 20px;
    }

    .ns-story-hero .ns-stat:first-child {
      padding-left: 0;
    }

    .ns-story-hero .ns-stat:last-child {
      border-right: none;
    }

    .ns-story-hero .ns-stat-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
    }

    .ns-story-hero .ns-stat-icon--pink {
      background: #fde8f0;
    }

    .ns-story-hero .ns-stat-icon--purple {
      background: #ede7f6;
    }

    .ns-story-hero .ns-stat-icon--green {
      background: #e8f5e9;
    }

    .ns-story-hero .ns-stat-icon--gold {
      background: #fff8e1;
    }

    .ns-story-hero .ns-stat-val {
      font-family: var(--ns-heading);
      font-size: 2rem;
      font-weight: 400;
      color: var(--ns-navy);
      line-height: 1;
    }

    .ns-story-hero .ns-stat-lbl {
      font-family: var(--ns-hand);
      font-size: .76rem;
      font-weight: 800;
      color: #999;
      margin-top: 3px;
    }

    



    /* ============================================================
     SECTION & BACKGROUNDS 2nd
  =========================================================== */
    .nbs-section {
      position: relative;
      padding: 80px 20px;
      font-family: 'DM Sans', sans-serif;
      background-image: radial-gradient(circle at 50% 0%, #ffffff 0%, transparent 70%);
    }

    /* Background Blob Graphics */
    .nbs-bg-shapes {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: 0;
    }
.nbs-bg-shapes img {
  height: 85px;
}
    .nbs-blob-tl {
      position: absolute;
      top: -100px;
      left: -100px;
      width: 500px;
      height: 500px;
      background: var(--pkl);
      border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
      opacity: 0.7;
      filter: blur(40px);
    }

    .nbs-blob-br {
      position: absolute;
      bottom: -150px;
      right: -50px;
      width: 600px;
      height: 500px;
      background: var(--pkl);
      border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
      opacity: 0.9;
    }

    /* Leaf decos in background */
    .nbs-bg-leaf {
      position: absolute;
      opacity: 0.5;
    }

    .nbs-bg-leaf-1 {
      top: 10%;
      right: 15%;
      width: 40px;
      transform: rotate(15deg);
    }

    .nbs-bg-leaf-2 {
      bottom: 15%;
      right: 5%;
      width: 60px;
      transform: rotate(-20deg);
      opacity: 0.3;
    }

    .nbs-container {
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    /* ============================================================
     HEADER TAGS
  =========================================================== */
    .nbs-our-story-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Nunito', sans-serif;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--pk);
      margin-bottom: 40px;
    }

    .nbs-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Nunito', sans-serif;
      background: var(--pul);
      color: var(--pu);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 8px 16px;
      border-radius: 50px;
      margin-bottom: 20px;
    }

    /* ============================================================
     MAIN GRID
  =========================================================== */
    .nbs-main-grid {
      display: grid;
      grid-template-columns: 45% 50%;
      gap: 5%;
      align-items: start;
    }

    /* ============================================================
     LEFT – IMAGE COLUMN
  =========================================================== */
    .nbs-img-col {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* polaroid card */
    .nbs-photo-card {
      background: #fff;
      border-radius: 12px;
      padding: 10px 10px 25px 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
      position: relative;
      width: 80%;
    }

    .nbs-photo-fill {
      border-radius: 8px;
      width: 100%;
      aspect-ratio: 16/10;
      overflow: hidden;
      background: #eee;
    }

    .nbs-photo-fill img {
      width: 100%;
      height: 100%;
      object-fit: fill !important;
    }

    /* Tape effect */
    .nbs-tape {
      position: absolute;
      width: 40px;
      height: 16px;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(4px);
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
      border-radius: 2px;
      z-index: 10;
    }

    /* Colored tape variants */
    .nbs-tape-pu {
      background: rgba(135, 75, 222, 0.4);
    }

    .nbs-tape-ye {
      background: rgba(255, 201, 51, 0.4);
    }

    .nbs-card-1 {
      transform: rotate(-3deg) translateX(-10%);
      z-index: 3;
    }

    .nbs-card-1 .nbs-tape {
      top: -6px;
      right: 20px;
      transform: rotate(5deg);
    }

    .nbs-card-2 {
      transform: rotate(2deg) translateX(10%);
      z-index: 4;
      margin-top: -30px;
    }

    .nbs-card-2 .nbs-tape {
      top: -6px;
      left: 20px;
      transform: rotate(-5deg);
    }

    .nbs-card-3 {
      transform: rotate(-1deg);
      z-index: 3;
      margin-top: -20px;
    }

    .nbs-card-3 .nbs-tape {
      top: -6px;
      right: 40px;
      transform: rotate(3deg);
    }

    /* Decorative dotted lines / arrows */
    .nbs-arrow-svg {
      position: absolute;
      z-index: 1;
      pointer-events: none;
      overflow: visible;
    }

    .nbs-arrow-1 {
      top: 28%;
      left: -5%;
      width: 80px;
      height: 100px;
    }

    .nbs-arrow-2 {
      top: 58%;
      left: -5%;
      width: 100px;
      height: 120px;
    }

    /* Gummy bears */
    .nbs-gummies {
      position: absolute;
      bottom: 120px;
      left: -30px;
      display: flex;
      align-items: flex-end;
      gap: 5px;
      z-index: 6;
      pointer-events: none;
    }

    .nbs-gummy {
      font-size: 40px;
      animation: nbsFloat 4s ease-in-out infinite;
      display: block;
      filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
    }

    .nbs-gummy:nth-child(2) {
      font-size: 30px;
      animation-delay: 1.2s;
      margin-bottom: 10px;
    }

    @keyframes nbsFloat {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    /* ============================================================
     RIGHT – CONTENT COLUMN
  =========================================================== */
    .nbs-content-col {
      position: relative;
      padding-top: 0px;
    }

    /* Heading */
    .nbs-heading {
      font-family: 'Fredoka One', cursive;
      font-weight: 900;
      font-size: clamp(36px, 4vw, 56px);
      line-height: 1.15;
      color: var(--dk);
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }

    .nbs-heading .nbs-hd-pink {
      color: var(--pk);
      display: block;
    }

    /* Yellow accent underline */
    .nbs-yellow-acc {
      width: 60px;
      height: 4px;
      background: var(--ye);
      border-radius: 4px;
      margin-bottom: 40px;
    }

    /* ── STEPS TIMELINE ── */
    .nbs-steps {
      display: flex;
      flex-direction: column;
      position: relative;
    }

    /* The vertical dashed line behind the icons */
    .nbs-steps::before {
      content: '';
      position: absolute;
      top: 20px;
      bottom: 40px;
      left: 42px;
      /* Center of the 48px icons */
      width: 2px;
      border-left: 2px dashed #DCCFE0;
      z-index: 0;
    }

    .nbs-step {
      display: flex;
      gap: 24px;
      align-items: flex-start;
      margin-bottom: 28px;
      position: relative;
      z-index: 1;
    }

    .nbs-step-icon {
      width: 83px;
      height: 83px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      background: #fff;
      /* Box shadow for depth like the image */
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    }

    .nbs-step-icon img,
    .nbs-step-icon svg {
      width: 75px;
      height: 75px;
      object-fit: contain;
    }

    .nbs-step-body {
      padding-top: 10px;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      line-height: 1.6;
      color: var(--text);
      font-weight: 600;
    }

    /* icon bg colors */
    .nbs-ic-pk {
      background: var(--pkl);
    }

    .nbs-ic-ye {
      background: #f5e6c1;
    }

    .nbs-ic-pu {
      background: #f0e2f9;
    }

    .nbs-ic-mn {
      background: #e7f1d6;
    }

    /* inline highlights */
    .nbs-hl-pk {
      color: var(--pk);
      font-weight: 800;
    }

    .nbs-hl-pu {
      color: var(--pu);
      font-weight: 800;
    }

    .nbs-hl-mn {
      color: var(--mn);
      font-weight: 800;
    }

    .nbs-hl-ye {
      color: #d19a00;
      font-weight: 800;
    }

    /* ============================================================
     STATS BAR
  =========================================================== */
    .nbs-stats-bar {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: var(--wh);
      border-radius: 20px;
      padding: 24px 32px;
      margin-top: 50px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
      position: relative;
      z-index: 5;
    }

    .nbs-stat-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 0 20px;
      border-right: 1.5px solid var(--border);
    }

    .nbs-stat-item:first-child {
      padding-left: 0;
    }

    .nbs-stat-item:last-child {
      border-right: none;
      padding-right: 0;
    }

    .nbs-stat-ico {
      width: 75px;
      height: 75px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .nbs-stat-ico img,
    .nbs-stat-ico svg {
      width: 60px;
      height: 60px;
    }

    .nbs-si-pk {
      background: var(--pkl);
    }

    .nbs-si-pu {
      background: var(--pul);
    }

    .nbs-si-mn {
      background: var(--mnl);
    }

    .nbs-si-ye {
      background: var(--yel);
    }

    .nbs-stat-text {
      display: flex;
      flex-direction: column;
    }

    .nbs-stat-num {
      font-family: 'DM Sans', sans-serif;
      font-size: 24px;
      font-weight: 800;
      line-height: 1.2;
    }

    .nbs-sn-pk {
      color: var(--pk);
    }

    .nbs-sn-pu {
      color: var(--pu);
    }

    .nbs-sn-mn {
      color: var(--mn);
    }

    .nbs-sn-ye {
      color: #d19a00;
    }

    .nbs-stat-lbl {
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
    }

    /* ============================================================
     RESPONSIVE
  =========================================================== */
    






    /* third */
    /* ── SECTION ── */
    .origin-section {
      padding: 80px 5%;
      background: var(--cr);
      position: relative;
      overflow: hidden;
    }

    .origin-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: stretch;
    }

    /* ── LEFT: Dark Story Card ── */
    .origin-visual {
      position: relative;
      display: flex;
      align-items: stretch;
    }

    .story-card-main {
      background: linear-gradient(145deg, var(--dk2), #2d0060);
      border-radius: 32px;
      padding: 44px 40px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(13, 0, 32, 0.25);
      display: flex;
      flex-direction: column;
      justify-content: center;
      width: 100%;
    }

    .story-card-main::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(124, 58, 237, 0.15);
      pointer-events: none;
    }

    .story-card-main .eyebrow {
      display: block;
      margin-bottom: 14px;
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--ye);
    }

    .story-card-main h2 {
      margin-bottom: 16px;
      font-family: 'Fredoka One', cursive;
      font-size: clamp(1.6rem, 2.5vw, 2.1rem);
      line-height: 1.25;
      color: #fff;
    }

    .story-card-main p {
      margin-bottom: 14px;
      font-size: 0.96rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.72);
    }

    .story-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }

    .spill {
      padding: 8px 15px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 50px;
      background: rgba(255, 255, 255, 0.08);
      font-size: 0.75rem;
      font-weight: 800;
      color: rgba(255, 255, 255, 0.85);
    }

    /* Float badges */
    .float-accent {
      position: absolute;
      z-index: 5;
      padding: 12px 18px;
      border-radius: 18px;
      background: #fff;
      box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
      font-size: 0.82rem;
      font-weight: 900;
      color: var(--dk);
      white-space: nowrap;
    }

    .fa-1 {
      top: -18px;
      right: -24px;
      border: 2px solid #fde8f3;
    }

    .fa-2 {
      bottom: -18px;
      left: -24px;
      border: 2px solid #e8f0ff;
    }

    /* ── RIGHT: Accordion Side ── */
    .origin-text {
      display: flex;
      flex-direction: column;
    }

    .sec-eye {
      display: block;
      margin-bottom: 10px;
      font-size: 0.85rem;
      font-weight: 900;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--pk);
    }

    .origin-text h2 {
      margin-bottom: 12px;
      font-family: 'Fredoka One', cursive;
      font-size: clamp(2rem, 3vw, 2.75rem);
      line-height: 1.1;
      color: var(--dk);
    }

    .origin-text h2 .acc {
      color: var(--pu);
    }

    .origin-text>p {
      margin-bottom: 24px;
      font-size: 0.95rem;
      line-height: 1.75;
      color: #666;
    }

    /* ── ACCORDION ── */
    .accordion-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      list-style: none;
    }

    .acc-item {
      background: #fff;
      border: 1.5px solid #ede8f5;
      border-radius: 20px;
      overflow: hidden;
      transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .acc-item.open {
      border-color: #e0d3f8;
      box-shadow: 0 6px 24px rgba(124, 58, 237, 0.08);
    }

    .acc-item.open .acc-header {
      background: #fdf7ff;
    }

    .acc-header {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px 20px;
      cursor: pointer;
      user-select: none;
      transition: background 0.2s ease;
      border-radius: 18px;
    }

    .acc-header:hover {
      background: #fdf7ff;
    }
    .acc-icon-wrap img {
      width: 80%;
      height: 80%;
      object-fit: contain;
    }
    .acc-icon-wrap {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 20px;
      transition: transform 0.2s ease;
    }

    .acc-item.open .acc-icon-wrap {
      transform: scale(1.08);
    }

    .acc-title {
      flex: 1;
      font-size: 0.97rem;
      font-weight: 900;
      color: var(--dk);
    }

    .acc-toggle {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      border: 1.5px solid #e0d3f8;
      background: #f5f0ff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s ease, transform 0.3s ease;
      color: var(--pu);
    }

    .acc-item.open .acc-toggle {
      background: var(--pu);
      border-color: var(--pu);
      transform: rotate(45deg);
      color: #fff;
    }

    .acc-toggle svg {
      width: 14px;
      height: 14px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
    }

    .acc-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.25s ease;
    }

    .acc-item.open .acc-body {
      max-height: 200px;
    }

    .acc-body-inner {
      padding: 0 20px 18px 78px;
    }

    .acc-body-inner ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .acc-body-inner ul li {
      font-size: 0.85rem;
      line-height: 1.55;
      color: #777;
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }

    .acc-body-inner ul li::before {
      content: '';
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--pk);
      flex-shrink: 0;
      margin-top: 5px;
    }

    .acc-body-inner ul li:nth-child(2)::before {
      background: var(--pu);
    }

    .acc-body-inner ul li:nth-child(3)::before {
      background: #22c55e;
    }

    /* ── RESPONSIVE ── */
    



    /* gap we found */

    /* ── SECTION ── */
    .gapfix-section {
      padding: 80px 20px 100px;
      font-family: 'DM Sans', sans-serif;
      background: linear-gradient(160deg, #fdf4ff 0%, #f0f7ff 40%, #f5fff9 100%);
      position: relative;
      overflow: hidden;
    }

    .gapfix-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 40% at 10% 20%, rgba(255, 77, 143, .07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(0, 214, 143, .08) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ── HEADER ── */
    .gapfix-eyebrow {
      display: inline-block;
      font-family: 'Nunito', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--pu);
      background: var(--pul);
      border: 1.5px solid #d4b9ff;
      padding: 5px 16px;
      border-radius: 50px;
      margin-bottom: 18px;
    }

    .gapfix-heading {
      font-family: 'Fredoka One', cursive;
      font-size: clamp(28px, 5vw, 52px);
      font-weight: 800;
      color: var(--dk);
      line-height: 1.15;
      margin-bottom: 14px;
    }
    .proper-set {
      height: 62px;
    }

    .gapfix-heading span {
      color: var(--pu);
    }

    .gapfix-subtext {
      font-size: clamp(14px, 2vw, 16px);
      color: var(--muted);
      max-width: 560px;
      margin: 0 auto 56px;
      line-height: 1.7;
    }

    .gapfix-top {
      text-align: center;
    }

    /* ── COLUMN LABELS ── */
    .gapfix-col-labels {
      display: flex;
      justify-content: space-between;
      max-width: 1100px;
      margin: 0 auto 20px;
      padding: 0 10px;
    }

    .gapfix-label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Nunito', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 7px 20px;
      border-radius: 50px;
    }

    .gapfix-label--problem {
      color: var(--pk);
      background: var(--pkl);
      border: 1.5px solid #ffb3d0;
    }

    .gapfix-label--fix {
      color: var(--mn);
      background: var(--mnl);
      border: 1.5px solid #7fe8c8;
    }

    .gapfix-label svg {
      flex-shrink: 0;
    }

    /* ── ROWS ── */
    .gapfix-rows {
      display: flex;
      flex-direction: column;
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .gapfix-row {
      display: grid;
      grid-template-columns: 1fr 56px 1fr;
      align-items: center;
      gap: 16px;
    }

    /* ── CARD ── */
    .gapfix-card {
      display: flex;
      align-items: center;
      gap: 18px;
      background: var(--white);
      border-radius: var(--r);
      padding: 22px 24px;
      box-shadow: 0 2px 16px rgba(13, 0, 32, .06);
      border: 1.5px solid var(--border);
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .gapfix-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(13, 0, 32, .11);
    }

    /* ── ICON BOX ── */
    .gapfix-icon-box {
      flex-shrink: 0;
      width: 85px;
      height: 85px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
    }

    .gapfix-icon-box--problem img {
      width: 75px;
      height: 75px;
    }

    .gapfix-icon-box--fix img {
      width: 75px;
      height: 75px;
    }

    .gapfix-icon-box--problem {
      background: var(--pkl);
    }

    .gapfix-icon-box--fix {
      background: var(--mnl);
    }

    /* ── BADGE NUMBER ── */
    .gapfix-num {
      flex-shrink: 0;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Nunito', sans-serif;
      font-size: 13px;
      font-weight: 800;
      color: var(--white);
    }

    .gapfix-num--problem {
      background: var(--pk);
    }

    .gapfix-num--fix {
      background: var(--mn);
    }

    /* ── CARD TEXT ── */
    .gapfix-card-body {
      flex: 1;
      min-width: 0;
    }

    .gapfix-card-title {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(14px, 2vw, 16px);
      font-weight: 700;
      margin-bottom: 5px;
      color: var(--dk);
    }

    .gapfix-card-desc {
      font-size: clamp(12px, 1.5vw, 13.5px);
      color: var(--muted);
      line-height: 1.65;
    }

    /* zero-sugar badge */
    .gapfix-badge-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      font-weight: 700;
      color: var(--mn);
      background: var(--mnl);
      border: 1.5px solid #7fe8c8;
      border-radius: 50px;
      padding: 3px 12px;
      margin-bottom: 5px;
    }

    /* ── ARROW ── */
    .gapfix-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--pu);
      font-size: 24px;
    }

    /* ── FOOTER BANNER ── */
    .gapfix-footer-banner {
      max-width: 1100px;
      margin: 52px auto 0;
      background: linear-gradient(120deg, var(--yel) 0%, #fff9e0 100%);
      border: 2px solid var(--ye);
      border-radius: var(--rL);
      padding: 28px 40px;
      display: flex;
      align-items: center;
      gap: 24px;
    }
    .gapfix-footer-banner img {
          height: 12%;
    width: 22%;
    }

    .gapfix-footer-icon {
      font-size: 48px;
      flex-shrink: 0;
    }
 .gapfix-footer-icon img {
      width: 95px;
      height: 95px;
      object-fit: contain;
    }
    .gapfix-footer-text {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(16px, 3vw, 22px);
      font-weight: 700;
      color: var(--dk);
      line-height: 1.4;
    }

    .gapfix-footer-text em {
      font-style: normal;
      color: var(--pu);
    }

    /* ── RESPONSIVE ── */
    



    /* approch section0 */
  

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {

            --nbap-ye: #ffd93d;
            --nbap-pk: #ff4d8f;
            --nbap-wh: #ffffff;
            --nbap-dim: rgba(255, 255, 255, 0.60);
            --nbap-c1: #a8ff3e;
            --nbap-c2: #3eaaff;
            --nbap-c3: #ff4d8f;
            --nbap-c4: #ffb347;
            --nbap-c5: #a8ff3e;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Nunito', sans-serif;
            background: var(--nbap-bg);
            -webkit-font-smoothing: antialiased;
        }

        /* --------------------------
         SECTION
      -------------------------- */
        .nbap {
            position: relative;
            padding: 80px 5% 64px;
            background: #0d0028;
            overflow: hidden;
        }

        .nbap-blob {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            filter: blur(100px);
        }

        .nbap-blob-a {
            width: 500px;
            height: 500px;
            background: rgba(124, 58, 237, 0.22);
            top: -140px;
            left: -150px;
        }

        .nbap-blob-b {
            width: 380px;
            height: 380px;
            background: rgba(255, 77, 143, 0.18);
            bottom: -90px;
            right: -110px;
        }

        .nbap-blob-c {
            width: 280px;
            height: 280px;
            background: rgba(62, 170, 255, 0.12);
            top: 35%;
            left: 40%;
        }

        /* --------------------------
         HEADER
      -------------------------- */
        .nbap-head {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 3;
        }

        .nbap-eye {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
            font-size: 0.74rem;
            font-weight: 900;
            letter-spacing: 3.5px;
            text-transform: uppercase;
            color: var(--nbap-ye);
        }

        .nbap-eye b {
            display: inline-block;
            width: 26px;
            height: 1.5px;
            background: var(--nbap-ye);
            border-radius: 2px;
            font-weight: 400;
        }

        .nbap-head h2 {
            font-family: 'Fredoka One', cursive;
            font-size: clamp(1.9rem, 5vw, 3.4rem);
            line-height: 1.1;
            color: var(--nbap-wh);
        }

        .nbap-head h2 em {
            font-style: normal;
            color: var(--nbap-ye);
        }

        .nbap-head p {
            margin-top: 14px;
            font-size: clamp(0.88rem, 1.4vw, 1rem);
            line-height: 1.75;
            color: var(--nbap-dim);
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
        }

        .nbap-head p strong {
            color: var(--nbap-pk);
            font-weight: 900;
        }

        /* --------------------------
         STEPS — DESKTOP (5-col flex row)
      -------------------------- */
        .nbap-steps {
            position: relative;
            z-index: 3;
            max-width: 1300px;
            margin: 0 auto 52px;
        }

        .nbap-row {
            display: flex;
            align-items: flex-start;
            justify-content: center;
        }

        /* -- STEP CARD -- */
        .nbap-card {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0 6px;
            animation: nbapUp 0.55s ease both;
        }

        .nbap-card:nth-child(1) {
            animation-delay: 0.05s;
        }

        .nbap-card:nth-child(3) {
            animation-delay: 0.15s;
        }

        .nbap-card:nth-child(5) {
            animation-delay: 0.25s;
        }

        .nbap-card:nth-child(7) {
            animation-delay: 0.35s;
        }

        .nbap-card:nth-child(9) {
            animation-delay: 0.45s;
        }

        @keyframes nbapUp {
            from {
                opacity: 0;
                transform: translateY(26px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* -- ARROW -- */
        .nbap-arr {
            flex-shrink: 0;
            width: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 82px;
        }

        .nbap-arr svg {
            width: 28px;
            height: 28px;
        }

        /* -- BUBBLE -- */
        .nbap-bubble {
            position: relative;
            width: clamp(128px, 14vw, 182px);
            height: clamp(128px, 14vw, 182px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: transform 0.32s ease;
        }

        .nbap-card:hover .nbap-bubble {
            transform: translateY(-10px) scale(1.05);
        }

        .nbap-card[data-s="1"] .nbap-bubble {
            /* background: radial-gradient(circle at 38% 38%, #1e5506, #0a2602); */
            box-shadow: 0 0 0 3px rgba(168, 255, 62, 0.28), 0 18px 50px rgba(0, 0, 0, 0.5);
        }

        .nbap-card[data-s="2"] .nbap-bubble {
            /* background: radial-gradient(circle at 38% 38%, #0b2572, #04103d); */
            box-shadow: 0 0 0 3px rgba(62, 170, 255, 0.28), 0 18px 50px rgba(0, 0, 0, 0.5);
        }

        .nbap-card[data-s="3"] .nbap-bubble {
            /* background: radial-gradient(circle at 38% 38%, #680650, #38022c); */
            box-shadow: 0 0 0 3px rgba(255, 77, 143, 0.28), 0 18px 50px rgba(0, 0, 0, 0.5);
        }

        .nbap-card[data-s="4"] .nbap-bubble {
            /* background: radial-gradient(circle at 38% 38%, #602900, #311500); */
            box-shadow: 0 0 0 3px rgba(255, 179, 71, 0.28), 0 18px 50px rgba(0, 0, 0, 0.5);
        }

        .nbap-card[data-s="5"] .nbap-bubble {
            /* background: radial-gradient(circle at 38% 38%, #1d4a08, #0a2302); */
            box-shadow: 0 0 0 3px rgba(168, 255, 62, 0.34), 0 18px 50px rgba(0, 0, 0, 0.5);
        }

        .nbap-bubble::after {
            content: '';
            position: absolute;
            inset: -10px;
            border-radius: 50%;
            border: 1.5px solid transparent;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .nbap-card[data-s="1"] .nbap-bubble::after {
            border-color: rgba(168, 255, 62, 0.55);
        }

        .nbap-card[data-s="2"] .nbap-bubble::after {
            border-color: rgba(62, 170, 255, 0.55);
        }

        .nbap-card[data-s="3"] .nbap-bubble::after {
            border-color: rgba(255, 77, 143, 0.55);
        }

        .nbap-card[data-s="4"] .nbap-bubble::after {
            border-color: rgba(255, 179, 71, 0.55);
        }

        .nbap-card[data-s="5"] .nbap-bubble::after {
            border-color: rgba(168, 255, 62, 0.6);
        }

        .nbap-card:hover .nbap-bubble::after {
            opacity: 1;
        }

        .nbap-bubble img {
            width: 68%;
            height: 68%;
            object-fit: contain;
            filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.45));
            display: block;
        }

        .nbap-emoji {
            font-size: 56px;
            line-height: 1;
        }

        .nbap-num {
            position: absolute;
            top: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 34px;
            height: 34px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Fredoka One', cursive;
            font-size: 0.92rem;
            color: #0d0028;
            z-index: 4;
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
        }

        .nbap-card[data-s="1"] .nbap-num {
            background: var(--nbap-c1);
        }

        .nbap-card[data-s="2"] .nbap-num {
            background: var(--nbap-c2);
        }

        .nbap-card[data-s="3"] .nbap-num {
            background: var(--nbap-c3);
        }

        .nbap-card[data-s="4"] .nbap-num {
            background: var(--nbap-c4);
        }

        .nbap-card[data-s="5"] .nbap-num {
            background: var(--nbap-c5);
        }

        .nbap-title {
            font-family: 'Fredoka One', cursive;
            font-size: clamp(0.9rem, 1.25vw, 1.08rem);
            line-height: 1.3;
            margin-bottom: 8px;
        }

        .nbap-card[data-s="1"] .nbap-title {
            color: var(--nbap-c1);
        }

        .nbap-card[data-s="2"] .nbap-title {
            color: var(--nbap-c2);
        }

        .nbap-card[data-s="3"] .nbap-title {
            color: var(--nbap-c3);
        }

        .nbap-card[data-s="4"] .nbap-title {
            color: var(--nbap-c4);
        }

        .nbap-card[data-s="5"] .nbap-title {
            color: var(--nbap-c5);
        }

        .nbap-desc {
            font-size: clamp(0.74rem, 0.92vw, 0.84rem);
            line-height: 1.65;
            color: var(--nbap-dim);
            max-width: 168px;
        }

        /* --------------------------
         BADGE BAR
      -------------------------- */
        .nbap-badges {
            position: relative;
            z-index: 3;
            max-width: 920px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.055);
            border: 1px solid rgba(255, 255, 255, 0.10);
            border-radius: 60px;
            padding: 18px 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: nowrap;
            gap: 0;
        }

        .nbap-badge {
            display: flex;
            align-items: center;
            gap: 9px;
            font-size: 0.82rem;
            font-weight: 800;
            color: var(--nbap-wh);
            white-space: nowrap;
            padding: 0 18px;
        }

        .nbap-badge:first-child {
            padding-left: 0;
        }

        .nbap-badge:last-child {
            padding-right: 0;
        }

        .nbap-bico {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            flex-shrink: 0;
        }

        .nbap-badge:nth-child(1) .nbap-bico {
            background: rgba(168, 255, 62, 0.18);
        }

        .nbap-badge:nth-child(3) .nbap-bico {
            background: rgba(62, 170, 255, 0.18);
        }

        .nbap-badge:nth-child(5) .nbap-bico {
            background: rgba(255, 77, 143, 0.18);
        }

        .nbap-badge:nth-child(7) .nbap-bico {
            background: rgba(255, 179, 71, 0.20);
        }

        .nbap-badge:nth-child(9) .nbap-bico {
            background: rgba(168, 255, 62, 0.22);
        }

        .nbap-bico img {
            height: 24px;
        }

        .nbap-bsep {
            width: 1px;
            height: 26px;
            background: rgba(255, 255, 255, 0.12);
            flex-shrink: 0;
        }

        /* --------------------------
         TABLET  769px – 1024px
         2 + 1 + 2 layout
      -------------------------- */
        


        /* --------------------------
         SMALL TABLET  541px – 768px
         vertical cards, image left
      -------------------------- */
        


        /* --------------------------
         MOBILE  = 540px
      -------------------------- */
        


        /* --------------------------
         TINY  = 360px
      -------------------------- */
        
/* --- CONTACT US CSS --- */

        /* Contact Page Specific Styles */
        .contact-hero {
            padding: 130px 5% 80px;
            text-align: left;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--dk) 0%, #260050 50%, #0d0030 100%);
        }

        .contact-hero .contact-blob {
            position: absolute;
            z-index: 0;
            opacity: 0.6;
            filter: blur(100px);
        }

        .contact-hero .contact-contact-blob-1 {
            width: 400px;
            height: 400px;
            background: var(--pk);
            top: -100px;
            left: -100px;
        }

        .contact-hero .contact-contact-blob-2 {
            width: 300px;
            height: 300px;
            background: #0000ff;
            bottom: -100px;
            right: -100px;
        }

        .contact-content-wrapper {
            margin: 0 auto;
            max-width: 900px;
            position: relative;
            z-index: 2;
        }

        .contact-title {
            font-family: 'Fredoka One', cursive;
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .contact-subtitle {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: rgba(255, 255, 255, .68);
            max-width: 600px;
            margin: 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 40px;
            max-width: 1200px;
            margin: -40px auto 80px;
            padding: 0 5%;
            position: relative;
            z-index: 10;
        }

        


        /* Contact Info Cards */
        .contact-info-col {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-info-card {
            background: white;
            padding: 30px;
            border-radius: 24px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
            border: 2px solid transparent;
            transition: 0.3s ease;
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .contact-info-card:hover {
            transform: translateY(-5px);
        }

        .contact-info-card.contact-card-email:hover {
            border-color: var(--pk);
            box-shadow: 0 10px 40px rgba(255, 107, 138, 0.15);
        }

        .contact-info-card.contact-card-phone:hover {
            border-color: var(--ye);
            box-shadow: 0 10px 40px rgba(255, 214, 0, 0.15);
        }

        .contact-info-card.contact-card-location:hover {
            border-color: var(--sk);
            box-shadow: 0 10px 40px rgba(0, 191, 255, 0.15);
        }

        .contact-info-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            flex-shrink: 0;
        }

        .contact-card-email .contact-info-icon {
            background: rgba(255, 107, 138, 0.1);
            color: var(--pk);
        }

        .contact-card-phone .contact-info-icon {
            background: rgba(255, 214, 0, 0.15);
        }

        .contact-card-location .contact-info-icon {
            background: rgba(0, 191, 255, 0.1);
            color: var(--sk);
        }

        .contact-info-details h3 {
            font-family: 'Fredoka One', cursive;
            font-size: 1.3rem;
            color: var(--dk);
            margin-bottom: 8px;
        }

        .contact-info-details p,
        .contact-info-details a {
            color: #666;
            font-size: 1.05rem;
            line-height: 1.5;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-info-details a:hover {
            color: var(--pk);
        }

        /* Contact Form */
        .contact-form-col {
            background: white;
            padding: 40px;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .contact-form-col h3 {
            font-family: 'Fredoka One', cursive;
            font-size: 1.8rem;
            color: var(--dk);
            margin-bottom: 10px;
        }

        .contact-form-col p {
            color: #666;
            margin-bottom: 30px;
        }

        .contact-form-group {
            margin-bottom: 24px;
        }

        .contact-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        


        .contact-form-label {
            display: block;
            font-family: 'Nunito', sans-serif;
            font-weight: 700;
            color: var(--dk);
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .contact-form-control {
            width: 100%;
            padding: 16px 20px;
            border-radius: 16px;
            border: 2px solid #eee;
            background: #fafafa;
            font-family: 'DM Sans', sans-serif;
            font-size: 1rem;
            color: var(--dk);
            transition: all 0.3s ease;
            outline: none;
        }

        .contact-form-control:focus {
            border-color: var(--pk);
            background: white;
            box-shadow: 0 0 0 4px rgba(255, 107, 138, 0.1);
        }

        .contact-form-control.is-invalid {
            border-color: #ef4444;
            background: #fff8f8;
        }

        .contact-field-error {
            display: block;
            margin-top: 7px;
            color: #dc2626;
            font-size: 0.86rem;
            font-weight: 800;
        }

        textarea.contact-form-control {
            resize: vertical;
            min-height: 150px;
        }

        .contact-select-group {
            position: relative;
        }

        .contact-select-group .contact-form-control {
            appearance: none;
            padding-right: 48px;
            cursor: pointer;
        }

        .contact-select-group::after {
            content: "";
            position: absolute;
            top: 50px;
            right: 18px;
            width: 10px;
            height: 10px;
            border-right: 2px solid var(--pk);
            border-bottom: 2px solid var(--pk);
            transform: translateY(-65%) rotate(45deg);
            pointer-events: none;
        }

        .contact-btn-submit {
            width: 100%;
            background: var(--btn);
            color: white;
            border: none;
            padding: 18px;
            border-radius: 50px;
            font-family: 'Fredoka One', cursive;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 20px rgba(255, 107, 138, 0.3);
        }

        .contact-btn-submit:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 107, 138, 0.4);
            background: #ff4dbe;
            /* Slightly darker pink */
        }
    
/* --- CART PAGE CSS --- */

        .cart-page {
            padding: 40px 5% 80px;
            max-width: 1100px;
            margin: 100px auto 0;
        }

        .cart-page-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }

        .cart-page-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 360px;
            gap: 22px;
            margin-top: 22px;
            align-items: start;
        }

        .cart-panel {
            background: var(--wh);
            border: 2px solid var(--border);
            border-radius: 20px;
            padding: 18px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
        }

        .cart-summary-box {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
        }

        .cart-page-items-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .cart-page-item {
            display: grid;
            grid-template-columns: 88px minmax(0, 1fr) auto;
            gap: 14px;
            align-items: center;
            padding: 16px;
            border: 1px solid var(--border);
            border-radius: 18px;
            background: #fff;
            transition: opacity .2s;
        }

        .cart-page-item.is-updating {
            opacity: .7;
            pointer-events: none;
        }

        .cart-page-item-image {
            width: 88px;
            height: 88px;
            border-radius: 16px;
            overflow: hidden;
            background: #f7f7f7;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cart-page-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cart-page-item-content {
            min-width: 0;
        }

        .cart-page-item-content h5 {
            margin: 0 0 4px;
            font-family: 'Nunito', sans-serif;
            font-size: 1rem;
            font-weight: 900;
            color: var(--dk);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .cart-page-item-price {
            margin: 0 0 10px;
            color: var(--pk);
            font-family: 'Fredoka One', cursive;
            font-size: 1rem;
        }

        .cart-page-variant {
            margin: 0 0 6px;
            color: var(--muted);
            font-family: 'DM Sans', sans-serif;
            font-size: .78rem;
            font-weight: 800;
            line-height: 1.3;
            overflow-wrap: anywhere;
        }

        /* ── Quantity Row ── */
        .cart-page-qty-row {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #f8f8f8;
            border: 1.5px solid var(--border);
            border-radius: 12px;
            padding: 4px 6px;
        }

        .cart-page-qty-row.is-updating {
            opacity: .6;
            pointer-events: none;
        }

        .cart-page-qty-btn {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            border: none;
            background: #fff;
            color: var(--dk);
            font-size: 1.1rem;
            font-weight: 900;
            line-height: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background .15s, color .15s, box-shadow .15s;
            touch-action: manipulation;
            box-shadow: 0 1px 4px rgba(0,0,0,.07);
            flex-shrink: 0;
        }

        .cart-page-qty-btn:hover:not(:disabled) {
            background: var(--pk, #e14b74);
            color: #fff;
            box-shadow: 0 2px 8px rgba(225,75,116,.25);
        }

        .cart-page-qty-btn:active:not(:disabled) {
            transform: scale(.93);
        }

        .cart-page-qty-btn:disabled {
            opacity: .45;
            cursor: wait;
        }

        .cart-page-qty-val {
            width: 42px;
            height: 32px;
            border: none;
            background: transparent;
            text-align: center;
            font-size: .95rem;
            font-weight: 800;
            font-family: 'Nunito', sans-serif;
            color: var(--dk);
            outline: none;
            -moz-appearance: textfield;
        }

        .cart-page-qty-val::-webkit-inner-spin-button,
        .cart-page-qty-val::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        /* ── Remove button ── */
        .cart-page-remove-btn {
            width: 38px;
            height: 38px;
            border-radius: 999px;
            border: 1.5px solid #ffd2de;
            background: #fff4f7;
            color: #e14b74;
            font-size: 1.2rem;
            font-weight: 900;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background .2s, border-color .2s, transform .15s;
            align-self: start;
            flex-shrink: 0;
        }

        .cart-page-remove-btn:hover {
            background: #ffe3ea;
            border-color: #ffb4c9;
            transform: scale(1.08);
        }

        /* ── Responsive ── */
        

/* Testimonials page */
.testimonials-hero {
    background:
        radial-gradient(circle at 12% 22%, rgba(255, 214, 0, .16), transparent 28%),
        radial-gradient(circle at 88% 16%, rgba(255, 77, 143, .2), transparent 34%),
        linear-gradient(135deg, #170032 0%, #321064 52%, #0d0028 100%);
    overflow: hidden;
    padding: 150px 5% 76px;
    position: relative;
}

.testimonials-hero::before,
.testimonials-hero::after {
    border-radius: 999px;
    content: '';
    pointer-events: none;
    position: absolute;
}

.testimonials-hero::before {
    animation: blobMorph 11s ease-in-out infinite;
    background: radial-gradient(circle, rgba(255, 77, 143, .14), transparent 70%);
    height: 520px;
    right: -150px;
    top: -180px;
    width: 520px;
}

.testimonials-hero::after {
    animation: blobMorph 14s ease-in-out infinite reverse;
    background: radial-gradient(circle, rgba(0, 214, 143, .1), transparent 70%);
    bottom: -150px;
    height: 420px;
    left: -120px;
    width: 420px;
}

.testimonials-hero-inner {
    align-items: center;
    display: grid;
    gap: 44px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
    margin: 0 auto;
    max-width: 1180px;
    position: relative;
    z-index: 2;
}

.testimonials-crumb {
    align-items: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    color: rgba(255, 255, 255, .86);
    display: inline-flex;
    flex-wrap: wrap;
    font-family: 'Nunito', sans-serif;
    font-size: .9rem;
    font-weight: 800;
    gap: 12px;
    margin-bottom: 22px;
    padding: 8px 14px;
}

.testimonials-crumb a {
    color: #fff;
    text-decoration: none;
}

.testimonials-badge {
    background: var(--pkl);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(255, 77, 143, .2);
    color: var(--pk);
    display: inline-flex;
    font-family: 'Nunito', sans-serif;
    font-size: .75rem;
    font-weight: 900;
    margin-bottom: 16px;
    padding: 8px 16px;
    text-transform: uppercase;
}

.testimonials-title {
    color: #fff;
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2.15rem, 5vw, 4.1rem);
    letter-spacing: 0;
    line-height: 1.08;
    margin-bottom: 18px;
    max-width: 720px;
}

.testimonials-title span {
    color: var(--ye);
}

.testimonials-sub {
    color: rgba(255, 255, 255, .78);
    font-size: 1.04rem;
    line-height: 1.75;
    margin: 0;
    max-width: 650px;
}

.testimonials-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.testimonials-btn,
.testimonials-link {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    min-height: 48px;
    padding: 0 22px;
    text-decoration: none;
}

.testimonials-btn {
    background: linear-gradient(135deg, var(--pk), var(--pkd));
    box-shadow: 0 16px 34px rgba(255, 77, 143, .32);
    color: #fff;
}

.testimonials-link {
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
}

.testimonials-score-card {
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .24);
    overflow: hidden;
    padding: 28px;
    position: relative;
}

.testimonials-score-card::before {
    background: linear-gradient(135deg, rgba(255, 77, 143, .16), rgba(124, 58, 237, .12));
    border-radius: 999px;
    content: '';
    height: 150px;
    position: absolute;
    right: -54px;
    top: -54px;
    width: 150px;
}

.score-top {
    align-items: center;
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
    position: relative;
}

.score-number {
    align-items: center;
    background: var(--pkl);
    border-radius: 22px;
    color: var(--pk);
    display: inline-flex;
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    height: 76px;
    justify-content: center;
    width: 76px;
}

.score-copy strong {
    color: var(--dk);
    display: block;
    font-family: 'Fredoka One', cursive;
    font-size: 1.25rem;
}

.score-copy span {
    color: #888;
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: .82rem;
    font-weight: 800;
    margin-top: 4px;
}

.score-stars {
    color: var(--ye);
    font-size: 1.05rem;
    letter-spacing: 2px;
    margin-top: 6px;
}

.score-bars {
    display: grid;
    gap: 10px;
    position: relative;
}

.score-row {
    align-items: center;
    color: #777;
    display: grid;
    font-family: 'Nunito', sans-serif;
    font-size: .78rem;
    font-weight: 900;
    gap: 10px;
    grid-template-columns: 36px 1fr 40px;
}

.score-track {
    background: #f2e8f0;
    border-radius: 999px;
    height: 9px;
    overflow: hidden;
}

.score-fill {
    background: linear-gradient(90deg, var(--pk), var(--ye));
    border-radius: inherit;
    height: 100%;
}

.testimonials-page {
    background:
        radial-gradient(circle at 0% 8%, rgba(255, 77, 143, .08), transparent 26%),
        radial-gradient(circle at 100% 42%, rgba(0, 214, 143, .08), transparent 28%),
        #fff;
    padding: 76px 5% 90px;
}

.testimonials-wrap {
    margin: 0 auto;
    max-width: 1180px;
}

.testimonials-section-head {
    align-items: end;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: space-between;
    margin-bottom: 28px;
}

.section-kicker {
    background: var(--mnl);
    border-radius: 999px;
    color: #009463;
    display: inline-flex;
    font-family: 'Nunito', sans-serif;
    font-size: .75rem;
    font-weight: 900;
    margin-bottom: 12px;
    padding: 7px 15px;
    text-transform: uppercase;
}

.section-title {
    color: var(--dk);
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.12;
    margin: 0;
}

.section-sub {
    color: #777;
    line-height: 1.7;
    margin: 10px 0 0;
    max-width: 620px;
}

.trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.testimonials-trust-pill {
    background: #fff;
    border: 1px solid #f3e5ef;
    border-radius: 999px;
    box-shadow: 0 10px 26px rgba(13, 0, 40, .05);
    color: var(--dk);
    display: inline-flex;
    font-family: 'Nunito', sans-serif;
    font-size: .82rem;
    font-weight: 900;
    padding: 10px 15px;
}

.featured-story {
    align-items: stretch;
    background: #fff;
    border: 1px solid #f3e5ef;
    border-radius: 30px;
    box-shadow: 0 24px 64px rgba(13, 0, 40, .08);
    display: grid;
    gap: 0;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    margin-bottom: 30px;
    overflow: hidden;
}

.featured-media {
    background:
        radial-gradient(circle at 30% 18%, rgba(255, 255, 255, .5), transparent 28%),
        linear-gradient(135deg, var(--pk), var(--pu));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 360px;
    padding: 28px;
}

.featured-avatar {
    align-items: center;
    background: rgba(255, 255, 255, .92);
    border-radius: 26px;
    color: var(--pk);
    display: inline-flex;
    font-size: 3rem;
    height: 112px;
    justify-content: center;
    width: 112px;
}

.featured-product {
    background: rgba(255, 255, 255, .92);
    border-radius: 20px;
    color: var(--dk);
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    padding: 16px;
    width: fit-content;
}

.featured-content {
    padding: clamp(28px, 4vw, 44px);
}

.featured-stars,
.review-stars,
.video-stars {
    color: var(--ye);
    letter-spacing: 2px;
}

.featured-quote {
    color: var(--dk);
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.55rem, 3vw, 2.3rem);
    line-height: 1.25;
    margin: 18px 0;
}

.featured-text {
    color: #777;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.featured-author {
    align-items: center;
    display: flex;
    gap: 14px;
}

.author-mark {
    align-items: center;
    background: var(--pkl);
    border-radius: 16px;
    color: var(--pk);
    display: inline-flex;
    font-family: 'Fredoka One', cursive;
    height: 52px;
    justify-content: center;
    width: 52px;
}

.author-name {
    color: var(--dk);
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
}

.author-meta,
.review-meta {
    color: #999;
    font-size: .82rem;
    margin-top: 2px;
}

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

.review-card {
    background: #fff;
    border: 1px solid #f3e5ef;
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(13, 0, 40, .06);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 24px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.review-card:hover {
    border-color: rgba(255, 77, 143, .28);
    box-shadow: 0 24px 58px rgba(255, 77, 143, .11);
    transform: translateY(-6px);
}

.review-tag {
    background: var(--pkl);
    border-radius: 999px;
    color: var(--pk);
    display: inline-flex;
    font-family: 'Nunito', sans-serif;
    font-size: .72rem;
    font-weight: 900;
    margin: 14px 0;
    padding: 6px 12px;
    width: fit-content;
}

.review-text {
    color: #68636d;
    flex: 1;
    line-height: 1.7;
    margin-bottom: 20px;
}

.review-author {
    align-items: center;
    border-top: 1px solid #f4e8f0;
    display: flex;
    gap: 12px;
    padding-top: 18px;
}

.review-avatar {
    align-items: center;
    border-radius: 16px;
    display: inline-flex;
    flex: 0 0 46px;
    font-family: 'Fredoka One', cursive;
    height: 46px;
    justify-content: center;
    width: 46px;
}

.review-name {
    color: var(--dk);
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
}

.video-review-section {
    margin-top: 72px;
}

.video-strip {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.video-card {
    aspect-ratio: 9 / 14;
    border-radius: 28px;
    box-shadow: 0 18px 44px rgba(13, 0, 40, .1);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 18px;
    position: relative;
}

.video-card::before {
    background: linear-gradient(180deg, rgba(13, 0, 40, .12), rgba(13, 0, 40, .72));
    content: '';
    inset: 0;
    position: absolute;
}

.video-play {
    align-items: center;
    align-self: flex-end;
    background: rgba(255, 255, 255, .22);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    position: relative;
    width: 44px;
    z-index: 1;
}

.video-info {
    position: relative;
    z-index: 1;
}

.video-name {
    font-family: 'Fredoka One', cursive;
    font-size: 1.05rem;
    margin-top: 8px;
}

.video-copy {
    color: rgba(255, 255, 255, .78);
    font-size: .84rem;
    line-height: 1.55;
    margin-top: 7px;
}

.testimonial-cta {
    align-items: center;
    background: linear-gradient(135deg, var(--dk), #321064);
    border-radius: 30px;
    color: #fff;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-top: 72px;
    overflow: hidden;
    padding: clamp(28px, 4vw, 44px);
    position: relative;
}

.testimonial-cta::after {
    background: radial-gradient(circle, rgba(255, 77, 143, .22), transparent 70%);
    content: '';
    height: 240px;
    position: absolute;
    right: -70px;
    top: -80px;
    width: 240px;
}

.testimonial-cta h2 {
    color: #fff;
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.testimonial-cta p {
    color: rgba(255, 255, 255, .74);
    line-height: 1.7;
    margin: 0;
    max-width: 640px;
    position: relative;
    z-index: 1;
}

.testimonial-cta .testimonials-btn {
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
}


/* Checkout page */
/* ── TOPBAR ── */
.checkout-topbar {
    /* background:var(--wh);border-bottom:2px solid var(--pkl); */
    padding: 0 5%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 100;
    /* box-shadow:0 2px 16px rgba(0,0,0,.06); */
}

.topbar-secure {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: var(--text-light);
    font-weight: 600
}

.topbar-secure .lock {
    font-size: 1rem
}

.topbar-steps {
    display: flex;
    align-items: center;
    gap: 0
}

.ts {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: .78rem;
    font-weight: 800;
    color: #bbb;
    padding: 0 14px;
    position: relative
}

.ts.active {
    color: var(--pk)
}

.ts.done {
    color: var(--mn)
}

.ts-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    transition: all .3s
}

.ts.active .ts-num {
    border-color: var(--pk);
    background: var(--pk);
    color: #fff
}

.ts.done .ts-num {
    border-color: var(--mn);
    background: var(--mn);
    color: #fff
}

.ts-arrow {
    color: #ddd;
    font-size: .9rem;
    padding: 0 4px
}

.topbar-steps .ts-arrow:first-child {
    display: none;
}

/* ── PROGRESS BAR ── */
.progress-strip {
    height: 4px;
    position: relative
}

.progress-fill {
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--pk), var(--pkd));
    transition: width .3s ease;
}


/* ── MAIN LAYOUT ── */
.checkout-main {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 28px;
    padding: 32px 5% 80px;
    align-items: start;
}

/* ── LEFT PANEL ── */
.left-panel {
    display: flex;
    flex-direction: column;
    gap: 22px
}

/* Cards */
.co-card {
    background: var(--wh);
    border-radius: 20px;
    border: 2px solid var(--border);
    overflow: hidden;
    transition: border-color .3s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

.co-card.active-card {
    border-color: var(--pk);
    box-shadow: 0 4px 24px rgba(255, 77, 143, .12)
}

.card-head {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-bottom: 2px solid var(--border);
    background: linear-gradient(135deg, rgba(255, 77, 143, .03), rgba(124, 58, 237, .02));
}

.active-card .card-head {
    border-color: var(--pkl)
}

.card-head-left {
    display: flex;
    align-items: center;
    gap: 12px
}

.step-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pk), var(--pkd));
    color: #fff;
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-badge.done-badge {
    background: linear-gradient(135deg, var(--mn), #00a870)
}

.card-head h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    color: var(--dk)
}

.card-head .edit-link {
    font-size: .8rem;
    color: var(--pk);
    font-weight: 700;
    cursor: pointer;
    border: none;
    background: none;
    transition: color .2s
}

.card-head .edit-link:hover {
    color: var(--pkd);
    text-decoration: underline
}

.checkout-main .card-body {
    padding: 24px
}

/* ── SECTION: LOGIN ── */
.login-done {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px
}

.login-done .user-ava {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--pkl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0
}

.login-done .user-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .95rem;
    color: var(--dk)
}

.login-done .user-phone {
    font-size: .8rem;
    color: var(--text-light)
}

/* ── SECTION: ADDRESS ── */
.addr-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap
}

.addr-tab {
    border: 2px solid var(--border);
    border-radius: 50px;
    padding: 9px 18px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .82rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all .25s;
    background: white
}

.addr-tab.active {
    border-color: var(--pk);
    background: var(--pkl);
    color: var(--pkd)
}

.addr-tab:hover {
    border-color: var(--pkl)
}

.saved-addresses {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px
}

.addr-item {
    border: 2.5px solid var(--border);
    border-radius: 16px;
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    transition: all .3s;
    position: relative;
    background: white;
}

.addr-item:hover {
    border-color: var(--pkl);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 77, 143, .08)
}

.addr-item.selected {
    border-color: var(--pk);
    background: linear-gradient(135deg, rgba(255, 77, 143, .04), rgba(255, 77, 143, .01))
}

.addr-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2.5px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all .25s
}

.addr-item.selected .addr-radio {
    border-color: var(--pk);
    background: var(--pk)
}

.addr-item.selected .addr-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white
}

.addr-info .addr-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .92rem;
    color: var(--dk);
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 8px
}

.addr-type-tag {
    background: var(--pkl);
    color: var(--pk);
    font-size: .65rem;
    font-weight: 900;
    padding: 2px 9px;
    border-radius: 20px;
    font-family: 'Nunito', sans-serif
}

.addr-info .addr-line {
    font-size: .84rem;
    color: var(--text-light);
    line-height: 1.55
}

.addr-info .addr-phone {
    font-size: .8rem;
    color: var(--text-light);
    margin-top: 3px
}

.addr-del-btn {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: .9rem;
    transition: color .2s
}

.addr-del-btn:hover {
    color: var(--or)
}

.add-addr-btn {
    border: 2.5px dashed var(--pkl);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    color: var(--pk);
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .9rem;
    background: none;
    width: 100%;
    transition: all .25s;
}

.add-addr-btn:hover {
    background: var(--pkl);
    border-style: solid
}

.checkout-main .new-addr-form {
    display: none;
    margin-top: 16px
}

.checkout-main .new-addr-form.show {
    display: block;
    animation: slideDown .3s ease
}

.checkout-main .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.checkout-main .form-grid.single {
    grid-template-columns: 1fr
}

.checkout-main .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.checkout-main .form-group label {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .78rem;
    color: var(--dk);
    letter-spacing: .3px
}

.checkout-main .form-group input,
.checkout-main .form-group select,
.checkout-main .form-group textarea {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    color: var(--dk);
    background: white;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.checkout-main .form-group input:focus,
.checkout-main .form-group select:focus,
.checkout-main .form-group textarea:focus {
    border-color: var(--pk);
    box-shadow: 0 0 0 3px rgba(255, 77, 143, .1)
}

.checkout-main .form-group input::placeholder {
    color: #bbb
}

.checkout-main .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center
}

.addr-type-row {
    display: flex;
    gap: 10px;
    margin-top: 4px
}

.addr-type-btn {
    border: 2px solid var(--border);
    border-radius: 50px;
    padding: 8px 16px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .78rem;
    cursor: pointer;
    background: white;
    color: var(--text-light);
    transition: all .25s;
    display: flex;
    align-items: center;
    gap: 6px
}

.addr-type-btn.active {
    border-color: var(--pk);
    background: var(--pkl);
    color: var(--pkd)
}

/* ── SECTION: PAYMENT ── */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.pay-method {
    border: 2.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s;
    background: white;
}

.pay-method.selected {
    border-color: var(--pk);
    box-shadow: 0 4px 16px rgba(255, 77, 143, .1)
}

.pay-head {
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: background .2s;
}

.pay-head:hover {
    background: rgba(255, 77, 143, .02)
}

.pay-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2.5px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .25s
}

.pay-method.selected .pay-radio {
    border-color: var(--pk);
    background: var(--pk)
}

.pay-method.selected .pay-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white
}

.pay-icon {
    font-size: 1.5rem;
    width: 38px;
    text-align: center
}

.pay-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .92rem;
    color: var(--dk)
}

.pay-sub {
    font-size: .76rem;
    color: var(--text-light)
}

.pay-tags {
    margin-left: auto;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end
}

.pay-tag {
    background: var(--mnl);
    color: #00a870;
    font-size: .65rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    padding: 3px 9px;
    border-radius: 20px
}

.pay-body {
    display: none;
    padding: 0 18px 18px;
    border-top: 2px solid var(--border);
    padding-top: 16px
}

.pay-method.selected .pay-body {
    display: block
}

.upi-input-row {
    display: flex;
    gap: 10px
}

.upi-input-row input {
    flex: 1;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    outline: none;
    transition: border-color .2s
}

.upi-input-row input:focus {
    border-color: var(--pk)
}

.upi-verify-btn {
    background: var(--pk);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .85rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all .2s
}

.upi-verify-btn:hover {
    background: var(--pkd)
}

.upi-apps {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap
}

.upi-app {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all .25s;
    background: white;
    font-size: .7rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    color: var(--text-light);
    min-width: 64px
}

.upi-app:hover {
    border-color: var(--pk);
    transform: translateY(-2px)
}

.upi-app.active {
    border-color: var(--pk);
    background: var(--pkl);
    color: var(--pkd)
}

.upi-app img {
    width: 28px;
}

.upi-app span {
    font-size: 1.6rem
}

.card-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px
}

.emi-options {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.emi-item {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all .25s
}

.emi-item:hover {
    border-color: var(--pkl)
}

.emi-item.active {
    border-color: var(--pk);
    background: var(--pkl)
}

.emi-item .emi-months {
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    color: var(--dk)
}

.emi-item .emi-amount {
    font-size: .82rem;
    color: var(--text-light)
}

.emi-item .emi-interest {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .75rem;
    color: var(--mn)
}

.wallets {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.wallet-item {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all .25s;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .82rem
}

.wallet-item:hover {
    border-color: var(--pkl)
}

.wallet-item.active {
    border-color: var(--pk);
    background: var(--pkl);
    color: var(--pkd)
}

.wallet-item span {
    font-size: 1.3rem
}

.netbank-select {
    width: 100%;
    margin-top: 4px
}

.cod-note {
    background: var(--yel);
    border: 2px solid var(--ye);
    border-radius: 12px;
    padding: 14px;
    font-size: .84rem;
    color: #907000;
    line-height: 1.6;
    display: flex;
    gap: 10px;
    align-items: flex-start
}

/* ── OFFER STRIP ── */
.offer-strip {
    background: linear-gradient(135deg, rgba(255, 77, 143, .08), rgba(124, 58, 237, .06));
    border: 2px solid var(--pkl);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .84rem;
    color: var(--pkd);
}

.offer-strip span {
    font-size: 1.1rem
}

/* ── RIGHT: ORDER SUMMARY ── */
.order-summary {
    background: var(--wh);
    border-radius: 20px;
    border: 2px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    position: sticky;
    top: 84px;
    overflow: hidden;
}

.os-head {
    padding: 18px 22px;
    background: linear-gradient(135deg, var(--dk2), #2d0060);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.os-head h3 {
    font-family: 'Nunito', sans-serif;
    color: white;
    font-size: 1.1rem
}

.os-head .item-count {
    background: var(--pk);
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .72rem;
    padding: 3px 10px;
    border-radius: 20px
}

.os-body {
    padding: 20px 22px
}

/* Cart Items */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 18px
}

.ci {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border)
}

.ci:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.user-ava img {
    width: 25px;
}

.ci-img {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, #FFF0FA, #F0E8FF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    border: 2px solid var(--pkl);
    overflow: hidden;
    padding: 5px
}

.ci-img img {
    width: 100% !important;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center
}

.ci-info {
    flex: 1
}

.ci-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .88rem;
    color: var(--dk);
    margin-bottom: 3px;
    line-height: 1.4
}

.ci-variant {
    font-size: .75rem;
    color: var(--text-light);
    margin-bottom: 6px
}

.checkout-main .ci-qty-row {
    display: flex;
    align-items: center;
    gap: 8px
}

.checkout-main .ci-qty-row.is-updating {
    opacity: .65;
    pointer-events: none
}

.checkout-main .qty-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    transition: all .2s;
    color: var(--dk);
    touch-action: manipulation
}

.checkout-main .qty-btn:hover {
    border-color: var(--pk);
    background: var(--pkl);
    color: var(--pk)
}

.checkout-main .qty-btn:disabled {
    opacity: .55;
    cursor: wait
}

.checkout-main .qty-val {
    width: 58px;
    height: 34px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: white;
    text-align: center;
    font-size: .95rem;
    font-weight: 800;
    color: var(--dk);
    outline: none
}

.ci-price {
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    color: var(--pk);
    text-align: right;
    flex-shrink: 0
}

.ci-old {
    font-size: .72rem;
    color: #bbb;
    text-decoration: line-through;
    font-family: 'DM Sans', sans-serif
}

/* Coupon */
.coupon-row {
    border: 2px dashed var(--pkl);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 16px;
}

.coupon-row.applied {
    border-style: solid;
    border-color: var(--mn);
    background: var(--mnl)
}

.coupon-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .8rem;
    color: var(--dk);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px
}

.coupon-input-row {
    display: flex;
    gap: 8px
}

.coupon-input {
    flex: 1;
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 10px 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: .88rem;
    outline: none;
    transition: border-color .2s;
    background: white
}

.coupon-input:focus {
    border-color: var(--pk)
}

.coupon-apply-btn {
    background: linear-gradient(135deg, var(--pk), var(--pkd));
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 16px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .82rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all .2s
}

.coupon-apply-btn:hover {
    transform: scale(1.04)
}

.coupon-applied-msg {
    font-size: .78rem;
    color: #00a870;
    font-weight: 700;
    margin-top: 6px;
    display: none
}

.coupon-applied-msg.show {
    display: flex;
    align-items: center;
    gap: 4px
}

/* Loyalty Coins */
.coin-redeem-box {
    background: #fff9f0;
    border: 1.5px solid #ffe8cc;
    border-radius: 14px;
    padding: 16px;
    margin-top: 12px;
    transition: all 0.3s;
}
.coin-redeem-box:hover {
    border-color: #ffd8a8;
    box-shadow: 0 4px 12px rgba(255, 145, 0, 0.08);
}
.coin-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #ffe8cc;
    border-radius: 5px;
    outline: none;
    margin: 15px 0;
}
.coin-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--or);
    cursor: pointer;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.coin-redeem-toggle {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-size: .8rem;
    font-weight: 800;
    color: var(--dk);
    line-height: 1.45;
}

.coin-redeem-toggle input {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: var(--or);
    flex-shrink: 0;
}

.coin-redeem-toggle.is-disabled {
    color: #aaa;
    cursor: not-allowed;
}

.coin-redeem-box.is-disabled .coin-slider {
    opacity: .45;
    cursor: not-allowed;
}

/* Price Breakdown */
.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 16px
}

.pb-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .86rem
}

.pb-label {
    color: var(--text-light)
}

.pb-val {
    font-weight: 700;
    color: var(--dk)
}

.pb-val.green {
    color: var(--mn)
}

.pb-val.red {
    color: var(--or)
}

.pb-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0
}

.pb-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.pb-total-label {
    font-family: 'Fredoka One', cursive;
    font-size: 1.05rem;
    color: var(--dk)
}

.pb-total-val {
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
    color: var(--pk)
}

.tax-note {
    font-size: .72rem;
    color: var(--text-light);
    margin-top: 2px
}

/* Savings Banner */
.savings-banner {
    background: linear-gradient(135deg, var(--mnl), rgba(0, 214, 143, .12));
    border: 2px solid var(--mn);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .82rem;
    color: #00a870;
    margin-bottom: 16px;
}

/* Place Order */
.place-order-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--pk), var(--pkd));
    border: none;
    border-radius: 16px;
    padding: 18px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.05rem;
    color: white;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 8px 28px rgba(255, 77, 143, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.place-order-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .15);
    transform: translateX(-100%);
    transition: transform .3s
}

.place-order-btn:hover::before {
    transform: translateX(0)
}

.place-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 38px rgba(255, 77, 143, .55)
}

.place-order-btn:active {
    transform: translateY(0)
}

/* Trust Badges */
.trust-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 14px;
    flex-wrap: wrap
}

.tr-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .72rem;
    color: var(--text-light);
    font-family: 'Nunito', sans-serif;
    font-weight: 700
}

/* Loyalty Points */
.loyalty-box {
    background: linear-gradient(135deg, var(--yel), rgba(255, 214, 0, .12));
    border: 2px solid var(--ye);
    border-radius: 14px;
    padding: 12px 16px;
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.loyalty-box .lb-icon {
    font-size: 1.4rem
}

.loyalty-box .lb-text {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .82rem;
    color: #907000
}

.loyalty-box .lb-pts {
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    color: var(--or)
}

/* Payment Method Continue Button */
.continue-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--pk), var(--pkd));
    border: none;
    border-radius: 14px;
    padding: 16px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .95rem;
    color: white;
    cursor: pointer;
    margin-top: 18px;
    transition: all .3s;
    box-shadow: 0 6px 22px rgba(255, 77, 143, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 77, 143, .5)
}

/* ══════════════════════════════════════════
                   PHONE / OTP MODAL
                ══════════════════════════════════════════ */
.checkout-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(13, 0, 32, .7);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}
.checkout-modal-overlay.show {
    display: flex;
    animation: fadeIn .25s ease
}

.otp-modal {
    background: white;
    border-radius: 28px;
    width: 90%;
    max-width: 420px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .35);
    animation: popUp .4s cubic-bezier(.34, 1.56, .64, 1);
    border: 2.5px solid var(--pkl);
}

/* Modal Header */
.om-header {
    background: linear-gradient(135deg, var(--pk), var(--pkd));
    padding: 28px 32px 24px;
    text-align: center;
    position: relative;
}

.om-header .om-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: rgba(255, 255, 255, .2);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.om-header .om-close:hover {
    background: rgba(255, 255, 255, .35)
}

.om-lock-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 12px;
    border: 2.5px solid rgba(255, 255, 255, .4);
}

.om-header h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 4px;
}

.om-header p {
    font-size: .82rem;
    color: rgba(255, 255, 255, .85);
    line-height: 1.5
}

/* Modal Body */
.om-body {
    padding: 28px 32px 32px
}

/* Steps inside modal */
.om-step {
    display: none
}

.om-step.active {
    display: block;
    animation: slideDown .3s ease
}

/* Phone step */
.om-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .82rem;
    color: var(--dk);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.phone-input-wrap {
    display: flex;
    border: 2.5px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .2s;
}

.phone-input-wrap:focus-within {
    border-color: var(--pk);
    box-shadow: 0 0 0 3px rgba(255, 77, 143, .1)
}

.phone-prefix {
    background: var(--grey);
    padding: 0 14px;
    display: flex;
    align-items: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .9rem;
    color: var(--dk);
    border-right: 2px solid var(--border);
    white-space: nowrap;
}

.phone-input-wrap input {
    flex: 1;
    border: none;
    padding: 14px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--dk);
    outline: none;
    background: white;
    letter-spacing: 1px;
}

.phone-input-wrap input::placeholder {
    color: #bbb;
    letter-spacing: 0
}

/* Send OTP btn */
.send-otp-btn {
    width: 100%;
    margin-top: 16px;
    background: linear-gradient(135deg, var(--pk), var(--pkd));
    border: none;
    border-radius: 14px;
    padding: 16px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 6px 20px rgba(255, 77, 143, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.send-otp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 77, 143, .5)
}

.send-otp-btn:disabled {
    opacity: .6;
    transform: none;
    cursor: not-allowed
}

/* OTP step */
.otp-sent-info {
    background: var(--mnl);
    border: 2px solid var(--mn);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: .82rem;
    color: #007a55;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.otp-boxes {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0 8px;
    width: 100%;
}

.otp-box {
    width: 46px;
    flex: 0 1 46px;
    height: 60px;
    border: 2.5px solid var(--border);
    border-radius: 14px;
    text-align: center;
    font-family: 'Fredoka One', cursive;
    font-size: 1.6rem;
    color: var(--dk);
    outline: none;
    background: white;
    transition: all .25s;
    caret-color: var(--pk);
}

.otp-box:focus {
    border-color: var(--pk);
    box-shadow: 0 0 0 3px rgba(255, 77, 143, .12);
    transform: scale(1.05)
}

.otp-box.filled {
    border-color: var(--pk);
    background: var(--pkl)
}

.otp-timer {
    text-align: center;
    font-size: .8rem;
    color: var(--text-light);
    margin-bottom: 16px
}

.otp-timer strong {
    color: var(--pk);
    font-family: 'Nunito', sans-serif;
    font-weight: 900
}

.resend-link {
    color: var(--pk);
    cursor: pointer;
    font-weight: 700;
    text-decoration: underline
}

.resend-link:hover {
    color: var(--pkd)
}

.resend-link.disabled {
    color: #bbb;
    cursor: not-allowed;
    text-decoration: none;
    pointer-events: none
}

.verify-otp-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--pk), var(--pkd));
    border: none;
    border-radius: 14px;
    padding: 16px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 6px 20px rgba(255, 77, 143, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.verify-otp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 77, 143, .5)
}

.verify-otp-btn:disabled {
    opacity: .6;
    transform: none;
    cursor: not-allowed
}

.otp-error {
    text-align: center;
    font-size: .82rem;
    color: var(--or);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    margin-top: -4px;
    margin-bottom: 8px;
    display: none;
}

.otp-error.show {
    display: block;
    animation: slideDown .2s ease
}

.change-phone-link {
    text-align: center;
    margin-top: 12px;
    font-size: .8rem;
    color: var(--text-light);
}

.change-phone-link span {
    color: var(--pk);
    cursor: pointer;
    font-weight: 700;
    text-decoration: underline
}

.change-phone-link span:hover {
    color: var(--pkd)
}

/* ── SUCCESS OVERLAY ── */
.success-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(13, 0, 32, .85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.success-overlay.show {
    display: flex;
    animation: fadeIn .3s ease
}

.success-box {
    background: white;
    border-radius: 32px;
    padding: 48px 40px;
    text-align: center;
    max-width: 440px;
    width: 90%;
    animation: popUp .5s cubic-bezier(.34, 1.56, .64, 1);
    border: 3px solid var(--pkl);
}

.success-icon {
    font-size: 4.5rem;
    margin-bottom: 16px;
    display: block;
    animation: bounce 1s ease infinite alternate
}

.success-box h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: var(--dk);
    margin-bottom: 8px
}

.success-box p {
    color: var(--text-light);
    font-size: .92rem;
    line-height: 1.7;
    margin-bottom: 24px
}

.order-id-box {
    background: var(--pkl);
    border-radius: 12px;
    padding: 12px 20px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: var(--pkd);
    margin-bottom: 24px
}

.success-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.success-btns a {
    padding: 13px 24px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .9rem;
    text-decoration: none;
    transition: all .25s;
    cursor: pointer;
    border: none
}

.btn-track {
    background: linear-gradient(135deg, var(--pk), var(--pkd));
    color: white;
    box-shadow: 0 6px 18px rgba(255, 77, 143, .35)
}

.btn-details {
    background: linear-gradient(135deg, var(--mn), #00a870);
    color: white;
    box-shadow: 0 6px 18px rgba(0, 214, 143, .35);
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.btn-home {
    background: var(--pkl);
    color: var(--pkd)
}

.btn-track:hover,
.btn-home:hover,
.btn-details:hover {
    transform: translateY(-2px)
}

.redirect-countdown {
    margin-top: 16px;
    font-size: .78rem;
    color: var(--text-light);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

.redirect-countdown strong {
    color: var(--mn);
}

/* ── KEYFRAMES ── */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes popUp {
    from {
        opacity: 0;
        transform: scale(.7)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes bounce {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(1.15)
    }
}

/* User panel address form */
.panel-personal-info .nb-back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 14px;
    color: var(--pk);
    text-decoration: none;
    transition: all 0.2s;
    background: var(--pkl);
    padding: 10px 18px;
    border-radius: 12px;
}

.panel-personal-info .nb-back-link:hover {
    transform: translateX(-4px);
    background: var(--pk);
    color: #fff;
}

.panel-personal-info .nb-form-container {
    background: #fff !important;
    border: 1px solid #edf2f7 !important;
    border-radius: 35px !important;
    padding: 50px !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03) !important;
}

.panel-personal-info .nb-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.panel-personal-info .nb-form-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-bottom: 24px !important;
}

.panel-personal-info .nb-form-group.nb-full {
    grid-column: 1 / -1;
}

.panel-personal-info .nb-type-pill {
    border: 2px solid #f1f5f9;
    border-radius: 50px;
    padding: 12px 24px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .88rem;
    cursor: pointer;
    background: #fff;
    color: #64748b;
    transition: all .25s;
}

.panel-personal-info .nb-type-pill:hover {
    border-color: #e2e8f0;
    background: #f8fafc;
}

.panel-personal-info .nb-type-pill.active {
    border-color: var(--pk);
    background: var(--pkl);
    color: var(--pkd);
}

.panel-personal-info .nb-form-label {
    display: block !important;
    margin-bottom: 10px !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.panel-personal-info .nb-form-input {
    width: 100% !important;
    border: 2px solid #f1f5f9 !important;
    background: #f8fafc !important;
    border-radius: 16px !important;
    padding: 14px 18px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    transition: all 0.2s !important;
    outline: none !important;
    font-family: 'Nunito', sans-serif !important;
}

.panel-personal-info .nb-form-input:focus {
    border-color: var(--pk) !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px var(--pkl) !important;
}

.panel-personal-info .nb-btn-save {
    flex: 2;
    height: 54px;
    border-radius: 18px;
    font-weight: 900;
    cursor: pointer;
    background: linear-gradient(135deg, var(--pk), var(--pkd)) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 8px 20px rgba(255, 77, 143, 0.3) !important;
    transition: all 0.3s !important;
    font-family: 'Nunito', sans-serif !important;
}

.panel-personal-info .nb-btn-save:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 28px rgba(255, 77, 143, 0.45) !important;
}

.panel-personal-info .nb-btn-cancel {
    flex: 1;
    height: 54px;
    border-radius: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #f1f5f9;
    color: #475569;
    transition: all 0.2s;
    font-family: 'Nunito', sans-serif !important;
}

.panel-personal-info .nb-btn-cancel:hover {
    background: #e2e8f0;
    color: #1e293b;
}

/* User panel invoices */
.panel-order.panel-invoices .pagination {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 14px 20px;
    border-top: 1.5px solid var(--border);
}

.panel-order.panel-invoices .pag-info {
    color: var(--muted);
    font-size: .78rem;
}

.panel-order.panel-invoices .pag-btns {
    display: inline-flex;
    gap: 8px;
}

.panel-order.panel-invoices .pag-btn {
    border: 1.5px solid var(--border);
    background: #fff;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 800;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.2s;
}

.panel-order.panel-invoices .pag-btn.active {
    background: var(--pkl);
    border-color: var(--pk);
    color: var(--pkd);
}

.panel-order.panel-invoices .pag-btn:not(.active):hover {
    border-color: var(--pk);
    color: var(--pk);
    background: var(--cr);
}

/* User panel coupons */
.panel-coupons .coupon-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-left: 6px solid var(--or);
    margin-bottom: 20px;
}

.panel-coupons .coupon-card.disabled {
    border-left-color: #cbd5e1;
    opacity: 0.7;
}

.panel-coupons .coupon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.panel-coupons .coupon-code {
    font-family: monospace;
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dk);
    letter-spacing: 1px;
    border: 1px dashed #cbd5e1;
}

.panel-coupons .coupon-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--or);
}

.panel-coupons .coupon-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dk);
    margin-bottom: 8px;
}

.panel-coupons .coupon-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.panel-coupons .coupon-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #94a3b8;
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
    margin-top: auto;
}

.panel-coupons .coupon-badge {
    background: #fff7ed;
    color: #c2410c;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
}

/* User panel order invoice */
.panel-order-invoice .inv-wrap * {
    box-sizing: border-box !important;
}

.panel-order-invoice .inv-wrap {
    font-family: 'Inter', 'Segoe UI', sans-serif !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 0 40px !important;
}

.panel-order-invoice .inv-wrap .inv-card {
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04) !important;
    position: relative !important;
}

.panel-order-invoice .inv-wrap .inv-card-topbar {
    height: 8px !important;
    background: linear-gradient(90deg, var(--pk), var(--pu)) !important;
    padding: 0 !important;
    border: none !important;
}

.panel-order-invoice .inv-wrap .inv-body {
    padding: 40px !important;
}

.panel-order-invoice .inv-wrap .inv-header {
    width: 100% !important;
    margin-bottom: 30px !important;
    padding-bottom: 24px !important;
    border-bottom: 2px solid #f3f4f6 !important;
    display: table !important;
    table-layout: fixed !important;
}

.panel-order-invoice .inv-wrap .inv-company-left {
    display: table-cell !important;
    vertical-align: top !important;
    width: 60% !important;
}

.panel-order-invoice .inv-wrap .inv-title-block {
    display: table-cell !important;
    vertical-align: top !important;
    text-align: right !important;
    width: 40% !important;
}

.panel-order-invoice .inv-wrap .inv-company-logo img {
    height: 50px !important;
    margin-bottom: 12px !important;
}

.panel-order-invoice .inv-wrap .inv-company-name {
    font-family: 'Fredoka One', cursive !important;
    font-size: 1.2rem !important;
    color: var(--dk) !important;
    margin-bottom: 6px !important;
}

.panel-order-invoice .inv-wrap .inv-company-meta {
    font-size: 0.85rem !important;
    color: var(--muted) !important;
    line-height: 1.6 !important;
}

.panel-order-invoice .inv-wrap .inv-legal-tag {
    display: inline-block !important;
    background: var(--pul) !important;
    color: var(--pud) !important;
    padding: 3px 10px !important;
    border-radius: 6px !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    margin-right: 6px !important;
    margin-top: 10px !important;
}

.panel-order-invoice .inv-wrap .inv-word {
    font-family: 'Fredoka One', cursive !important;
    font-size: 2.2rem !important;
    color: var(--dk) !important;
    line-height: 1 !important;
    margin-bottom: 8px !important;
}

.panel-order-invoice .inv-wrap .inv-num {
    font-size: 0.95rem !important;
    color: var(--muted) !important;
    margin-bottom: 12px !important;
}

.panel-order-invoice .inv-wrap .inv-status-pill {
    display: inline-block !important;
    padding: 5px 14px !important;
    border-radius: 8px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
}

.panel-order-invoice .inv-wrap .inv-info-grid {
    width: 100% !important;
    background: #f9f5ff !important;
    border-radius: 20px !important;
    margin-bottom: 30px !important;
    display: table !important;
}

.panel-order-invoice .inv-wrap .inv-info-grid td {
    width: 33.33% !important;
    padding: 24px !important;
    vertical-align: top !important;
    border-right: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.panel-order-invoice .inv-wrap .inv-info-grid td:last-child {
    border-right: none !important;
}

.panel-order-invoice .inv-wrap .col-label {
    font-family: 'Fredoka One', cursive !important;
    font-size: 0.8rem !important;
    color: var(--pk) !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    display: block !important;
    margin-bottom: 12px !important;
}

.panel-order-invoice .inv-wrap .inv-info-grid p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    color: var(--dk) !important;
    margin-bottom: 4px !important;
}

.panel-order-invoice .inv-wrap .inv-table-wrap {
    border: 1px solid #e5e7eb !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    margin-bottom: 30px !important;
}

.panel-order-invoice .inv-wrap .inv-table {
    width: 100% !important;
    border-collapse: collapse !important;
}

.panel-order-invoice .inv-wrap .inv-table th {
    background: #f9fafb !important;
    padding: 14px !important;
    text-align: left !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    color: var(--muted) !important;
    text-transform: uppercase !important;
    border-bottom: 1px solid #e5e7eb !important;
}

.panel-order-invoice .inv-wrap .inv-table td {
    padding: 16px 14px !important;
    border-bottom: 1px solid #f3f4f6 !important;
    vertical-align: top !important;
}

.panel-order-invoice .inv-wrap .inv-prod-name {
    font-weight: 800 !important;
    font-size: 1.05rem !important;
    color: var(--dk) !important;
    margin-bottom: 4px !important;
}

.panel-order-invoice .inv-wrap .inv-spec-pill {
    display: inline-block !important;
    background: var(--pul) !important;
    color: var(--pud) !important;
    padding: 2px 8px !important;
    border-radius: 6px !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    margin-right: 5px !important;
    margin-top: 5px !important;
}

.panel-order-invoice .inv-wrap .inv-amount {
    font-weight: 800 !important;
}

.panel-order-invoice .inv-wrap .inv-totals-box {
    display: inline-block !important;
    width: 320px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 16px !important;
    overflow: hidden !important;
}

.panel-order-invoice .inv-wrap .inv-total-line {
    display: flex !important;
    justify-content: space-between !important;
    padding: 12px 20px !important;
    font-size: 0.95rem !important;
    border-bottom: 1px solid #f3f4f6 !important;
}

.panel-order-invoice .inv-wrap .inv-total-line:last-child {
    border-bottom: none !important;
}

.panel-order-invoice .inv-wrap .inv-total-line.grand-tot {
    background: linear-gradient(135deg, #fdf2f8, #f5f3ff) !important;
    padding: 18px 20px !important;
    font-family: 'Fredoka One', cursive !important;
    font-size: 1.4rem !important;
    color: var(--pu) !important;
}

/* User panel returns */
.panel-returns .media-preview {
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.panel-returns .media-preview:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border-color: var(--pk) !important;
}

.panel-returns .return-item-card {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    transition: box-shadow 0.3s;
}

.panel-returns .return-item-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

/* User panel reviews */
.panel-reviews .compact-list-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 12px;
    transition: all 0.2s;
}

.panel-reviews .compact-list-item:hover {
    border-color: var(--pk);
    background: #fffcfd;
}

.panel-reviews .star-opt {
    transition: all 0.2s ease;
    display: inline-block;
    cursor: pointer;
    font-size: 1.5rem;
    color: #eee;
}

.panel-reviews .review-img-upload {
    position: relative;
    width: 100%;
    height: 80px;
    border: 2px dashed #eee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    cursor: pointer;
}

.panel-reviews .review-status-badge {
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.panel-reviews .p-img-compact {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.panel-reviews .history-card:hover {
    transform: translateY(-4px);
    border-color: var(--pk);
    box-shadow: 0 10px 25px rgba(255, 77, 143, 0.08) !important;
}

/* User panel support ticket detail */
.panel-tickets-show .page {
    animation: fadeUp 0.5s ease-out forwards;
    background: #f4f7f6;
    min-height: 100vh;
    padding-bottom: 40px;
}

.panel-tickets-show .header-box {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 25px 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.panel-tickets-show .ticket-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
    color: #1f2937;
    margin: 0 0 10px 0;
}

.panel-tickets-show .status-badge {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-right: 10px;
}

.panel-tickets-show .status-open {
    background: #e0f2fe;
    color: #0284c7;
}

.panel-tickets-show .status-in_progress {
    background: #fef9c3;
    color: #ca8a04;
}

.panel-tickets-show .status-resolved,
.panel-tickets-show .status-closed {
    background: #dcfce7;
    color: #16a34a;
}

.panel-tickets-show .priority-high {
    background: #fee2e2;
    color: #dc2626;
}

.panel-tickets-show .priority-medium {
    background: #ffedd5;
    color: #ea580c;
}

.panel-tickets-show .priority-low {
    background: #f3f4f6;
    color: #4b5563;
}

.panel-tickets-show .ticket-replies {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.panel-tickets-show .reply-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.panel-tickets-show .reply-header {
    padding: 15px 20px;
    background: #fafbfc;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-tickets-show .reply-author {
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-tickets-show .reply-author.admin-author {
    color: #00a870;
}

.panel-tickets-show .reply-time {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 600;
}

.panel-tickets-show .reply-body {
    padding: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1f2937;
    white-space: pre-wrap;
}

.panel-tickets-show .reply-box {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 25px;
}

.panel-tickets-show .form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s;
    margin-bottom: 15px;
    resize: vertical;
}

.panel-tickets-show .form-control:focus {
    border-color: #00a870;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 168, 112, 0.1);
}

.panel-tickets-show .btn-submit {
    background: #00a870;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 12px;
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.panel-tickets-show .btn-submit:hover {
    background: #008a5b;
    transform: translateY(-2px);
}

.panel-tickets-show .back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 20px;
    transition: 0.3s;
}

.panel-tickets-show .back-btn:hover {
    color: #1f2937;
}

/* User panel support tickets */
.panel-tickets .page {
    animation: fadeUp 0.5s ease-out forwards;
    background: #fff;
    min-height: 100vh;
}

.panel-tickets .box {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    margin-bottom: 30px;
}

.panel-tickets .box-head {
    padding: 22px 28px;
    border-bottom: 2px solid #e5e7eb;
    background: #fafbfc;
}

.panel-tickets .box-head h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.15rem;
    color: #1f2937;
    margin: 0;
}

.panel-tickets .form-group {
    margin-bottom: 20px;
}

.panel-tickets label {
    display: block;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.panel-tickets .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.panel-tickets .form-control:focus {
    border-color: #00a870;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 168, 112, 0.1);
}

.panel-tickets .btn-submit {
    background: #00a870;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.panel-tickets .btn-submit:hover {
    background: #008a5b;
    transform: translateY(-2px);
}

.panel-tickets .orders-table {
    width: 100%;
    border-collapse: collapse;
}

.panel-tickets .orders-table th {
    padding: 16px 28px;
    text-align: left;
    background: #f8f9fa;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #6b7280;
    font-weight: 800;
    border-bottom: 2px solid #e5e7eb;
}

.panel-tickets .orders-table td {
    padding: 20px 28px;
    border-bottom: 1.5px solid #e5e7eb;
    font-size: 0.88rem;
}

.panel-tickets .status-badge {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.panel-tickets .status-open {
    background: #e0f2fe;
    color: #0284c7;
}

.panel-tickets .status-in_progress {
    background: #fef9c3;
    color: #ca8a04;
}

.panel-tickets .status-resolved,
.panel-tickets .status-closed {
    background: #dcfce7;
    color: #16a34a;
}

.panel-tickets .priority-high {
    background: #fee2e2;
    color: #dc2626;
}

.panel-tickets .priority-medium {
    background: #ffedd5;
    color: #ea580c;
}

.panel-tickets .priority-low {
    background: #f3f4f6;
    color: #4b5563;
}

/* User panel wallet */
.panel-wallet .page {
    animation: fadeUp 0.5s ease-out forwards;
    background: #fff;
    min-height: 100vh;
}

.panel-wallet .welcome-banner {
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.2);
}

.panel-wallet .welcome-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.panel-wallet .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: -40px !important;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.panel-wallet .stat-card {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.panel-wallet .stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--or);
}

.panel-wallet .sc-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.panel-wallet .sc-info .num {
    font-family: 'Fredoka One', cursive;
    font-size: 2.2rem;
    color: var(--dk);
    line-height: 1;
}

.panel-wallet .sc-info .lbl {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 700;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.panel-wallet .box {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.panel-wallet .box-head {
    padding: 22px 28px;
    border-bottom: 2px solid var(--border);
    background: #fafbfc;
}

.panel-wallet .box-head h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.15rem;
    color: var(--dk);
    margin: 0;
}

.panel-wallet .orders-table {
    width: 100%;
    border-collapse: collapse;
}

.panel-wallet .orders-table th {
    padding: 16px 28px;
    text-align: left;
    background: #f8f9fa;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--muted);
    font-weight: 800;
    border-bottom: 2px solid var(--border);
}

.panel-wallet .orders-table td {
    padding: 20px 28px;
    border-bottom: 1.5px solid var(--border);
    font-size: 0.88rem;
}

.panel-wallet .status-badge {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.panel-wallet .s-delivered {
    background: #e6fcf5;
    color: #087f5b;
    border: 1px solid #c3fae8;
}

.panel-wallet .s-cancelled {
    background: #fff5f5;
    color: #c92a2a;
    border: 1px solid #ffe3e3;
}

.panel-wallet .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 35px;
}

.panel-wallet .info-item h4 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    color: var(--dk);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-wallet .info-item p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* Product immunity answer section */
.nb__section {
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    padding: clamp(10px, 1.4vw, 18px) clamp(14px, 2vw, 28px) 14px;
    color: #123f18;
    background: #fff;
    font-family: "Nunito", Arial, sans-serif;
    border-radius: 32px;
}

.nb__section *,
.nb__section *::before,
.nb__section *::after {
    box-sizing: border-box;
}

.nb__section::before,
.nb__section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: none;
    background-size: 32px 18px, 34px 20px, 36px 20px, 32px 18px;
    filter: blur(.1px);
    opacity: 0;
}

.nb__leaf-cluster {
    position: absolute;
    width: 285px;
    height: 188px;
    pointer-events: none;
    z-index: 0;
    background: url("/img/la-leaves.png") center / contain no-repeat;
}

.nb__leaf-cluster--tl {
    left: -26px;
    top: -18px;
    transform: rotate(-16deg);
}

.nb__leaf-cluster--tr {
    right: -24px;
    top: -18px;
    transform: scaleX(-1) rotate(-16deg);
}

.nb__leaf-cluster--bl {
    left: -30px;
    bottom: 210px;
    transform: rotate(18deg);
    opacity: .86;
}

.nb__leaf-cluster--br {
    right: -26px;
    bottom: 188px;
    transform: scaleX(-1) rotate(18deg);
    opacity: .86;
}

.nb__wrap {
    position: relative;
    z-index: 1;
    max-width: 1480px;
    margin: 0 auto;
    width: 100%;
}

.nb__headline {
    text-align: center;
    margin: 0 auto 8px;
}

.nb__brand-title {
    margin-top: -5px;
    font-family: "Fredoka", "Nunito", sans-serif;
    font-size: clamp(48px, 6.5vw, 72px);
    font-weight: 600;
    letter-spacing: -1px;
    line-height: .82;
    color: #174f17;
    text-shadow: 0 5px 0 rgba(9, 51, 12, .08), 0 12px 22px rgba(14, 69, 18, .12);
}

.nb__product-title {
    margin-top: 4px;
    font-family: "Fredoka", "Nunito", sans-serif;
    font-size: clamp(24px, 3vw, 35px);
    line-height: .95;
    color: #ef7907;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 0 4px 0 rgba(255, 169, 53, .2);
}

.nb__tagline {
    margin-top: 6px;
    font-size: clamp(14px, 1.35vw, 20px);
    color: #124619;
    font-weight: 800;
    line-height: 1.25;
}

.nb__tagline span {
    color: #f0820d;
    margin: 0 13px;
}

.nb__main-grid {
    display: grid;
    grid-template-columns: minmax(250px, 360px) minmax(380px, 560px) minmax(270px, 370px);
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: -6px;
    width: 100%;
}

.nb__corner-label,
.nb__side-label {
    font-family: "Fredoka", "Nunito", sans-serif;
    font-size: clamp(18px, 1.55vw, 25px);
    font-weight: 700;
    line-height: 1.12;
    color: #164f1b;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.nb__corner-label {
    margin-left: 110px;
    margin-bottom: 14px;
    transform: rotate(-7deg);
}

.nb__side-label {
    margin: 0 0 12px 54px;
    transform: rotate(-5deg);
}

.nb__corner-label::after,
.nb__side-label::after {
    content: "";
    display: block;
    width: 88px;
    height: 13px;
    margin-top: 6px;
    background:
        linear-gradient(#164f1b, #164f1b) left 3px top 3px / 70px 3px no-repeat,
        linear-gradient(#164f1b, #164f1b) left 18px top 10px / 58px 3px no-repeat;
    border-radius: 10px;
}

.nb__ingredients-col,
.nb__features-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.nb__ingredients-col {
    gap: 13px;
    padding-top: 0;
}

.nb__ingredient-card {
    position: relative;
    --arrow-color: #ef7907;
    --arrow-top: 50%;
    min-height: 102px;
    display: grid;
    grid-template-columns: 88px 1fr;
    align-items: center;
    gap: 17px;
    padding: 9px 20px 9px 10px;
    border: 1px solid rgba(86, 93, 33, .2);
    border-radius: 76px;
    background: rgba(255, 254, 238, .78);
    box-shadow: 0 12px 24px rgba(70, 62, 27, .11), inset 0 1px 0 rgba(255, 255, 255, .9);
}

.nb__ingredient-card::after {
    content: "";
    position: absolute;
    right: -116px;
    top: var(--arrow-top);
    width: 112px;
    height: 0;
    border-top: 2px dashed var(--arrow-color);
    opacity: .9;
    transform: translateY(-50%);
}

.nb__ingredient-card:nth-of-type(2) {
    --arrow-color: #1b6a25;
}

.nb__ingredient-card::before {
    content: "";
    position: absolute;
    right: -124px;
    top: var(--arrow-top);
    width: 0;
    height: 0;
    border-left: 10px solid var(--arrow-color);
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    opacity: .95;
    transform: translateY(-50%);
}

.nb__ingredient-img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 38% 30%, #fff 0 20%, #f6eecb 58%, #e5d695 100%);
    border: 3px solid rgba(255, 255, 255, .92);
    box-shadow: 0 7px 18px rgba(72, 63, 27, .18);
    font-size: 58px;
}

.nb__ingredient-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nb__ingredient-text h4 {
    font-family: "Fredoka", "Nunito", sans-serif;
    font-size: clamp(17px, 1.3vw, 22px);
    color: #ef7907;
    font-weight: 700;
    margin-bottom: 8px;
}

.nb__ingredient-card:nth-child(3) h4 {
    color: #164f1b;
}

.nb__ingredient-text p {
    color: #141414;
    font-size: clamp(13px, 1vw, 16px);
    line-height: 1.45;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.nb__product-center {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 420px;
    padding-top: 4px;
}

.nb__product-center::before {
    content: "";
    position: absolute;
    width: 76%;
    height: 54%;
    top: 20%;
    left: 12%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 211, 44, .38), rgba(255, 211, 44, 0) 67%);
    z-index: -1;
}

.nb__product-image {
    display: block;
    width: min(100%, 390px);
    height: 430px;
    object-fit: contain;
    filter: drop-shadow(0 24px 24px rgba(84, 54, 0, .22));
}

.nb__features-col {
    gap: 0;
}

.nb__feature-panel {
    padding: 16px 18px;
    border-radius: 34px;
    border: 1px solid rgba(83, 88, 35, .24);
    background: rgba(255, 254, 237, .72);
    box-shadow: 0 14px 30px rgba(70, 62, 27, .1), inset 0 1px 0 rgba(255, 255, 255, .9);
}

.nb__feature-card {
    display: grid;
    grid-template-columns: 66px 1fr;
    align-items: center;
    gap: 12px;
    padding: 12px 2px;
    border-bottom: 1px solid rgba(97, 88, 40, .22);
}

.nb__feature-card:first-child {
    padding-top: 2px;
}

.nb__feature-card:last-child {
    border-bottom: 0;
    padding-bottom: 2px;
}

.nb__feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff8de;
    border: 2px solid rgba(122, 112, 46, .22);
    box-shadow: 0 4px 11px rgba(50, 55, 22, .12);
    color: #257018;
    font-size: 27px;
    font-weight: 900;
}

.nb__feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.nb__feature-card:nth-child(3) .nb__feature-icon {
    color: #fff;
    background: #fb850e;
    border-color: #ffa83a;
}

.nb__feature-text h4 {
    font-family: "Fredoka", "Nunito", sans-serif;
    font-size: clamp(16px, 1.15vw, 19px);
    color: #164f1b;
    font-weight: 700;
    margin-bottom: 6px;
}

.nb__feature-card:nth-child(3) h4 {
    color: #ef7907;
}

.nb__feature-text p {
    color: #161616;
    font-size: clamp(13px, .95vw, 15px);
    line-height: 1.4;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.nb__ingredient-shelf {
    position: relative;
    z-index: 2;
    max-width: 770px;
    height: 59px;
    margin: -34px auto 0;
    padding: 0 clamp(24px, 7vw, 118px);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    pointer-events: none;
}

.nb__ingredient-shelf::before {
    content: "";
    position: absolute;
    left: 7%;
    right: 7%;
    bottom: 3px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(106, 90, 33, .16), rgba(106, 90, 33, 0) 70%);
    z-index: -1;
}

.nb__shelf-img {
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 13px 13px rgba(69, 51, 15, .18));
    user-select: none;
}

.nb__shelf-img--amla {
    width: clamp(145px, 16vw, 245px);
    max-height: 96px;
    mix-blend-mode: multiply;
    transform: translateY(5px) rotate(-3deg);
}

.nb__shelf-img--turmeric {
    width: clamp(150px, 17vw, 260px);
    max-height: 104px;
    transform: translateY(4px) rotate(3deg);
}

.nb__trust-strip {
    max-width: 950px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    overflow: hidden;
    border-radius: 999px;
    border: 1px solid rgba(102, 92, 43, .18);
    background: rgba(255, 254, 237, .82);
    box-shadow: 0 10px 22px rgba(69, 60, 23, .1);
}

.nb__trust-badge {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 7px 16px;
    border-right: 1px dashed rgba(83, 81, 34, .42);
    color: #17571d;
    font-size: clamp(12px, .92vw, 15px);
    font-weight: 900;
    line-height: 1.18;
    text-transform: uppercase;
}

.nb__trust-badge:last-child {
    border-right: 0;
}

.nb__trust-badge-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 2px solid #1b6a25;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 22px;
    background: #fff9e4;
    color: #1b6a25;
}

.nb__trust-badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
