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

:root {
    --teal: #11d0cf;
    --teal-light: #7ee8e7;
    --dark: #1f2937;
    --light: #f9fafb;
    --muted: #9ca3af;
    --gradient-1: #c4b5fd;
    --gradient-2: #93c5fd;
    --gradient-3: #bfdbfe;
    --gradient-4: #f9a8d4;
    --gradient-5: #fbbff7;
    --font-heading: "Fredoka", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    background-color: #b8e6e6;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    overflow-x: hidden;
    min-height: 100vh;
    background-color: #b8e6e6;
    background-image: url('/attached_assets/6AA5121D-985C-4D66-9954-2F680A53FE19_1763695776689.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    color: var(--dark);
}

h1, h2, h3, h4, h5, h6,
button,
.btn,
.gate-headline,
.gate-text,
.age-button-yes,
.age-button-no,
.hero-headline,
.hero-label,
.section-heading,
.product-name,
.kanna-headline,
.benefit-content h4,
.lifestyle-card h3,
.faq-question,
.marquee-text {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.01em;
}

p,
.gate-subheadline,
.hero-description,
.benefit-item span,
.product-desc,
.product-tags,
.kanna-text,
.benefit-content p,
.kanna-disclaimer,
.lifestyle-card p,
.faq-answer,
.footer,
.nav-links a {
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.6;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ========== ANNOUNCEMENT BAR ========== */

.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(135deg, 
        rgba(196, 181, 253, 0.5), 
        rgba(147, 197, 253, 0.5), 
        rgba(17, 208, 207, 0.4));
    backdrop-filter: blur(12px);
    overflow: hidden;
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 999;
}

.announcement-content {
    display: inline-flex;
    white-space: nowrap;
    animation: scroll-announcement 40s linear infinite;
}

.announcement-text {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    letter-spacing: 0.02em;
    padding: 0 3rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

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

body.sohi-bg {
    padding-top: 40px;
    background-color: #b8e6e6;
    background-image: url('/attached_assets/6AA5121D-985C-4D66-9954-2F680A53FE19_1763695776689.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.grain-overlay {
    display: none;
}

/* Body lock class for age gate - prevents all scrolling including touch */
html.age-gate-active,
body.age-gate-active {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    touch-action: none !important;
    overscroll-behavior: none !important;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    background: url('/attached_assets/8DB9D6C7-5EEC-4AA4-9899-1499C3CC9010_1763694744773.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.age-gate.hidden {
    display: none !important;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.age-gate-content {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
    position: relative;
    z-index: 10;
}


.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.cloud-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 250px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.15) 40%, transparent 70%);
    filter: blur(40px);
    border-radius: 50%;
    z-index: -1;
    animation: cloudFloat 8s ease-in-out infinite;
}

@keyframes cloudFloat {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -55%) scale(1.1);
        opacity: 0.8;
    }
}

.logo {
    width: 400px;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 15px 40px rgba(17, 208, 207, 0.4));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 15px 40px rgba(17, 208, 207, 0.4));
    }
    50% {
        filter: drop-shadow(0 20px 60px rgba(17, 208, 207, 0.6)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
    }
}

.gate-headline {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(255, 255, 255, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.gate-subheadline {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.9),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.age-prompt {
    margin-top: 3rem;
}

.age-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-shadow: 
        0 0 12px rgba(255, 255, 255, 0.9),
        0 1px 2px rgba(0, 0, 0, 0.1);
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.age-button-yes,
.age-button-no {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.age-button-yes {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    color: white;
    box-shadow: 0 10px 40px rgba(17, 208, 207, 0.4);
}

.age-button-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(17, 208, 207, 0.6);
}

.age-button-no {
    background: rgba(255, 255, 255, 0.3);
    color: var(--muted);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.age-button-no:hover {
    background: rgba(255, 255, 255, 0.3);
}

.portal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--teal), var(--teal-light));
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    transition: opacity 0.3s ease;
}

body.entering .portal-overlay {
    animation: portalFlash 1s ease-in-out;
}

@keyframes portalFlash {
    0% { opacity: 0; }
    30% { opacity: 0.8; }
    60% { opacity: 1; }
    100% { opacity: 0; }
}

body.entering {
    animation: backgroundPulse 1s ease-in-out;
}

@keyframes backgroundPulse {
    0%, 100% {
        background-size: 400% 400%;
        filter: brightness(1) saturate(1);
    }
    50% {
        background-size: 600% 600%;
        filter: brightness(1.3) saturate(1.8) hue-rotate(20deg);
    }
}

.site-wrapper {
    opacity: 0;
    pointer-events: none;
    position: relative;
    z-index: 5;
    padding-top: 40px;
}

body.site-active .site-wrapper {
    animation: quickFadeIn 0.4s ease-out forwards;
    pointer-events: auto;
}

@keyframes quickFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.sticky-nav {
    position: fixed;
    top: 39px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, 
        rgba(196, 181, 253, 0.4) 0%,
        rgba(255, 255, 255, 0.2) 30%,
        rgba(255, 255, 255, 0.2) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    will-change: transform;
}

body.site-active .sticky-nav {
    transform: translateY(0);
}

.sticky-nav.scrolled {
    padding: 0.5rem 0;
    background: linear-gradient(180deg, 
        rgba(196, 181, 253, 0.5) 0%,
        rgba(255, 255, 255, 0.25) 30%,
        rgba(255, 255, 255, 0.25) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.sticky-nav.scrolled .nav-logo img {
    height: 42px;
    transition: height 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    position: relative;
    z-index: 100;
}

.nav-logo a {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    pointer-events: auto;
}

.nav-logo a:hover {
    opacity: 0.8;
}

.nav-logo a:active {
    opacity: 0.6;
}

.nav-logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 1px 2px rgba(0, 0, 0, 0.1);
}

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

.nav-left {
    display: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-cart {
    position: relative;
}

.cart-icon {
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    pointer-events: none;
}

.mobile-drawer.open {
    pointer-events: auto;
}

.drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-drawer.open .drawer-overlay {
    opacity: 1;
}

.drawer-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    max-width: 85%;
    height: 100%;
    background: linear-gradient(180deg, 
        #11d0cf 0%, 
        #7ee8e7 35%,
        #b8e6e6 70%,
        #e0fffe 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    box-shadow: 10px 0 40px rgba(17, 208, 207, 0.3);
}

.mobile-drawer.open .drawer-content {
    transform: translateX(0);
}

.drawer-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    font-size: 1.25rem;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.drawer-close:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 4rem;
}

.drawer-nav a {
    display: block;
    padding: 1rem 1.25rem;
    color: #1f2937;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.drawer-nav a:hover {
    background: rgba(17, 208, 207, 0.3);
    border-color: var(--teal);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(17, 208, 207, 0.3);
}

.drawer-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.drawer-footer .social-icons {
    justify-content: flex-start;
    gap: 12px;
}

.drawer-footer .social-link {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.drawer-footer .social-link:hover {
    background: rgba(255, 255, 255, 0.7);
}

.drawer-footer .social-icon {
    filter: brightness(0) saturate(100%) invert(15%) sepia(10%) saturate(500%) hue-rotate(180deg);
    opacity: 1;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--teal);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
    min-width: 20px;
    text-align: center;
}

.hero-ecommerce {
    padding: 8rem 2rem 6rem;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--teal);
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 
        0 0 12px rgba(255, 255, 255, 0.9),
        0 1px 2px rgba(0, 0, 0, 0.15);
}

.hero-headline {
    font-size: 4rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 1),
        0 0 60px rgba(255, 255, 255, 0.9),
        0 0 90px rgba(255, 255, 255, 0.7),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 500;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 1),
        0 0 40px rgba(255, 255, 255, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.15);
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1f2937;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 1),
        0 0 40px rgba(255, 255, 255, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 1.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-ghost {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    color: white;
    box-shadow: 0 10px 40px rgba(17, 208, 207, 0.4);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(17, 208, 207, 0.6);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--dark);
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: inline-block;
    text-decoration: none;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.02);
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(167, 139, 250, 0.3);
}

.social-link:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 20px rgba(17, 208, 207, 0.5);
}

.social-icon {
    width: 24px;
    height: 24px;
    background-image: url('images/social/social-icons.png');
    background-size: 200%;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.social-link:hover .social-icon {
    filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(255,255,255,0.8));
    opacity: 1;
}

.instagram-icon {
    background-position: 0% 50%;
}

.tiktok-icon {
    background-position: 100% 50%;
}

.product-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.product-card-3d {
    background: none;
    backdrop-filter: none;
    border-radius: 0;
    border: none;
    padding: 0;
    box-shadow: none;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    animation: heroFloat 6s ease-in-out infinite;
}

.product-card-3d:hover {
    transform: rotateY(5deg) rotateX(-5deg);
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

.hero-product-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    filter: 
        drop-shadow(0 20px 50px rgba(167, 139, 250, 0.5))
        drop-shadow(0 10px 30px rgba(236, 72, 153, 0.3))
        drop-shadow(0 0 25px rgba(255, 255, 255, 0.4));
    animation: heroFloat 6s ease-in-out infinite, cloudGlow 4s ease-in-out infinite;
}

@keyframes cloudGlow {
    0%, 100% {
        filter: 
            drop-shadow(0 20px 50px rgba(167, 139, 250, 0.5))
            drop-shadow(0 10px 30px rgba(236, 72, 153, 0.3))
            drop-shadow(0 0 25px rgba(255, 255, 255, 0.4));
    }
    50% {
        filter: 
            drop-shadow(0 25px 60px rgba(167, 139, 250, 0.65))
            drop-shadow(0 15px 40px rgba(236, 72, 153, 0.45))
            drop-shadow(0 0 40px rgba(255, 255, 255, 0.6));
    }
}

.product-mockup {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
}

.mockup-label {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.mockup-sublabel {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

.floating-gummy {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6ec7, #ffd700);
    filter: blur(2px);
    opacity: 0.7;
    animation: floatGummy 6s ease-in-out infinite;
}

.gummy-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.gummy-2 {
    top: 60%;
    right: -5%;
    animation-delay: 2s;
}

.gummy-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes floatGummy {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.features-marquee {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(221, 214, 254, 0.5) 0%, rgba(251, 207, 232, 0.55) 50%, rgba(207, 231, 255, 0.5) 100%);
    padding: 2rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.1);
}

.features-marquee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.marquee-container {
    position: relative;
    z-index: 2;
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    will-change: transform;
}

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

.marquee-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    gap: 4rem;
    align-items: center;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
    padding: 0 2rem;
}

.marquee-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.8));
}

.marquee-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    color: #1f2937;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.15);
}

.product-listing {
    padding: 6rem 2rem;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 1),
        0 0 60px rgba(255, 255, 255, 0.9),
        0 0 90px rgba(255, 255, 255, 0.7),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(17, 208, 207, 0.3);
    border-color: rgba(17, 208, 207, 0.5);
}

.product-image {
    margin-bottom: 1.5rem;
}

.product-placeholder {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-emoji {
    font-size: 4rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 1),
        0 0 40px rgba(255, 255, 255, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.15);
}

.product-desc {
    font-size: 0.95rem;
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.6;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 1px 2px rgba(0, 0, 0, 0.1);
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(255, 255, 255, 0.4);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.product-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
}

.btn-add-cart {
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: var(--dark);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(17, 208, 207, 0.3);
}

.btn-add-cart:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(17, 208, 207, 0.5);
}

.btn-add-cart:active {
    transform: scale(1.1);
    animation: cartPop 0.3s ease;
}

@keyframes cartPop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.vibe-heading-container {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.vibe-heading-img {
    max-width: 450px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
    background: transparent;
}

.vibe-heading-container::after {
    content: '';
    display: block;
    width: 200px;
    height: 4px;
    margin: 1.5rem auto 0;
    background: linear-gradient(90deg, transparent, var(--teal), var(--teal-light), var(--teal), transparent);
    border-radius: 4px;
    box-shadow: 
        0 0 10px var(--teal),
        0 0 20px var(--teal),
        0 0 40px rgba(17, 208, 207, 0.6),
        0 0 60px rgba(17, 208, 207, 0.4);
}

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

.vibe-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.vibe-card {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.vibe-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.vibe-card:hover::before {
    opacity: 1;
    animation: cardShimmer 2s ease-in-out infinite;
}

@keyframes cardShimmer {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.vibe-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 70px rgba(17, 208, 207, 0.4),
        0 15px 40px rgba(255, 182, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-color: rgba(17, 208, 207, 0.6);
    animation: vibeCardPulse 1.5s ease-in-out infinite;
}

@keyframes vibeCardPulse {
    0%, 100% { 
        box-shadow: 
            0 30px 70px rgba(17, 208, 207, 0.4),
            0 15px 40px rgba(255, 182, 255, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }
    50% { 
        box-shadow: 
            0 30px 80px rgba(17, 208, 207, 0.5),
            0 15px 50px rgba(255, 182, 255, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.7);
    }
}

.vibe-image-container {
    margin-bottom: 1.75rem;
    position: relative;
    overflow: visible;
}

.vibe-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 15px 40px rgba(17, 208, 207, 0.4));
}

.vibe-card:hover .vibe-image {
    transform: translateY(-12px) scale(1.05);
    filter: 
        drop-shadow(0 25px 60px rgba(17, 208, 207, 0.6))
        drop-shadow(0 0 30px rgba(255, 182, 255, 0.4));
}

.vibe-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 
        0 0 25px rgba(255, 255, 255, 1),
        0 0 50px rgba(255, 255, 255, 0.9),
        0 0 75px rgba(255, 255, 255, 0.7),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.vibe-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 0.75rem;
}

.vibe-stars {
    color: #FFA41C;
    font-size: 1rem;
    letter-spacing: 1px;
}

.vibe-rating-text {
    font-weight: 700;
    color: #1f2937;
    font-size: 0.95rem;
}

.vibe-desc {
    font-size: 1.1rem;
    color: #1f2937;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 1),
        0 0 40px rgba(255, 255, 255, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.15);
    font-weight: 500;
}

.vibe-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

.vibe-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1f2937;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 1),
        0 0 40px rgba(255, 255, 255, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.15);
}

.btn-vibe-cart {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(17, 208, 207, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-vibe-cart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-vibe-cart:hover::before {
    width: 300px;
    height: 300px;
}

.btn-vibe-cart:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(17, 208, 207, 0.6),
        0 0 40px rgba(255, 182, 255, 0.3);
}

.btn-vibe-cart:active {
    transform: scale(1.12);
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #fff, var(--teal-light));
    border-radius: 50%;
    pointer-events: none;
    animation: sparkleFloat 1.5s ease-out forwards;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes sparkleFloat {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(0);
    }
}

.kanna-section {
    padding: 6rem 2rem;
    background: url('/attached_assets/8DB9D6C7-5EEC-4AA4-9899-1499C3CC9010_1763692438420.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50px;
    margin: 0 2rem;
}

.kanna-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.kanna-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 1),
        0 0 60px rgba(255, 255, 255, 0.9),
        0 0 90px rgba(255, 255, 255, 0.7),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.kanna-text {
    font-size: 1.15rem;
    color: #1f2937;
    line-height: 1.85;
    margin-bottom: 2.5rem;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 1),
        0 0 40px rgba(255, 255, 255, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.15);
    font-weight: 500;
}

.kanna-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.kanna-benefit {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon-large {
    font-size: 2.5rem;
}

.benefit-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 1),
        0 0 40px rgba(255, 255, 255, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.15);
}

.benefit-content p {
    font-size: 1rem;
    color: #1f2937;
    line-height: 1.75;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 1),
        0 0 40px rgba(255, 255, 255, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.15);
    font-weight: 500;
}

.kanna-disclaimer {
    font-size: 0.8rem;
    color: #4b5563;
    font-style: italic;
    line-height: 1.6;
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.9), 
                 0 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.kanna-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.kanna-glow-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(17, 208, 207, 0.3), transparent);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

.orbit-particle {
    position: absolute;
    font-size: 1.5rem;
    top: 50%;
    left: 50%;
    margin: -0.75rem 0 0 -0.75rem;
    opacity: 0.8;
}

.particle-1 {
    animation: orbitParticle1 12s linear infinite;
}

.particle-2 {
    animation: orbitParticle2 10s linear infinite;
}

.particle-3 {
    animation: orbitParticle3 14s linear infinite;
}

.particle-4 {
    animation: orbitParticle4 11s linear infinite;
}

@keyframes orbitParticle1 {
    0% {
        transform: rotate(0deg) translateX(180px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(180px) rotate(-360deg);
    }
}

@keyframes orbitParticle2 {
    0% {
        transform: rotate(90deg) translateX(180px) rotate(-90deg);
    }
    100% {
        transform: rotate(450deg) translateX(180px) rotate(-450deg);
    }
}

@keyframes orbitParticle3 {
    0% {
        transform: rotate(180deg) translateX(180px) rotate(-180deg);
    }
    100% {
        transform: rotate(540deg) translateX(180px) rotate(-540deg);
    }
}

@keyframes orbitParticle4 {
    0% {
        transform: rotate(270deg) translateX(180px) rotate(-270deg);
    }
    100% {
        transform: rotate(630deg) translateX(180px) rotate(-630deg);
    }
}

.kanna-plant {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.plant-icon {
    font-size: 5rem;
}

.sweet-spot-section {
    padding: 6rem 2rem;
}

.sweet-spot-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sweet-spot-left {
    position: relative;
}

.sparkle-accent {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: sparkleFloat 3s ease-in-out infinite;
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(15deg);
    }
}

.capsule-sparkle {
    position: absolute;
    font-size: 1.5rem;
    pointer-events: none;
    animation: sparkleClickBurst 1s ease-out forwards;
    z-index: 100;
}

@keyframes sparkleClickBurst {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(0.5) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(1.2) rotate(360deg);
    }
}

.sweet-spot-headline {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 3rem;
    line-height: 1.1;
    max-width: 24ch;
    text-align: left;
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 1),
        0 0 60px rgba(255, 255, 255, 0.9),
        0 0 90px rgba(255, 255, 255, 0.7),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.sweet-spot-subheadline {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.9),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.sweet-spot-supporting {
    font-size: 1rem;
    color: #4b5563;
    font-style: italic;
    text-shadow: 
        0 0 12px rgba(255, 255, 255, 0.9),
        0 1px 2px rgba(0, 0, 0, 0.1);
}

.sweet-spot-right {
    position: relative;
}

.dose-bar-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.dose-bar {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dose-bar-outer {
    position: relative;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(15px);
    border-radius: 100px;
    height: 90px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.dose-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 100px;
    width: 0%;
    background: linear-gradient(90deg, #11d0cf 0%, #ff6b9d 50%, #c486ff 100%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    transition: width 1s ease-out;
}

.dose-bar.animate .dose-bar-fill {
    animation: shimmer 3s ease-in-out infinite;
}

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

.dose-bar:hover .dose-bar-fill {
    animation: shimmer 3s ease-in-out infinite;
}

.dose-bar-fill--gentle {
    width: 35%;
}

.dose-bar-fill--euphoric {
    width: 65%;
}

.dose-bar-fill--social {
    width: 95%;
}

.dose-bar-fill--full {
    width: 100%;
    background: linear-gradient(90deg, #11d0cf 0%, #7ee8e7 100%);
}

.dose-bar-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    z-index: 2;
    pointer-events: none;
}

.dose-bar-content--full {
    justify-content: center;
    text-align: center;
}

.dose-bar-left {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dose-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
}

.dose-desc {
    font-size: 0.8rem;
    color: #374151;
    font-style: italic;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.dose-tag {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: #11d0cf;
    text-shadow: 0 0 10px rgba(17, 208, 207, 0.8);
}

.dose-info-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}

.dose-bar:hover {
    transform: translateY(-3px) scale(1.01);
}

.dose-bar--full {
    cursor: default;
}

.dose-bar--full:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(17, 208, 207, 0.2);
}

.dose-sparkles {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    pointer-events: none;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dose-sparkles.active {
    opacity: 1;
    transform: translateY(-50%) translateX(60px) translateY(-20px);
}

.social-section {
    padding: 64px 16px 80px;
    background: linear-gradient(135deg, rgba(255,255,255,0.35), rgba(210,238,255,0.6));
}

.social-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.social-inner h2 {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    margin-bottom: 24px;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.8),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.social-inner h2 span {
    color: #11d0cf;
}

.tiktok-handle {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.tiktok-handle:hover {
    text-shadow: 0 0 20px rgba(17, 208, 207, 0.8);
    filter: brightness(1.2);
}

.tiktok-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
}

.tiktok-track {
    overflow-x: auto;
    overflow-y: hidden;
    flex: 1;
    display: flex;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 20px;
    padding: 10px;
}

.tiktok-track::-webkit-scrollbar {
    display: none;
}

.tiktok-card {
    flex-shrink: 0;
}

.tiktok-video {
    position: relative;
    width: 200px;
    height: 355px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tiktok-video:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.tiktok-video.placeholder-1 {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.tiktok-video.placeholder-2 {
    background: linear-gradient(180deg, #2d1b4e 0%, #1a1a2e 50%, #16213e 100%);
}

.tiktok-video.placeholder-3 {
    background: linear-gradient(180deg, #0f3460 0%, #1a1a2e 50%, #2d1b4e 100%);
}

.tiktok-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tiktok-video:hover .tiktok-overlay {
    opacity: 1;
}

.tiktok-play-btn {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.tiktok-play-btn:hover {
    transform: scale(1.1);
}

.tiktok-sidebar {
    position: absolute;
    right: 10px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.tiktok-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #11d0cf, #6366f1);
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.tiktok-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.tiktok-action svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.tiktok-action span {
    font-size: 0.7rem;
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.tiktok-footer {
    position: absolute;
    bottom: 16px;
    left: 12px;
    right: 50px;
    text-align: left;
}

.tiktok-username {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    display: block;
    margin-bottom: 4px;
}

.tiktok-caption {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.tiktok-logo {
    position: absolute;
    bottom: 16px;
    right: 10px;
    opacity: 0.8;
}

.tiktok-logo svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.tiktok-arrow {
    border: none;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #111827;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.tiktok-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.tiktok-dots {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.tiktok-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    background: rgba(148, 163, 184, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tiktok-dots .dot.active {
    width: 24px;
    background: linear-gradient(90deg, #25f4ee, #fe2c55);
}

@media (max-width: 768px) {
    .tiktok-carousel {
        gap: 8px;
    }
    .tiktok-arrow {
        display: none;
    }
    .tiktok-video {
        width: 170px;
        height: 302px;
    }
    .tiktok-sidebar {
        bottom: 80px;
        gap: 12px;
    }
    .tiktok-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    .tiktok-action svg {
        width: 22px;
        height: 22px;
    }
    .tiktok-action span {
        font-size: 0.6rem;
    }
    .tiktok-footer {
        bottom: 12px;
        left: 10px;
        right: 40px;
    }
    .tiktok-username {
        font-size: 0.75rem;
    }
    .tiktok-caption {
        font-size: 0.65rem;
    }
    .tiktok-play-btn {
        width: 48px;
        height: 48px;
    }
    .tiktok-play-btn svg {
        width: 32px;
        height: 32px;
    }
}

.faq-section {
    padding: 4rem 2rem 3rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    text-align: left;
    transition: all 0.3s ease;
    text-shadow: 
        0 0 12px rgba(255, 255, 255, 0.8),
        0 1px 2px rgba(0, 0, 0, 0.1);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    font-size: 1.05rem;
    color: #1f2937;
    line-height: 1.8;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 1),
        0 0 40px rgba(255, 255, 255, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.15);
    font-weight: 500;
}

.footer {
    padding: 2rem 2rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.copyright {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--teal);
}

/* ========== NEWSLETTER SIGNUP ========== */

.newsletter-section {
    padding: 4rem 1.5rem;
    text-align: center;
    background: linear-gradient(180deg, 
        rgba(196, 181, 253, 0.4) 0%, 
        rgba(167, 139, 250, 0.25) 50%,
        rgba(139, 92, 246, 0.15) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(17, 208, 207, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-glass {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.45) 0%, 
        rgba(255, 255, 255, 0.3) 100%);
    border-radius: 28px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2),
                0 4px 16px rgba(17, 208, 207, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2rem);
    background: linear-gradient(135deg, #8b5cf6 0%, #11d0cf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.newsletter-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form-wrapper {
    margin-top: 1rem;
}

.newsletter-form-wrapper form,
.newsletter-form-wrapper .klaviyo-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.newsletter-form-wrapper input[type="email"],
.newsletter-form-wrapper .klaviyo-form input {
    width: 100%;
    max-width: 380px;
    padding: 16px 20px;
    font-size: 1rem;
    font-family: var(--font-body);
    border: 2px solid rgba(167, 139, 250, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    color: #1f2937;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.08);
}

.newsletter-form-wrapper input[type="email"]:focus,
.newsletter-form-wrapper .klaviyo-form input:focus {
    border-color: #11d0cf;
    box-shadow: 0 0 0 4px rgba(17, 208, 207, 0.15),
                0 4px 12px rgba(17, 208, 207, 0.2);
    background: rgba(255, 255, 255, 0.9);
}

.newsletter-form-wrapper input[type="email"]::placeholder,
.newsletter-form-wrapper .klaviyo-form input::placeholder {
    color: #9ca3af;
}

.newsletter-form-wrapper button,
.newsletter-form-wrapper .klaviyo-form button {
    width: 100%;
    max-width: 380px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-body);
    color: white;
    background: linear-gradient(135deg, #11d0cf 0%, #0fb8b7 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(17, 208, 207, 0.35),
                0 2px 8px rgba(17, 208, 207, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-form-wrapper button:hover,
.newsletter-form-wrapper .klaviyo-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(17, 208, 207, 0.45),
                0 4px 12px rgba(17, 208, 207, 0.3);
    background: linear-gradient(135deg, #0fb8b7 0%, #0ea5a4 100%);
}

.newsletter-form-wrapper button:active,
.newsletter-form-wrapper .klaviyo-form button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 3rem 1rem;
    }
    
    .newsletter-glass {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }
    
    .newsletter-subtitle {
        font-size: 0.95rem;
    }
    
    .newsletter-form-wrapper input[type="email"],
    .newsletter-form-wrapper .klaviyo-form input,
    .newsletter-form-wrapper button,
    .newsletter-form-wrapper .klaviyo-form button {
        max-width: 100%;
        padding: 14px 20px;
    }
}

.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(17, 208, 207, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 40px rgba(17, 208, 207, 0.4);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10000;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 1024px) {
    .hero-container,
    .kanna-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-headline {
        font-size: 3rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .sweet-spot-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .sweet-spot-headline {
        font-size: 2.25rem;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .gate-headline {
        font-size: 2.25rem;
    }
    
    .gate-subheadline {
        font-size: 1.125rem;
    }
    
    .logo {
        width: 300px;
        height: auto;
    }
    
    .cloud-aura {
        width: 360px;
        height: 200px;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .section-heading {
        font-size: 2.25rem;
    }
    
    .product-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .product-grid::-webkit-scrollbar {
        height: 8px;
    }
    
    .product-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }
    
    .product-grid::-webkit-scrollbar-thumb {
        background: rgba(17, 208, 207, 0.5);
        border-radius: 10px;
    }
    
    .product-card {
        min-width: 280px;
        scroll-snap-align: center;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .age-button-yes,
    .age-button-no {
        width: 100%;
    }
    
    .sweet-spot-headline {
        font-size: 2rem;
        max-width: none;
    }
    
    .dose-bar-outer {
        height: 80px;
    }
    
    .dose-bar-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.5rem;
        gap: 0.5rem;
    }
    
    .dose-sparkles {
        display: none;
    }
}

/* ========== Contact Page ========== */

body.sohi-bg {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(135deg, 
        rgba(253, 214, 255, 0.4) 0%,
        rgba(182, 227, 255, 0.4) 25%,
        rgba(252, 228, 255, 0.4) 50%,
        rgba(254, 243, 255, 0.4) 75%,
        rgba(255, 229, 240, 0.4) 100%),
    url('/attached_assets/8DB9D6C7-5EEC-4AA4-9899-1499C3CC9010_1763694744773.png') center/cover fixed;
}

body.sohi-bg .sticky-nav {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    transform: translateY(0);
}

.contact-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10rem 2rem 4rem 2rem;
}

.contact-hero {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    white-space: nowrap;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.9),
        0 0 40px rgba(255, 255, 255, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.sparkle-icon {
    display: inline-block;
    font-size: 2.5rem;
    margin-left: 0.5rem;
    animation: sparkleFloat 3s ease-in-out infinite;
}

.contact-subtext {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.7;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.9),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-card {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
    border-radius: 24px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 0 40px rgba(17, 208, 207, 0.15);
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 0 50px rgba(17, 208, 207, 0.2);
}

.contact-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.tab-button {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.tab-button:hover {
    background: rgba(255, 255, 255, 0.25);
}

.tab-button.active {
    background: linear-gradient(135deg, rgba(17, 208, 207, 0.4), rgba(126, 232, 231, 0.4));
    color: var(--dark);
    transform: scale(1.05);
    box-shadow: 
        0 0 20px rgba(17, 208, 207, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.contact-form {
    display: none !important;
}

.contact-form.active-form {
    display: block !important;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.optional {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.25);
    color: #1f2937;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(17, 208, 207, 0.8);
    box-shadow: 
        inset 0 0 20px rgba(17, 208, 207, 0.15),
        0 0 20px rgba(17, 208, 207, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
}

.nav-active {
    color: var(--teal) !important;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(17, 208, 207, 0.6);
}

@media (max-width: 1024px) {
    .contact-card {
        padding: 2.5rem;
    }
    
    .contact-heading {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .contact-main {
        padding: 8rem 1.5rem 3rem 1.5rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .contact-hero {
        margin-bottom: 3rem;
    }
    
    .contact-heading {
        font-size: 1.875rem;
    }
    
    .contact-tabs {
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .tab-button {
        flex: 1;
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }
}

/* ========== ABOUT & LEARN KANNA PAGES ========== */

.page-main {
    flex: 1;
    width: 100%;
    padding-top: 2rem;
}

.about-hero, .kanna-hero {
    text-align: center;
    padding: 6rem 2rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2.5rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.9),
        0 0 40px rgba(255, 255, 255, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #374151;
    line-height: 1.85;
    letter-spacing: 0.01em;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.9),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.section-pad {
    padding: 3rem 2rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 0.02em;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.9),
        0 0 40px rgba(255, 255, 255, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.title-sparkles {
    display: inline-block;
    animation: float-sparkle 3s ease-in-out infinite;
    margin-left: 0.5rem;
}

@keyframes float-sparkle {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
    50% { transform: translateY(-8px) rotate(15deg); opacity: 1; }
}

.mission-glass-card, .sourcing-glass-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 4.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.mission-glass-card:hover, .sourcing-glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(17, 208, 207, 0.25);
}

.mission-glass-card h2, .sourcing-glass-card h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.mission-glass-card p, .sourcing-glass-card p {
    font-size: 1.15rem;
    color: #374151;
    line-height: 1.9;
    letter-spacing: 0.005em;
    margin-bottom: 1.75rem;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
    max-width: 100%;
}

.mission-float-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    animation: floatIcon 4s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(8deg);
    }
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pillar-card {
    padding: 3.5rem 2.75rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pillar-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(17, 208, 207, 0.25);
}

.pillar-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.15) rotate(5deg);
}

.pillar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.pillar-card p {
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.6;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.formula-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.formula-card {
    padding: 3.5rem 2.5rem;
    transition: all 0.4s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.formula-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(17, 208, 207, 0.3);
}

.formula-icon {
    font-size: 3rem;
    transition: transform 0.4s ease;
}

.formula-card:hover .formula-icon {
    transform: scale(1.15);
}

.formula-card h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.formula-card p {
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.75;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.testimonials-placeholder {
    text-align: center;
    padding: 4rem 3rem;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #374151;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
    position: relative;
}

.testimonials-sparkles {
    margin-top: 2rem;
    font-size: 1.75rem;
    opacity: 0.6;
    letter-spacing: 1rem;
}

.kanna-tagline {
    padding: 2rem 3rem;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--dark);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.kanna-bars {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.kanna-bar {
    position: relative;
    padding: 2rem;
    min-height: 100px;
    display: flex;
    align-items: center;
    gap: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.kanna-bar:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(17, 208, 207, 0.2);
}

.bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #11d0cf 0%, #7ee8e7 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 16px;
}

.kanna-bar:hover .bar-fill {
    opacity: 0.4;
}

.bar-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bar-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
}

.bar-desc {
    font-size: 0.95rem;
    color: #4b5563;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.science-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.science-left h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.science-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.science-list li {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.7;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.science-visual {
    font-size: 6rem;
    text-align: center;
    animation: plantFloat 4s ease-in-out infinite;
}

@keyframes plantFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.diff-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.diff-card {
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.diff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(17, 208, 207, 0.3);
}

.diff-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.diff-card p {
    color: #374151;
    line-height: 1.7;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.dose-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.dose-bar {
    position: relative;
    cursor: pointer;
}

.dose-outer {
    position: relative;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    height: 80px;
    overflow: hidden;
}

.dose-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #11d0cf 0%, #7ee8e7 100%);
    width: 0%;
    transition: width 0.8s ease;
}

.dose-bar:hover .dose-fill {
    width: 100%;
}

.dose-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 2rem;
    z-index: 2;
}

.dose-amount {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
}

.dose-effect {
    font-size: 0.95rem;
    color: #4b5563;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.dose-note {
    text-align: center;
    font-size: 1rem;
    color: #374151;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.in-view-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.in-view-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
}

@media (max-width: 1024px) {
    .about-container, .science-container {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .about-hero, .kanna-hero {
        padding: 4rem 1.5rem 3rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .section-pad {
        padding: 2.5rem 1.5rem;
    }
    
    .section-title {
        font-size: 1.875rem;
        margin-bottom: 2rem;
    }
    
    .pillars-grid, .formula-cards, .diff-cards {
        grid-template-columns: 1fr;
    }
    
    .mission-visual, .science-visual {
        font-size: 4rem;
    }
}

/* LEARN PAGE STYLES */

.learn-hero {
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 40px rgba(255, 255, 255, 0.6);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.hero-sales-line {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.8;
    font-weight: 500;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.hero-image-card {
    position: relative;
    padding: 2rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatCard 6s ease-in-out infinite;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.floating-aura {
    position: absolute;
    inset: -20px;
    border-radius: 24px;
    background: radial-gradient(circle at 30% 30%, rgba(17, 208, 207, 0.4), transparent);
    pointer-events: none;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 30px rgba(17, 208, 207, 0.3), inset 0 0 30px rgba(17, 208, 207, 0.2); }
    50% { box-shadow: 0 0 50px rgba(17, 208, 207, 0.5), inset 0 0 50px rgba(17, 208, 207, 0.3); }
}

.scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0.7;
}

.scroll-arrow {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.scroll-cue p {
    font-size: 0.9rem;
    color: #374151;
    margin-top: 0.5rem;
}

/* BENEFIT PILLS */
.benefit-pills {
    background: rgba(255, 255, 255, 0.05);
}

.pills-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-pill {
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.benefit-pill::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(17, 208, 207, 0.3), rgba(126, 232, 231, 0.3));
    width: 0;
    transition: width 0.4s ease;
    z-index: 0;
}

.benefit-pill:hover::before {
    width: 100%;
}

.benefit-pill:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(17, 208, 207, 0.3);
}

.pill-left, .pill-right {
    position: relative;
    z-index: 1;
}

.pill-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    display: block;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.pill-feel {
    color: #6b7280;
    font-size: 1.05rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.pill-detail {
    grid-column: 1 / -1;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    animation: expandDetail 0.3s ease;
}

@keyframes expandDetail {
    from { opacity: 0; max-height: 0; }
    to { opacity: 1; max-height: 200px; }
}

.pill-detail p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.7;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.sparkles {
    position: absolute;
    right: 20px;
    top: 50%;
    pointer-events: none;
    font-size: 1.5rem;
    opacity: 0;
}

.sparkles.burst {
    animation: sparkle-burst 1s ease-out;
}

@keyframes sparkle-burst {
    0% { opacity: 1; transform: translateY(0) translateX(0); }
    100% { opacity: 0; transform: translateY(-80px) translateX(60px); }
}

/* SCIENCE SECTION */
.science-section {
    background: rgba(255, 255, 255, 0.05);
}

.science-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.science-left h2, .science-right h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2.5rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.timeline-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-card {
    padding: 2rem;
    position: relative;
    animation: slideInLeft 0.6s ease-out backwards;
}

.timeline-card:nth-child(1) { animation-delay: 0s; }
.timeline-card:nth-child(2) { animation-delay: 0.2s; }
.timeline-card:nth-child(3) { animation-delay: 0.4s; }

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.timeline-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.timeline-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.timeline-card p {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.7;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* QUOTE CAROUSEL */
.quote-carousel {
    position: relative;
    min-height: 300px;
    margin-bottom: 2rem;
}

.quote-card {
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.quote-card.active {
    opacity: 1;
    position: relative;
}

.quote-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.expert-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(17, 208, 207, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quote-mark {
    font-size: 4rem;
    color: rgba(17, 208, 207, 0.4);
    line-height: 1;
}

.quote-card p {
    font-size: 1.05rem;
    font-style: italic;
    color: #374151;
    line-height: 1.8;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.quote-attribution {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 500;
}

.quote-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    z-index: 100;
}

.quote-prev, .quote-next {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--dark);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    position: relative;
    z-index: 101;
    pointer-events: auto;
}

.quote-prev:hover, .quote-next:hover {
    background: rgba(17, 208, 207, 0.3);
    border-color: rgba(17, 208, 207, 0.6);
}

.quote-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--teal);
    box-shadow: 0 0 10px rgba(17, 208, 207, 0.6);
}

/* FORMULA SECTION */
.formula-section {
    background: rgba(255, 255, 255, 0.05);
}

.ingredient-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.ingredient-card {
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.ingredient-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(17, 208, 207, 0.3);
}

.ingredient-image {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.ingredient-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.ingredient-card p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.7;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.formula-note {
    text-align: center;
    font-size: 0.95rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* DOSE SECTION */
.dose-section {
    background: rgba(255, 255, 255, 0.05);
}

.dose-segment-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.dose-segment {
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.dose-segment:hover {
    background: rgba(17, 208, 207, 0.2);
    border-color: rgba(17, 208, 207, 0.6);
}

.dose-segment.active {
    background: linear-gradient(135deg, rgba(17, 208, 207, 0.6), rgba(126, 232, 231, 0.6));
    border-color: var(--teal);
    box-shadow: 0 0 20px rgba(17, 208, 207, 0.5);
}

.segment-label {
    display: block;
    font-size: 0.95rem;
}

.dose-descriptions {
    max-width: 900px;
    margin: 0 auto 2rem;
}

.dose-desc {
    display: none;
    padding: 2.5rem;
    animation: fadeIn 0.4s ease;
}

.dose-desc.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.dose-desc h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.dose-desc p {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.dose-info {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.dose-info p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #374151;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* SAFETY SECTION */
.safety-section {
    background: rgba(255, 255, 255, 0.05);
}

.safety-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.safety-icon {
    font-size: 3rem;
    text-align: center;
}

.safety-list {
    list-style: none;
}

.safety-list li {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.safety-list strong {
    color: var(--dark);
    font-weight: 700;
}

/* LEARN FAQ */
.learn-faq {
    background: rgba(255, 255, 255, 0.05);
}

.learn-faq .faq-list {
    max-width: 900px;
    margin: 0 auto;
}

/* ========== SHIPPING POLICY PAGE ========== */

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.policy-card {
    padding: 4rem;
    max-width: 100%;
}

.policy-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.9),
        0 0 40px rgba(255, 255, 255, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.policy-intro {
    font-size: 1.15rem;
    color: #374151;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(17, 208, 207, 0.2);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.policy-section p {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.policy-section ul {
    margin: 1.25rem 0 1.25rem 2rem;
    list-style: disc;
}

.policy-section li {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.policy-section a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.policy-section a:hover {
    color: #0da5a4;
    text-decoration: underline;
}

.policy-section em {
    font-style: italic;
    color: #6b7280;
}

.warm-weather {
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.3), rgba(253, 230, 138, 0.3));
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.policy-disclaimer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(17, 208, 207, 0.2);
    text-align: center;
}

.policy-disclaimer p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .learn-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 6rem 2rem 3rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .science-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .scroll-cue {
        display: none;
    }
}

@media (max-width: 768px) {
    .learn-hero {
        padding: 4rem 1.5rem 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .benefit-pill {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dose-segment-bar {
        grid-template-columns: 1fr;
    }

    .safety-card {
        grid-template-columns: 1fr;
    }

    .hero-image-card {
        min-height: 250px;
    }
    
    .hero-product-image {
        transform: scale(1.5);
    }
    
    /* Prevent Learn page hero image from overflowing */
    .learn-hero .hero-image {
        max-width: 100%;
        transform: none;
    }
}

@media (max-width: 480px) {
    .gate-headline {
        font-size: 2rem;
    }
    
    .logo {
        width: 260px;
        height: auto;
    }
    
    .cloud-aura {
        width: 300px;
        height: 180px;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .kanna-headline {
        font-size: 2rem;
    }
    
    .policy-card {
        padding: 2rem 1.5rem;
    }
    
    .policy-title {
        font-size: 2rem;
    }
}

/* ========== ENHANCED MOBILE OPTIMIZATION ========== */
@media (max-width: 768px) {
    /* Fixed sky background layer for mobile - html has solid purple for Safari URL bar */
    html {
        background-color: #c4b5fd !important;
    }
    
    body,
    body.sohi-bg {
        background: transparent !important;
    }
    
    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        pointer-events: none;
        background-color: #c4b5fd;
        background-image: url('/attached_assets/8DB9D6C7-5EEC-4AA4-9899-1499C3CC9010_1768276412172.png');
        background-size: cover;
        background-position: 10% 5%;
        background-repeat: no-repeat;
    }
    
    /* Improve overall readability on mobile */
    body,
    body.sohi-bg {
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
    }
    
    /* Better mobile navigation */
    .sticky-nav {
        top: 35px;
        padding: 0.75rem 0;
        background: linear-gradient(180deg, 
            rgba(196, 181, 253, 0.35) 0%,
            rgba(255, 255, 255, 0.1) 30%,
            rgba(255, 255, 255, 0.1) 100%);
    }
    
    .sticky-nav.scrolled {
        background: linear-gradient(180deg, 
            rgba(196, 181, 253, 0.4) 0%,
            rgba(255, 255, 255, 0.15) 30%,
            rgba(255, 255, 255, 0.15) 100%);
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo img {
        height: 42px;
    }
    
    .sticky-nav.scrolled .nav-logo img {
        height: 36px;
    }
    
    /* Mobile navigation - hide desktop links, show hamburger */
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    .nav-left {
        display: flex;
        align-items: center;
        z-index: 10;
    }
    
    .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .nav-logo img {
        height: 55px;
    }
    
    .sticky-nav.scrolled .nav-logo img {
        height: 48px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-right {
        z-index: 10;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-drawer {
        display: block;
    }
    
    /* Larger touch targets for cart */
    .cart-icon {
        font-size: 1.75rem;
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Age gate mobile improvements */
    .age-gate-content {
        padding: 2rem 1.5rem;
    }
    
    .age-text {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
    
    .age-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .age-button-yes,
    .age-button-no {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.125rem;
        min-height: 54px;
    }
    
    /* Hero section mobile */
    .hero-ecommerce {
        padding: 6rem 1rem 0.5rem;
        margin-top: 1rem;
    }
    
    .hero-container {
        display: flex;
        flex-direction: column-reverse;
        gap: 0;
    }
    
    .hero-left {
        padding: 0 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-right {
        display: flex;
        justify-content: center;
        margin-bottom: -1rem;
    }
    
    .product-showcase {
        max-width: 500px;
        margin: 0 auto;
        padding: 0;
    }
    
    .hero-product-image {
        max-width: 100%;
        width: 100%;
        height: auto;
        margin-left: 0;
    }
    
    .hero-headline {
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
    }
    
    .hero-benefits {
        align-items: flex-start;
    }
    
    .benefit-item {
        justify-content: flex-start;
    }
    
    .hero-label {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-headline {
        font-size: 2.25rem;
        line-height: 1.15;
        margin-bottom: 1.25rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    .hero-benefits {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .benefit-tag {
        font-size: 1rem;
        padding: 0.625rem 1.25rem;
    }
    
    /* Better CTA buttons on mobile */
    .hero-cta {
        gap: 1rem;
        flex-direction: column;
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.125rem;
        min-height: 54px;
    }
    
    /* Social icons mobile */
    .social-icons {
        margin-top: 1rem;
        gap: 14px;
    }
    
    .social-link {
        width: 48px;
        height: 48px;
    }
    
    .social-icon {
        width: 26px;
        height: 26px;
    }
    
    /* Features marquee - tighter on mobile */
    .features-marquee {
        padding: 1.25rem 0;
    }
    
    .marquee-track {
        animation-duration: 18s;
    }
    
    /* Product listing - much tighter top padding */
    .product-listing {
        padding: 2rem 1.5rem;
    }
    
    /* Vibe heading - reduce bottom margin */
    .vibe-heading-container {
        margin-bottom: 1.5rem;
    }
    
    /* Product section mobile */
    .product-section {
        padding: 4rem 1.5rem;
    }
    
    .section-heading {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .section-subheading {
        font-size: 1.125rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    /* Product cards - better mobile touch */
    .product-card {
        padding: 1.5rem;
    }
    
    .product-image {
        height: 200px;
        margin-bottom: 1.25rem;
    }
    
    .product-name {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .product-tagline {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .product-price {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .btn-add-cart {
        padding: 1rem 1.5rem;
        font-size: 1.125rem;
        min-height: 50px;
        width: 100%;
    }
    
    /* Vibe cards mobile optimization */
    .vibe-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vibe-card {
        padding: 2rem;
        border-radius: 35px;
        backdrop-filter: blur(15px);
    }
    
    .vibe-image {
        border-radius: 20px;
    }
    
    .vibe-name {
        font-size: 1.625rem;
        margin-bottom: 0.875rem;
    }
    
    .vibe-desc {
        font-size: 1.0625rem;
        line-height: 1.7;
        margin-bottom: 1.75rem;
    }
    
    .vibe-price {
        font-size: 2rem;
    }
    
    .btn-vibe-cart {
        padding: 1rem 1.5rem;
        font-size: 1.125rem;
        min-height: 54px;
        width: 100%;
    }
    
    /* Sweet spot section mobile */
    .sweet-spot-section {
        padding: 4rem 1.5rem;
    }
    
    .sweet-spot-headline {
        font-size: 1.875rem;
        line-height: 1.25;
        margin-bottom: 1.25rem;
    }
    
    .sweet-spot-description {
        font-size: 1.125rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }
    
    .capsule {
        padding: 1.25rem;
        min-height: 120px;
    }
    
    .capsule-emoji {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .capsule-text {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Kanna section mobile */
    .kanna-section {
        padding: 4rem 1.5rem;
    }
    
    .kanna-headline {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .kanna-description {
        font-size: 1.125rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }
    
    .kanna-plant-wrapper {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    /* FAQ mobile improvements */
    .faq-section {
        padding: 3rem 1.5rem 2rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.25rem;
        font-size: 1.125rem;
        line-height: 1.4;
        min-height: 60px;
    }
    
    .faq-answer {
        padding: 0 1.25rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
    
    .faq-answer p {
        font-size: 1.0625rem;
        line-height: 1.7;
    }
    
    .faq-icon {
        font-size: 1.75rem;
        flex-shrink: 0;
        margin-left: 1rem;
    }
    
    /* Footer mobile */
    .footer {
        padding: 1.5rem 1.5rem 2rem;
    }
    
    .copyright {
        color: #1f2937;
        font-weight: 500;
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 1),
            0 0 40px rgba(255, 255, 255, 0.8);
    }
    
    .disclaimer {
        color: #374151;
        text-shadow: 
            0 0 15px rgba(255, 255, 255, 1),
            0 0 30px rgba(255, 255, 255, 0.7);
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links a {
        font-size: 1rem;
        padding: 0.5rem;
        color: #1f2937;
        font-weight: 500;
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 1),
            0 0 40px rgba(255, 255, 255, 0.8);
    }
    
    /* About page mobile */
    .about-hero {
        padding: 4rem 1.5rem 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.7;
    }
    
    .mission-glass-card,
    .values-card,
    .vision-card {
        padding: 2rem 1.5rem;
    }
    
    .mission-glass-card h2,
    .values-card h2,
    .vision-card h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .mission-glass-card p,
    .values-card p,
    .vision-card p {
        font-size: 1.0625rem;
        line-height: 1.7;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
    
    .value-item h3 {
        font-size: 1.25rem;
    }
    
    .value-item p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Contact page mobile */
    .contact-main {
        padding: 8rem 1.5rem 3rem 1.5rem;
    }
    
    .contact-hero {
        padding: 0 0.5rem;
    }
    
    .contact-heading {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .contact-subtext {
        font-size: 1rem;
        line-height: 1.7;
        padding: 0 0.25rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-tabs {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .tab-button {
        padding: 1rem;
        font-size: 1.125rem;
        min-height: 50px;
        width: 100%;
    }
    
    .form-group label {
        font-size: 1rem;
        margin-bottom: 0.625rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 1rem;
        padding: 0.875rem 1rem;
        min-height: 50px;
    }
    
    .form-group textarea {
        min-height: 140px;
    }
    
    .submit-button {
        padding: 1rem 2rem;
        font-size: 1.125rem;
        min-height: 54px;
        width: 100%;
    }
    
    /* Learn page mobile */
    .page-main {
        padding-top: 3rem;
    }
    
    .section-pad {
        padding: 2rem 1.5rem;
    }
    
    /* What kanna actually does - centered on mobile */
    .pills-container {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-pill {
        padding: 1.5rem;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.75rem;
        width: 100%;
    }
    
    .pill-left, .pill-right {
        text-align: center;
    }
    
    .pill-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .pill-feel {
        font-size: 1rem;
    }
    
    .pill-detail {
        text-align: center;
    }
    
    /* How kanna works - stack columns and center on mobile */
    .science-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .timeline-card {
        text-align: center;
        padding: 1.75rem;
    }
    
    .timeline-icon {
        font-size: 3.5rem;
        margin-bottom: 1.25rem;
    }
    
    .timeline-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .timeline-card p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .science-left h2, .science-right h2 {
        text-align: center;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* Shipping policy mobile */
    .policy-container {
        padding: 4rem 1.5rem;
    }
    
    .policy-card {
        padding: 2.5rem 1.5rem;
    }
    
    .policy-title {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: 1.25rem;
    }
    
    .policy-intro {
        font-size: 1.0625rem;
        line-height: 1.7;
        margin-bottom: 2.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
        margin-bottom: 0.875rem;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .warm-weather {
        padding: 1.5rem;
    }
    
    /* Announcement bar mobile */
    .announcement-bar {
        height: 36px;
        font-size: 0.875rem;
    }
    
    .site-wrapper {
        padding-top: 36px;
    }
    
    body.sohi-bg {
        padding-top: 36px;
    }
    
    body.sohi-bg .sticky-nav {
        position: fixed;
        top: 36px;
        left: 0;
        right: 0;
    }
    
    /* Better scroll behavior */
    * {
        -webkit-tap-highlight-color: rgba(17, 208, 207, 0.2);
    }
    
    /* Improve glassmorphism for mobile performance */
    .glass-card,
    .product-card,
    .faq-item,
    .capsule,
    .mission-glass-card,
    .values-card,
    .vision-card,
    .contact-card,
    .policy-card {
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
    
    /* Social carousel mobile improvements */
    .social-card {
        min-width: 280px;
        padding: 1.5rem;
    }
    
    .social-handle {
        font-size: 1rem;
    }
    
    .social-quote {
        font-size: 1.0625rem;
        line-height: 1.6;
    }
}

/* ========== PERFORMANCE OPTIMIZATIONS ========== */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Mobile performance - reduce blur effects */
@media (max-width: 768px) {
    .announcement-bar {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    
    .sticky-nav {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    
    .sticky-nav.scrolled {
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
    
    .mobile-drawer .drawer-content {
        background: linear-gradient(180deg, 
            #11d0cf 0%, 
            #7ee8e7 35%,
            #b8e6e6 70%,
            #e0fffe 100%);
    }
    
    .vibe-card {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    
    .product-card {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    /* Disable expensive animations on mobile */
    .product-card-3d {
        animation: none;
    }
    
    .hero-product-image {
        animation: heroFloat 6s ease-in-out infinite;
        filter: drop-shadow(0 15px 35px rgba(167, 139, 250, 0.4));
    }
    
    /* Simplify text shadows on mobile */
    .hero-headline,
    .section-heading,
    .kanna-headline,
    .vibe-name {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    /* Disable grain overlay on mobile for better performance */
    .grain-overlay {
        display: none;
    }
}

/* GPU acceleration hints for animated elements */
.marquee-track,
.announcement-content {
    will-change: transform;
}

/* Content visibility for below-fold sections */
.kanna-section,
.faq-section,
.lifestyle-section,
.product-section,
.sweet-spot-section {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

/* Layout containment for performance */
.vibe-card,
.product-card,
.faq-item,
.lifestyle-card {
    contain: layout style;
}

/* Reduce paint complexity on scroll */
.sticky-nav {
    contain: layout style paint;
}

/* Optimize transitions - use transform/opacity only */
.btn-primary,
.btn-secondary,
.nav-link {
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* CSS Containment for major sections */
.product-listing,
.kanna-section,
.vibe-section,
.faq-section,
.newsletter-section,
.hero-section,
.sweet-spot-section {
    contain: layout style;
}

/* Pause animations when off-screen */
.paused-animation * {
    animation-play-state: paused !important;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .marquee-track {
        animation: none;
    }
    
    .hero-product-image {
        animation: none;
    }
}
