/* Font declarations */
@font-face {
    font-family: 'Avenir Next LT Pro';
    src: url('fonts/AvenirNextLTPro-UltLt.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir Next LT Pro';
    src: url('fonts/AvenirNextLTPro-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Plutur';
    src: url('fonts/Plutur.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Nord-Light';
    src: url('fonts/Nord-Light.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Nord-Thin';
    src: url('fonts/Nord-Thin.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
/* ============================================
   FIBER X - COMPREHENSIVE RESPONSIVE DESIGN SYSTEM
   Modern, mobile-first approach
   
   BREAKPOINTS:
   - xs: 320px  (Small phones)
   - sm: 480px  (Large phones)
   - md: 768px  (Tablets)
   - lg: 992px  (Small laptops)
   - xl: 1200px (Desktops)
   - xxl: 1400px (Large desktops)
   
   FEATURES:
   ✓ Fluid typography using clamp()
   ✓ Consistent spacing system
   ✓ Responsive containers
   ✓ Mobile-first media queries
   ✓ CSS custom properties for maintainability
   ✓ Optimized for all screen sizes
   
   ============================================ */

:root {
    /* Breakpoints */
    --breakpoint-xs: 320px;
    --breakpoint-sm: 480px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --breakpoint-xxl: 1400px;
    
    /* Spacing System */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Container Widths */
    --container-sm: 540px;
    --container-md: 720px;
    --container-lg: 960px;
    --container-xl: 1140px;
    --container-xxl: 1320px;
    
    /* Typography Scale */
    --text-xs: clamp(0.75rem, 2vw, 0.875rem);
    --text-sm: clamp(0.875rem, 2.5vw, 1rem);
    --text-base: clamp(1rem, 2.8vw, 1.125rem);
    --text-lg: clamp(1.125rem, 3vw, 1.25rem);
    --text-xl: clamp(1.25rem, 3.5vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 4vw, 2rem);
    --text-3xl: clamp(2rem, 5vw, 2.5rem);
    --text-4xl: clamp(2.5rem, 6vw, 3.5rem);
    --text-5xl: clamp(3rem, 8vw, 5rem);
    
    /* Colors */
    --color-primary: #d58b2a;
    --color-primary-light: #e7a23c;
    --color-text: rgba(255, 255, 255, 0.8);
    --color-text-muted: rgba(255, 255, 255, 0.45);
    --color-bg-card: rgba(0, 0, 0, 0.3);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000; /* fallback */
    background: linear-gradient(225deg, 
        #8B4513 10%, 
        #2F1B14 40%, 
        #1A0A0A 60%,  
        #6B2C6B 100%);
    background-attachment: fixed;
    background-size: cover;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
    overscroll-behavior: none; /* prevent pull-to-refresh and bounce */
    width: 100%;
    max-width: 100vw;
}

body.splash-active {
    overflow: hidden;
    height: 100vh;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 1.5rem 2rem;
    transition: all 0.3s ease;
    min-height: 80px;
}

/* Logo positioned at extreme left */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.logo {
    width: 40px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.75;
}

.logo-text {
    font-family: 'Nord-Thin', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.5px;
}

/* Navigation bar centered */
.navigation {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 0.5rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: auto;
    min-width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.nav-link {
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

/* Active section link */
.nav-link.active {
    color: #fff;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: linear-gradient(135deg, #d58b2a 0%, #e7a23c 100%);
    border-radius: 2px;
}

/* Mobile Hamburger Menu */
.hamburger-menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.hamburger-menu:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.05);
}

.hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-navigation {
    position: absolute;
    top: 100%;
    right: 1rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1rem 0;
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.mobile-navigation.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-link {
    display: block;
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    margin: 0.25rem 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(20px);
    position: relative;
    overflow: hidden;
}

.mobile-navigation.active .mobile-nav-link {
    animation: mobileNavSlideIn 0.4s ease-out forwards;
}

.mobile-navigation.active .mobile-nav-link:nth-child(1) { animation-delay: 0.05s; }
.mobile-navigation.active .mobile-nav-link:nth-child(2) { animation-delay: 0.1s; }
.mobile-navigation.active .mobile-nav-link:nth-child(3) { animation-delay: 0.15s; }
.mobile-navigation.active .mobile-nav-link:nth-child(4) { animation-delay: 0.2s; }

.mobile-nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(0);
}

.mobile-nav-link:active {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0.98);
}

@keyframes mobileNavSlideIn {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hide header during splash screen */
body.splash-active .header {
    opacity: 0;
    pointer-events: none;
}

/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #000000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.splash-screen.splash-exit {
    opacity: 0;
    pointer-events: none;
}

.splash-screen.splash-exit .splash-content {
    animation: splashContentOut 0.8s ease-in forwards;
}

.splash-screen.splash-exit .splash-title {
    animation: splashTitleOut 0.8s ease-in forwards;
}

.splash-screen.splash-exit .splash-subtitle {
    animation: splashSubtitleOut 0.8s ease-in forwards;
}

/* Background orbs */
.splash-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.splash-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.splash-orb-1 {
    top: 25%;
    left: 25%;
    width: 16rem;
    height: 16rem;
    background: rgba(213, 139, 42, 0.2);
    animation: splashOrb1 4s ease-in-out infinite;
}

.splash-orb-2 {
    bottom: 25%;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(213, 139, 42, 0.1);
    animation: splashOrb2 3s ease-in-out infinite 1s;
}

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

@keyframes splashOrb2 {
    0%, 100% { transform: scale(1.2); opacity: 0.2; }
    50% { transform: scale(1); opacity: 0.4; }
}

/* Particles */
.splash-particles {
    position: absolute;
    inset: 0;
}

.splash-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #d58b2a;
    border-radius: 50%;
    animation: splashParticle 3s ease-out infinite;
}

@keyframes splashParticle {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-100px); opacity: 0; }
}

/* Content */
.splash-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: splashContentIn 0.9s ease-out forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
}

@keyframes splashContentIn {
    0% { opacity: 0; transform: translateY(80px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.splash-title {
    font-family: 'Nord-Thin', 'Avenir Next LT Pro', sans-serif;
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: normal;
    background: linear-gradient(225deg, 
        #8B4513 10%,
        #6B2C6B 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: -1rem;
    animation: splashTitleIn 1s ease-out 0.2s both, gradientMove 0.1s ease-in-out infinite;
}

.splash-accent {
    background: linear-gradient(135deg, #d58b2a 0%, #e7a23c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.splash-subtitle {
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-size: clamp(1.25rem, 4vw, 1.4rem);
    color: #ffffff 0.5;
    font-weight: 100;
    opacity: 0.3;
    animation: splashSubtitleIn 0.8s ease-out 0.4s both;
    text-align: center;
    margin-left: 0;
    margin-top: 0;
    width: 100%;
    max-width: 100%;
}

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

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

@keyframes splashSubtitleIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 0.3; transform: translateY(0); }
}

/* Exit animations - reverse of entry */
@keyframes splashContentOut {
    0% { opacity: 1; transform: translateY(0) scale(1); }
    100% { opacity: 0; transform: translateY(80px) scale(0.95); }
}

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

@keyframes splashSubtitleOut {
    0% { opacity: 0.3; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(30px); }
}

/* Global Background Particles */
.bg-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.bg-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #d58b2a;
    border-radius: 50%;
    opacity: 0;
    animation: bgParticleFloat 4s ease-out infinite;
}

@keyframes bgParticleFloat {
    0% { 
        transform: translateY(0) scale(0.5); 
        opacity: 0; 
    }
    20% { 
        opacity: 0.8; 
    }
    80% {
        opacity: 0.4;
    }
    100% { 
        transform: translateY(-120px) scale(1); 
        opacity: 0; 
    }
}

/* Hero section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent; /* allow fixed body background to show */
    opacity: 0;
    transform: translateX(-150px); /* Start from left for left-to-right animation */
    overflow: hidden;
    width: 100%;
}

/* Hero slides in from left after splash exits */
body:not(.splash-active) .hero {
    animation: heroSlideIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes heroSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-150px); /* Negative value = left of final position = moves RIGHT */
    }
    100% {
        opacity: 1;
        transform: translateX(0); /* Final position */
    }
}

/* Global fixed overlays so background effects stay static */
/* body::before {
    content: none;
}

body::after {
    content: none;
} */

/* ============================================
   RESPONSIVE CONTAINER SYSTEM
   ============================================ */
.container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding-left: var(--spacing-sm);
    padding-right: var(--spacing-sm);
}

/* Responsive container widths */
@media (min-width: 576px) {
    .container {
        max-width: var(--container-sm);
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }
}

@media (min-width: 768px) {
    .container {
        max-width: var(--container-md);
    }
}

@media (min-width: 992px) {
    .container {
        max-width: var(--container-lg);
        padding-left: var(--spacing-lg);
        padding-right: var(--spacing-lg);
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: var(--container-xl);
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: var(--container-xxl);
    }
}

/* ============================================
   HERO CONTENT LAYOUT - Fully Responsive
   ============================================ */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    min-height: 70vh;
    padding: var(--spacing-lg) 0;
    text-align: center;
}

/* Tablet and up - centered layout */
@media (min-width: 768px) {
    .content {
        min-height: 80vh;
    }
}

@media (min-width: 992px) {
    .content {
        gap: var(--spacing-xl);
    }
}

@media (min-width: 1200px) {
    .content {
        gap: var(--spacing-xxl);
    }
}

/* Text content */
.text-content {
    opacity: 0;
    transform: translateY(80px); /* Positive = starts below, moves UP */
    position: relative;
}

body:not(.splash-active) .text-content {
    animation: contentSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

@keyframes contentSlideUp {
    0% {
        opacity: 0;
        transform: translateY(80px); /* Positive = starts below */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* Ends at final position (moved UP) */
    }
}

/* ============================================
   RESPONSIVE TYPOGRAPHY
   ============================================ */
.main-heading {
    font-family: 'Avenir Next LT Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: var(--text-3xl);
    font-weight: 200;
    color: var(--color-text);
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    opacity: 0;
    transform: translateY(80px);
}

@media (min-width: 768px) {
    .main-heading {
        font-size: var(--text-4xl);
        margin-bottom: var(--spacing-lg);
    }
}

@media (min-width: 1200px) {
    .main-heading {
        font-size: clamp(3.5rem, 5vw, 4.5rem);
    }
}

body:not(.splash-active) .main-heading {
    animation: contentSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.subtext {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    transform: translateY(80px);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .subtext {
        font-size: var(--text-lg);
        margin-bottom: var(--spacing-xl);
    }
}

body:not(.splash-active) .subtext {
    animation: contentSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.0s forwards;
}

/* ============================================
   RESPONSIVE BUTTON SYSTEM
   ============================================ */
.cta-button {
    background: linear-gradient(to bottom, #dfac61 0%, #8a582d 100%);
    color: rgba(255, 255, 255, 0.9);
    border: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--text-base);
    font-weight: 400;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Avenir Next LT Pro', sans-serif;
    letter-spacing: 0.5px;
    opacity: 0.8;
    transform: translateY(80px);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 280px;
}

@media (min-width: 576px) {
    .cta-button {
        width: auto;
        padding: var(--spacing-sm) var(--spacing-xl);
    }
}

@media (min-width: 768px) {
    .cta-button {
        font-size: var(--text-lg);
    }
}

body:not(.splash-active) .cta-button {
    animation: contentSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(223, 172, 97, 0.3);
    opacity: 1;
}

.cta-button:active {
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE PRODUCT IMAGE
   ============================================ */
.image-content {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(80px);
    order: 1;
    width: 100%;
    min-width: 0;
}

@media (min-width: 768px) {
    .image-content {
        order: 2;
        width: auto;
        min-width: fit-content;
    }
}

body:not(.splash-active) .image-content {
    animation: contentSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.0s forwards;
}

.text-content {
    order: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .text-content {
        order: 1;
        text-align: center;
    }
}

.product-glow {
    position: relative;
    padding: var(--spacing-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media (min-width: 768px) {
    .product-glow {
        padding: var(--spacing-lg);
        width: auto;
        min-width: fit-content;
    }
}

.product-image {
    width: clamp(320px, 42vw, 450px);
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 0 30px rgba(213, 139, 42, 0.3));
    animation: gentleGlow 3s ease-in-out infinite alternate;
}

@keyframes gentleGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(213, 139, 42, 0.2));
    }
    100% {
        filter: drop-shadow(0 0 40px rgba(213, 139, 42, 0.4));
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    text-align: center;
    opacity: 0;
    transform: translate(-50%, 80px); /* Positive = starts below, moves UP */
    z-index: 3;
    white-space: nowrap;
}

body:not(.splash-active) .scroll-indicator {
    animation: scrollIndicatorSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

@keyframes scrollIndicatorSlideUp {
    0% {
        opacity: 0;
        transform: translate(-50%, 80px); /* Starts below */
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0); /* Ends at final position (moved UP) */
    }
}

.scroll-text {
    color: #bbb;
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.scroll-line {
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, #d58b2a, transparent);
    margin: 0 auto;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 6rem 0 2rem;
    }
    
    .content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        align-items: center;
        min-height: auto;
        padding: 1rem 0;
    }
    
    .image-content {
        order: 1;
        margin-bottom: 1rem;
        padding: 0;
        display: flex;
        justify-content: center;
    }
    
    .text-content {
        order: 2;
        padding: 0;
    }
    
    .container {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .main-heading {
        font-size: clamp(1.8rem, 6.5vw, 2.5rem);
        line-height: 1.25;
        margin-bottom: 1.25rem;
        padding: 0;
    }
    
    .subtext {
        font-size: clamp(0.95rem, 3.2vw, 1.15rem);
        line-height: 1.5;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        margin: 0 auto;
        display: block;
        width: fit-content;
        max-width: 90%;
    }
    
    .product-glow {
        padding: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .product-image {
        width: min(450px, 90vw);
        max-width: 500px;
        height: auto;
    }
    
    .scroll-indicator {
        bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 0 1.5rem;
    }
    
    .content {
        gap: 2rem;
        padding: 0.5rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .main-heading {
        font-size: clamp(1.6rem, 7.5vw, 2.2rem);
        line-height: 1.3;
        margin-bottom: 1rem;
        padding: 0;
    }
    
    .subtext {
        font-size: clamp(0.9rem, 3.8vw, 1.05rem);
        line-height: 1.6;
        margin-bottom: 1.75rem;
        padding: 0;
    }
    
    .cta-button {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
        width: 90%;
        max-width: 280px;
    }
    
    .product-glow {
        padding: 0.5rem;
        width: 100%;
    }
    
    .product-image {
        width: min(400px, 85vw);
        max-width: 450px;
    }
    
    .scroll-indicator {
        bottom: 1.5rem;
    }
    
    .intro-image-extreme-left {
        max-width: 280px;
        height: 280px;
    }
    
    .accordion-image {
        height: 250px;
        max-width: 250px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    overscroll-behavior: none; /* prevent pull-to-refresh and bounce */
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Offset for fixed header when scrolling to sections */
section[id] {
    scroll-margin-top: 100px;
}

/* Smooth page loading */
body.splash-active .hero {
    opacity: 0;
    transform: translateY(100px);
}

/* ============================================
   PROBLEM SECTION - Fully Responsive
   ============================================ */
.problem {
    background: transparent;
    padding: var(--spacing-xxl) 0 var(--spacing-xl);
    position: relative;
    overflow: hidden;
    width: 100%;
}

@media (min-width: 768px) {
    .problem {
        padding: calc(var(--spacing-xxl) * 1.5) 0 var(--spacing-xxl);
    }
}

@media (min-width: 1200px) {
    .problem {
        padding: calc(var(--spacing-xxl) * 2) 0 calc(var(--spacing-xxl) * 1.5);
    }
}

.problem {
    position: relative;
}

.problem-heading {
    font-family: 'Avenir Next LT Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 200;
    color: rgba(233, 233, 233, 0.8);
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.5px;
    font-size: var(--text-xl);
    opacity: 0;
    padding: 0 var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .problem-heading {
        font-size: var(--text-2xl);
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .problem-heading {
        font-size: var(--text-3xl);
        line-height: 1.7;
        max-width: 1000px;
    }
}

@media (min-width: 992px) {
    .problem-heading {
        font-size: var(--text-4xl);
        line-height: 1.8;
        max-width: 1100px;
    }
}

@media (min-width: 1200px) {
    .problem-heading {
        font-size: clamp(2.5rem, 4vw, 3rem);
        max-width: 1200px;
    }
}

.problem-sub {
    margin-top: 1.25rem;
    text-align: center;
    font-size: clamp(1.25rem, 3.5vw, 2.25rem);
    font-weight: 400;
    background: linear-gradient(135deg, #d58b2a 0%, #e7a23c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0; /* start hidden */
}

/* Activate animations when element enters viewport via IntersectionObserver */
.problem-heading.animate-in {
    animation: fadeInUp 0.9s ease-out 0.2s both;
}

.problem-sub.animate-in {
    animation: fadeInUp 0.9s ease-out 0.9s both;
}

/* Tablet screens for problem section */
@media (min-width: 769px) and (max-width: 991px) {
    .problem {
        padding: 6rem 0 5rem;
    }
    
    .problem-heading {
        font-size: clamp(1.8rem, 4.5vw, 2.2rem);
        line-height: 1.7;
        padding: 0 1.5rem;
    }
}

/* Mobile screens for problem section */
@media (max-width: 768px) {
    .problem { 
        padding: 4rem 0 3rem; 
    }
    
    .problem-heading {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        line-height: 1.6;
        padding: 0 1rem;
    }
    
    .problem-sub {
        font-size: clamp(1.1rem, 4vw, 1.5rem);
        margin-top: 1rem;
        padding: 0 1rem;
    }
}

/* ============================================
   INTRO SECTION - Fully Responsive
   ============================================ */
.intro {
    padding: var(--spacing-xxl) 0;
    margin-top: var(--spacing-sm);
    background: transparent;
    position: relative;
    overflow: visible;
    width: 100%;
}

@media (min-width: 768px) {
    .intro {
        padding: calc(var(--spacing-xxl) * 1.5) 0;
        overflow: hidden;
    }
}

@media (min-width: 1200px) {
    .intro {
        padding: calc(var(--spacing-xxl) * 2) 0;
    }
}

/* Two-column layout for intro section */
.intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    position: relative;
    width: 100%;
    overflow: visible;
    text-align: center;
}

@media (min-width: 768px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        overflow: hidden;
        justify-items: center;
        text-align: center;
    }
}

@media (min-width: 992px) {
    .intro-content {
        gap: var(--spacing-xl);
    }
}

@media (min-width: 1200px) {
    .intro-content {
        gap: var(--spacing-xxl);
    }
}

/* Intro Typography */
.intro-title {
    font-family: 'Avenir Next LT Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 200;
    font-size: var(--text-3xl);
    letter-spacing: 0.5px;
    color: rgba(240, 240, 240, 0.8);
    opacity: 0;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

@media (min-width: 768px) {
    .intro-title {
        font-size: var(--text-4xl);
        text-align: center;
        margin-bottom: var(--spacing-lg);
    }
}

@media (min-width: 1200px) {
    .intro-title {
        font-size: clamp(3.5rem, 5vw, 5rem);
    }
}

.intro-title.animate-in {
    animation: fadeInUp 0.9s ease-out 0.2s both;
}

.intro-subtitle {
    font-family: 'Avenir Next LT Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
    font-size: var(--text-base);
    color: var(--color-text-muted);
    opacity: 0;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

@media (min-width: 768px) {
    .intro-subtitle {
        font-size: var(--text-lg);
        text-align: center;
        margin-bottom: var(--spacing-lg);
    }
}

@media (min-width: 992px) {
    .intro-subtitle {
        font-size: var(--text-xl);
    }
}

.intro-subtitle.animate-in {
    animation: fadeInUp 0.9s ease-out 0.6s both;
}

.intro-copy {
    font-family: 'Avenir Next LT Pro', sans-serif;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.7;
    font-size: var(--text-sm);
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .intro-copy {
        font-size: var(--text-base);
        text-align: center;
    }
}

@media (min-width: 992px) {
    .intro-copy {
        font-size: var(--text-lg);
    }
}
/* ============================================
   INTRO IMAGE SYSTEM - Fully Responsive
   ============================================ */
.intro-visual {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    margin: 0;
    margin-left: -1rem;
    min-height: 300px;
    width: calc(100% + 1rem);
    order: 1;
    overflow: visible;
}

@media (min-width: 768px) {
    .intro-visual {
        justify-content: center;
        margin-left: 0;
        width: 100%;
        min-height: 400px;
        order: 0;
    }
}

@media (min-width: 992px) {
    .intro-visual {
        min-height: 500px;
    }
}

@media (min-width: 1200px) {
    .intro-visual {
        min-height: 600px;
    }
}

.intro-text {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    order: 2;
    position: relative;
}

@media (min-width: 768px) {
    .intro-text {
        padding-left: 0;
        order: 1;
        max-width: 800px;
    }
}

/* Responsive intro image */
.intro-image-extreme-left {
    position: relative;
    left: -40px;
    top: 0;
    width: 200%;
    height: 300px;
    max-width: 300px;
    object-fit: contain;
    object-position: left center;
    background-color: transparent;
    mix-blend-mode: normal;
    opacity: 0.95;
    display: block;
    margin: 0;
    z-index: 1;
}

@media (min-width: 576px) {
    .intro-image-extreme-left {
        left: -20px;
        max-width: 350px;
        height: 350px;
    }
}

@media (min-width: 768px) {
    .intro-image-extreme-left {
        left: 0;
        max-width: 400px;
        height: 400px;
        margin: 0 auto;
        object-position: center;
    }
}

@media (min-width: 992px) {
    .intro-image-extreme-left {
        left: -40px;
        max-width: 500px;
        height: 500px;
    }
}

@media (min-width: 1200px) {
    .intro-image-extreme-left {
        left: -60px;
        max-width: 600px;
        height: 600px;
    }
}

@media (min-width: 1400px) {
    .intro-image-extreme-left {
        left: -80px;
        max-width: 700px;
        height: 700px;
    }
}

.intro-image-extreme-left.animate-in {
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Tablet screens */
@media (min-width: 769px) and (max-width: 991px) {
    .intro-visual {
        min-height: 450px;
    }
    
    .intro-image-extreme-left {
        left: 0;
        max-width: 450px;
        height: 500px;
    }
    
    .intro-text {
        padding-left: 1rem;
    }
}

/* Mobile and small tablets */
@media (max-width: 768px) {
    .intro {
        padding: 3rem 0 4rem;
        margin-top: 1rem;
        overflow-x: visible !important;
        overflow-y: visible !important;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        overflow: visible !important;
    }
    
    .intro-visual {
        position: relative;
        justify-content: flex-start;
        min-height: 350px;
        padding: 0;
        margin: 0;
        margin-left: -1rem;
        order: 1;
        width: calc(100% + 1rem);
        overflow: visible !important;
    }
    
    .intro-image-extreme-left {
        position: relative;
        left: -40px !important;
        top: 0;
        transform: none !important;
        width: 200%;
        max-width: 350px;
        height: 350px;
        object-fit: contain;
        object-position: left center;
        margin: 0;
    }
    
    .intro-text {
        padding-left: 0;
        text-align: center;
        order: 2;
    }
    
    .intro-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        line-height: 1.3;
        text-align: center;
    }
    
    .intro-subtitle {
        font-size: clamp(1rem, 3vw, 1.3rem);
        line-height: 1.4;
        text-align: center;
    }
    
    .intro-copy {
        font-size: clamp(0.9rem, 2.5vw, 1.05rem);
        line-height: 1.6;
        padding: 0 0.5rem;
        text-align: center;
    }
}

.intro-image.animate-in {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.intro-copy.animate-in {
    animation: fadeInUp 0.9s ease-out 0.9s both;
}

/* How Fiber-X Works */
.how {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.how-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center; /* vertically center right column with accordion stack */
}

.how-title {
    font-family: 'Avenir Next LT Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 200;
    font-size: clamp(2rem, 5.5vw, 4rem);
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    margin-top: 0;
    opacity: 0;
}

.how-title.animate-in {
    animation: fadeInUp 0.9s ease-out 0.2s both;
}

.how-title span {
    background: linear-gradient(135deg, #d58b2a 0%, #e7a23c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.how-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #d0d0d0;
    margin: 0.25rem 0 1rem;
    opacity: 0;
}

.how-badge.animate-in {
    animation: fadeInUp 0.9s ease-out 0.4s both;
}

.how-badge .dot {
    width: 12px;
    height: 12px;
    background: #e0a04a;
    border-radius: 50%;
}

.how-card {
    border: none;
    border-radius: 14px;
    padding: 1.25rem 1.25rem;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    opacity: 0;
}

.how-card.animate-in {
    animation: fadeInUp 0.9s ease-out 0.6s both;
}

.accordion {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0,0,0,0.18);
    margin-bottom: 1rem;
    opacity: 0;
}

.accordion.animate-in {
    animation: fadeInUp 0.9s ease-out both;
}

.accordion:nth-child(1) { animation-delay: 0.8s; }
.accordion:nth-child(2) { animation-delay: 1.0s; }
.accordion:nth-child(3) { animation-delay: 1.2s; }
.accordion:nth-child(4) { animation-delay: 1.4s; }

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1rem 1.25rem;
    background: none;
    color: rgba(230, 230, 230, 0.7);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    cursor: pointer;
}

.accordion-header .icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    text-align: center;
    line-height: 20px;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.accordion-panel {
    padding: 0 1.25rem;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.accordion.open .accordion-panel {
    padding-bottom: 1rem;
    max-height: 300px; /* enough for our copy */
}

.accordion.open .accordion-header .icon {
    transform: rotate(45deg); /* plus -> close */
}

.how-right .device-frame {
    background: rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 1rem;
    opacity: 0;
}

.device-frame.animate-in {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.device-canvas {
    border-radius: 18px;
    background: radial-gradient(circle at 70% 30%, rgba(213,139,42,0.15), rgba(0,0,0,0.45));
    padding: 3rem 2rem;
    position: relative;
}

.device-dot {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #d58b2a;
    opacity: 0.7;
    margin: 2rem auto 1.25rem;
}

.device-label {
    text-align: center;
    color: #e6e6e6;
    
}

.device-title { font-weight: 600; }
.device-sub { font-size: 0.9rem; color: #bfbfbf; }

.accordion-image-container {
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 0;
    background: transparent; /* remove container background */
    border-radius: 0; /* remove rounded container */
    padding: 0; /* remove extra spacing */
}

.accordion-image-container.show {
    opacity: 1;
    transform: translateY(0);
}

.accordion-image {
    width: 100%;
    max-width: 100%;
    height: 600px;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
    object-fit: contain;
    background-color: transparent;
    background-blend-mode: multiply;
    mix-blend-mode: lighten;
    filter: contrast(1.08) brightness(1.12);
    opacity: 0.65;
    transform: translateX(0);
    display: block;
    margin: 0 auto;
}

.accordion-image:hover {
    transform: translateX(0) scale(1.02);
}

/* Special styling for hunger reduction image */
.accordion-image.hunger-image {
    opacity: 0.65;
    filter: contrast(1.1) brightness(1.15) saturate(1.1);
    transform: translateX(0) scale(1.05);
}

.accordion-image.hunger-image:hover {
    transform: translateX(0) scale(1.07);
}

/* Desktop large screens - shift accordion images right */
@media (min-width: 1200px) {
    .accordion-image {
        transform: translateX(50px);
        height: 700px;
    }
    
    .accordion-image:hover {
        transform: translateX(50px) scale(1.02);
    }
    
    .accordion-image.hunger-image {
        transform: translateX(100px) scale(1.1);
    }
    
    .accordion-image.hunger-image:hover {
        transform: translateX(100px) scale(1.12);
    }
}

/* Desktop medium screens */
@media (min-width: 992px) and (max-width: 1199px) {
    .accordion-image {
        transform: translateX(20px);
        height: 550px;
    }
    
    .accordion-image:hover {
        transform: translateX(20px) scale(1.02);
    }
    
    .accordion-image.hunger-image {
        transform: translateX(40px) scale(1.08);
    }
    
    .accordion-image.hunger-image:hover {
        transform: translateX(40px) scale(1.1);
    }
}

/* Tablet and below for how section */
@media (max-width: 991px) {
    .how-grid { 
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
    
.how-left {
    order: 1;
    position: relative;
}
    
    .how-right {
        order: 2;
    }
}

/* Tablet screens */
@media (min-width: 769px) and (max-width: 991px) {
    .accordion-image-container {
        margin-top: 1.5rem;
    }
    
    .accordion-image {
        height: 500px;
        transform: translateX(0) !important;
    }
    
    .accordion-image:hover {
        transform: translateX(0) scale(1.02) !important;
    }
    
    .accordion-image.hunger-image {
        transform: translateX(0) scale(1.05) !important;
    }
    
    .accordion-image.hunger-image:hover {
        transform: translateX(0) scale(1.07) !important;
    }
}

/* Mobile and small tablets */
@media (max-width: 768px) {
    .how {
        padding: 3rem 0;
    }
    
    .how-grid {
        gap: 1.5rem;
    }
    
    .how-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        line-height: 1.3;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .how-card {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .accordion-header {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .accordion-panel {
        padding: 0 1rem;
        font-size: 0.9rem;
    }
    
    .accordion.open .accordion-panel {
        padding-bottom: 0.875rem;
    }
    
    .accordion-image-container {
        margin-top: 1.5rem;
        min-height: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .accordion-image {
        height: 300px;
        max-width: 300px;
        transform: none !important;
    }
    
    .accordion-image:hover {
        transform: scale(1.02) !important;
    }
    
    .accordion-image.hunger-image {
        transform: none !important;
        max-width: 280px;
    }
    
    .accordion-image.hunger-image:hover {
        transform: scale(1.02) !important;
    }
}

/* Timeline Section */
.timeline {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.timeline-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    position: relative;
}

.timeline-header .coming-soon-badge-section {
    margin-bottom: 1.5rem;
}

.timeline-header.animate-in {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.timeline-title {
    font-family: 'Avenir Next LT Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 200;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #f0f0f0;
    margin-bottom: 1rem;
}

.timeline-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    max-width: 42rem;
    margin: 0 auto;
}

.timeline-wrapper {
    max-width: 56rem;
    margin: 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, #d58b2a, #6b6b6b, #d58b2a);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    opacity: 0;
}

.timeline-item.animate-in {
    animation: fadeInUp 1s ease-out both;
}

.timeline-item:nth-child(2) { animation-delay: 0.1s; }
.timeline-item:nth-child(3) { animation-delay: 0.2s; }
.timeline-item:nth-child(4) { animation-delay: 0.3s; }
.timeline-item:nth-child(5) { animation-delay: 0.4s; }

.timeline-dot {
    position: absolute;
    left: 1.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: #d58b2a;
    border-radius: 50%;
    border: 4px solid #000;
    z-index: 2;
}

.timeline-content {
    margin-left: 4rem;
}

.timeline-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(213, 139, 42, 0.2);
}

.timeline-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.timeline-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #d58b2a;
}

.timeline-time {
    font-size: 0.875rem;
    font-weight: 600;
    color: #d58b2a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-text {
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    font-size: 1rem;
}

.timeline-cta {
    margin-top: 4rem;
    opacity: 0;
}

.timeline-cta.animate-in {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.timeline-cta-card {
    background: linear-gradient(to right, rgba(213, 139, 42, 0.1), transparent);
    border: 1px solid rgba(213, 139, 42, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
}

.timeline-cta-title {
    font-family: 'Avenir Next LT Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 200;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #f0f0f0;
    margin-bottom: 1rem;
}

.timeline-cta-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.timeline-cta-button {
    background: linear-gradient(135deg, #d58b2a 0%, #e7a23c 100%);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.timeline-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(213, 139, 42, 0.4);
}

@media (max-width: 768px) {
    .timeline { 
        padding: 4rem 0; 
    }
    
    .timeline-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .timeline-title {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
        line-height: 1.3;
    }
    
    .timeline-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        line-height: 1.5;
    }
    
    .timeline-wrapper {
        padding: 0 1rem;
    }
    
    .timeline-line { 
        left: 1.25rem; 
    }
    
    .timeline-dot { 
        left: 0.75rem; 
    }
    
    .timeline-content { 
        margin-left: 3rem; 
    }
    
    .timeline-card {
        padding: 1.25rem;
    }
    
    .timeline-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .timeline-cta {
        margin-top: 2.5rem;
        padding: 0 1rem;
    }
    
    .timeline-cta-card {
        padding: 1.5rem;
    }
    
    .timeline-cta-title {
        font-size: clamp(1.3rem, 4vw, 1.6rem);
    }
    
    .timeline-cta-text {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    
    .timeline-cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .product-image {
        animation: none;
    }
    
    .scroll-line {
        animation: none;
    }
}

/* Paused state for performance */
.paused * {
    animation-play-state: paused !important;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .main-heading {
        color: #fff;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }
    
    .subtext {
        color: #ddd;
    }
    
    .cta-button {
        border: 2px solid #fff;
    }
}

/* Focus states for accessibility */
.cta-button:focus {
    outline: 2px solid #e7a23c;
    outline-offset: 2px;
}

/* Challenge CTA Section */
.challenge-cta {
    padding: 8rem 0;
    background: linear-gradient(225deg, 
        #8B4513 10%, 
        #2F1B14 40%, 
        #1A0A0A 60%,  
        #6B2C6B 100%);
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.challenge-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
}

.challenge-header.animate-in {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.challenge-title {
    font-family: 'Avenir Next LT Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 200;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.challenge-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.6;
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto 4rem;
}

/* Coming Soon Section */
.coming-soon-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
    margin: 2rem 0;
    opacity: 0;
    transform: translateY(50px);
    min-height: 400px;
}

.coming-soon-section.animate-in {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.how .coming-soon-section,
.timeline .coming-soon-section {
    min-height: 300px;
    padding: 3rem 0;
}

.coming-soon-content {
    text-align: center;
    max-width: 600px;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.coming-soon-badge-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #666 0%, #888 100%);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}


.coming-soon-title {
    font-family: 'Avenir Next LT Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 200;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.coming-soon-title span {
    background: linear-gradient(135deg, #d58b2a 0%, #e7a23c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.coming-soon-text {
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.coming-soon-cta {
    background: linear-gradient(135deg, #d58b2a 0%, #e7a23c 100%);
    color: #fff;
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Avenir Next LT Pro', sans-serif;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(213, 139, 42, 0.4);
}

.coming-soon-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(213, 139, 42, 0.6);
}

.coming-soon-cta.dummy-add-to-cart {
    background: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.5) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    cursor: not-allowed;
    box-shadow: none !important;
}

.coming-soon-cta.dummy-add-to-cart:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    transform: none !important;
    box-shadow: none !important;
}

.coming-soon-cta.dummy-add-to-cart::after {
    content: ' (Coming Soon)';
    font-size: 0.85em;
    opacity: 0.7;
}

.plan-card {
    position: relative;
    background: transparent;
    border: 2px solid #333;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(10px);
}

.plan-card.animate-in {
    animation: fadeInUp 1s ease-out both;
}

.plan-card:nth-child(1) { animation-delay: 0.4s; }
.plan-card:nth-child(2) { animation-delay: 0.6s; }

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(213, 139, 42, 0.2);
}

.plan-card-30 {
    position: relative;
    padding-top: 2rem;
}

.plan-card-30:hover {
    border-color: #666;
}

.plan-card-100 {
    border-color: #d58b2a;
    position: relative;
    padding-top: 2rem;
}

.plan-card-100:hover {
    border-color: #e7a23c;
    box-shadow: 0 20px 40px rgba(213, 139, 42, 0.3);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #d58b2a;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.coming-soon-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #666 0%, #888 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}


.coming-soon-badge-section {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #666 0%, #888 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
}

.coming-soon-badge-section.animate-in {
    animation: fadeInUp 0.9s ease-out 0.1s both;
}

/* Center badge for problem section */
.problem .coming-soon-badge-section {
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.badge-icon {
    font-size: 1rem;
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-title {
    font-family: 'Avenir Next LT Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 200;
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.plan-subtitle {
    color: #d58b2a;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: 'Avenir Next LT Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.plan-duration {
    color: #999;
    font-size: 1rem;
    margin-bottom: 0;
}

.plan-description {
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
}

.plan-benefits {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    opacity: 0;
    transform: translateX(-20px);
}

.benefit-item.animate-in {
    animation: slideInLeft 0.5s ease-out both;
}

.benefit-item:nth-child(1) { animation-delay: 0.8s; }
.benefit-item:nth-child(2) { animation-delay: 0.9s; }
.benefit-item:nth-child(3) { animation-delay: 1.0s; }
.benefit-item:nth-child(4) { animation-delay: 1.1s; }
.benefit-item:nth-child(5) { animation-delay: 1.2s; }
.benefit-item:nth-child(6) { animation-delay: 1.3s; }

.benefit-icon {
    width: 1.25rem;
    height: 1.25rem;
    background: #d58b2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 600;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.benefit-item span {
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
}

.plan-cta {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
    margin-top: auto;
}

.plan-cta-30 {
    background: transparent;
    color: #d58b2a;
    border: 2px solid #d58b2a;
}

.plan-cta-30:hover {
    background: #d58b2a;
    color: #000;
    transform: scale(1.05);
}

.dummy-add-to-cart {
    background: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.5) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    cursor: not-allowed;
    position: relative;
}

.dummy-add-to-cart:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    transform: none !important;
}

.dummy-add-to-cart::after {
    content: ' (Coming Soon)';
    font-size: 0.85em;
    opacity: 0.7;
}

.plan-cta-100 {
    background: #d58b2a;
    color: #000;
}

.plan-cta-100:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(213, 139, 42, 0.4);
}

.plan-cta-100.dummy-add-to-cart {
    background: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.5) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.plan-cta-100.dummy-add-to-cart:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    transform: none !important;
    box-shadow: none !important;
}

.challenge-footer {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.challenge-footer.animate-in {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.footer-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 50rem;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.footer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-icon {
    font-size: 1.5rem;
    color: #d58b2a;
}

.footer-title {
    font-family: 'Avenir Next LT Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 200;
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
}

.footer-text {
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-details {
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    font-size: 0.875rem;
    margin: 0;
}

.challenge-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
}

.bg-orb-1 {
    top: 25%;
    left: 25%;
    width: 8rem;
    height: 8rem;
    background: #d58b2a;
    animation: pulseSlow 4s ease-in-out infinite;
}

.bg-orb-2 {
    bottom: 25%;
    right: 25%;
    width: 12rem;
    height: 12rem;
    background: #d58b2a;
    animation: pulseSlow 3s ease-in-out infinite 1s;
}

@keyframes pulseSlow {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.1; 
    }
    50% { 
        transform: scale(1.2); 
        opacity: 0.2; 
    }
}

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

/* Challenge CTA Responsive Design */
@media (max-width: 992px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 40rem;
    }
    
    .plan-card {
        max-width: 100%;
    }
    
    .coming-soon-content {
        padding: 2.5rem 1.5rem;
    }
    
    .coming-soon-badge-large {
        font-size: 1rem;
        padding: 0.875rem 1.75rem;
    }
    
    .coming-soon-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .coming-soon-text {
        font-size: 1.125rem;
    }
    
    .coming-soon-cta {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    .how .coming-soon-section,
    .timeline .coming-soon-section {
        min-height: 250px;
        padding: 2rem 0;
    }
}

@media (max-width: 768px) {
    .challenge-cta {
        padding: 4rem 0;
    }
    
    .challenge-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .challenge-title {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
        line-height: 1.3;
    }
    
    .challenge-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.2rem);
        line-height: 1.5;
    }
    
    .plans-grid {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .plan-card {
        padding: 1.5rem;
    }
    
    .plan-title {
        font-size: clamp(1.3rem, 4vw, 1.6rem);
    }
    
    .plan-subtitle {
        font-size: 0.9rem;
    }
    
    .plan-price {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }
    
    .plan-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .benefit-item span {
        font-size: 0.85rem;
    }
    
    .plan-cta {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .challenge-footer {
        padding: 0 1rem;
    }
    
    .footer-card {
        padding: 1.5rem;
    }
    
    .footer-title {
        font-size: clamp(1.2rem, 4vw, 1.4rem);
    }
    
    .footer-text {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        line-height: 1.5;
    }
    
    .footer-details {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .challenge-cta {
        padding: 3rem 0;
    }
    
    .challenge-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    
    .challenge-subtitle {
        font-size: clamp(0.85rem, 3vw, 1rem);
    }
    
    .plans-grid {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .plan-card {
        padding: 1.25rem;
    }
    
    .plan-title {
        font-size: clamp(1.1rem, 4.5vw, 1.3rem);
    }
    
    .plan-subtitle {
        font-size: 0.85rem;
    }
    
    .plan-price {
        font-size: clamp(1.5rem, 6vw, 1.8rem);
    }
    
    .plan-description {
        font-size: 0.85rem;
    }
    
    .benefit-item span {
        font-size: 0.8rem;
    }
    
    .plan-cta {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .popular-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .footer-card {
        padding: 1.25rem;
    }
    
    .footer-title {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
    
    .footer-text {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    }
    
    .footer-details {
        font-size: 0.75rem;
    }
}

/* Footer Section */
.footer-section {
    background: transparent; /* transparent background */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 100%;
}

.footer-title {
    font-family: 'Avenir Next LT Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 200;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(213, 139, 42, 0.2);
    color: #d58b2a;
    transform: translateY(-2px);
}

.social-icon {
    width: 20px;
    height: 20px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-family: 'Avenir Next LT Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    line-height: 1.6;
}

.footer-link span {
    flex: 1;
}

.footer-link:hover {
    color: #d58b2a;
    transform: translateX(5px);
}

.footer-link-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    font-size: 0.875rem;
    margin: 0;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    font-size: 0.875rem;
}

.footer-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.footer-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.05;
}

.footer-orb-1 {
    top: 20%;
    left: 20%;
    width: 8rem;
    height: 8rem;
    background: #d58b2a;
    animation: pulseSlow 4s ease-in-out infinite;
}

.footer-orb-2 {
    bottom: 20%;
    right: 20%;
    width: 12rem;
    height: 12rem;
    background: #d58b2a;
    animation: pulseSlow 3s ease-in-out infinite 1s;
}

/* Footer Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-brand {
        grid-column: 1;
    }
    
    .footer-title {
        font-size: 2rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-icon {
        width: 18px;
        height: 18px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-title {
        font-size: 1.75rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }
    
    .footer-column-title {
        font-size: 1rem;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
    
    .footer-copyright,
    .footer-badges {
        font-size: 0.8rem;
    }
    
    .footer-badges {
        gap: 0.5rem;
    }
}

/* Additional mobile optimizations */
@media (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem 1rem;
        min-height: 70px;
    }
    
    .logo-container {
        left: 1rem;
    }
    
    .logo {
        width: 32px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    /* Hide desktop navigation on mobile */
    .navigation {
        display: none;
    }
    
    /* Show hamburger menu on mobile */
    .hamburger-menu {
        display: block;
        right: 1rem;
    }
    
    /* Mobile navigation dropdown positioning */
    .mobile-navigation {
        right: 0.5rem;
        min-width: 180px;
    }
    
    .mobile-nav-link {
        font-size: 0.9rem;
        padding: 0.7rem 1.25rem;
    }
    
    .hero {
        min-height: 100vh;
        padding: 1rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem 0.75rem 0.75rem 0.75rem;
        min-height: 60px;
    }
    
    .logo-container {
        left: 0.75rem;
    }
    
    .logo {
        width: 28px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .hamburger-menu {
        right: 0.75rem;
        padding: 0.6rem;
    }
    
    .hamburger-line {
        width: 18px;
        height: 2px;
    }
    
    /* Mobile navigation for small screens */
    .mobile-navigation {
        right: 0.25rem;
        min-width: 160px;
    }
    
    .mobile-nav-link {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
    
    .hero {
        padding: 0.5rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .product-glow {
        padding: 1rem;
    }
}

/* ========================================
   COMPREHENSIVE MOBILE ENHANCEMENTS
   Only affects mobile devices (max-width: 768px)
   Desktop view remains unchanged
   ======================================== */

@media (max-width: 768px) {
    /* GLOBAL MOBILE FIXES */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    body {
        overflow-x: clip;
        -webkit-text-size-adjust: 100%;
    }
    
    /* Ensure all sections don't overflow */
    section {
        overflow-x: clip;
        width: 100%;
        max-width: 100vw;
    }
    
    /* Allow intro section to overflow on mobile */
    section.intro {
        overflow-x: visible !important;
        overflow-y: visible !important;
    }
    
    section.intro .container {
        overflow-x: visible !important;
    }
    
    /* Container improvements */
    .container {
        padding: 0 1.25rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* HEADER & NAVIGATION MOBILE FIXES */
    .header {
        padding: 1rem 1rem;
        position: fixed;
        width: 100%;
        backdrop-filter: blur(10px);
        z-index: 1000;
    }
    
    .logo-container {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        position: relative;
        left: 0;
    }
    
    .hamburger-menu {
        position: absolute;
        right: 1rem;
        z-index: 1001;
        padding: 0.75rem;
        cursor: pointer;
        touch-action: manipulation;
    }
    
    .mobile-navigation {
        top: 70px;
        right: 1rem;
        max-width: 200px;
        width: auto;
    }
    
    /* HERO SECTION MOBILE */
    .hero {
        min-height: 100vh;
        padding: 6rem 0 3rem;
        display: flex;
        align-items: center;
    }
    
    .content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 1rem 0;
    }
    
    .text-content {
        order: 2;
        padding: 0;
    }
    
    .text-content .coming-soon-badge-section {
        margin-bottom: 1rem;
    }
    
    .problem .coming-soon-badge-section {
        margin-bottom: 1rem;
    }
    
    .intro-text .coming-soon-badge-section {
        margin-bottom: 1rem;
    }
    
    .image-content {
        order: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .main-heading {
        font-size: clamp(2rem, 7vw, 3rem);
        line-height: 1.2;
        margin-bottom: 1.5rem;
        text-align: center;
        padding: 0;
        word-wrap: break-word;
    }
    
    .subtext {
        font-size: clamp(1rem, 3.5vw, 1.2rem);
        line-height: 1.6;
        margin-bottom: 2rem;
        text-align: center;
        padding: 0 0.5rem;
    }
    
    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        margin: 0 auto;
        display: block;
        width: fit-content;
        max-width: 90%;
        text-align: center;
        touch-action: manipulation;
    }
    
    .product-image {
        width: min(500px, 90vw);
        height: auto;
        max-width: 600px;
    }
    
    /* PROBLEM SECTION MOBILE */
    .problem {
        padding: 4rem 0;
    }
    
    .problem-heading {
        font-size: clamp(1.5rem, 5vw, 2rem);
        line-height: 1.6;
        padding: 0 1rem;
        text-align: center;
    }
    
    .problem-sub {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
        margin-top: 1.5rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    /* INTRO SECTION MOBILE */
    .intro {
        padding: 3rem 0 2rem;
        margin-top: 1rem;
        overflow: visible !important;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        overflow: visible !important;
    }
    
    .intro-visual {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: calc(100% + 1rem);
        margin-left: -1rem;
        order: 1;
        overflow: visible !important;
    }
    
    .intro-text {
        order: 2;
        text-align: center;
        padding: 0;
    }
    
    .intro-image-extreme-left {
        position: relative;
        left: -40px !important;
        top: auto;
        transform: none !important;
        width: 200%;
        max-width: 320px;
        height: auto;
        min-height: 300px;
        object-fit: contain;
        object-position: left center;
        margin: 0;
        display: block;
    }
    
    .intro-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        line-height: 1.3;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .intro-subtitle {
        font-size: clamp(1.1rem, 3.5vw, 1.4rem);
        line-height: 1.4;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .intro-copy {
        font-size: clamp(0.95rem, 2.8vw, 1.1rem);
        line-height: 1.6;
        text-align: center;
        padding: 0;
    }
    
    /* HOW IT WORKS SECTION MOBILE */
    .how {
        padding: 3rem 0;
        overflow: hidden;
    }
    
    .how-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .coming-soon-badge-section {
        font-size: 0.8rem;
        padding: 0.4rem 0.875rem;
        margin-bottom: 0.75rem;
    }
    
    .how-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        line-height: 1.3;
        margin-bottom: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .timeline-header .coming-soon-badge-section {
        margin-bottom: 1rem;
    }
    
    .how-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
        text-align: center;
        padding: 0 1rem;
    }
    
    .how-left,
    .how-right {
        width: 100%;
    }
    
    .how-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .accordion-header {
        padding: 1rem;
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        cursor: pointer;
        touch-action: manipulation;
    }
    
    .accordion-header .icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }
    
    .accordion-panel {
        padding: 0 1rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .accordion.open .accordion-panel {
        padding: 1rem;
    }
    
    .accordion-image-container {
        margin-top: 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        overflow: hidden;
    }
    
    .accordion-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        min-height: 250px;
        object-fit: contain;
        transform: none !important;
        margin: 0 auto;
        display: block;
    }
    
    .accordion-image.hunger-image {
        transform: none !important;
        max-width: 280px;
    }
    
    /* TIMELINE SECTION MOBILE */
    .timeline {
        padding: 3rem 0;
        overflow: hidden;
    }
    
    .timeline-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .timeline-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .timeline-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
        line-height: 1.5;
    }
    
    .timeline-wrapper {
        padding: 0 1rem;
    }
    
    .timeline-item {
        margin-bottom: 2rem;
        padding-left: 0;
    }
    
    .timeline-content {
        margin-left: 2.5rem;
    }
    
    .timeline-card {
        padding: 1.25rem;
    }
    
    .timeline-time {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .timeline-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .timeline-cta {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .timeline-cta-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .timeline-cta-title {
        font-size: clamp(1.4rem, 4.5vw, 1.8rem);
        margin-bottom: 1rem;
    }
    
    .timeline-cta-text {
        font-size: clamp(1rem, 3vw, 1.1rem);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .timeline-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: fit-content;
        margin: 0 auto;
        display: block;
        touch-action: manipulation;
    }
    
    /* CHALLENGE CTA SECTION MOBILE */
    .challenge-cta {
        padding: 3rem 0;
        overflow: hidden;
    }
    
    .challenge-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .challenge-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .challenge-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
        line-height: 1.5;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .coming-soon-section {
        padding: 2rem 0;
        margin: 1rem 0;
        min-height: 300px;
    }
    
    .coming-soon-content {
        padding: 2rem 1.5rem;
    }
    
    .coming-soon-badge-large {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    
    .coming-soon-title {
        font-size: clamp(1.6rem, 5vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .coming-soon-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .coming-soon-cta {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .how .coming-soon-section,
    .timeline .coming-soon-section {
        min-height: 200px;
        padding: 1.5rem 0;
    }
    
    .plan-card {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .plan-title {
        font-size: clamp(1.4rem, 4.5vw, 1.8rem);
        margin-bottom: 0.5rem;
    }
    
    .plan-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .plan-price {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .plan-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .benefits-list {
        margin-bottom: 1.5rem;
    }
    
    .benefit-item {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .benefit-icon {
        margin-top: 0.2rem;
        flex-shrink: 0;
    }
    
    .plan-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
        touch-action: manipulation;
    }
    
    .challenge-footer {
        padding: 0 1rem;
    }
    
    .footer-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    /* FOOTER SECTION MOBILE */
    .footer-section {
        padding: 3rem 0 2rem;
        overflow: hidden;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-title {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
        margin-bottom: 1rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        touch-action: manipulation;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 1rem 1rem;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        font-size: 0.85rem;
    }
    
    /* SCROLL INDICATOR MOBILE */
    .scroll-indicator {
        bottom: 2rem;
    }
    
    /* BG PARTICLES MOBILE - Reduce for performance */
    .bg-particle {
        width: 3px;
        height: 3px;
    }
}

/* EXTRA SMALL MOBILE DEVICES (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .main-heading {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }
    
    .subtext {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
        width: 90%;
        max-width: 280px;
    }
    
    .intro-image-extreme-left {
        max-width: 280px;
        min-height: 250px;
    }
    
    .accordion-image {
        max-width: 250px;
        min-height: 200px;
    }
    
    .plan-card {
        padding: 1.25rem;
    }
    
    .plan-cta {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* LANDSCAPE MODE FIXES FOR MOBILE */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 4rem 0 2rem;
    }
    
    .main-heading {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .subtext {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        margin-bottom: 1.5rem;
    }
    
    .product-image {
        width: min(350px, 60vw);
    }
    
    .intro-image-extreme-left {
        max-width: 250px;
        min-height: 200px;
    }
}

/* PREVENT ZOOM ON FORM INPUTS (iOS) */
@media (max-width: 768px) {
    input,
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* ============================================
   SHOPIFY BUY BUTTON CUSTOM STYLES
   ============================================ */

/* Shopify cart overlay and iframe container */
.shopify-buy__cart-wrapper {
    z-index: 99999 !important;
}

/* Cart iframe styling */
.shopify-buy-frame {
    z-index: 99999 !important;
}

/* Shopify cart toggle button */
.shopify-buy__cart-toggle {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 99998 !important;
    background: linear-gradient(135deg, #d58b2a 0%, #c17a1f 100%) !important;
    box-shadow: 0 4px 20px rgba(213, 139, 42, 0.4) !important;
    border-radius: 50% !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

.shopify-buy__cart-toggle:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 30px rgba(213, 139, 42, 0.6) !important;
}

/* Cart badge (item count) */
.shopify-buy__cart-toggle__count {
    background-color: #ffffff !important;
    color: #d58b2a !important;
    font-weight: 600 !important;
    font-family: 'Poppins', sans-serif !important;
}

/* Mobile cart adjustments */
@media (max-width: 768px) {
    .shopify-buy__cart-toggle {
        bottom: 15px !important;
        right: 15px !important;
        width: 50px !important;
        height: 50px !important;
    }
    
    /* Make cart full width on mobile */
    .shopify-buy__cart-wrapper {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Loading state for buttons */
.cta-button.loading,
.plan-cta.loading,
.timeline-cta-button.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
    cursor: wait;
}

/* Disabled button state */
.cta-button:disabled,
.plan-cta:disabled,
.timeline-cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.cta-button.loading::after,
.plan-cta.loading::after,
.timeline-cta-button.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spinner 0.8s ease infinite;
}

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

/* Override Shopify default styles to match site theme */
.shopify-buy__btn {
    font-family: 'Poppins', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Cart close button */
.shopify-buy__cart__close {
    color: #ffffff !important;
}

.shopify-buy__cart__close:hover {
    color: #d58b2a !important;
}

/* Quantity buttons */
.shopify-buy__quantity-decrement,
.shopify-buy__quantity-increment {
    background-color: #d58b2a !important;
    color: #ffffff !important;
}

.shopify-buy__quantity-decrement:hover,
.shopify-buy__quantity-increment:hover {
    background-color: #c17a1f !important;
}

/* Remove item button */
.shopify-buy__cart-item__remove {
    color: #ff4444 !important;
}

.shopify-buy__cart-item__remove:hover {
    color: #ff6666 !important;
}

/* Empty cart message */
.shopify-buy__cart__empty-text {
    color: #cccccc !important;
    font-family: 'Poppins', sans-serif !important;
}

/* ============================================
   CART SYSTEM WITH GLASSMORPHISM
   ============================================ */

/* Cart Button in Header */
.cart-button {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.cart-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.05);
}

.cart-button .cart-icon {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #d58b2a 0%, #e7a23c 100%);
    color: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(213, 139, 42, 0.4);
    animation: scaleIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.cart-button.pulse {
    animation: cartPulse 0.6s ease;
}

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

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    pointer-events: none;
    transition: all 0.3s ease;
}

.cart-drawer.active {
    pointer-events: all;
}

.cart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-drawer.active .cart-overlay {
    opacity: 1;
}

.cart-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 480px;
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: -10px 0 60px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cart-drawer.active .cart-panel {
    transform: translateX(0);
}

/* Cart Header */
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.cart-title {
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    letter-spacing: 0.02em;
}

.cart-close {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.65rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg) scale(1.05);
}

.cart-close svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* Cart Items Container */
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(213, 139, 42, 0.5) rgba(255, 255, 255, 0.05);
}

.cart-items::-webkit-scrollbar {
    width: 8px;
}

.cart-items::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.cart-items::-webkit-scrollbar-thumb {
    background: rgba(213, 139, 42, 0.5);
    border-radius: 4px;
}

.cart-items::-webkit-scrollbar-thumb:hover {
    background: rgba(213, 139, 42, 0.7);
}

/* Empty Cart State */
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 2rem;
}

.empty-cart-icon {
    width: 80px;
    height: 80px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

.empty-cart-text {
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 0.5rem;
}

.empty-cart-subtext {
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-size: 0.95rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Cart Item */
.cart-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    animation: slideInRight 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(213, 139, 42, 0.4);
    transform: translateX(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-title {
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.3;
}

.cart-item-price {
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #d58b2a;
    margin: 0;
}

/* Quantity Controls */
.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.quantity-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: rgba(213, 139, 42, 0.3);
    border-color: rgba(213, 139, 42, 0.5);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(213, 139, 42, 0.3);
}

.quantity-btn svg {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.quantity-value {
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    min-width: 28px;
    text-align: center;
}

/* Remove Button */
.cart-item-remove {
    background: rgba(255, 68, 68, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 10px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
}

.cart-item-remove:hover {
    background: rgba(255, 68, 68, 0.25);
    border-color: rgba(255, 68, 68, 0.5);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
}

.cart-item-remove svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.95);
}

/* Cart Footer */
.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.cart-summary {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.total-label {
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.total-amount {
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #d58b2a;
    text-shadow: 0 2px 8px rgba(213, 139, 42, 0.3);
}

.cart-note {
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-size: 0.85rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    text-align: center;
}

/* Checkout Button */
.cart-checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #d58b2a 0%, #e7a23c 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 1.1rem 1.5rem;
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(213, 139, 42, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.cart-checkout-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-checkout-btn:hover:not(:disabled)::before {
    opacity: 1;
}

.cart-checkout-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(213, 139, 42, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cart-checkout-btn:active:not(:disabled) {
    transform: translateY(0);
}

.cart-checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.checkout-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.cart-checkout-btn:hover:not(:disabled) .checkout-arrow {
    transform: translateX(5px);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .cart-button {
        position: absolute;
        right: 5rem;
        top: 50%;
        transform: translateY(-50%);
        padding: 0.75rem;
    }
    
    .cart-button:hover {
        transform: translateY(-50%) scale(1.05);
    }
    
    .cart-button .cart-icon {
        width: 20px;
        height: 20px;
    }
    
    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
        top: -6px;
        right: -6px;
    }
    
    .cart-panel {
        max-width: 100%;
    }
    
    .cart-header {
        padding: 1.25rem 1rem 0.75rem;
    }
    
    .cart-title {
        font-size: 1.25rem;
    }
    
    .cart-items {
        padding: 1rem;
    }
    
    .cart-item {
        padding: 0.75rem;
    }
    
    .cart-item-image {
        width: 70px;
        height: 70px;
    }
    
    .cart-item-title {
        font-size: 0.9rem;
    }
    
    .cart-item-price {
        font-size: 1rem;
    }
    
    .quantity-btn {
        width: 28px;
        height: 28px;
    }
    
    .quantity-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .quantity-value {
        font-size: 0.9rem;
    }
    
    .cart-footer {
        padding: 1rem;
    }
    
    .total-label {
        font-size: 1rem;
    }
    
    .total-amount {
        font-size: 1.3rem;
    }
    
    .cart-checkout-btn {
        padding: 0.85rem 1.25rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cart-button {
        right: 4rem;
        padding: 0.65rem;
    }
    
    .cart-item {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cart-item-image {
        width: 100%;
        height: 120px;
    }
    
    .cart-item-remove {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
    }
}

/* Header adjustments for cart button */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
