/* ============================================
   GOLDEN HARVEST - Premium Honey Webapp Styles
   ============================================ */

/* CSS Custom Properties (Design Tokens) */
:root {
    /* Primary Colors - Honey Gold Palette */
    --honey-50: #fffbeb;
    --honey-100: #fef3c7;
    --honey-200: #fde68a;
    --honey-300: #fcd34d;
    --honey-400: #fbbf24;
    --honey-500: #f59e0b;
    --honey-600: #d97706;
    --honey-700: #b45309;
    --honey-800: #92400e;
    --honey-900: #78350f;

    /* Accent Colors - Warm Browns */
    --brown-50: #fdf8f6;
    --brown-100: #f2e8e5;
    --brown-200: #eaddd7;
    --brown-300: #e0cfc7;
    --brown-400: #d2bab0;
    --brown-500: #bfa094;
    --brown-600: #a18072;
    --brown-700: #977669;
    --brown-800: #846358;
    --brown-900: #43302b;

    /* Neutral Colors */
    --neutral-50: #fafaf9;
    --neutral-100: #f5f5f4;
    --neutral-200: #e7e5e4;
    --neutral-300: #d6d3d1;
    --neutral-400: #a8a29e;
    --neutral-500: #78716c;
    --neutral-600: #57534e;
    --neutral-700: #44403c;
    --neutral-800: #292524;
    --neutral-900: #1c1917;

    /* Semantic Colors */
    --success: #22c55e;
    --warning: #eab308;
    --error: #ef4444;

    /* Gradients */
    --gradient-honey: linear-gradient(135deg, var(--honey-400) 0%, var(--honey-600) 100%);
    --gradient-gold: linear-gradient(135deg, #fef3c7 0%, #fcd34d 50%, #f59e0b 100%);
    --gradient-dark: linear-gradient(180deg, var(--neutral-900) 0%, var(--brown-900) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(251, 191, 36, 0.3);
    --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Transitions - Faster for better responsiveness */
    --transition-fast: 100ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 350ms ease;
    --transition-bounce: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--gradient-dark);
    color: var(--neutral-100);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Floating Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--honey-400);
    border-radius: 50%;
    opacity: 0.2;
    will-change: transform;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translate3d(0, 100vh, 0);
        opacity: 0;
    }

    10% {
        opacity: 0.2;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        transform: translate3d(0, -100vh, 0);
        opacity: 0;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) var(--space-xl);
    background: rgba(28, 25, 23, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease, box-shadow 0.2s ease;
    will-change: background, box-shadow;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--neutral-100);
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

.logo-text {
    font-family: 'Pacifico', cursive;
    font-size: 1.5rem;
    font-weight: 400;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
}

.nav-links a {
    text-decoration: none;
    color: var(--neutral-300);
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-honey);
    transition: var(--transition-base);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.hamburger .bar {
    width: 100%;
    height: 2px;
    background-color: var(--neutral-100);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: none;
}

.nav-cta {
    padding: var(--space-sm) var(--space-lg);
    background: var(--gradient-honey);
    border: none;
    border-radius: var(--radius-full);
    color: var(--neutral-900);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-glow);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(251, 191, 36, 0.5);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4xl) var(--space-xl);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: var(--radius-full);
    color: var(--honey-400);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--space-xl);
}

/* Hero Video Container */
.hero-video-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(251, 191, 36, 0.2);
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.15);
}

.hero-video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
    background: var(--neutral-900);
    object-fit: cover;
}

.hero-video-container .video-overlay {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    pointer-events: none;
    border: 1px solid rgba(251, 191, 36, 0.1);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(251, 191, 36, 0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: var(--neutral-100);
}

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title .brand-name {
    font-family: 'Pacifico', cursive;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--neutral-400);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: var(--space-md) var(--space-2xl);
    background: var(--gradient-honey);
    border: none;
    border-radius: var(--radius-full);
    color: var(--neutral-900);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 80px rgba(251, 191, 36, 0.6);
}

.btn-secondary {
    padding: var(--space-md) var(--space-2xl);
    background: transparent;
    border: 2px solid var(--neutral-600);
    border-radius: var(--radius-full);
    color: var(--neutral-200);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-secondary:hover {
    border-color: var(--honey-500);
    color: var(--honey-400);
    transform: translateY(-3px);
}

/* Hero Visual Elements */
.hero-visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.honey-drip {
    position: absolute;
    top: -50px;
    right: 15%;
    width: 60px;
    height: 200px;
    background: linear-gradient(180deg, var(--honey-500) 0%, var(--honey-600) 50%, transparent 100%);
    border-radius: 0 0 30px 30px;
    opacity: 0.6;
    animation: drip 4s ease-in-out infinite;
}

@keyframes drip {

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

    50% {
        transform: translateY(20px) scaleY(1.1);
    }
}

.floating-honeycomb {
    position: absolute;
    opacity: 0.15;
    animation: floatHoneycomb 6s ease-in-out infinite;
}

.floating-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hc-1 {
    top: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
}

.hc-2 {
    top: 60%;
    right: 8%;
    width: 90px;
    height: 90px;
    animation-delay: 2s;
}

.hc-3 {
    bottom: 15%;
    left: 15%;
    width: 45px;
    height: 45px;
    animation-delay: 4s;
}

@keyframes floatHoneycomb {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(-5deg);
    }

    50% {
        transform: translate3d(0, -15px, 0) rotate(5deg);
    }
}

/* ============================================
   PRODUCTS CAROUSEL SECTION
   ============================================ */

.products-section {
    padding: var(--space-4xl) var(--space-xl);
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(251, 191, 36, 0.15);
    border-radius: var(--radius-full);
    color: var(--honey-400);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--neutral-100);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--neutral-400);
    max-width: 500px;
    margin: 0 auto;
}

/* Products Grid for Home Page */
.products-grid-home {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: var(--space-lg) var(--space-md);
}

.products-grid-home .product-card {
    flex: 0 0 320px;
}

/* View More Button Container */
.view-more-container {
    display: flex;
    justify-content: center;
    margin-top: var(--space-2xl);
}

.view-more-container .btn-secondary {
    text-decoration: none;
}

/* Carousel Container */
.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.carousel-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    max-width: 1100px;
}

.carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: var(--space-xl);
    padding: var(--space-lg) var(--space-md);
    will-change: transform;
}

.product-card {
    scroll-snap-align: center;
    flex-shrink: 0;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: var(--neutral-300);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carousel-btn:hover {
    border-color: var(--honey-500);
    color: var(--honey-400);
    background: rgba(251, 191, 36, 0.1);
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.indicator.active {
    background: var(--honey-500);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
    transform: scale(1.2);
}

.indicator:hover:not(.active) {
    background: rgba(255, 255, 255, 0.4);
}

/* ============================================
   PRODUCT CARD
   ============================================ */

.product-card {
    flex: 0 0 320px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    will-change: transform, opacity;
}

.product-card:hover {
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.product-badge.bestseller {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.product-badge.new {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.product-badge.premium {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: white;
}

.product-badge.organic {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.product-badge.artisan {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
}

/* Product Image */
.product-image-container {
    position: relative;
    height: 280px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.05) 0%, transparent 100%);
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
    cursor: pointer;
}

.product-card:hover .product-image {
    transform: scale(1.08) rotate(-2deg);
}

.product-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition-slow);
    pointer-events: none;
}

.product-card:hover .product-glow {
    opacity: 1;
}

/* Product Info */
.product-info {
    padding: var(--space-lg);
}

.product-category {
    display: block;
    font-size: 0.75rem;
    color: var(--honey-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-xs);
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutral-100);
    margin-bottom: var(--space-sm);
}

.product-description {
    font-size: 0.9rem;
    color: var(--neutral-400);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.stars {
    color: var(--honey-400);
    font-size: 0.9rem;
}

.rating-count {
    font-size: 0.8rem;
    color: var(--neutral-500);
}

.product-size {
    font-size: 0.85rem;
    color: var(--neutral-400);
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
}

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

.product-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--honey-400);
}

.add-to-cart {
    padding: var(--space-sm) var(--space-lg);
    background: var(--gradient-honey);
    border: none;
    border-radius: var(--radius-full);
    color: var(--neutral-900);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.add-to-cart:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.4);
}

/* ============================================
   IMAGE MODAL (LIGHTBOX)
   ============================================ */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    opacity: 1;
}

.image-modal img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.image-modal.active img {
    transform: scale(1);
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2001;
}

.image-modal-close:hover {
    color: var(--honey-400);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: var(--space-4xl) var(--space-xl);
    background: linear-gradient(180deg, transparent 0%, rgba(251, 191, 36, 0.02) 50%, transparent 100%);
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-card:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.feature-link {
    text-decoration: none;
    display: block;
    color: inherit;
    cursor: pointer;
    flex: 0 1 280px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    filter: grayscale(100%) sepia(100%) hue-rotate(0deg) saturate(300%) brightness(0.9);
    opacity: 0.85;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--neutral-100);
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--neutral-400);
    line-height: 1.6;
}

/* Product Card Collapsible Info */
.product-info .product-name {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-info .product-name .toggle-icon {
    font-size: 1.6rem;
    transition: transform 0.3s ease;
    color: var(--honey-500);
    margin-left: var(--space-sm);
}

.product-info .product-name.active .toggle-icon {
    transform: rotate(180deg);
}

.product-collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.product-collapsible.active {
    max-height: 500px;
}

.feature-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transform: scaleY(0.7);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */

.newsletter-section {
    padding: var(--space-4xl) var(--space-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.newsletter-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--neutral-100);
    margin-bottom: var(--space-md);
}

.newsletter-content p {
    font-size: 1.1rem;
    color: var(--neutral-400);
    margin-bottom: var(--space-xl);
}

.newsletter-form {
    display: flex;
    gap: var(--space-md);
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--neutral-100);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-base);
}

.newsletter-form input::placeholder {
    color: var(--neutral-500);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--honey-500);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

.newsletter-form button {
    padding: var(--space-md) var(--space-xl);
    background: var(--gradient-honey);
    border: none;
    border-radius: var(--radius-full);
    color: var(--neutral-900);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: var(--space-4xl) var(--space-xl) var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--space-4xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand .logo-icon {
    font-size: 3rem;
}

.footer-brand .logo-text {
    font-size: 1.8rem;
}

.footer-brand p {
    color: var(--neutral-500);
    margin-top: var(--space-md);
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--neutral-100);
    margin-bottom: var(--space-md);
}

.footer-column a {
    display: block;
    color: var(--neutral-500);
    text-decoration: none;
    font-size: 0.95rem;
    padding: var(--space-xs) 0;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--honey-400);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--neutral-600);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* === BASE MOBILE STYLES (320px+) === */
/* All base styles above are already mobile-optimized */

/* Mobile Menu Styles */
.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(28, 25, 23, 0.98);
    backdrop-filter: blur(10px);
    width: 80%;
    max-width: 400px;
    height: 100vh;
    padding: var(--space-4xl) var(--space-xl);
    transition: right 0.4s ease;
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    display: flex;
}

.nav-links.active {
    right: 0;
}

.nav-links li {
    margin: var(--space-md) 0;
}

.mobile-only {
    display: list-item;
}

.mobile-only a {
    color: var(--honey-400);
}

.hamburger {
    display: flex;
}

.navbar {
    padding: var(--space-sm) var(--space-md);
}

.hero {
    padding: var(--space-3xl) var(--space-md);
    padding-top: 100px;
}

.hero-title {
    font-size: 2rem;
}

.hero-subtitle {
    font-size: 1rem;
}

.hero-cta {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.btn-primary,
.btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: var(--space-md) var(--space-lg);
}

.products-section {
    padding: var(--space-2xl) var(--space-sm);
}

.section-title {
    font-size: 1.5rem;
}

.carousel-btn {
    display: none;
}

.carousel-wrapper {
    max-width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 280px;
    scroll-snap-align: center;
}

.product-image-container {
    height: 220px;
}

.features-section {
    padding: var(--space-2xl) var(--space-md);
}

.features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.feature-card {
    padding: var(--space-md);
}

.newsletter-section {
    padding: var(--space-2xl) var(--space-md);
}

.newsletter-form {
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
}

.newsletter-form input,
.newsletter-form button {
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.footer {
    padding: var(--space-2xl) var(--space-md);
}

.footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-xl);
}

.footer-brand p {
    margin: var(--space-md) auto;
}

.footer-links {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

/* === TABLET (768px+) === */
@media (min-width: 768px) {
    .navbar {
        padding: var(--space-md) var(--space-lg);
    }

    .hero {
        padding: var(--space-4xl) var(--space-xl);
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .hero-cta {
        flex-direction: row;
    }

    .btn-primary,
    .btn-secondary {
        width: auto;
        max-width: none;
    }

    .products-section {
        padding: var(--space-3xl) var(--space-lg);
    }

    .section-title {
        font-size: 2.5rem;
    }

    .product-card {
        flex: 0 0 320px;
    }

    .product-image-container {
        height: 260px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .feature-card {
        padding: var(--space-xl);
    }

    .newsletter-form {
        flex-direction: row;
    }

    .newsletter-form input {
        width: auto;
        flex: 1;
    }

    .newsletter-form button {
        width: auto;
    }

    .footer-content {
        grid-template-columns: 1fr 2fr;
        text-align: left;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* === DESKTOP (1024px+) === */
@media (min-width: 1024px) {
    .navbar {
        padding: var(--space-md) var(--space-xl);
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .products-section {
        padding: var(--space-4xl) var(--space-xl);
    }

    .carousel-btn {
        display: flex;
    }

    .carousel-wrapper {
        overflow: hidden;
        scroll-snap-type: none;
    }

    .product-card {
        scroll-snap-align: unset;
    }

    .product-image-container {
        height: 280px;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-xl);
    }

    .feature-card {
        padding: var(--space-2xl);
    }
}

/* === LARGE DESKTOP (1400px+) === */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 5rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Selection Styling */
::selection {
    background: var(--honey-500);
    color: var(--neutral-900);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--neutral-800);
}

::-webkit-scrollbar-thumb {
    background: var(--neutral-600);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--honey-600);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    width: 100%;
    margin-top: var(--space-xl);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0 !important;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: var(--space-md) 0;
    font-family: var(--font-display);
    color: var(--neutral-100);
    font-size: 1.15rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--honey-400);
}

.faq-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: var(--honey-500);
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: var(--space-md);
    margin: 0;
    color: var(--neutral-300);
    line-height: 1.6;
}