/* ==========================================================================
   CSS Variables & Tokens
   ========================================================================== */
   :root {
    /* Colors */
    --primary: #332354;        /* Softened deep purple */
    --primary-light: #4c3b7a;  /* Lighter purple for hover states */
    --secondary: #FAF9F6;      /* Off-white coffee shop parchment */
    --accent: #EFE9F5;         /* Very light lavender accent */
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-800: #1F2937;
    --text-main: #2C2C2C;      /* Softer black */
    --text-muted: #7A7A7A;

    /* Typography */
    --font-sans: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Spacing */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(41, 18, 74, 0.08);
    --shadow-lg: 0 20px 40px rgba(41, 18, 74, 0.12);
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

h1, h2, h3, h4 {
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: var(--space-md);
    font-weight: 500;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--space-md);
    color: var(--text-muted);
    font-size: 1.125rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

.bg-light {
    background-color: var(--secondary);
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.center {
    text-align: center;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary, .btn-secondary, .btn-outline, .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.full-width {
    width: 100%;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 2.5rem;
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo img {
    height: 40px;
    width: 40px;
    border-radius: 8px;
    object-fit: cover;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

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

/* On scrolled/subpages, make nav links dark */
.navbar.scrolled .nav-links a,
body:not(.home-page) .navbar .nav-links a {
    color: var(--text-muted);
}

.navbar.scrolled .nav-links a:hover,
body:not(.home-page) .navbar .nav-links a:hover {
    color: var(--primary);
}

/* Mobile overlay — hidden by default on desktop */
.mobile-nav-overlay {
    display: none;
}

.navbar.scrolled,
body:not(.home-page) .navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled .nav-links a,
body:not(.home-page) .navbar .nav-links a {
    color: var(--text-muted);
}

.navbar.scrolled .nav-links a:hover,
body:not(.home-page) .navbar .nav-links a:hover {
    color: var(--primary);
}

.navbar.scrolled .brand-logo,
body:not(.home-page) .navbar .brand-logo {
    color: var(--primary);
}

.navbar.scrolled .mobile-menu-btn,
body:not(.home-page) .navbar .mobile-menu-btn {
    color: var(--primary);
}


.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--primary);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
@media (max-width: 768px) {
    .hero {
        min-height: 500px;
        height: 80vh;
    }
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(33, 20, 58, 0.7) 0%, rgba(33, 20, 58, 0.2) 100%);
}

.hero-content {
    max-width: 800px;
    text-align: center;
    color: var(--white);
    padding: 0 var(--space-lg);
    z-index: 1;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background: var(--secondary);
    padding: 2rem;
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card i {
    color: var(--primary);
    width: 32px;
    height: 32px;
    margin-bottom: 1rem;
}

/* ==========================================================================
   Shop / Product Section
   ========================================================================== */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    margin-top: var(--space-xl);
}

.product-image img {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.feature-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--gray-200);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    background: linear-gradient(to bottom right, var(--white), var(--secondary));
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
}

.pricing-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.pricing-card .desc {
    font-size: 0.875rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* ==========================================================================
   Product Info
   ========================================================================== */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.check-list {
    list-style: none;
    margin-bottom: 2rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.check-list i {
    color: var(--primary);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.storage-info {
    background: var(--accent);
    padding: 1.5rem;
    border-radius: 12px;
    color: var(--primary);
}

.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.nutrition-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.nutrition-table tr:last-child td {
    border-bottom: none;
}

.nutrition-table td:first-child {
    font-weight: 500;
    color: var(--text-main);
}

.nutrition-table td:last-child {
    text-align: right;
    color: var(--text-muted);
}

.disclaimer {
    font-size: 0.875rem;
    margin-top: 1rem;
    font-style: italic;
}

/* ==========================================================================
   Retail Section
   ========================================================================== */
.retail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.retail-image img {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.retail-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: var(--space-xl);
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(41, 18, 74, 0.8), transparent);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 500;
    font-size: 1.25rem;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: var(--space-xl);
}

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

.icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

/* ==========================================================================
   Learn & Discover (Blog) Section
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--space-xl);
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.massive-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: var(--space-xl);
}
@media (max-width: 480px) {
    .massive-blog-grid {
        grid-template-columns: 1fr;
    }
}

.massive-blog-grid .blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.blog-content {
    padding: 2.5rem 2rem;
}

.blog-category {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--white);
    background: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ==========================================================================
   B2B Section
   ========================================================================== */
.b2b-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    background: var(--secondary);
    border-radius: 32px;
    overflow: hidden;
}

.b2b-content {
    padding: 4rem;
}

.b2b-list {
    list-style: none;
    margin: 2rem 0;
}

.b2b-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.b2b-list i {
    color: var(--primary);
}

.b2b-image {
    height: 100%;
}

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

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.contact-methods {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-methods .method {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--primary);
}

.contact-methods .method i {
    background: var(--secondary);
    padding: 12px;
    border-radius: 50%;
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(41, 18, 74, 0.1);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background: var(--secondary);
    color: var(--text-main);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--gray-200);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-xl);
    margin-bottom: 4rem;
}

.footer-brand h2 {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--primary);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.link-group h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.link-group a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.link-group a:hover {
    color: var(--primary);
}

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

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

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

.legal-links a:hover {
    color: var(--primary);
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 9999;
    background: #25D366;
    color: white;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: wa-pulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
    animation: none;
}

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.7); }
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
    .about-grid, .product-showcase, .info-grid, .retail-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .b2b-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .brand-logo {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: block !important;
        color: var(--white);
        z-index: 3000;
    }

    .navbar.scrolled .mobile-menu-btn {
        color: var(--primary);
    }

    .hero {
        height: auto !important;
        min-height: 85vh !important;
        padding: 100px 0 60px !important;
    }

    .hero-content h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }

    .shop-split {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .shop-image-sticky {
        position: relative !important;
        top: 0 !important;
        margin-bottom: 2rem !important;
        width: 100% !important;
    }

    .shop-image-sticky img {
        max-width: 300px !important;
        margin: 0 auto !important;
        display: block !important;
    }

    .check-list li {
        display: flex !important;
        align-items: flex-start !important;
        gap: 12px !important;
        text-align: left !important;
    }

    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }

    .footer-links {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }

    .mobile-nav-overlay {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background: var(--primary);
        z-index: 2000;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
    }
    
    .mobile-nav-overlay .nav-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .mobile-nav-overlay .nav-links a {
        font-size: 1.75rem !important;
        color: var(--white) !important;
        margin: 0.5rem 0 !important;
    }
    
    .mobile-nav-overlay.active {
        right: 0;
    }

    .mobile-nav-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: none;
        border: none;
        color: var(--white);
        cursor: pointer;
        padding: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0.8;
        transition: opacity 0.2s ease;
    }

    .mobile-nav-close:hover {
        opacity: 1;
    }

    .mobile-nav-close svg {
        width: 32px;
        height: 32px;
    }
}

/* Shop Redesign */
.shop-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: flex-start;
}
@media (max-width: 900px) {
    .shop-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .shop-image-sticky {
        position: relative !important;
        top: 0 !important;
        margin-bottom: 1.5rem !important;
        z-index: 1 !important;
    }
    .shop-details {
        padding-top: 0 !important;
    }
}
.shop-image-sticky {
    position: sticky;
    top: 100px;
}
.shop-image-sticky img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.size-selector {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.size-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}
.size-option:hover {
    border-color: var(--primary);
    background: rgba(33, 20, 58, 0.02);
}
.size-option.active {
    border-color: var(--primary);
    background: rgba(33, 20, 58, 0.04);
}
.size-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
    color: var(--gray-900);
}
.size-info p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
}
.size-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
}
.how-to-order {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ==========================================================================
   FAQ Section Styles
   ========================================================================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.faq-item:hover,
.faq-item[open] {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    list-style: none; /* Hide default summary arrow */
    user-select: none;
    transition: var(--transition-fast);
}

.faq-question::-webkit-details-marker {
    display: none; /* Hide default summary arrow in Webkit */
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem 1.75rem;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
    }
    .faq-answer {
        padding: 0 1.5rem 1.5rem;
        font-size: 1.05rem;
        line-height: 1.6;
    }
}

