/* =========================================
   VARIABLES & STRICT RESET
   ========================================= */
:root {
    --bg-cream: #FCFAF6; 
    --text-brown: #332211; 
    --accent-green: #3A7D44; 
    --accent-gold: #B8860B; 
    --card-bg: #FFFFFF; 
    --badge-red: #D32F2F;
    --border-color: rgba(184, 134, 11, 0.2); 
    --btn-brown: #A07855; 
    
    --font-hindi: 'Yatra One', system-ui;
    --font-english: 'Outfit', sans-serif;
    
    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 12px 30px rgba(0, 0, 0, 0.08);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-brown);
    font-family: var(--font-english);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: auto; 
    -webkit-font-smoothing: antialiased;
}

a, button, input, select { cursor: pointer; font-family: inherit; }

/* --- Top Strip --- */
.top-strip { background-color: var(--accent-gold); height: 8px; width: 100%; }

/* =========================================
   HEADER & OPTICAL LOGO CENTERING
   ========================================= */
.main-header {
    background-color: rgba(252, 250, 246, 0.95);
    backdrop-filter: blur(10px);
    position: sticky; top: 0; z-index: 1000;
    box-shadow: var(--shadow-soft); 
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.header-top {
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
    padding: 0 4%; max-width: 1600px; margin: 0 auto;
}

.header-left { display: flex; align-items: center; gap: 2.5rem; }
.desktop-nav { display: flex; gap: 2rem; align-items: center; height: 100%;}
.nav-link { color: var(--text-brown); text-decoration: none; font-weight: 500; font-size: 1.05rem; transition: color 0.3s ease; }
.nav-link:hover { color: var(--accent-gold); }
.menu-btn { display: none; color: var(--text-brown); }

/* Centered Header Logo */
.logo-center { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    text-decoration: none; 
    text-align: center;
}
.logo-icon { display: flex; justify-content: center; align-items: center; }
.logo-icon img { height: 65px; width: auto; object-fit: contain; filter: drop-shadow(0px 4px 8px rgba(51, 34, 17, 0.1)); margin-bottom: 0px; }
.logo-text { display: flex; flex-direction: column; align-items: center; margin-top: -5px; }
.logo-hindi { font-family: var(--font-hindi); font-size: 2.2rem; line-height: 1; color: var(--accent-green); margin: 0; text-shadow: 0px 2px 4px rgba(0,0,0,0.05); }
.logo-english { font-family: var(--font-english); font-size: 0.85rem; letter-spacing: 5px; font-weight: 700; color: var(--accent-gold); text-transform: uppercase; margin-top: 2px; margin-right: -5px; }

/* =========================================
   MEGA MENU (Dropdown)
   ========================================= */
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 15px);
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1005;
    width: max-content;
}
.nav-item.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}
.mega-menu-content { display: flex; gap: 1.5rem; }
.mega-product {
    display: flex; flex-direction: column; align-items: center;
    width: 130px; text-align: center; gap: 8px; transition: transform 0.3s;
}
.mega-product:hover { transform: translateY(-5px); }
.mega-product img {
    width: 100px; height: 100px; object-fit: cover; border-radius: 12px;
    box-shadow: var(--shadow-soft); background: #FFF; padding: 5px;
}
.mega-product span { font-size: 0.85rem; font-weight: 600; color: var(--text-brown); line-height: 1.2; flex: 1; }
.mega-add-btn {
    background: transparent; color: var(--accent-green); border: 1px solid var(--accent-green);
    padding: 5px 15px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; transition: 0.3s; width: 100%;
}
.mega-add-btn:hover { background: var(--accent-green); color: #FFF; }

.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 1.5rem; }
.search-wrapper { position: relative; display: flex; align-items: center; }
.desktop-search {
    padding: 10px 15px 10px 40px; border: 1px solid var(--border-color); border-radius: 30px;
    background: #FFF; font-size: 0.95rem; outline: none; width: 220px; transition: all 0.3s ease; color: var(--text-brown);
}
.desktop-search:focus { width: 260px; border-color: var(--accent-gold); box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1); }
.search-icon { position: absolute; left: 12px; color: #888; pointer-events: none; }

/* --- Live Search Results Dropdown --- */
.search-results {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 320px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 1010;
}
.search-results.active { opacity: 1; visibility: visible; transform: translateY(0); }
.search-result-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; text-decoration: none; color: var(--text-brown);
    border-bottom: 1px solid var(--border-color); transition: background 0.2s;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--bg-cream); }
.search-result-item img { width: 46px; height: 46px; object-fit: cover; border-radius: 8px; background: var(--bg-cream); flex-shrink: 0; }
.search-result-info { display: flex; flex-direction: column; gap: 2px; }
.search-result-info strong { font-size: 0.92rem; font-weight: 600; }
.search-result-info span { font-size: 0.82rem; color: var(--accent-gold); font-weight: 600; }
.search-no-results { padding: 1rem 1.2rem; font-size: 0.9rem; color: #888; text-align: center; }

.icon-btn { background: none; border: none; color: var(--text-brown); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.icon-btn:hover { color: var(--accent-gold); transform: translateY(-2px); }
.cart-btn { position: relative; color: var(--accent-gold); }
.cart-badge {
    position: absolute; top: -5px; right: -8px; background-color: var(--badge-red);
    color: #FFF; font-size: 0.75rem; font-weight: bold; height: 20px; width: 20px;
    display: flex; align-items: center; justify-content: center; border-radius: 50%;
    border: 2px solid var(--bg-cream);
}

/* =========================================
   SIDEBARS & MODALS
   ========================================= */
.sidebar-overlay, .cart-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(30, 20, 10, 0.6); z-index: 1001; opacity: 0; 
    pointer-events: none; transition: opacity 0.4s ease; backdrop-filter: blur(3px);
}
.sidebar-overlay.active, .cart-overlay.active { opacity: 1; pointer-events: all; }

.sidebar { position: fixed; top: 0; left: -420px; width: 400px; max-width: 100vw; height: 100vh; background-color: var(--bg-cream); z-index: 1002; box-shadow: 10px 0 30px rgba(0,0,0,0.1); transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); display: flex; flex-direction: column; }
.sidebar.open { transform: translateX(420px); }
.sidebar-header { display: flex; align-items: center; gap: 1.25rem; padding: 1.5rem 2rem; border-bottom: 1px solid var(--border-color); background: var(--card-bg); }
.sidebar-logo { display: flex; flex-direction: column; text-decoration: none; line-height: 1.1; }
.sidebar-logo-hindi { font-family: var(--font-hindi); font-size: 1.6rem; color: var(--accent-green); }
.sidebar-logo-english { font-family: var(--font-english); font-size: 0.65rem; letter-spacing: 3px; font-weight: 700; color: var(--accent-gold); text-transform: uppercase; }
.sidebar-nav { display: flex; flex-direction: column; padding: 1rem 2rem 2rem; }
.sidebar-nav a {
    color: var(--text-brown);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s, padding-left 0.3s;
}
.sidebar-nav a:hover { color: var(--accent-gold); padding-left: 8px; }
.sidebar-nav a:last-child { border-bottom: none; }

/* Premium Cart Sidebar */
.cart-sidebar { position: fixed; top: 0; right: -420px; width: 420px; height: 100vh; background-color: var(--bg-cream); z-index: 1002; display: flex; flex-direction: column; box-shadow: -10px 0 30px rgba(0,0,0,0.1); transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.cart-sidebar.open { transform: translateX(-420px); }
.cart-sidebar-header { display: flex; justify-content: space-between; padding: 1.5rem 2rem; background: var(--card-bg); font-weight: 600; border-bottom: 1px solid var(--border-color); font-size: 1.2rem; color: var(--text-brown);}
.cart-scroll-body { flex: 1; overflow-y: auto; padding-bottom: 2rem; }
.cart-promo-bar { background: var(--card-bg); padding: 1.5rem 2rem; border-bottom: 1px solid var(--border-color); }
.promo-text { display: flex; justify-content: space-between; font-size: 0.95rem; margin-bottom: 1rem; color: var(--text-brown); }
.progress-container { height: 8px; background: #EAEAEA; border-radius: 6px; position: relative; }
.progress-fill { height: 100%; background: var(--accent-green); border-radius: 6px; transition: width 0.4s ease; }
.mystery-gift-icon { position: absolute; right: -10px; top: -12px; font-size: 1.5rem; background: #FFF; border-radius: 50%; padding: 2px; transition: opacity 0.3s;}
.cart-items-container { padding: 1.5rem 2rem; min-height: 200px; display: flex; flex-direction: column; gap: 1rem; }
.empty-cart-message { text-align: center; padding: 3rem 1rem; color: #888; font-size: 1.1rem; }

.cart-cross-sell { padding: 1.5rem 2rem; background: var(--card-bg); border-top: 1px solid var(--border-color); }
.cart-cross-sell h4 { font-size: 1.1rem; margin-bottom: 1.2rem; color: var(--text-brown); }
.cross-sell-scroll { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 10px; }
.cross-sell-scroll::-webkit-scrollbar { display: none; }
.cross-sell-card { min-width: 220px; background: var(--card-bg); border-radius: 12px; padding: 1rem; display: flex; gap: 12px; border: 1px solid var(--border-color); }
.cross-sell-card img { width: 70px; height: 70px; border-radius: 8px; object-fit: cover; }
.cs-details p { font-size: 0.85rem; color: #555; margin-bottom: 5px; }
.add-cs-btn { margin-top: 5px; background: #FFF; border: 1px solid #CCC; padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; cursor: pointer; }

.cart-sticky-footer { background: var(--card-bg); border-top: 1px solid var(--border-color); padding: 1.5rem 2rem; box-shadow: 0 -4px 20px rgba(0,0,0,0.03); }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; font-size: 1.2rem; color: var(--text-brown); font-weight: 600;}
.total-amount strong { font-size: 1.5rem; font-weight: 700; color: var(--text-brown); }
.checkout-main-btn { width: 100%; background: var(--accent-green); color: #FFF; border: none; border-radius: 8px; padding: 16px; font-size: 1.1rem; font-weight: 600; transition: background 0.3s; }
.checkout-main-btn:hover { background: #244928; }

/* Dynamic Cart Items */
.cart-item-card { background: var(--card-bg); border-radius: 12px; padding: 1.2rem; display: flex; gap: 1rem; border: 1px solid var(--border-color); box-shadow: var(--shadow-soft); }
.item-img { background: var(--bg-cream); border-radius: 8px; padding: 5px; }
.item-img img { width: 70px; height: 70px; object-fit: contain; }
.item-info { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.item-info h4 { font-size: 1rem; font-weight: 600; color: var(--text-brown); margin-bottom: 4px; line-height: 1.2;}
.item-variant { font-size: 0.85rem; color: #777; }
.item-pricing { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.current-price { font-weight: 700; font-size: 1.1rem; color: var(--text-brown); }
.item-actions { display: flex; align-items: center; gap: 15px; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border-color); border-radius: 6px; }
.qty-control button { border: none; background: transparent; width: 28px; height: 28px; font-weight: bold; font-size: 1.1rem; color: var(--text-brown); transition: background 0.2s;}
.qty-control button:hover { background: var(--bg-cream); }
.qty-control span { padding: 0 10px; font-size: 0.95rem; font-weight: 600; color: var(--text-brown);}
.delete-btn { background: none; border: none; font-size: 1.2rem; color: #999; transition: color 0.3s; }
.delete-btn:hover { color: var(--badge-red); }

/* --- Modals --- */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(30, 20, 10, 0.8); backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center; z-index: 9999; transition: opacity 0.3s ease; }
.modal-overlay.hidden { display: none; opacity: 0; pointer-events: none; }
.modal-card { background: var(--card-bg); padding: 3rem; border-radius: 20px; width: 90%; max-width: 500px; text-align: center; box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.modal-card h3 { font-size: 1.8rem; color: var(--accent-green); margin-bottom: 10px; font-weight: 600;}
.modal-card p { color: #666; margin-bottom: 2rem; }

/* Updated Input row logic */
.input-row.three-col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}
.checkout-card input, .checkout-card select { 
    width: 100%; padding: 14px 16px; margin-bottom: 15px; border: 1px solid var(--border-color); 
    border-radius: 8px; font-size: 1rem; color: var(--text-brown); background: var(--bg-cream); 
    outline: none; transition: 0.3s; font-family: var(--font-english);
}
.checkout-card select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23332211" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat; background-position: right 10px top 50%;
}
.checkout-card select:disabled { opacity: 0.6; cursor: not-allowed; }
.checkout-card input:focus, .checkout-card select:focus { border-color: var(--accent-gold); box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1); }

.verify-btn { width: 100%; background-color: var(--accent-green); color: #FFF; border: none; padding: 16px; border-radius: 8px; font-weight: 600; font-size: 1.1rem; transition: background 0.3s; margin-bottom: 15px; }
.verify-btn:hover { background-color: #244928; }
.text-btn { background: none; border: none; font-weight: 600; color: #666; font-size: 1rem; transition: color 0.3s;}
.text-btn:hover { color: var(--text-brown); }
.success-icon { font-size: 4rem; margin-bottom: 1rem; }

/* --- Aesthetic Order-Success Modal --- */
.success-card { padding: 3rem 2.5rem 2.5rem; position: relative; overflow: hidden; }
.success-card::before {
    content: ''; position: absolute; top: -60px; right: -60px; width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(184,134,11,0.14) 0%, rgba(184,134,11,0) 70%); pointer-events: none;
}
.success-icon-wrap { display: flex; justify-content: center; margin-bottom: 1.25rem; }
.success-check-ring {
    width: 84px; height: 84px; border-radius: 50%;
    background: linear-gradient(145deg, rgba(58,125,68,0.12), rgba(184,134,11,0.10));
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(58,125,68,0.18);
}
.success-check-ring svg { width: 42px; height: 42px; }
.success-card h3 { font-size: 1.7rem; margin-bottom: 0.6rem; }
.success-order-line { color: var(--text-brown); font-size: 1.02rem; line-height: 1.6; margin-bottom: 0.4rem; }
.success-order-line strong { color: var(--accent-green); }
.success-order-id {
    display: inline-block; font-size: 0.8rem; letter-spacing: 1px; color: var(--accent-gold);
    background: var(--bg-cream); border: 1px solid var(--border-color); border-radius: 20px;
    padding: 5px 16px; margin-bottom: 1.5rem; font-weight: 600;
}
.success-divider { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.success-divider svg { width: 120px; height: 26px; }
.success-note {
    text-align: left; background: var(--bg-cream); border: 1px solid var(--border-color);
    border-radius: 12px; padding: 1.1rem 1.3rem; font-size: 0.95rem; line-height: 1.7;
    color: var(--text-brown); margin-bottom: 1rem !important;
}
.success-phone { color: var(--accent-green); font-weight: 700; text-decoration: none; }
.success-phone:hover { text-decoration: underline; }
.success-invoice-note { font-size: 0.88rem; color: #888; margin-bottom: 0.5rem !important; }

/* =========================================
   HERO CAROUSEL & CATEGORY LINKS (NEW)
   ========================================= */
.hero-carousel-section { padding: 2rem 4%; max-width: 1600px; margin: 0 auto; position: relative; }
.carousel-viewport { overflow: hidden; border-radius: 20px; box-shadow: var(--shadow-soft); background-color: var(--card-bg); }
.carousel-track { display: flex; width: 100%; }
.carousel-slide { min-width: 100%; position: relative;}
.slide-image-wrapper { position: relative; width: 100%; aspect-ratio: 1664 / 945; background-color: var(--bg-cream); }
.slide-image-wrapper img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide-overlay { position: absolute; inset: 0; }
.slide-overlay h2 { font-size: 3.8rem; color: var(--text-brown); margin-bottom: 2rem; line-height: 1.1; font-weight: 700; }
.slide-btn { position: absolute; left: 7%; top: 75%; background: transparent; color: var(--text-brown); border: 2px solid var(--text-brown); padding: 1rem 2.5rem; border-radius: 30px; font-weight: 600; font-size: 1.1rem; transition: all 0.3s ease; cursor: pointer; }
.slide-btn:hover { background: var(--text-brown); color: var(--bg-cream); }
.carousel-indicators { display: flex; justify-content: center; gap: 12px; margin-top: 1.5rem; }
.dot { width: 12px; height: 12px; border-radius: 50%; background-color: var(--border-color); transition: 0.3s; cursor: pointer; }
.dot.active { background-color: var(--accent-gold); transform: scale(1.3); }

/* =========================================
   BRAND QUOTE SECTION (शुद्धिकरण)
   ========================================= */
.brand-quote-section {
    max-width: 780px;
    margin: 1rem auto 3rem;
    padding: 3rem 5% 2.5rem;
    text-align: center;
}
.quote-ornament { color: var(--accent-gold); font-size: 1.4rem; margin-bottom: 1rem; letter-spacing: 4px; }
.quote-hindi-main {
    font-family: var(--font-hindi);
    font-size: 3.4rem;
    color: var(--accent-green);
    line-height: 1;
    margin-bottom: 0.75rem;
}
.quote-hindi-sub {
    font-family: var(--font-hindi);
    font-size: 1.5rem;
    color: var(--text-brown);
    margin-bottom: 1.25rem;
}
.quote-tagline {
    font-size: 1.05rem;
    color: #6b6b6b;
    letter-spacing: 0.5px;
    margin-top: 1.25rem;
    font-weight: 500;
}

/* --- Category Link Cards --- */
.category-links { 
    display: flex; justify-content: center; flex-wrap: wrap; 
    gap: 3rem; padding: 2rem 4% 4rem; max-width: 1200px; margin: 0 auto; 
}
.category-item { 
    display: flex; flex-direction: column; align-items: center; 
    gap: 15px; text-decoration: none; color: var(--text-brown); 
    text-align: center;
}
.category-icon-wrapper { 
    width: 110px; height: 110px; background-color: #FFFFFF; 
    border-radius: 24px; box-shadow: var(--shadow-soft); 
    display: flex; align-items: center; justify-content: center; 
    padding: 15px; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    border: 1px solid rgba(0,0,0,0.02); 
}
.category-icon-wrapper img { 
    width: 100%; height: 100%; object-fit: contain; transition: transform 0.3s ease; 
}
.category-info { display: flex; flex-direction: column; gap: 4px; }
.cat-title { font-weight: 700; font-size: 1.1rem; transition: color 0.3s ease; }
.cat-desc { font-size: 0.85rem; color: #666; font-weight: 500;}

.category-item:hover .category-icon-wrapper { 
    transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: var(--accent-gold); 
}
.category-item:hover .category-icon-wrapper img { transform: scale(1.1); }
.category-item:hover .cat-title { color: var(--accent-gold); }


/* =========================================
   SECTIONS: VISION & PRODUCTS (FIXED)
   ========================================= */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.8rem; color: var(--accent-gold); font-weight: 600; }
.header-line { width: 60px; height: 4px; background-color: var(--accent-green); margin: 15px auto 0; border-radius: 2px; }

.vision-section {
    position: relative; height: 50vh; min-height: 400px;
    background-image: url('assets/vision-bg.jpg'); 
    background-attachment: fixed; background-size: cover; background-position: center; background-color: var(--accent-green);
    margin: 2rem 4% 5rem; border-radius: 24px; overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.vision-overlay {
    background: rgba(30, 20, 10, 0.5); width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 2rem; backdrop-filter: blur(2px);
}
.hindi-calligraphy { font-family: var(--font-hindi); font-size: 5.5rem; color: #FFF; text-shadow: 0 4px 20px rgba(0,0,0,0.5); margin-bottom: 10px; }
.vision-sub { color: var(--accent-gold); font-size: 1.3rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; }

/* STRICT PRODUCT CARD CSS */
.products-section { padding: 2rem 4% 6rem; max-width: 1500px; margin: 0 auto; }
.products-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
    gap: 30px; 
    justify-content: center; 
}
.product-card { 
    background: #FFFFFF !important; 
    border-radius: 16px; 
    padding: 1.5rem; 
    display: flex; 
    flex-direction: column; 
    transition: all 0.4s ease; 
    box-shadow: var(--shadow-soft); 
    border: 1px solid var(--border-color); 
    opacity: 1 !important; 
    visibility: visible !important;
}
.product-card:hover { 
    transform: translateY(-8px); 
    box-shadow: var(--shadow-hover); 
    border-color: var(--accent-gold); 
}
.product-img-wrapper { 
    position: relative; 
    height: 240px; 
    width: 100%;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 1.5rem; 
    background: var(--bg-cream); 
    border-radius: 12px; 
    padding: 1rem; 
    overflow: hidden; 
}
.product-img { 
    max-height: 100%; 
    max-width: 100%; 
    object-fit: contain; 
    mix-blend-mode: multiply; 
}
.product-badge { 
    position: absolute; top: 12px; left: 12px; 
    background: var(--accent-gold); color: #FFF; 
    font-size: 0.75rem; font-weight: 700; 
    padding: 6px 12px; border-radius: 20px; 
    letter-spacing: 1px; z-index: 2;
}
.product-details { display: flex; flex-direction: column; flex: 1; }
.product-title { 
    font-size: 1.25rem; color: var(--text-brown); 
    margin-bottom: 0.8rem; font-weight: 600; 
    line-height: 1.3; background: transparent; 
}
.product-meta { display: flex; gap: 10px; margin-bottom: 1rem; align-items: center; background: transparent;}
.tag { padding: 4px 10px; border-radius: 6px; font-weight: 600; font-size: 0.8rem;}
.tag.best-seller { background-color: #E8F5E9; color: #2E7D32; }
.tag.must-try { background-color: #FFF3E0; color: #E65100; }
.tag.trending { background-color: #E3F2FD; color: #1565C0; }
.tag.standard { background-color: #F5F5F5; color: #616161; }
.rating { color: var(--accent-gold); font-size: 0.95rem; font-weight: 600;}
.product-blurb { font-size: 0.92rem; color: #777; line-height: 1.5; margin-bottom: 1.2rem; }
.product-select { 
    width: 100%; padding: 10px 15px; 
    border: 1px solid var(--border-color); border-radius: 8px; 
    margin-bottom: 1.5rem; font-size: 0.95rem; 
    background: var(--bg-cream); color: var(--text-brown); 
    outline: none; transition: border 0.3s; 
    font-family: var(--font-english);
}
.product-select:focus { border-color: var(--accent-gold); }
.product-price { 
    font-size: 1.6rem; font-weight: 700; 
    margin-bottom: 1.5rem; color: var(--text-brown); 
    background: transparent; 
}
.add-to-cart-btn { 
    background: transparent; color: var(--accent-green); 
    border: 2px solid var(--accent-green); 
    padding: 14px; border-radius: 8px; 
    font-weight: 700; font-size: 1.05rem; 
    width: 100%; transition: all 0.3s; 
    margin-top: auto; font-family: var(--font-english);
}
.add-to-cart-btn:hover { background: var(--accent-green); color: #FFF; }

/* =========================================
   SECTIONS: VIDEO, HERITAGE, TESTIMONIALS
   ========================================= */
.video-section { padding: 6rem 4%; background-color: var(--card-bg); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.hindi-subtitle { font-family: var(--font-hindi); font-size: 2.2rem; color: var(--accent-green); margin-top: 15px; text-align: center; }
.video-container { max-width: 1100px; margin: 0 auto; position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-hover); background: #000; }
.video-container video { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; opacity: 0.85; transition: opacity 0.4s; }
.video-container:hover video { opacity: 1; }
.video-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 90px; height: 90px; background: rgba(255,255,255,0.95); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--accent-gold); padding-left: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); pointer-events: none; }

.heritage-section { padding: 6rem 4%; max-width: 1400px; margin: 0 auto; text-align: center; }
.heritage-pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 4rem; margin-bottom: 5rem; }
.heritage-item { display: flex; flex-direction: column; align-items: center; }
.heritage-icon { font-size: 4rem; margin-bottom: 1.5rem; color: var(--accent-gold); }
.heritage-item h4 { font-size: 1.3rem; margin-bottom: 1rem; color: var(--text-brown); font-weight: 600;}
.heritage-item p { font-size: 1rem; color: #666; line-height: 1.6; }

/* HERITAGE BANNER (COW & FARMER) */
.heritage-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 4rem);
    margin: 0 auto 4rem;
    max-width: 1200px;
    padding: 0 2rem;
}
.heritage-ill {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 320px;
}
.heritage-ill img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(51, 34, 17, 0.12));
}
.heritage-ill.left img { max-height: 150px; }
.heritage-ill.right img { max-height: 180px; }
.heritage-btn {
    background: #A66B27;
    color: #FFF;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s, transform 0.3s;
    box-shadow: var(--shadow-soft);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.heritage-btn:hover {
    background: #8B5A20;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.dynamic-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 4rem; }
.gallery-img-wrapper { height: 350px; border-radius: 16px; overflow: hidden; position: relative; background-color: var(--border-color); }
.gallery-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-img-wrapper:hover img { transform: scale(1.08); }

.testimonials-section { padding: 6rem 4%; background-color: var(--card-bg); overflow: hidden; border-top: 1px solid var(--border-color);}
.testimonial-carousel { display: flex; gap: 30px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 2rem; max-width: 1400px; margin: 0 auto; scroll-behavior: smooth; }
.testimonial-carousel::-webkit-scrollbar { display: none; }
.testimonial-card { min-width: 500px; background: var(--bg-cream); border-radius: 20px; display: flex; box-shadow: var(--shadow-soft); scroll-snap-align: center; border: 1px solid var(--border-color); overflow: hidden;}
.test-img { width: 200px; background: var(--border-color); }
.test-img img { width: 100%; height: 100%; object-fit: cover; }
.test-content { padding: 2.5rem; flex: 1; display: flex; flex-direction: column; justify-content: center;}
.stars { color: var(--accent-gold); letter-spacing: 3px; margin-bottom: 1rem; font-size: 1.2rem;}
.test-content h4 { font-size: 1.3rem; color: var(--text-brown); margin-bottom: 10px; font-weight: 600; line-height: 1.3;}
.test-content p { font-size: 1.05rem; color: #555; font-style: italic; margin-bottom: 2rem; flex: 1;}
.test-author { border-top: 1px solid var(--border-color); padding-top: 1rem; display: flex; flex-direction: column; }
.test-author strong { font-size: 1.05rem; color: var(--text-brown); font-weight: 600;}
.test-author span { font-size: 0.9rem; color: var(--accent-green); font-weight: 500;}

/* =========================================
   FOOTER SECTION (Perfect Optical Centering)
   ========================================= */
.site-footer { background-color: var(--text-brown); color: #FCFAF6; padding: 6rem 4% 2rem; }
.footer-top { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1.5fr; gap: 4rem; max-width: 1400px; margin: 0 auto 5rem; }
.brand-col { display: flex; flex-direction: column; align-items: flex-start; }

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin-bottom: 1.5rem;
    text-decoration: none;
}
.footer-logo .logo-icon { display: flex; justify-content: center; align-items: center; margin-bottom: 5px;}
.footer-logo .logo-icon img { height: 70px; filter: brightness(0) invert(1); }
.footer-logo .logo-text { display: flex; flex-direction: column; align-items: center; }
.footer-logo .logo-hindi { color: #FFF; font-size: 2.8rem; margin: 0; line-height: 1; }
.footer-logo .logo-english { color: var(--accent-gold); font-size: 0.9rem; letter-spacing: 5px; margin-right: -5px; margin-top: 2px;}

.brand-col p { opacity: 0.85; line-height: 1.8; max-width: 350px; font-size: 1.05rem; }
.footer-col h4 { font-size: 1.2rem; color: var(--accent-gold); margin-bottom: 2rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;}
.links-col a { display: block; color: var(--border-color); text-decoration: none; margin-bottom: 1rem; transition: color 0.3s; font-size: 1.05rem;}
.links-col a:hover { color: var(--accent-gold); transform: translateX(5px); display: inline-block;}
.newsletter-col p { opacity: 0.85; margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.6;}
.newsletter-form { display: flex; border-bottom: 1px solid #888; padding-bottom: 8px; transition: border 0.3s; }
.newsletter-form:focus-within { border-color: var(--accent-gold); }
.newsletter-form input { background: none; border: none; color: #FFF; outline: none; flex: 1; font-size: 1.05rem; font-family: var(--font-english);}
.newsletter-form input::placeholder { color: #888; }
.newsletter-form button { background: none; border: none; color: var(--accent-gold); font-size: 1.5rem; padding: 0 10px;}

.footer-bottom { max-width: 1400px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; opacity: 0.7; }
.legal-links a { color: #FFF; text-decoration: none; margin-left: 2rem; transition: color 0.3s;}
.legal-links a:hover { color: var(--accent-gold); }

/* =========================================
   SECONDARY PAGES: OUR STORY & CONTACT US
   ========================================= */
.story-hero {
    background: linear-gradient(180deg, rgba(184,134,11,0.08), rgba(184,134,11,0));
    padding: 5rem 5% 3rem;
    text-align: center;
}
.story-hero-inner { max-width: 700px; margin: 0 auto; }
.story-hero-inner h1 { font-size: 3.2rem; margin-bottom: 0.5rem; }
.story-hero-inner h2 { font-size: 1.1rem; letter-spacing: 4px; text-transform: uppercase; color: var(--accent-gold); font-weight: 700; margin-bottom: 1.5rem; }
.story-tagline-hindi { font-family: var(--font-hindi); font-size: 1.6rem; color: var(--text-brown); margin-bottom: 0.5rem; }
.story-tagline-eng { font-size: 1rem; color: #777; }

.story-body { padding: 2rem 5% 6rem; }
.story-body-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.story-body-inner p { font-size: 1.1rem; color: var(--text-brown); line-height: 1.9; margin-bottom: 2rem; }
.story-coming-soon { color: var(--accent-green); font-weight: 600; font-style: italic; }

/* =========================================
   OUR STORY — VISION, ABOUT, VALUES, SIGNATURE
   ========================================= */

/* Faint wheat sprigs framing the hero */
.hero-decor { position: absolute; width: 70px; height: 70px; opacity: 0.3; pointer-events: none; }
.hero-decor.left { left: 6%; top: 30%; transform: rotate(-15deg); }
.hero-decor.right { right: 6%; top: 30%; transform: rotate(15deg) scaleX(-1); }
.story-hero { position: relative; overflow: hidden; }

/* --- Section divider (wheat sprig) --- */
.section-divider { display: flex; justify-content: center; margin: 0 auto; max-width: 900px; padding: 0 5%; }
.divider-svg { width: 100%; max-width: 220px; height: 40px; }

/* --- Our Vision --- */
.story-vision-section {
    position: relative;
    max-width: 1300px;
    margin: 1rem auto 5rem;
    padding: 5rem 6%;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(58,125,68,0.07), rgba(184,134,11,0.05));
    box-shadow: var(--shadow-soft);
    text-align: center;
}
.story-vision-bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.story-vision-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.vision-label {
    display: inline-block; font-family: var(--font-hindi); font-size: 1.4rem;
    color: var(--accent-green); margin-bottom: 0.75rem;
}
.vision-label-sub {
    display: block; font-size: 0.9rem; letter-spacing: 4px; text-transform: uppercase;
    color: var(--accent-gold); font-weight: 700; margin-bottom: 1.5rem;
}
.story-vision-content h2 {
    font-size: 2.3rem; color: var(--text-brown); font-weight: 600; line-height: 1.3; margin-bottom: 1.5rem;
}
.story-vision-content p { font-size: 1.08rem; color: #5c5348; line-height: 1.9; }
.story-vision-content p em { color: var(--accent-green); font-style: normal; font-weight: 600; }

/* --- About Us --- */
.story-about-section { padding: 1rem 5% 5rem; max-width: 1200px; margin: 0 auto; }
.story-about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4.5rem; align-items: center; }
.story-about-ill { display: flex; justify-content: center; }
.story-about-ill svg { width: 100%; max-width: 360px; height: auto; filter: drop-shadow(0 10px 25px rgba(51, 34, 17, 0.1)); }
.story-about-content { text-align: left; }
.story-about-content .vision-label-sub { text-align: left; }
.story-about-content h2 { font-size: 2.1rem; color: var(--text-brown); font-weight: 600; margin-bottom: 1.25rem; line-height: 1.3; }
.story-about-content p { font-size: 1.05rem; color: #5c5348; line-height: 1.85; margin-bottom: 1.25rem; }
.story-about-content p:last-child { margin-bottom: 0; }

/* --- Values strip --- */
.story-values { padding: 1rem 4% 5rem; max-width: 1200px; margin: 0 auto; }
.story-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.value-item {
    background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 18px;
    padding: 2.5rem 1.8rem; text-align: center; box-shadow: var(--shadow-soft); transition: all 0.35s ease;
}
.value-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--accent-gold); }
.value-icon {
    width: 74px; height: 74px; margin: 0 auto 1.3rem; border-radius: 50%;
    background: var(--bg-cream); display: flex; align-items: center; justify-content: center;
}
.value-icon svg { width: 40px; height: 40px; }
.value-item h4 { font-size: 1.15rem; color: var(--text-brown); font-weight: 600; margin-bottom: 0.7rem; }
.value-item p { font-size: 0.95rem; color: #777; line-height: 1.6; }

/* --- Closing signature / brand quote --- */
.story-signature { text-align: center; }
.brand-label {
    display: block; font-size: 0.85rem; letter-spacing: 4px; text-transform: uppercase;
    color: var(--accent-gold); font-weight: 700; margin-bottom: 1rem;
}
.signature-eng { font-size: 1.15rem; color: var(--text-brown); font-weight: 500; margin-bottom: 1.5rem; }
.signature-hindi { font-family: var(--font-hindi); font-size: 1.7rem; color: var(--accent-green); line-height: 1.6; margin-bottom: 2.5rem; }
.story-signature .heritage-btn { display: inline-flex; }

.contact-hero {
    background: linear-gradient(180deg, rgba(58,125,68,0.08), rgba(58,125,68,0));
    padding: 5rem 5% 3rem;
    text-align: center;
}
.contact-hero-inner { max-width: 700px; margin: 0 auto; }
.contact-hero-inner h1 { font-size: 3.2rem; margin-bottom: 0.5rem; }
.contact-hero-inner h2 { font-size: 1.1rem; letter-spacing: 4px; text-transform: uppercase; color: var(--accent-gold); font-weight: 700; margin-bottom: 1rem; }
.contact-hero-inner p { color: #777; font-size: 1.05rem; }

.contact-body { padding: 2rem 5% 6rem; max-width: 1000px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.contact-card {
    background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 18px;
    padding: 2.2rem 1.8rem; text-align: center; box-shadow: var(--shadow-soft); transition: all 0.3s;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--accent-gold); }
.contact-card-icon { font-size: 2.4rem; margin-bottom: 1rem; color: var(--accent-gold); }
.contact-card h3 { font-size: 1.15rem; color: var(--text-brown); margin-bottom: 0.7rem; font-weight: 600; }
.contact-card a, .contact-card p { color: #666; text-decoration: none; font-size: 1rem; line-height: 1.6; }
.contact-card a:hover { color: var(--accent-gold); }
.contact-note {
    max-width: 700px; margin: 3rem auto 0; text-align: center; font-size: 0.95rem;
    color: #999; font-style: italic; padding: 0 1rem;
}

/* --- Splash Screen / Preloader --- */
.preloader { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background-color: var(--bg-cream); display: flex; align-items: center; justify-content: center; z-index: 9999; overflow: hidden; }
.preloader-logo { display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; }
.preloader-logo::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 450px; height: 250px; background: radial-gradient(ellipse at center, rgba(184, 134, 11, 0.25) 0%, rgba(252, 250, 246, 0) 70%); z-index: -1; animation: pulseGlow 4s ease-in-out infinite; }
.preloader-icon { height: 150px; filter: drop-shadow(0px 10px 20px rgba(184, 134, 11, 0.3)); margin-bottom: 1rem; }
.preloader-hindi { font-family: var(--font-hindi); font-size: 6.5rem; line-height: 0.8; color: var(--accent-green); margin: 0; text-shadow: 0px 4px 15px rgba(0,0,0,0.1); }
.preloader-english { font-family: var(--font-english); font-size: 1.4rem; letter-spacing: 12px; font-weight: 700; margin-top: 15px; color: var(--accent-gold); text-transform: uppercase; margin-right: -12px;}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1200px) {
    .header-top { grid-template-columns: 1fr auto 1fr; padding: 0 2rem; }
    .desktop-nav { display: none; }
    .menu-btn { display: flex; }
    .desktop-search { display: none; }

    /* The search icon is positioned absolute so it can sit INSIDE the desktop
       search bar. With that bar hidden, its wrapper has no width left and the
       icon collapses on top of the cart icon — reset both to normal flow. */
    .search-wrapper { position: static; }
    .search-icon { position: static; pointer-events: auto; }

    /* Tapping the search icon on mobile reveals a full-width search bar
       docked under the header, instead of the desktop inline input. */
    .search-wrapper.mobile-active .desktop-search {
        display: block;
        position: fixed;
        top: 78px;
        left: 4%;
        right: 4%;
        width: 92%;
        z-index: 1010;
        box-shadow: var(--shadow-hover);
    }
    .search-wrapper.mobile-active .search-results { left: 4%; right: 4%; width: 92%; top: 132px; }

    .dynamic-gallery { grid-template-columns: repeat(2, 1fr); }
    .gallery-img-wrapper:last-child { display: none; } 
    
    .footer-top { grid-template-columns: 1fr 1fr; gap: 4rem; }
    .testimonial-card { min-width: 400px; }
}

@media (max-width: 768px) {
    .header-top { display: flex; justify-content: space-between; padding: 0 1.5rem; }
    .logo-hindi { font-size: 2.2rem; }
    .logo-english { font-size: 0.65rem; letter-spacing: 3px; margin-right: -3px;}
    .header-actions { gap: 0.75rem; }

    /* Hero carousel scales via aspect-ratio now, no fixed height needed */
    .hero-carousel-section { padding: 1.2rem 4%; }
    .slide-overlay h2 { font-size: 2.1rem; margin-bottom: 1.2rem; }
    .slide-btn { padding: 0.55rem 1.4rem; font-size: 0.85rem; border-width: 1.5px; top: 78%; }

    /* Category link row: shrink icons so they don't overflow */
    .category-links { gap: 1.5rem 2rem; padding: 1.5rem 5% 3rem; }
    .category-icon-wrapper { width: 80px; height: 80px; border-radius: 18px; padding: 12px; }
    .cat-title { font-size: 0.95rem; }
    .cat-desc { font-size: 0.75rem; }

    /* Section headers scale down so titles don't wrap awkwardly */
    .section-header { margin-bottom: 2.5rem; }
    .section-header h2 { font-size: 2rem; }

    .brand-quote-section { padding: 2.5rem 6% 2rem; margin-bottom: 2rem; }
    .quote-hindi-main { font-size: 2.6rem; }
    .quote-hindi-sub { font-size: 1.2rem; }
    .quote-tagline { font-size: 0.95rem; }

    .vision-section { margin: 2rem 4%; height: 35vh; min-height: 300px; }
    .hindi-calligraphy { font-size: 3.5rem; }
    .vision-sub { font-size: 0.9rem; letter-spacing: 1px; }

    /* Product grid: 2-column compact cards (matches the reference layout) */
    .products-section { padding: 1rem 4% 4rem; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .product-card { padding: 0.85rem; border-radius: 12px; }
    .product-img-wrapper { height: 130px; padding: 0.5rem; margin-bottom: 0.85rem; border-radius: 10px; }
    .product-badge { top: 8px; left: 8px; font-size: 0.62rem; padding: 4px 8px; }
    .product-title { font-size: 0.92rem; margin-bottom: 0.5rem; line-height: 1.25; min-height: 2.3em; }
    .product-meta { gap: 6px; margin-bottom: 0.6rem; flex-wrap: wrap; }
    .tag { font-size: 0.65rem; padding: 3px 7px; }
    .rating { font-size: 0.75rem; }
    .product-select { padding: 7px 10px; font-size: 0.8rem; margin-bottom: 0.75rem; background-position: right 8px top 50%; }
    .product-price { font-size: 1.05rem; margin-bottom: 0.75rem; }
    .add-to-cart-btn { padding: 9px; font-size: 0.8rem; border-width: 1.5px; }

    .cart-sidebar { width: 100vw; right: -100vw; }
    .cart-sidebar.open { transform: translateX(-100vw); }

    .sidebar { width: 100vw; left: -100vw; }
    .sidebar.open { transform: translateX(100vw); }

    .video-section { padding: 4rem 5%; }
    .hindi-subtitle { font-size: 1.5rem; }

    .heritage-section { padding: 4rem 4%; }
    .heritage-pillars { gap: 2.5rem; }
    .heritage-icon { font-size: 3rem; }

    /* Stack the cow/button/farmer banner on mobile instead of squeezing them side by side */
    .heritage-banner { flex-direction: column; gap: 1.5rem; margin: 0 auto 3rem; }
    .heritage-ill.left, .heritage-ill.right { max-width: 220px; }
    .heritage-ill.left img { max-height: 130px; }
    .heritage-ill.right img { max-height: 150px; }
    .heritage-btn { order: 2; padding: 1rem 2.2rem; font-size: 1rem; }
    .heritage-ill.right { order: 3; }

    .dynamic-gallery { grid-template-columns: 1fr; }
    .gallery-img-wrapper:last-child { display: block; }
    .gallery-img-wrapper { height: 240px; }

    .testimonials-section { padding: 4rem 4%; }
    .testimonial-card { min-width: 85vw; flex-direction: column; }
    .test-img { width: 100%; height: 250px; }
    
    .footer-top { grid-template-columns: 1fr; gap: 3rem; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
    .legal-links a { margin: 0 10px; display: inline-block;}

    /* Checkout / modal forms: 3-column row was too cramped on phones */
    .input-row.three-col { grid-template-columns: 1fr; gap: 0; }
    .modal-card { padding: 2rem 1.5rem; width: 92%; }
    .modal-card h3 { font-size: 1.5rem; }

    /* Mega menu isn't reachable on mobile anyway (desktop-nav is hidden),
       but guard against it ever rendering full-width off-canvas */
    .mega-menu { left: 0; transform: translate(0, 15px); width: 90vw; max-width: 340px; }
    .mega-menu-content { flex-wrap: wrap; }

    /* Our Story page: stack illustration/text and values on tablets */
    .story-vision-section { padding: 3.5rem 6%; border-radius: 20px; }
    .story-vision-content h2 { font-size: 1.9rem; }
    .story-about-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .story-about-content { text-align: center; }
    .story-about-content .vision-label-sub { text-align: center; }
    .story-about-ill svg { max-width: 260px; }
    .story-values-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .hero-decor { width: 50px; height: 50px; opacity: 0.22; }

    .art-marquee-section { height: 100px; margin: 2rem 0 3rem 0; }

    .preloader-icon { height: 100px; }
    .preloader-hindi { font-size: 4.5rem; }
    .preloader-english { font-size: 1rem; letter-spacing: 8px; margin-right: -8px;}
}

/* =========================================
   SMALL PHONES (≤480px) — India's most common
   viewport width; nothing above tuned this far
   ========================================= */
@media (max-width: 480px) {
    .header-top { padding: 0 1rem; }
    .logo-icon img { height: 48px; }
    .logo-hindi { font-size: 1.7rem; }
    .logo-english { font-size: 0.55rem; letter-spacing: 2px; }
    .icon-btn svg { width: 22px; height: 22px; }
    .cart-badge { height: 17px; width: 17px; font-size: 0.65rem; }

    .slide-overlay h2 { font-size: 1.6rem; margin-bottom: 0.8rem; }
    .slide-btn { padding: 0.4rem 1rem; font-size: 0.7rem; border-width: 1px; top: 80%; }
    .carousel-viewport { border-radius: 14px; }

    .category-links { gap: 1.2rem 1.2rem; }
    .category-icon-wrapper { width: 68px; height: 68px; border-radius: 14px; padding: 10px; }
    .cat-title { font-size: 0.8rem; }
    .cat-desc { font-size: 0.68rem; }

    .section-header h2 { font-size: 1.6rem; }

    .quote-hindi-main { font-size: 2.1rem; }
    .quote-hindi-sub { font-size: 1.05rem; }

    .vision-section { height: 30vh; min-height: 240px; border-radius: 16px; margin: 1.5rem 4%; }
    .hindi-calligraphy { font-size: 2.5rem; }
    .vision-sub { font-size: 0.75rem; letter-spacing: 1px; }

    .products-grid { gap: 10px; }
    .product-card { padding: 0.65rem; }
    .product-img-wrapper { height: 105px; padding: 0.4rem; margin-bottom: 0.6rem; }
    .product-badge { font-size: 0.55rem; padding: 3px 6px; }
    .product-title { font-size: 0.82rem; min-height: 2.1em; margin-bottom: 0.4rem; }
    .product-meta { margin-bottom: 0.5rem; }
    .tag { font-size: 0.58rem; padding: 2px 6px; }
    .rating { font-size: 0.68rem; }
    .product-select { padding: 6px 8px; font-size: 0.72rem; margin-bottom: 0.6rem; }
    .product-price { font-size: 0.92rem; margin-bottom: 0.6rem; }
    .add-to-cart-btn { padding: 8px; font-size: 0.72rem; }

    .video-container { border-radius: 14px; }
    .video-play-btn { width: 60px; height: 60px; font-size: 1.6rem; }
    .hindi-subtitle { font-size: 1.2rem; }

    .heritage-icon { font-size: 2.5rem; }
    .heritage-item h4 { font-size: 1.1rem; }
    .heritage-item p { font-size: 0.9rem; }
    .heritage-ill.left, .heritage-ill.right { max-width: 170px; }
    .heritage-ill.left img { max-height: 100px; }
    .heritage-ill.right img { max-height: 115px; }
    .heritage-btn { padding: 0.9rem 1.8rem; font-size: 0.9rem; }

    .testimonial-card { min-width: 90vw; }
    .test-content { padding: 1.5rem; }
    .test-content h4 { font-size: 1.1rem; }
    .test-content p { font-size: 0.95rem; }

    .footer-logo .logo-hindi { font-size: 2.2rem; }
    .footer-col h4 { margin-bottom: 1.2rem; }
    .newsletter-form input { font-size: 0.95rem; }

    .cart-sidebar-header, .cart-promo-bar, .cart-items-container, .cart-cross-sell, .cart-sticky-footer { padding-left: 1.2rem; padding-right: 1.2rem; }
    .cart-item-card { padding: 0.9rem; gap: 0.7rem; }
    .item-img img { width: 55px; height: 55px; }

    .modal-card { padding: 1.75rem 1.2rem; }
    .success-icon { font-size: 3rem; }

    .preloader-icon { height: 75px; }
    .preloader-hindi { font-size: 3.2rem; }
    .preloader-english { font-size: 0.8rem; letter-spacing: 5px; }

    /* Our Story page on small phones */
    .story-vision-section { padding: 2.5rem 6%; margin: 1rem auto 3rem; }
    .story-vision-content h2 { font-size: 1.55rem; }
    .vision-label { font-size: 1.15rem; }
    .story-about-section { padding: 0.5rem 5% 3.5rem; }
    .story-about-content h2 { font-size: 1.65rem; }
    .story-values-grid { grid-template-columns: 1fr; }
    .signature-hindi { font-size: 1.3rem; }
    .signature-eng { font-size: 1rem; }
    .hero-decor { display: none; }
}
/* =========================================
   GSAP ART MARQUEE
   ========================================= */
/* =========================================
   PREMIUM ART MARQUEE (FIXED)
   ========================================= */

/* =========================================
   PREMIUM ART MARQUEE (FIXED VISIBILITY & GOLDEN FILTER)
   ========================================= */
.art-marquee-section {
    position: relative;
    width: 100%;
    height: 160px; 
    background-color: var(--bg-cream);
    overflow: hidden;
    margin: 3rem 0 5rem 0; 
}

.marquee-track {
    display: flex;
    width: max-content; 
    height: 100%;
}

.marquee-art {
    width: 200vw; 
    height: 100%;
    background-image: url('assets/warli-art.svg'); 
    background-size: auto 100%; 
    background-repeat: repeat-x; 
    background-position: left center;
    
    /* 1. Fixed Faded Look: Increased opacity for clear visibility */
    opacity: 0.45; 
    
    /* 2. Golden Premium Filter: Transforms standard black/grey line art into rich gold */
    filter: invert(45%) sepia(85%) saturate(350%) hue-rotate(5deg) brightness(1.1) contrast(1.1);
}

.marquee-fade-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        to right, 
        rgba(252, 250, 246, 1) 0%, 
        rgba(252, 250, 246, 0) 20%, 
        rgba(252, 250, 246, 0) 80%, 
        rgba(252, 250, 246, 1) 100%
    );
    pointer-events: none;
}