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

h1, h2 {
    font-family: 'Poppins', system-ui, sans-serif;
    letter-spacing: -0.5px;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #ffffff;
    color: #222222;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}


.logo {
    width: auto;
    height: 70%;
    max-width: 90%;
    object-fit: contain;
    z-index: 20;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
    margin-top: -15px;
}

/* =====================
   SPLASH SCREEN
   ===================== */
#splash-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgb(15, 181, 253), rgb(116, 196, 251), rgb(165, 211, 249), rgb(205, 226, 247), rgb(242, 242, 244));
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 2.2s ease, visibility 2.2s ease;
}

#splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}


/* =====================
   HEADER BAR
   ===================== */
.header-bar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    max-width: 900px;
    height: 50px;
    border-radius: 16px;
    z-index: 99;
    opacity: 0;
    display: flex;
    align-items: center;
    padding: 0 25px;

    --glass-light:  rgba(180, 180, 190, 0.10);
    --glass-border: rgba(255, 255, 255, 0.18);
    background: color-mix(in srgb, var(--glass-light), transparent 30%);
    backdrop-filter: blur(18px) saturate(160%) url(#liquid-glass-nav);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid var(--glass-border);
    box-shadow:
        inset  2px  3px  0px -2px rgba(255,255,255,0.70),
        inset -2px -2px  0px -1px rgba(255,255,255,0.30),
        inset -3px -8px  1px -6px rgba(255,255,255,0.20),
        inset  0px  3px  4px -2px rgba(0,0,0,0.15),
        inset  2px -6px  1px -4px rgba(0,0,0,0.08),
        0px  2px  8px  0px rgba(0,0,0,0.18),
        0px  8px  24px 0px rgba(0,0,0,0.12);
    transition: opacity 0.6s ease, background 300ms ease, box-shadow 300ms ease;
}

.header-bar.visible { opacity: 1; }

.header-bar.scrolled {
    background: color-mix(in srgb, rgba(255,255,255,0.18), transparent 20%);
    box-shadow:
        inset  2px  3px  0px -2px rgba(255,255,255,0.80),
        inset -2px -2px  0px -1px rgba(255,255,255,0.35),
        inset -3px -8px  1px -6px rgba(255,255,255,0.25),
        inset  0px  3px  4px -2px rgba(0,0,0,0.20),
        inset  2px -6px  1px -4px rgba(0,0,0,0.10),
        0px  4px  12px 0px rgba(0,0,0,0.22),
        0px 10px  30px 0px rgba(0,0,0,0.16);
}

.spacer { flex: 1; }

.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
}

.nav-links a {
    text-decoration: none;
    color: var(--nav-text-color, white);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.4px;
    padding: 7px 14px;
    border-radius: 8px;
    transition: background 0.2s;
}
.nav-links a:hover {
    background: rgba(255, 255, 255, 0.10);
}

.cart-icon {
    margin-right: 20px;
    display: flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #1a73e8;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.9);
    box-shadow: 0 2px 6px rgba(26,115,232,0.5);
    transition: transform 0.2s, opacity 0.2s;
}
.cart-badge.hidden {
    opacity: 0;
    transform: scale(0.5);
    pointer-events: none;
}

/* =====================
   CART DRAWER
   ===================== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.cart-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 390px;
    max-width: 100vw;
    height: 100%;
    z-index: 200;
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, rgba(219,234,255,0.88), rgba(235,244,255,0.84));
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border-left: 1px solid rgba(147,197,253,0.4);
    box-shadow: -8px 0 48px rgba(26, 115, 232, 0.12), -2px 0 0 0 rgba(26,115,232,0.08);
    border-top: 3px solid transparent;
    background-clip: padding-box;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0, 0.2, 1);
}
.cart-drawer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #60a5fa, #1a73e8, #1252c4, #1a73e8, #60a5fa);
    background-size: 200% 100%;
    animation: gradient-sweep 3s ease infinite;
}
.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.cart-drawer-header h2 {
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.3px;
}

.cart-close {
    background: rgba(0, 0, 0, 0.06);
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    transition: background 0.2s;
}
.cart-close:hover { background: rgba(0, 0, 0, 0.12); }

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(147,197,253,0.35);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 2px 12px rgba(26,115,232,0.06);
    position: relative;
}

.cart-item-img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    border-radius: 10px;
    background: rgba(219,234,254,0.6);
    flex-shrink: 0;
}

.cart-item-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.06);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #888;
    transition: background 0.15s, color 0.15s;
    font-size: 0.8rem;
    line-height: 1;
}
.cart-item-remove:hover { background: rgba(239,68,68,0.1); color: #ef4444; }

.cart-item-info {
    flex: 1;
    min-width: 0;
}
.cart-item-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: #111;
    margin-bottom: 2px;
}
.cart-item-sub {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 8px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.qty-btn {
    background: rgba(219,234,254,0.8);
    border: 1px solid rgba(147,197,253,0.5);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a73e8;
    font-weight: 700;
    transition: background 0.15s, border-color 0.15s;
}
.qty-btn:hover { background: rgba(26,115,232,0.15); border-color: rgba(26,115,232,0.4); }
.qty-val {
    font-size: 0.88rem;
    font-weight: 600;
    min-width: 18px;
    text-align: center;
    color: #111;
}

.cart-item-price {
    font-weight: 800;
    font-size: 0.88rem;
    color: #1a73e8;
    margin-left: auto;
}

.cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #94a3b8;
    font-size: 0.95rem;
    padding: 40px 24px;
}
.cart-empty-shop {
    margin-top: 4px;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.cart-footer {
    padding: 18px 24px 28px;
    border-top: 1px solid rgba(147,197,253,0.3);
    background: rgba(255,255,255,0.3);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.95rem;
    font-weight: 600;
    color: #222;
}
#cart-total { color: #1a73e8; font-size: 1.1rem; font-weight: 800; }

.cart-per-serving {
    font-size: 0.75rem;
    color: #64748b;
    text-align: right;
    margin-top: -6px;
}

.cart-shipping {
    font-size: 0.78rem;
    font-weight: 600;
    color: #166534;
    background: rgba(134,239,172,0.2);
    border: 1px solid rgba(134,239,172,0.4);
    border-radius: 100px;
    padding: 5px 12px;
    text-align: center;
}

.cart-checkout {
    display: block;
    text-align: center;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
}

.cart-continue {
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    font-weight: 600;
    transition: color 0.15s;
    padding: 2px 0;
}
.cart-continue:hover { color: #1a73e8; }

.shop-button {
    padding: 8px 16px;
    background: linear-gradient(160deg, #4f9cf9 0%, #1a73e8 50%, #1252c4 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(26, 115, 232, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    animation: btn-pulse 2.5s ease-in-out infinite;
    transition: transform 0.15s, box-shadow 0.3s;
}
.shop-button:hover {
    background: linear-gradient(160deg, #60a5fa 0%, #2563eb 50%, #1d4ed8 100%);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    animation-play-state: paused;
}

@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 4px 18px rgba(26, 115, 232, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.22); }
    50%       { box-shadow: 0 6px 28px rgba(37, 99, 235, 0.7), 0 0 50px rgba(96, 165, 250, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.22); }
}

/* ── Gradient Button — animated shifting blue gradient ── */
@keyframes gradient-sweep {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-button {
    position: relative;
    color: #fff;
    text-decoration: none;
    box-shadow: none;
    background: linear-gradient(135deg, #0d47a1, #1565c0, #1a73e8, #3b82f6, #60a5fa, #3b82f6, #1a73e8, #1565c0, #0d47a1);
    background-size: 300% 100%;
    animation: gradient-sweep 3s ease infinite;
    transition: transform 0.15s, box-shadow 0.2s;
}

.gradient-button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(135deg, #60a5fa, #bae6fd, #93c5fd, #60a5fa);
    background-size: 300% 100%;
    animation: gradient-sweep 3s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.gradient-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(26, 115, 232, 0.5);
}

.nav-logo {
    width: 130px;
    height: auto;
    max-height: 44px;
    object-fit: contain;
    cursor: pointer;
}

/* =====================
   HERO SECTION
   ===================== */
.hero-section {
    position: relative;
    min-height: 160vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 140px 80px 200px;
    background: linear-gradient(rgb(10, 153, 236), rgb(111, 174, 239), rgb(162, 197, 241), rgb(204, 220, 243), rgb(244, 243, 245));
    box-sizing: border-box;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 28%;
    background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
    pointer-events: none;
    z-index: 5;
}

.hero-content {
    flex: 1;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 6;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-align: center;
}

.hero-blue {
    color: #ffffff;
    text-shadow: 0 4px 28px rgba(255, 255, 255, 0.5), 0 2px 8px rgba(0, 0, 0, 0.35);
    display: inline-block;
}

.hero-gold {
    background: linear-gradient(135deg, #ffe066 0%, #ffc200 40%, #ffdd57 70%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 18px rgba(255, 185, 0, 0.75)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
    display: inline-block;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    margin-bottom: 36px;
    text-align: center;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-image-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
}

.hero-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.25));
}

.hero-image:hover { transform: scale(1.03); }

/* =====================
   FLOATING POUCHES
   ===================== */
.pouch-scene {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.pouch-float {
    position: absolute;
    width: 70px;
    height: auto;
    pointer-events: auto;
    cursor: grab;
    will-change: transform;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.22));
    animation: pouchBob var(--bob-duration, 3s) ease-in-out infinite;
    animation-delay: var(--bob-delay, 0s);
    user-select: none;
    -webkit-user-drag: none;
    touch-action: none;
}

.pouch-float:active { cursor: grabbing; }

.pouch-float.is-dragging { animation-play-state: paused; }

/* Orbit container — centered at can center (0×0 point), rotates whole ring */
.ring-orbit {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

@keyframes orbitCW  { from { transform: rotate(0deg);   } to { transform: rotate(360deg);  } }
@keyframes orbitCCW { from { transform: rotate(0deg);   } to { transform: rotate(-360deg); } }

@keyframes pouchBob {
    0%   { transform: rotate(var(--rotate, 0deg)) translateY(0px);    }
    50%  { transform: rotate(var(--rotate, 0deg)) translateY(-14px);  }
    100% { transform: rotate(var(--rotate, 0deg)) translateY(0px);    }
}

/* =====================
   BUTTONS
   ===================== */
.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(160deg, #4f9cf9 0%, #1a73e8 50%, #1252c4 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 18px rgba(26, 115, 232, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    animation: btn-pulse 2.5s ease-in-out infinite;
    transition: transform 0.15s, box-shadow 0.3s;
}
.btn-primary:hover {
    background: linear-gradient(160deg, #60a5fa 0%, #2563eb 50%, #1d4ed8 100%);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.7), 0 0 60px rgba(96, 165, 250, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    animation-play-state: paused;
}

.btn-outline {
    display: inline-block;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    transition: background 0.2s;
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.28); }

.btn-white {
    display: inline-block;
    padding: 16px 36px;
    background: #fff;
    color: #1a73e8;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.15s, box-shadow 0.15s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26, 115, 232, 0.3), 0 0 40px rgba(96, 165, 250, 0.15); }

.btn-large { padding: 18px 44px; font-size: 1.15rem; }

/* =====================
   SECTION COMMONS
   ===================== */
.section-what,
.section-how,
.section-why,
.section-benefits,
.section-flavors,
.section-science,
.section-reviews,
.section-faq {
    width: 100%;
    padding: 100px 40px;
}

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

.section-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #1a73e8;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-inner h2 {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1565c0 0%, #1e90ff 40%, #5ab4ff 72%, #1e90ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-sub {
    font-size: 1.05rem;
    color: #555;
    max-width: 620px;
    line-height: 1.75;
    margin-bottom: 52px;
}

/* =====================
   WHAT IS ZELYTE
   ===================== */
.section-what { background: #fff; margin-top: -120px; padding-top: 160px; }

.what-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 52px;
}

.what-card {
    background: #f6f9ff;
    border: 1px solid #e0eaff;
    border-radius: 16px;
    padding: 32px 28px;
}

.what-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.what-card strong {
    display: block;
    font-size: 1.1rem;
    color: #1e90ff;
    margin-bottom: 10px;
}

.what-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.65;
}

/* =====================
   HOW IT WORKS
   ===================== */
.section-how {
    background-color: #001e4a;
    background-image: linear-gradient(rgba(0, 25, 60, 0.48), rgba(0, 25, 60, 0.48)), url('Ocean.jpg');
    background-size: auto, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    position: relative;
}


.glass-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 100px;
    padding: 10px 28px;
    margin-bottom: 14px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.how-label-pill {
    display: block;
    text-align: center;
    width: fit-content;
    margin: 0 auto 14px;
}

.how-label-pill .section-label {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 1.1rem;
    letter-spacing: 4px;
}

.steps {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 52px;
}

.step {
    flex: 1;
    padding: 40px 36px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(26, 115, 232, 0.08);
}

.step-divider {
    width: 40px;
    height: 2px;
    background: #1a73e8;
    opacity: 0.25;
    align-self: center;
    flex-shrink: 0;
}

.step-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a73e8;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e90ff;
    margin-bottom: 12px;
}

.step p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.65;
}

/* =====================
   WHY NOT DRINKS
   ===================== */
.section-why { background: #fff; }

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 52px;
    max-width: 820px;
}

.comparison-col {
    border-radius: 16px;
    padding: 32px;
    border: 2px solid #e5e5e5;
}

.zelyte-col {
    border-color: #1a73e8;
    background: #f6f9ff;
}

.comparison-header {
    font-size: 1.05rem;
    font-weight: 700;
    color: #777;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8e8e8;
}

.zelyte-header {
    color: #1a73e8;
    border-bottom-color: #d0e2fc;
}

.comparison-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.comparison-list li {
    font-size: 0.95rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

.x { color: #e53935; font-weight: 700; font-style: normal; }
.check { color: #1a73e8; font-weight: 700; font-style: normal; }

/* =====================
   BENEFITS
   ===================== */
.section-benefits {
    background: #0d2357;
    position: relative;
}

.section-benefits .section-label {
    color: rgba(255, 255, 255, 0.7);
}

.benefits-headline {
    background: linear-gradient(90deg, #ffffff, #c7f0ff, #5cc8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-benefits .section-inner > h2 {
    color: #fff;
    -webkit-text-fill-color: #fff;
    background: none;
}

.section-benefits .benefit-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.section-benefits .benefit-card:hover {
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.section-benefits .benefit-card h3 { color: #fff; }
.section-benefits .benefit-card p  { color: rgba(255, 255, 255, 0.72); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.benefit-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid #eee;
    transition: transform 0.2s, box-shadow 0.2s;
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e90ff;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.65;
}

/* =====================
   FLAVORS
   ===================== */
.section-flavors { background: #fff; position: relative; overflow: hidden; }
.section-flavors .section-inner { position: relative; z-index: 2; }

@keyframes fly-ltr {
    from { transform: translateX(-120px) rotate(0deg); }
    to   { transform: translateX(calc(100vw + 120px)) rotate(720deg); }
}
@keyframes fly-rtl {
    from { transform: translateX(calc(100vw + 120px)) rotate(0deg); }
    to   { transform: translateX(-120px) rotate(-720deg); }
}
.chatgpt-flyer {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.55;
    will-change: transform;
}

.flavors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 52px;
}

.flavors-grid--single {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}


.flavor-card-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.flavor-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a73e8;
    background: rgba(26, 115, 232, 0.1);
    border-radius: 20px;
    padding: 4px 12px;
    width: fit-content;
}

.flavor-sub {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #888;
    text-transform: uppercase;
    margin: -6px 0 0;
}

.flavor-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    max-width: 480px;
}

.flavor-details {
    list-style: none;
    padding: 0;
    margin: 4px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.flavor-details li {
    font-size: 0.88rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 6px;
}

.flavor-details li::before {
    content: '—';
    color: #1a73e8;
    font-weight: 700;
}

.flavor-card {
    border-radius: 20px;
    border: 2px solid #e8edf5;
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: #fff;
}
.flavor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 115, 232, 0.12);
    border-color: #1a73e8;
}

.flavor-card--rect {
    flex-direction: row;
    text-align: left;
    align-items: center;
    padding: 40px 44px;
    border-radius: 16px;
    gap: 40px;
}

.flavor-card--rect .flavor-img-wrap {
    width: 260px;
    height: 260px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #f4f7fb;
}

.flavor-card--rect .flavor-img {
    object-fit: cover;
    border-radius: 16px;
}

.flavor-upcoming {
    opacity: 0.55;
    pointer-events: none;
}

.flavor-img-wrap {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flavor-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}
.flavor-card:hover .flavor-img { transform: scale(1.05); }

.flavor-img-placeholder {
    font-size: 5rem;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f7fb;
    border-radius: 50%;
}

.flavor-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e90ff;
}

.flavor-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.5;
}

.flavor-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 6px 14px;
    background: #eef4fd;
    color: #1a73e8;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}
.flavor-badge.available {
    background: #1a73e8;
    color: #fff;
}

/* =====================
   SCIENCE / INGREDIENTS
   ===================== */
.section-science {
    background: #1a4ab5;
    position: relative;
}

.section-science .section-label { color: rgba(255, 255, 255, 0.7); }
.section-science .section-inner > h2 { color: #fff; -webkit-text-fill-color: #fff; background: none; }
.section-science .section-sub { color: rgba(255, 255, 255, 0.7); }

.section-science .ingredient-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.section-science .ingredient-card strong { color: #7eb3ff; }
.section-science .ingredient-card p { color: rgba(255, 255, 255, 0.7); }

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px;
}

.ingredient-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px;
    border: 1px solid #dce8fb;
}

.ingredient-card strong {
    display: block;
    font-size: 1rem;
    color: #1a73e8;
    margin-bottom: 8px;
    font-weight: 700;
}

.ingredient-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* =====================
   REVIEWS
   ===================== */
.section-reviews { background: #fff; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.review-card {
    background: #f6f9ff;
    border: 1px solid #dce8fb;
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-card p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
}

.review-card strong {
    color: #1a73e8;
    font-size: 0.85rem;
    font-weight: 700;
}

/* =====================
   FAQ
   ===================== */
.section-faq { background: linear-gradient(135deg, #1252c4 0%, #1e90ff 100%); }
.section-faq .section-label { color: rgba(255, 255, 255, 0.7); }
.section-faq .section-inner > h2 { color: #fff; -webkit-text-fill-color: #fff; background: none; }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 52px;
    max-width: 760px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    padding: 24px 28px;
}

.faq-item strong {
    display: block;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 8px;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.65;
}

.faq-more-btn {
    margin-top: 40px;
    background: #fff;
    color: #1252c4;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.faq-more-btn:hover {
    background: #f0f5ff;
    color: #1252c4;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* =====================
   BUNDLE PACKS
   ===================== */
.section-bundles {
    background: #f0f4ff;
    width: 100%;
    padding: 100px 40px;
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
    align-items: center;
}

.bundle-card {
    background: #fff;
    border: 1.5px solid #e0eaff;
    border-radius: 24px;
    padding: 44px 32px 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.bundle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(26, 115, 232, 0.12);
}

@keyframes bundle-glow {
    0%, 100% { box-shadow: 0 20px 52px rgba(26, 115, 232, 0.38); }
    50%       { box-shadow: 0 24px 72px rgba(26, 115, 232, 0.6), 0 0 60px rgba(96, 165, 250, 0.22); }
}

.bundle-featured {
    background: linear-gradient(160deg, #0d47a1, #1565c0, #1a73e8, #3b82f6, #1a73e8, #1565c0, #0d47a1);
    background-size: 300% 100%;
    border-color: transparent;
    padding: 56px 32px 44px;
    animation: gradient-sweep 5s ease infinite, bundle-glow 3s ease-in-out infinite;
}

.bundle-featured:hover {
    transform: translateY(-8px);
}

@keyframes badge-shimmer {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.bundle-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ffa500, #ffdd57, #ffc200, #ffdd57, #ffa500);
    background-size: 200% 100%;
    animation: badge-shimmer 2.5s linear infinite;
    color: #111;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 20px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 3px 14px rgba(255, 194, 0, 0.5);
}

.bundle-qty {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a73e8;
}
.bundle-featured .bundle-qty { color: rgba(255, 255, 255, 0.72); }

.bundle-name {
    font-size: 1.7rem;
    font-weight: 800;
    color: #1e90ff;
    line-height: 1;
}
.bundle-featured .bundle-name { color: #fff; }

.bundle-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 4px;
}

.bundle-price {
    font-size: 2.4rem;
    font-weight: 900;
    color: #111;
    line-height: 1;
}
.bundle-featured .bundle-price { color: #fff; }

.bundle-per {
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
}
.bundle-featured .bundle-per { color: rgba(255, 255, 255, 0.65); }

.bundle-savings {
    background: #dcfce7;
    color: #166534;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 100px;
    letter-spacing: 0.3px;
}
.bundle-savings-best {
    background: #bbf7d0;
    color: #14532d;
}
.bundle-featured .bundle-savings {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.bundle-pouches {
    font-size: 0.85rem;
    color: #aaa;
    font-weight: 500;
}
.bundle-featured .bundle-pouches { color: rgba(255, 255, 255, 0.6); }

.bundle-features {
    list-style: none;
    padding: 16px 0 0;
    margin: 4px 0 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
    width: 100%;
    text-align: left;
    border-top: 1px solid #e8edf5;
}
.bundle-features li {
    font-size: 0.9rem;
    color: #555;
}
.bundle-featured .bundle-features { border-top-color: rgba(255, 255, 255, 0.22); }
.bundle-featured .bundle-features li { color: rgba(255, 255, 255, 0.88); }

.bundle-cta {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    margin-top: 10px;
    width: 100%;
    text-align: center;
}

.bundle-cta-white {
    background: #fff;
    color: #1a73e8;
    transition: transform 0.15s, box-shadow 0.2s, color 0.15s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.bundle-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    color: #0d5bb8;
    background: #f0f4ff;
}

.bundles-grid .reveal-left.in-view  { transition-delay: 0s; }
.bundles-grid .reveal-up.in-view    { transition-delay: 0.14s; }
.bundles-grid .reveal-right.in-view { transition-delay: 0.28s; }

/* =====================
   FINAL CTA
   ===================== */
.section-cta {
    width: 100%;
    padding: 120px 40px;
    background: linear-gradient(135deg, #1a73e8, #0d5bb8);
    text-align: center;
}

.section-cta .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-label { color: rgba(255, 255, 255, 0.65); }

.section-cta h2 {
    color: #fff;
    -webkit-text-fill-color: #fff;
    background: none;
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.cta-sub {
    color: rgba(255, 255, 255, 0.85) !important;
    text-align: center;
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
    background: #111;
    padding: 60px 40px 40px;
    width: 100%;
    text-align: center;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-tagline {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-legal {
    color: #555;
    font-size: 0.78rem;
    max-width: 600px;
    line-height: 1.6;
}

/* =====================
   PRODUCT IMAGE (lemon-lime page)
   ===================== */
.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
#product-link:hover .product-image { transform: scale(1.05); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 960px) {
    .hero-section {
        flex-direction: column;
        padding: 120px 32px 60px;
        text-align: center;
        gap: 40px;
    }
    .hero-ctas { justify-content: center; }
    .hero-content { max-width: 100%; }
    .hero-content h1 { font-size: 2.4rem; }

    .what-cards,
    .benefits-grid,
    .flavors-grid,
    .ingredients-grid,
    .reviews-grid,
    .bundles-grid { grid-template-columns: 1fr; }

    .bundle-featured { padding: 44px 32px 36px; }

    .steps { flex-direction: column; }
    .step-divider { width: 2px; height: 32px; align-self: center; }

    .comparison { grid-template-columns: 1fr; }

    .section-inner h2 { font-size: 1.9rem; }
    .section-cta h2 { font-size: 2rem; }
    .nav-links { display: none; }

    /* Navbar: wider and taller so logo + cart + shop button have room */
    .header-bar {
        width: 92%;
        max-width: none;
        padding: 0 18px;
        height: 56px;
    }

    /* Show pouch animation on mobile — overflow:hidden on hero clips it naturally */
    .pouch-scene { display: block; }

    /* Remove the negative margin that causes the section to overlap the hero on mobile */
    .section-what { margin-top: 0; }
}

@media (max-width: 600px) {
    .section-what,
    .section-how,
    .section-why,
    .section-benefits,
    .section-flavors,
    .section-science,
    .section-reviews,
    .section-faq,
    .section-bundles { padding: 72px 20px; }

    .hero-section {
        padding: 100px 20px 48px;
        min-height: auto;
    }
    .section-cta { padding: 80px 20px; }

    /* Hero: ensure product image is visible and properly sized */
    .hero-image-wrap {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .hero-image { max-width: 100%; }

    /* Slightly smaller heading and badge on small phones */
    .hero-content h1 { font-size: 2rem; }
    .hero-badge { font-size: 0.65rem; letter-spacing: 0.6px; }

    /* Hero CTA buttons: stack on very narrow screens */
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* =====================
   SCROLL ANIMATIONS
   ===================== */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    will-change: opacity, transform;
}
.reveal-up    { transform: translateY(50px);  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal-left  { transform: translateX(-80px); transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1), transform 0.85s cubic-bezier(0.22,1,0.36,1); }
.reveal-right { transform: translateX(80px);  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1), transform 0.85s cubic-bezier(0.22,1,0.36,1); }

.reveal-up.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
    opacity: 1;
    transform: translate(0, 0);
}

/* stagger on entry only — exit is always instant (delay: 0s default) */
.what-cards .reveal-left.in-view  { transition-delay: 0s; }
.what-cards .reveal-up.in-view    { transition-delay: 0.12s; }
.what-cards .reveal-right.in-view { transition-delay: 0.24s; }

.benefits-grid .reveal-left.in-view:nth-child(1)  { transition-delay: 0s; }
.benefits-grid .reveal-up.in-view:nth-child(2)    { transition-delay: 0.1s; }
.benefits-grid .reveal-right.in-view:nth-child(3) { transition-delay: 0.2s; }
.benefits-grid .reveal-left.in-view:nth-child(4)  { transition-delay: 0.1s; }
.benefits-grid .reveal-up.in-view:nth-child(5)    { transition-delay: 0.2s; }
.benefits-grid .reveal-right.in-view:nth-child(6) { transition-delay: 0.3s; }

.ingredients-grid .reveal-left.in-view:nth-child(1)  { transition-delay: 0s; }
.ingredients-grid .reveal-up.in-view:nth-child(2)    { transition-delay: 0.1s; }
.ingredients-grid .reveal-right.in-view:nth-child(3) { transition-delay: 0.2s; }
.ingredients-grid .reveal-left.in-view:nth-child(4)  { transition-delay: 0.1s; }
.ingredients-grid .reveal-up.in-view:nth-child(5)    { transition-delay: 0.2s; }
.ingredients-grid .reveal-right.in-view:nth-child(6) { transition-delay: 0.3s; }

.flavors-grid .reveal-left.in-view  { transition-delay: 0s; }
.flavors-grid .reveal-up.in-view    { transition-delay: 0.12s; }
.flavors-grid .reveal-right.in-view { transition-delay: 0.24s; }

.reviews-grid .reveal-left.in-view  { transition-delay: 0s; }
.reviews-grid .reveal-up.in-view    { transition-delay: 0.14s; }

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.marquee-ticker {
    background: #1a73e8;
    height: 56px;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-inner {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 28s linear infinite;
    cursor: default;
    user-select: none;
}

.marquee-inner:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'Poppins', system-ui, sans-serif;
    padding: 0 8px;
}

.marquee-dot {
    color: #1a73e8;
    margin: 0 10px;
    font-size: 1rem;
    font-weight: 700;
}

/* ============================================================
   INGREDIENTS SECTION
   ============================================================ */
.section-ingredients {
    background: #0d2357;
    padding: 100px 24px;
    color: #fff;
    text-align: center;
}

.section-ingredients h2 {
    color: #fff;
    margin-bottom: 8px;
}

.section-ingredients .section-sub {
    color: rgba(255,255,255,0.7);
    margin-bottom: 60px;
}

.gold-text {
    background: linear-gradient(135deg, #ffe066, #ffc200, #ffdd57, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ingredients-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.ingredients-labels {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    max-width: 260px;
}

.ingredients-labels--left .ing-callout {
    border-right: 2px dashed #1a73e8;
    border-left: none;
    text-align: right;
    border-radius: 12px 0 0 12px;
}

.ingredients-labels--right .ing-callout {
    border-left: 2px dashed #1a73e8;
    border-right: none;
    border-radius: 0 12px 12px 0;
}

.ing-callout {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 14px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    border-radius: 12px;
    line-height: 1.3;
}

.ingredients-img-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ingredients-img-wrap img {
    max-width: 220px;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(26,115,232,0.3));
}

.ingredients-list-mobile {
    display: none;
    list-style: none;
    padding: 0;
    margin: 32px auto 0;
    max-width: 480px;
    flex-direction: column;
    gap: 12px;
}

.ingredients-list-mobile .ing-callout {
    border-radius: 12px;
    border-left: 2px dashed #1a73e8;
    border-right: none;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ============================================================
   UGC VIDEO WALL
   ============================================================ */
.section-ugc {
    background: #f6f9ff;
    padding: 100px 24px;
}

.section-ugc h2 {
    color: #222222;
    margin-bottom: 0;
}

.ugc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.ugc-card {
    background: linear-gradient(160deg, #0d47a1, #1a73e8 50%, #3b82f6);
    border-radius: 16px;
    aspect-ratio: 9 / 16;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ugc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 55%);
    border-radius: inherit;
}

.ugc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26,115,232,0.35);
}

.ugc-play {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.18);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.2s, transform 0.2s;
}

.ugc-card:hover .ugc-play {
    background: rgba(255,255,255,0.28);
    transform: scale(1.08);
}

.ugc-play svg {
    fill: #fff;
    width: 24px;
    height: 24px;
    margin-left: 3px;
}

.ugc-username {
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255,255,255,0.9);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    z-index: 1;
    font-family: 'Poppins', system-ui, sans-serif;
}

/* ============================================================
   SUBSCRIBE & SAVE
   ============================================================ */
.section-subscribe {
    background: #0d2357;
    padding: 100px 24px;
}

.subscribe-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 52px 48px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    text-align: center;
}

.subscribe-card h2 {
    color: #fff;
    margin-bottom: 12px;
}

.subscribe-card > p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 0;
}

.subscribe-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 36px 0;
}

.subscribe-pill {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 30px;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: 'Poppins', system-ui, sans-serif;
}

.pill-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    flex-shrink: 0;
}

.pill-icon svg {
    width: 16px;
    height: 16px;
}

/* ============================================================
   BESTSELLERS GRID
   ============================================================ */
.section-bestsellers {
    background: #ffffff;
    padding: 100px 24px;
}

.section-bestsellers h2 {
    color: #222222;
}

.bestsellers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.bestsellers-grid .flavor-card--coming-soon {
    opacity: 0.5;
    pointer-events: auto;
}

.flavor-img-placeholder-bs {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26,115,232,0.08);
    border-radius: 50%;
}

/* ============================================================
   MOBILE RESPONSIVE — NEW SECTIONS
   ============================================================ */
@media (max-width: 768px) {
    /* Ingredients */
    .ingredients-diagram {
        display: none;
    }
    .ingredients-list-mobile {
        display: flex;
    }

    /* UGC grid → horizontal scroll */
    .ugc-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 16px;
        margin-top: 36px;
        scrollbar-width: none;
    }
    .ugc-grid::-webkit-scrollbar { display: none; }
    .ugc-card {
        flex: 0 0 80vw;
        scroll-snap-align: start;
    }

    /* Subscribe */
    .subscribe-card {
        padding: 36px 24px;
    }
    .subscribe-pills {
        gap: 10px;
    }

    /* Bestsellers → horizontal scroll */
    .bestsellers-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 16px;
        scrollbar-width: none;
    }
    .bestsellers-grid::-webkit-scrollbar { display: none; }
    .bestsellers-grid .flavor-card {
        flex: 0 0 80vw;
        scroll-snap-align: start;
    }
}
.reviews-grid .reveal-right.in-view { transition-delay: 0.28s; }

