/* ══════════════════════════════════════════════════════════════
   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;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Hero visual side */
.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: -55px;
}

/* 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;
}

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

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

.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: center;
}

.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
}

.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 auto 24px;
    line-height: 1.7;
    position: relative;
    z-index: 2
}

.hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    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
}

.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: #ffffff
}

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

h1.htitle {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2.4rem, 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(111, 241, 82), #18a31b);
    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: 440px;

}

.jar-body2 img {
    width: 410px;

}


.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: 50px;
    padding: 9px 17px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .76rem;
    box-shadow: 0 6px 22px rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    animation: floatBB 4s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, .9)
}

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

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

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

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

.bb5 {
    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: 24px;
    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%;
}

.p-image img {
    width: 70%;
    height: 100%;
    object-fit: cover;
    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;
}

/* For product page main image - no absolute positioning needed */
.main-img-wrap .p-image img {
    position: static;
    display: block;
}

.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;
}

.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: center;
}

.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);
}

.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 5%;
    background: var(--cr);
}

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

.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;
}

.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 {
    height: 333px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.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-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: 22px 24px 26px;
}

.pc-stars {
    color: var(--ye);
    font-size: .9rem;
    margin-bottom: 6px;
}

.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;
}


/* add ooo */

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

.pc-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 14px;
}

/* Pills */
.pc-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8e0e9;
    color: #393941;
    padding: 3px 3px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    white-space: nowrap;
    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;
}

.pc-price {
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
    color: var(--dk);
}

.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;
}

.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: 60px;
    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: var(--btn);
    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: #000;
    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 {
    max-width: 230px;
    width: 100%;
    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: center;
    margin-top: 48px;
}

.transform-visual img {
    height: 498px;
}
.transform-visual {
    text-align: center;
    position: relative;
}

.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: start;
}

.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;
}

.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: 80px 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: 210px;
    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;
}

/* About Us Page  */
