/* 
   Choco Blossom India - Modern Ecommerce Design 
   Theme: Premium Chocolate, Elegant, Modern
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Color Palette */
    --color-primary: #3E2723;
    /* Deep Cocoa */
    --color-primary-light: #5D4037;
    --color-secondary: #D4AF37;
    /* Gold */
    --color-secondary-light: #F4C430;
    --color-accent: #C2185B;
    /* Berry Red - for CTAs/Highlights */
    --color-background: #FAFAFA;
    /* Off-white Cream */
    --color-surface: #FFFFFF;
    --color-text-main: #212121;
    --color-text-muted: #757575;
    --color-border: #E0E0E0;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing & Layout */
    --spacing-xs: 0.5rem;
    /* 8px */
    --spacing-sm: 1rem;
    /* 16px */
    --spacing-md: 1.5rem;
    /* 24px */
    --spacing-lg: 2.5rem;
    /* 40px */
    --spacing-xl: 4rem;
    /* 64px */
    --container-width: 1200px;
    --header-height: 80px;

    /* Effects */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* Prevent horizontal scroll globally */
    width: 100%;
}

/* GLOBAL IMAGE RESET: Prevents overflow */
img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Removes bottom spacing */
}

body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    /* Fixes right-side gap/scroll */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-muted);
}

/* Accessibility: Premium Focus Ring */
:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 4px;
}

/* Button Active State for Tactile Feel */
button:active,
.btn:active {
    transform: scale(0.96);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-xl) 0;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    /* More rounded = more premium */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Clickable Section Interaction */
.clickable-section {
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 8px;
    /* Optional: adds polish on hover */
}

.clickable-section:hover {
    background-color: #f9f9f9;
    /* Subtle highlight */
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-secondary);
    /* Gold text on Dark */
    border: 1px solid var(--color-secondary);
    box-shadow: 0 4px 15px rgba(62, 39, 35, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #D4AF37 0%, #F4C430 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary:hover {
    color: var(--color-primary);
    /* Dark text on Gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    border-color: transparent;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    box-shadow: 0 4px 12px rgba(62, 39, 35, 0.2);
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--color-secondary);
}

/* Header */
.top-bar {
    background-color: var(--color-primary);
    color: #fff;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    width: 100%;
    z-index: 1002;
    /* Above header */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.top-bar p {
    margin: 0;
    color: #fff;
    letter-spacing: 0.5px;
}

.top-bar i {
    color: var(--color-secondary);
    margin-right: 8px;
}

header {
    background-color: var(--color-surface);
    height: var(--header-height);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    /* Ensure full height */
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    /* Reduced from 60px to save space */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
    /* Adjusted for better spacing */
    white-space: nowrap;
    align-items: center;
    /* Ensure vertical centering */
    height: 100%;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-main);
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    transition: var(--transition-medium);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    /* padding-bottom: 5px; Removed to prevent misalignment */
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--color-surface);
    min-width: 200px;
    box-shadow: var(--shadow-md);
    z-index: 1001;
    /* Above header */
    top: 100%;
    left: 0;
    border-radius: 4px;
    overflow: hidden;
    padding: 0.5rem 0;
}

.dropdown-content a {
    color: var(--color-text-main);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    transition: background-color 0.2s;
    white-space: nowrap;
    /* Prevent wrapping */
}

.dropdown-content a:hover {
    background-color: var(--color-background);
    color: var(--color-primary);
}

.dropdown-content a::after {
    display: none;
    /* Remove underline effect for dropdown items */
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Specific trigger link style */
.dropbtn {
    cursor: pointer;
    display: flex;
    /* alignment */
    align-items: center;
}


.nav-icons {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Components: Cards */
.card {
    background: var(--color-surface);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-medium);
    border: 1px solid var(--color-border);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-secondary);
}

/* Hero Section */
.hero {
    /* margin-top: var(--header-height); */
    /* Removed for sticky header */
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-background);
    overflow: hidden;
    /* Ensure video doesn't spill out */
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 2s ease-in-out, transform 10s linear;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
    animation: kenBurns 12s linear forwards;
    /* Smoother, continuous zoom */
}

/* Dark Overlay for Text Readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    /* Ensure text is above overlay and video */
    max-width: 800px;
    padding: 2rem;
    animation: fadeIn 1s ease-out;
}

.hero h1 {
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
    font-size: 4rem;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
}

/* Featured Collections */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.collection-card {
    position: relative;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-card:hover img {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.collection-card:hover .collection-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.collection-overlay h3 {
    color: var(--color-surface);
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Products Grid */
.product-grid {
    display: grid;
    /* Desktop: Larger, premium cards */
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

@media (max-width: 768px) {
    .product-grid {
        /* Mobile: Compact, 2 columns guaranteed */
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
}

.product-card {
    background: var(--color-surface);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-medium);
    position: relative;
}

.product-image {
    position: relative;
    padding-top: 100%;
    /* Square aspect ratio */
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: var(--spacing-sm);
    text-align: center;
}

.product-category {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin: 0.5rem 0;
    color: var(--color-primary);
}

.product-price {
    font-weight: 600;
    color: var(--color-secondary);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
}

.add-btn {
    width: 100%;
    padding: 0.8rem;
    background: var(--color-background);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-medium);
}

.product-card:hover .add-btn {
    background: var(--color-primary);
    color: var(--color-surface);
}

/* Footer */
footer {
    background-color: var(--color-primary);
    color: var(--color-surface);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    margin-top: 0;
    /* Removed to sit flush with Shipping Banner */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-col h4 {
    color: var(--color-secondary);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--color-secondary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: 100vh;
        /* Full screen menu */
        background: var(--color-surface);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-md);
        overflow-y: auto;
        /* Scrollable if menu is long */
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    /* Mega Menu on Mobile */
    .mega-dropdown:hover .mega-content {
        position: relative;
        /* Flow in document */
        top: 0;
        box-shadow: none;
        padding: 1rem 0;
        animation: none;
    }

    .mega-content {
        position: relative;
        top: 0;
        box-shadow: none;
        padding: 0;
        border-top: none;
    }

    .mega-grid {
        grid-template-columns: 1fr;
        /* Stack columns */
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .mega-column h4 {
        margin-bottom: 0.5rem;
        color: var(--color-primary);
        font-weight: 700;
        border-bottom: none;
    }

    .dropdown-content {
        position: relative;
        box-shadow: none;
        padding-left: 1rem;
    }

    /* Hero Adjustments */
    .hero-content {
        width: 90%;
        padding: 1rem;
    }
}

/* --- ANIMATIONS & EFFECTS --- */

/* Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* --- NEW PREMIUM EFFECTS --- */

/* 1. Gold Shimmer for Buttons */
@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.btn-primary {
    /* Existing styles maintained via cascade, just adding shimmer capability */
    background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-primary) 40%, #5D4037 50%, var(--color-primary) 60%, var(--color-primary) 100%);
    background-size: 200% 100%;
    transition: all 0.4s ease;
}

.btn-primary:hover {
    animation: shimmer 1.5s infinite linear;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(62, 39, 35, 0.4);
}

/* 2. Glassmorphism Navbar */
header.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease, padding 0.3s ease;
}

/* 3. Liquid Text Reveal */
.liquid-reveal {
    opacity: 0;
    transform: translateY(40px) skewY(5deg);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.liquid-reveal.active {
    opacity: 1;
    transform: translateY(0) skewY(0);
}

/* Refined Card Hover (Magnetic Feel) */
.product-card,
.collection-card {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Global Page Load Animation */
/* Global Page Load Animation */
/* REVERTED: Causing blank screen on some mobile browsers */
body {
    /* animation: fadeIn 0.8s ease-out; */
    opacity: 1;
    /* Force visible */
}

/* Element Animations */
.card,
.product-card,
.collection-card {
    /* animation: slideUp 0.6s ease-out forwards; REMOVED to prevent "invisible forever" bug */
    /* opacity: 0; REMOVED - Elements should be visible by default */
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Ensure smooth hover */
}

/* Only hide if specifically using the reveal class */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays for Grid Items (Simulated) */
.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card:nth-child(4) {
    animation-delay: 0.4s;
}

.product-card:nth-child(5) {
    animation-delay: 0.5s;
}

/* Footer Bottom Payment Layout */
.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;
}

/* Brand Colors for Payment Icons */
.payment-icons i {
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    display: inline-block;
    /* Fix for clipping */
    line-height: 1;
    /* Reset line height */
    vertical-align: middle;
}

.payment-icons i:hover {
    transform: translateY(-3px);
    color: var(--color-secondary);
    /* Gold on hover */
}

/* Specific adjustments for brand recognition if needed */
/* Currently using uniform white/gold for premium aesthetic */

.product-card:nth-child(6) {
    animation-delay: 0.6s;
}

.product-card:nth-child(even) {
    animation-delay: 0.25s;
}

/* Spotlight Section */
.spotlight-section {
    background: #fdfbf7;
    padding: 4rem 0;
    overflow: hidden;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.spotlight-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    /* min-height: 400px; Replaced with aspect-ratio for better responsiveness */
    aspect-ratio: 4/3;
    background-color: #f0f0f0;
    /* Placeholder color */
}

.spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* position: absolute; - Not needed with aspect-ratio behavior usually, but keeping for safety if reusing styles */
    position: absolute;
    top: 0;
    left: 0;
}

.spotlight-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.spotlight-badge {
    display: inline-block;
    background: var(--color-accent);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
}

.countdown-item {
    text-align: center;
}

.countdown-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.countdown-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .spotlight-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .spotlight-content h2 {
        font-size: 2rem;
    }
}

/* Interactive Hover Effects */
.btn {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(1px) scale(0.98);
}

.nav-links a {
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-secondary);
    text-shadow: 0 0 1px var(--color-secondary);
}

/* Smooth Image Reveal */
img {
    transition: opacity 0.5s ease-in-out;
}

/* USP Bar */
.usp-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2rem 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
    gap: 1rem;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.usp-item i {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    border: 1px solid #eee;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-secondary);
}

.stars {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.client-name {
    font-weight: 600;
    color: var(--color-primary);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 {
    animation: slideUp 0.8s ease-out forwards;
}

.hero-content p {
    animation: slideUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-content .btn {
    animation: slideUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

/* Occasions Horizontal Scroll */
.occasions-bar {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
    z-index: 90;
    box-shadow: var(--shadow-sm);
}

.occasions-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    display: flex;
    gap: 1rem;
    align-items: center;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.occasions-container::-webkit-scrollbar {
    display: none;
}

.occasion-pill {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: #f5f5f5;
    border-radius: 50px;
    color: var(--color-text-main);
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-medium);
    border: 1px solid transparent;
    font-weight: 500;
}

.occasion-pill:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* --- Mega Menu Styles --- */
.mega-dropdown {
    position: static !important;
}

.mega-content {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    background-color: var(--color-surface);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    top: var(--header-height);
    padding: 2.5rem 0 3rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Hover Bridge to prevent menu closing */
.mega-content::before {
    content: '';
    position: absolute;
    top: -40px;
    /* Covers the gap from link to bottom of header */
    left: 0;
    width: 100%;
    height: 40px;
    background: transparent;
}

.mega-dropdown:hover .mega-content {
    display: block;
    animation: slideDownFade 0.3s ease-out forwards;
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.mega-column h4 {
    font-family: var(--font-heading);
    color: var(--color-secondary);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.mega-column ul {
    list-style: none;
}

.mega-column ul li {
    margin-bottom: 0.6rem;
}

.mega-column ul li a {
    color: var(--color-text-main);
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.2s ease;
    display: block;
    padding: 2px 0;
}

.mega-column ul li a::after {
    display: none !important;
}

.mega-column ul li a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
    font-weight: 500;
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: #FFF;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Adjust for mobile to avoid covering content */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }

    .whatsapp-msg {
        bottom: 28px;
        right: 80px;
        font-size: 0.85rem;
    }
}

/* --- Search Bar Styles --- */
.search-container {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 30px;
    padding: 5px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    /* margin-right removed to rely on .nav-icons gap */
}

.search-container.active {
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-container input {
    border: none;
    outline: none;
    background: transparent;
    width: 0;
    padding: 0;
    transition: all 0.4s ease;
    font-size: 0.9rem;
    opacity: 0;
}

.search-container.active input {
    width: 200px;
    /* Expand width */
    padding: 0 10px;
    opacity: 1;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--color-text);
    padding: 5px;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
}

.search-btn:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .search-container.active input {
        width: 120px;
    }
}

.whatsapp-msg {
    position: fixed;
    bottom: 35px;
    right: 95px;
    background-color: #fff;
    padding: 10px 16px;
    border-radius: 20px 20px 0 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    font-size: 0.95rem;
    color: #333;
    z-index: 1000;
    font-family: sans-serif;
    font-weight: 500;
    opacity: 1;
    /* Instant visibility */
    pointer-events: none;
    transition: opacity 0.3s;
}

/* --- Shipping Marquee Banner --- */
.shipping-marquee {
    background: linear-gradient(90deg, #3E2723, #5D4037);
    color: #fff;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 10;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 25s linear infinite;
    gap: 50px;
    /* Space between repeated text */
    width: max-content;
}

.marquee-item {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.marquee-item i {
    color: #FFD700;
    /* Gold icon */
}

/* Hover to pause */
.shipping-marquee:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Shift by 50% since we duplicate content */
}

@media (max-width: 768px) {
    .marquee-item {
        font-size: 0.85rem;
    }

    /* Footer Touch Targets */
    .footer-links li {
        margin-bottom: 0.8rem;
    }

    .footer-links a {
        padding: 5px 0;
        display: inline-block;
    }
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--color-primary);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 1rem;
    min-width: 280px;
    justify-content: center;
    pointer-events: none;
    /* Allows clicking through */
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .toast-notification {
        width: 90%;
        bottom: 90px;
    }
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-background);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

/* FAILSAFE: Auto-fade out if JS crashes */
.loader-wrapper {
    animation: force-hide 0.5s forwards 4s;
    /* Wait 4s, then hide */
}

@keyframes force-hide {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

.choco-loader {
    width: 80px;
    height: 100px;
    background: #5D4037;
    /* Chocolate Color */
    border-radius: 4px;
    position: relative;
    box-shadow: 2px 2px 0 #3E2723;
    /* 3D effect */
    display: flex;
    /* For alignment if needed */
}

/* Chocolate Segments (Grid lines) */
.choco-loader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
}

.choco-loader::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-50%);
}

/* The Bites */
.bite {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--color-background);
    /* Matches background to look like a hole */
    border-radius: 50%;
    opacity: 0;
    /* Hidden initially */
}

.bite-1 {
    top: -12px;
    right: -12px;
    animation: bite-in 0.1s forwards 0.5s;
    /* Appears at 0.5s */
}

.bite-2 {
    top: -12px;
    left: -12px;
    animation: bite-in 0.1s forwards 1.0s;
    /* Appears at 1.0s */
}

.bite-3 {
    bottom: -15px;
    right: 15px;
    width: 45px;
    height: 45px;
    animation: bite-in 0.1s forwards 1.5s;
    /* Appears at 1.5s */
}

@keyframes bite-in {
    to {
        opacity: 1;
        transform: scale(1);
    }

    from {
        opacity: 0;
        transform: scale(0.5);
    }
}

/* --- Responsive Navigation (Added for Mobile Smoothness) --- */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block !important;
        z-index: 1002;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        max-width: 300px;
        background-color: var(--color-surface);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        gap: 1.5rem;
    }

    .nav-links.active {
        right: 0;
    }

    /* Style links in mobile menu */
    .nav-links a {
        font-size: 1.1rem;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    /* Navbar Adjustments */
    .navbar {
        padding: 0 1rem;
    }

    .logo img {
        height: 40px;
    }

    /* Homepage Specific: Force Visibility on Mobile Only */
    .home .mobile-toggle {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: var(--color-primary) !important;
        z-index: 2000 !important;
    }

    /* Ensure icon color */
    .home .mobile-toggle i {
        color: var(--color-primary) !important;
    }

    /* Revert to Dark on Scroll */
    .home header.glass-nav .mobile-toggle {
        color: var(--color-primary);
    }

    /* Mega Menu Mobile Overrides */
    .mega-dropdown:hover .mega-content {
        position: static;
        box-shadow: none;
        padding: 0;
        margin-top: 10px;
        background: #f9f9f9;
        display: block;
        animation: none;
    }

    .mega-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
    }
}

/* --- Wedding Page Styles --- */
.wedding-hero {
    position: relative;
    height: 70vh;
    background: url('images/valentines_box_2.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    /* Parallax effect */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.wedding-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Overlay for text */
}

.wedding-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    animation: fadeIn 1s ease-out;
}

.wedding-hero h1 {
    color: var(--color-secondary);
    /* Gold */
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    /* Better contrast */
}

.wedding-hero p {
    color: #fff;
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature-item {
    padding: 2.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border-bottom: 3px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--color-secondary);
}

.feature-icon {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

/* Wedding Form */
.wedding-form-section {
    background: #fdfbf7;
    /* Gentle cream background */
    padding: 5rem 0;
}

.wedding-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--color-secondary);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
    background: #fafafa;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-secondary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-block {
    width: 100%;
    padding: 16px;
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* --- Google Reviews Section --- */
.google-reviews-section {
    background-color: #fff;
    padding: 4rem 0;
}

.google-rating-overview {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 0.5rem;
}

.reviews-carousel-container {
    position: relative;
    padding: 0 10px;
}

.reviews-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 5px;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar IE */
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.review-card {
    flex: 0 0 300px;
    /* Fixed width cards */
    scroll-snap-align: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    /* Premium shadow */
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.reviewer-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.reviewer-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-main);
}

.review-stars {
    color: #fbbc04;
    /* Google Star Color */
    font-size: 0.8rem;
    margin-top: 2px;
}

.review-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    flex-grow: 1;
    /* Pushes date to bottom */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    /* Limit lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

.review-date {
    font-size: 0.8rem;
    color: #999;
}

.review-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.review-nav:hover {
    background: var(--color-secondary);
    color: #fff;
    border-color: var(--color-secondary);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-block {
    width: 100%;
    padding: 16px;
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}


/* Reset only inside testimonial section */
#testimonials * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#testimonials {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    padding: 80px 20px;
}

/* Container */
#testimonials .testimonial-section {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
#testimonials .section-header {
    text-align: center;
    margin-bottom: 60px;
}

#testimonials .section-tag {
    color: #b76e79;
    /* premium chocolate rose tone */
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

#testimonials .section-title {
    font-size: 44px;
    font-weight: 700;
    color: #3e2723;
    /* dark chocolate */
    line-height: 1.2;
}

/* Business Info Card */
#testimonials .business-info {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
}

/* Refresh indicator */
#testimonials .refresh-indicator {
    position: absolute;
    top: 10px;
    right: 15px;
    background: #4CAF50;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#testimonials .refresh-indicator.show {
    opacity: 1;
}

/* Logo */
#testimonials .business-logo {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f3f3f3;
}

/* Business text */
#testimonials .business-name {
    font-size: 22px;
    font-weight: 700;
    color: #3e2723;
    margin-bottom: 4px;
}

#testimonials .business-category {
    font-size: 14px;
    color: #8d6e63;
    margin-bottom: 8px;
}

/* Rating */
#testimonials .rating-display {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

#testimonials .rating-number {
    font-size: 28px;
    font-weight: 700;
    color: #d2691e;
}

#testimonials .rating-stars {
    color: #ffc107;
    font-size: 20px;
    letter-spacing: 2px;
}

/* Review Button */
#testimonials .review-btn {
    background: #3e2723;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

#testimonials .review-btn:hover {
    background: #5d4037;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(62, 39, 35, 0.25);
}

/* Carousel */
#testimonials .carousel-container {
    position: relative;
    padding: 0 60px;
}

#testimonials .reviews-wrapper {
    overflow: hidden;
    padding: 20px 0;
}

#testimonials .reviews-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

/* Review Card */
#testimonials .review-card {
    min-width: 300px;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

#testimonials .review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

#testimonials .reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: #3e2723;
}

#testimonials .review-stars {
    color: #ffc107;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

#testimonials .review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Navigation buttons */
#testimonials .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    color: #3e2723;
    transition: all 0.3s ease;
}

#testimonials .nav-button:hover {
    background: #3e2723;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

#testimonials .nav-button.prev {
    left: 0;
}

#testimonials .nav-button.next {
    right: 0;
}

/* Mobile */
@media (max-width: 768px) {

    #testimonials {
        padding: 60px 15px;
    }

    #testimonials .section-title {
        font-size: 32px;
    }

    #testimonials .carousel-container {
        padding: 0 20px;
    }

    #testimonials .review-card {
        min-width: 300px;
    }

    #testimonials .business-info {
        flex-direction: column;
        text-align: center;
    }

}

/* --- Mobile Optimization (Added for User Request) --- */
@media (max-width: 768px) {

    /* 1. Global Spacing Reduction */
    section,
    .section {
        padding: 2.5rem 1rem !important;
    }

    .container {
        padding: 0 1rem;
    }

    /* 2. Typography Scaling */
    h1 {
        font-size: 2.2rem !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    p {
        font-size: 1rem !important;
    }

    /* 3. Grid Fixes */
    /* Mega Menu - Stack Vertically */
    .mega-grid {
        display: flex !important;
        flex-direction: column;
        gap: 0 !important;
    }

    .mega-column {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    /* Product Grid - Efficient 2 Columns */
    .product-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    /* Ensure product cards don't overflow */
    .product-card {
        width: 100% !important;
    }

    /* 4. Component Refinements */
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input {
        width: 100%;
    }

    /* Spotlight / Hero Adjustments */
    .spotlight-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .spotlight-content {
        padding: 1rem !important;
    }

    .spotlight-image {
        height: 250px;
    }

    /* Footer Stacking */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-col {
        align-items: center;
    }
}

/* USP Bar Fix for Mobile Congestion */
.usp-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2rem 5%;
    gap: 1rem;
    background: var(--color-surface);
    flex-wrap: wrap;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--color-text-main);
}

.usp-item i {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

@media (max-width: 768px) {
    .usp-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* 2 Columns */
        gap: 1.5rem 1rem;
        padding: 1.5rem 1rem;
    }

    .usp-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        font-size: 0.85rem;
    }

    .usp-item i {
        font-size: 1.25rem;
    }
}