/* ==========================================================================
   YOURINDIANMART.COM - PREMIUM LUXURY E-COMMERCE THEME DESIGN SYSTEM
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS (CSS VARIABLES)
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --color-ivory: hsl(40, 30%, 96%);        /* #F9F6F0 - Warm Ivory base background */
    --color-green: hsl(156, 61%, 15%);       /* #0F3E2B - Deep Forest Green structure */
    --color-green-light: hsl(156, 40%, 25%); /* Lighter Forest Green for interactive states */
    --color-saffron: hsl(28, 87%, 58%);      /* #F18E36 - Soft Elegant Saffron CTAs */
    --color-saffron-hover: hsl(28, 87%, 50%);/* Vibrant Saffron hover */
    --color-gold: hsl(43, 62%, 53%);         /* #D4AF37 - Premium Gold Accent */
    --color-gold-light: hsl(43, 60%, 80%);   /* Subtle Gold-Foil glow */
    --color-white: hsl(0, 0%, 100%);         /* #FFFFFF - Cards & Clean backgrounds */
    --color-slate: hsl(160, 10%, 25%);        /* #394440 - Slate grey primary body text */
    --color-border: hsl(40, 10%, 88%);       /* Warm, low-contrast border line */
    --color-shadow: rgba(15, 62, 43, 0.08);   /* Elegant transparent shadows */

    /* Typography & Spacing */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;

    /* Transitions & Micro-animations */
    --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-medium: 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* Elegant iOS-style ease-out */
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* UI Borders & Roundness */
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-pill: 9999px;
}

/* --------------------------------------------------------------------------
   2. CORE SYSTEM & BASE TYPOGRAPHY
   -------------------------------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
    line-height: 1.6;
    color: var(--color-slate);
    background-color: var(--color-ivory);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-green);
    line-height: 1.25;
}

h1 { font-size: clamp(2.2rem, 4vw + 1rem, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3vw + 0.8rem, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw + 0.5rem, 1.8rem); }

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

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Scrollbar customizations */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--color-ivory);
}
::-webkit-scrollbar-thumb {
    background: var(--color-green-light);
    border-radius: var(--radius-pill);
}

/* --------------------------------------------------------------------------
   3. BRAND BUTTONS & PREMIUM INTERACTIONS
   -------------------------------------------------------------------------- */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition-medium);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

/* Saffron CTA */
.btn-saffron {
    background-color: var(--color-saffron);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(241, 142, 54, 0.3);
}
.btn-saffron:hover {
    background-color: var(--color-saffron-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 142, 54, 0.45);
}
.btn-saffron:active {
    transform: translateY(0);
}

/* Forest Green CTA */
.btn-green {
    background-color: var(--color-green);
    color: var(--color-white);
    border: 1px solid var(--color-green);
}
.btn-green:hover {
    background-color: transparent;
    color: var(--color-green);
    transform: translateY(-2px);
}

/* Luxury Outlined button */
.btn-outline {
    background-color: transparent;
    border: 1.5px solid var(--color-gold);
    color: var(--color-green);
}
.btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   4. HEADER & NAVIGATION (STICKY & GLASSMORPHISM)
   -------------------------------------------------------------------------- */
.promo-bar {
    background-color: var(--color-green);
    color: var(--color-white);
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(249, 246, 240, 0.85); /* Ivory base transparent */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: padding var(--transition-medium), background var(--transition-medium);
}

/* Shrink header class applied via JS */
.site-header-wrapper.header-shrunk {
    padding-top: 4px;
    padding-bottom: 4px;
    background: rgba(249, 246, 240, 0.95);
    box-shadow: 0 4px 20px var(--color-shadow);
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height var(--transition-medium);
}

.header-shrunk .header-main {
    height: 65px;
}

/* Logo brand mark */
.site-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-green);
}
.site-logo span {
    color: var(--color-saffron);
}

/* Search bar styling */
.header-search-form {
    flex: 0 1 420px;
    position: relative;
    margin: 0 24px;
}
.header-search-form input {
    width: 100%;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 10px 18px 10px 42px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-slate);
    transition: all var(--transition-fast);
}
.header-search-form input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.header-search-form .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-slate);
    opacity: 0.6;
}

/* Header utility links */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-action-btn {
    position: relative;
    color: var(--color-green);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}
.header-action-btn:hover {
    background-color: rgba(15, 62, 43, 0.05);
    transform: scale(1.05);
}
.header-action-btn .cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: var(--color-saffron);
    color: var(--color-white);
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--color-ivory);
}

.whatsapp-action-btn {
    background-color: #25D366;
    color: var(--color-white) !important;
}
.whatsapp-action-btn:hover {
    background-color: #128C7E;
}

/* Navigation & Premium Mega Menu */
.header-nav {
    border-top: 1px solid rgba(15, 62, 43, 0.06);
}
.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}
.menu-item-has-children {
    position: relative;
}
.nav-menu > li > a {
    display: block;
    padding: 14px 18px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--color-green);
    position: relative;
}
.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 18px;
    right: 18px;
    height: 1.5px;
    background-color: var(--color-saffron);
    transform: scaleX(0);
    transition: transform var(--transition-medium);
}
.nav-menu > li:hover > a::after,
.nav-menu > li.current-menu-item > a::after {
    transform: scaleX(1);
}

/* Premium Mega Menu Dropdown Container */
.mega-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 900px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 40px var(--color-shadow);
    border-radius: var(--radius-md);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    transition: transform var(--transition-medium), opacity var(--transition-medium), visibility var(--transition-medium);
    z-index: 999;
}
.menu-item-has-children:hover .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-column h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-green);
    margin-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 6px;
}
.mega-menu-column ul {
    list-style: none;
}
.mega-menu-column ul li a {
    display: block;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--color-slate);
}
.mega-menu-column ul li a:hover {
    color: var(--color-saffron);
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   5. HOMEPAGE TEMPLATE SECTIONS (THE LUXURY STORY)
   -------------------------------------------------------------------------- */
/* Cinematic Hero Banner */
.hero-banner-section {
    position: relative;
    height: calc(85vh - 130px);
    min-height: 520px;
    background-color: var(--color-green);
    background-image: linear-gradient(rgba(15, 62, 43, 0.4), rgba(15, 62, 43, 0.7)), url('https://images.unsplash.com/photo-1596797038530-2c107229654b?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--color-white);
    margin-bottom: 60px;
}

.hero-overlay-card {
    max-width: 620px;
    background: rgba(15, 62, 43, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: fadeInUp var(--transition-slow);
}

.hero-overlay-card .badge-gold {
    display: inline-block;
    border: 1px solid var(--color-gold);
    color: var(--color-gold-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 18px;
}

.hero-overlay-card h1 {
    color: var(--color-white);
    margin-bottom: 16px;
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.hero-overlay-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* Category Bento Grid Layout */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2.5px;
    background-color: var(--color-gold);
}
.section-header p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--color-slate);
    opacity: 0.85;
    margin-top: 8px;
}

.category-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
    margin-bottom: 80px;
}

.bento-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--color-white);
    box-shadow: 0 4px 15px var(--color-shadow);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}
.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(15, 62, 43, 0.15);
}

/* Bento grid sizing logic for editorial variations */
.bento-size-large {
    grid-column: span 2;
    grid-row: span 2;
}
.bento-size-tall {
    grid-row: span 2;
}

.bento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.bento-card:hover .bento-img {
    transform: scale(1.06);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 62, 43, 0.8) 0%, rgba(15, 62, 43, 0.1) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--color-white);
}

.bento-overlay h3 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 4px;
}
.bento-overlay p {
    font-size: 0.85rem;
    opacity: 0.8;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Horizontal Best Sellers & Products Row */
.product-slider-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    padding: 10px 4px 30px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.product-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: all var(--transition-medium);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px var(--color-shadow);
    border-color: var(--color-gold-light);
}

.product-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: var(--color-saffron);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    z-index: 10;
}

.product-card-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-actions {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    transform: translateY(60px);
    transition: transform var(--transition-medium);
}
.product-card:hover .product-card-actions {
    transform: translateY(0);
}

.product-card-actions .action-btn {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--color-green);
    border: 1px solid var(--color-border);
    padding: 10px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all var(--transition-fast);
}
.product-card-actions .action-btn:hover {
    background-color: var(--color-green);
    color: var(--color-white);
    border-color: var(--color-green);
}
.product-card-actions .wishlist-btn {
    flex: 0 0 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.product-card-info {
    padding: 18px;
}
.product-card-cat {
    font-size: 0.75rem;
    color: var(--color-slate);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}
.product-card-title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-green);
    margin-bottom: 8px;
    height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.product-card-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-slate);
    display: flex;
    align-items: center;
    gap: 8px;
}
.product-card-price ins {
    text-decoration: none;
}
.product-card-price del {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.5;
}

/* --------------------------------------------------------------------------
   6. EDITORIAL SPOTLIGHT & AYURVEDA SECTIONS
   -------------------------------------------------------------------------- */
.editorial-spotlight {
    display: flex;
    align-items: center;
    gap: 60px;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px var(--color-shadow);
    padding: 60px;
    margin-bottom: 80px;
    overflow: hidden;
}

.spotlight-media {
    flex: 1;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.spotlight-media img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.spotlight-content {
    flex: 1;
}
.spotlight-content .tag {
    color: var(--color-gold);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 12px;
}
.spotlight-content h2 {
    margin-bottom: 20px;
    font-size: 2.2rem;
}
.spotlight-content p {
    color: var(--color-slate);
    font-size: 1.05rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Regional Grid Collections */
.regional-collections-section {
    margin-bottom: 80px;
}
.regional-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.regional-card {
    position: relative;
    height: 320px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}
.regional-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.regional-card:hover img {
    transform: scale(1.08);
}
.regional-card-title {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 62, 43, 0.85) 0%, rgba(15, 62, 43, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 24px;
    color: var(--color-white);
    text-align: center;
}
.regional-card-title h3 {
    color: var(--color-white);
    font-size: 1.15rem;
    font-family: var(--font-body);
    font-weight: 600;
}
.regional-card-title span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    margin-top: 4px;
}

/* --------------------------------------------------------------------------
   7. TRUST BADGES, TESTIMONIALS & FOOTER
   -------------------------------------------------------------------------- */
/* WhatsApp order banner */
.whatsapp-banner {
    background-color: var(--color-green);
    background-image: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-light) 100%);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}
.whatsapp-banner-content h2 {
    color: var(--color-white);
    margin-bottom: 12px;
}
.whatsapp-banner-content p {
    font-size: 1.05rem;
    opacity: 0.9;
}
.whatsapp-banner-btn {
    background-color: #25D366;
    color: var(--color-white);
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.whatsapp-banner-btn:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Trust Badges */
.trust-badges-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 80px;
}
.trust-badge-item {
    text-align: center;
}
.trust-badge-item i {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 12px;
}
.trust-badge-item h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-green);
    margin-bottom: 4px;
}
.trust-badge-item p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Premium Footer */
.site-footer {
    background-color: var(--color-green);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 40px;
    font-size: 0.9rem;
    border-top: 4px solid var(--color-gold);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr) 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-white) !important;
    margin-bottom: 16px;
    display: inline-block;
}
.footer-logo span {
    color: var(--color-saffron);
}
.footer-about p {
    margin-bottom: 20px;
    line-height: 1.7;
}
.footer-social-links {
    display: flex;
    gap: 12px;
}
.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    transition: all var(--transition-fast);
}
.footer-social-links a:hover {
    background-color: var(--color-gold);
    transform: translateY(-2px);
}

.footer-column h4 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}
.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1.5px;
    background-color: var(--color-gold);
}

.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 12px;
}
.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
}
.footer-column ul li a:hover {
    color: var(--color-gold);
    padding-left: 4px;
}

.footer-newsletter p {
    margin-bottom: 16px;
}
.footer-newsletter-form {
    display: flex;
    border-radius: var(--radius-pill);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
}
.footer-newsletter-form input {
    flex: 1;
    background-color: rgba(255,255,255,0.06);
    border: none;
    padding: 12px 18px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.85rem;
}
.footer-newsletter-form input:focus {
    outline: none;
    background-color: rgba(255,255,255,0.12);
}
.footer-newsletter-form button {
    background-color: var(--color-saffron);
    color: var(--color-white);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color var(--transition-fast);
}
.footer-newsletter-form button:hover {
    background-color: var(--color-saffron-hover);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* --------------------------------------------------------------------------
   8. WOOCOMMERCE PRODUCT PAGE & HIGH-CONVERSION UI
   -------------------------------------------------------------------------- */
.single-product-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    margin: 40px auto 80px;
}

.product-gallery-panel {
    position: sticky;
    top: 110px;
}
.product-gallery-main {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    background-color: var(--color-white);
    margin-bottom: 16px;
}
.product-gallery-thumbs {
    display: flex;
    gap: 12px;
}
.gallery-thumb-item {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    overflow: hidden;
    cursor: pointer;
    transition: border-color var(--transition-fast);
}
.gallery-thumb-item.active,
.gallery-thumb-item:hover {
    border-color: var(--color-gold);
}

.product-details-panel {
    display: flex;
    flex-direction: column;
}
.product-brand-tag {
    color: var(--color-gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.product-title-heading {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    margin-bottom: 14px;
}
.product-rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    margin-bottom: 24px;
}
.product-rating-stars {
    color: var(--color-gold);
}

.product-pricing-box {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 30px;
}
.product-pricing-box .price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-green);
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.product-pricing-box .price-amount del {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--color-slate);
    opacity: 0.5;
}

.purchase-actions-row {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}
.quantity-selector {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-pill);
    background-color: var(--color-white);
    padding: 4px;
}
.quantity-selector button {
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-weight: 700;
    color: var(--color-green);
    font-size: 1.1rem;
    border-radius: 50%;
    transition: background-color var(--transition-fast);
}
.quantity-selector button:hover {
    background-color: rgba(15, 62, 43, 0.05);
}
.quantity-selector input {
    width: 40px;
    border: none;
    text-align: center;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 1rem;
}
.quantity-selector input:focus {
    outline: none;
}

.btn-add-to-cart {
    flex: 1;
}

/* Sticky add to cart bar on mobile */
.sticky-buy-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 998;
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}
.sticky-buy-bar.visible {
    transform: translateY(0);
}

/* Delivery estimate details */
.delivery-estimate-card {
    background-color: rgba(212, 175, 55, 0.05);
    border: 1px dashed var(--color-gold);
    padding: 18px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.delivery-estimate-card i {
    color: var(--color-gold);
    font-size: 1.25rem;
    margin-top: 2px;
}
.delivery-estimate-card h5 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.delivery-estimate-card p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* FBT (Frequently Bought Together) box */
.fbt-container {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 40px;
}
.fbt-grid {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
}
.fbt-product-thumbnail {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    overflow: hidden;
}
.fbt-plus-sign {
    font-size: 1.2rem;
    color: var(--color-gold);
    font-weight: 700;
}
.fbt-total-action {
    margin-left: auto;
    text-align: right;
}

/* --------------------------------------------------------------------------
   9. STUNNING ANIMATIONS & RESPONSIVE LAYOUTS (MOBILE FIRST)
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .mega-menu-dropdown {
        width: 100%;
        max-width: calc(100vw - 48px);
        grid-template-columns: repeat(2, 1fr);
    }
    .category-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .bento-size-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    .bento-size-tall {
        grid-row: span 1;
    }
    .editorial-spotlight {
        flex-direction: column;
        padding: 40px;
        gap: 30px;
    }
    .regional-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .single-product-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header-search-form {
        display: none; /* Hide standard search; can toggle via mobile drawer */
    }
    .nav-menu {
        display: none; /* Mobile menu hamburger overlay logic */
    }
    .category-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 180px;
    }
    .bento-size-large {
        grid-column: span 1;
    }
    .regional-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .whatsapp-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .trust-badges-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
