/* ============================================
   Makhana Choice - Premium Raw Makhana CSS
   Suvi Ventures Pvt. Ltd.
   ============================================ */

:root {
    --primary: #7c3aed;
    --primary-dark: #6d28d9;
    --primary-light: #a78bfa;
    --secondary: #d97706;
    --accent-green: #059669;
    --accent-emerald: #10b981;
    --accent-pink: #ec4899;
    --accent-red: #ef4444;
    --accent-cyan: #06b6d4;
    --gold: #f59e0b;
    --violet: #8b5cf6;
    --purple-deep: #5b21b6;
    --cream: #faf5ff;
    --dark: #1e1b2e;
    --dark-warm: #2d2844;
    --gray-100: #f9f8fc;
    --gray-200: #e8e5f0;
    --gray-300: #d4d0e0;
    --gray-500: #6b6580;
    --gray-700: #3d3754;
    --white: #ffffff;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 9999px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-gold: 0 8px 32px rgba(124,58,237,0.2);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Poppins', -apple-system, sans-serif;
    --hero-gradient-primary: linear-gradient(135deg, #a855f7, #ec4899);
    --hero-gradient-secondary: linear-gradient(135deg, #f97316, #ef4444);
    --gradient-gold: linear-gradient(135deg, #7c3aed, #a855f7);
    --gradient-warm: linear-gradient(135deg, #7c3aed, #ec4899);
    --gradient-royal: linear-gradient(135deg, #5b21b6, #a855f7);
    --gradient-earth: linear-gradient(135deg, #059669, #7c3aed);
    --gradient-hero: linear-gradient(135deg, #fdf4ff 0%, #faf5ff 30%, #fef3c7 100%);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* Gradient Text */
.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-text-alt {
    background: var(--gradient-royal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-text-green {
    background: var(--gradient-earth);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-gradient-primary {
    background: var(--hero-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-gradient-secondary {
    background: var(--hero-gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: var(--radius-full);
    font-family: var(--font); font-weight: 600; font-size: 0.95rem;
    border: none; cursor: pointer; transition: var(--transition);
    position: relative; overflow: hidden;
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-primary {
    background: var(--gradient-warm); color: var(--white);
    box-shadow: 0 10px 28px rgba(168,85,247,0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(236,72,153,0.28); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-white {
    background: var(--white); color: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn-dark {
    background: var(--dark); color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.btn-full { width: 100%; justify-content: center; }

/* ---- Navbar ---- */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0; transition: var(--transition);
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    background: rgba(255,255,255,0.95);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.4rem; font-weight: 800; z-index: 10; }
.logo-icon { font-size: 2rem; }
.logo-text { color: var(--dark); }
.logo-highlight {
    background: var(--hero-gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.logo-sub { font-size: 0.55rem; display: block; font-weight: 500; color: var(--gray-500); letter-spacing: 1.5px; text-transform: uppercase; line-height: 1; margin-top: 2px; -webkit-text-fill-color: var(--gray-500); }
.nav-links { display: flex; gap: 8px; }
.nav-link {
    padding: 8px 18px; border-radius: var(--radius-full);
    font-weight: 500; font-size: 0.92rem; color: var(--gray-700); transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(217,119,6,0.08); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.cta-nav-btn {
    padding: 10px 24px; border-radius: var(--radius-full); border: none;
    background: var(--gradient-warm); color: var(--white);
    font-family: var(--font); font-weight: 600; font-size: 0.9rem;
    cursor: pointer; transition: var(--transition);
    box-shadow: 0 10px 24px rgba(168,85,247,0.22);
}
.cta-nav-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(236,72,153,0.24); }
.nav-phone { display: flex; align-items: center; gap: 6px; font-weight: 600; font-size: 0.9rem; color: var(--dark); }
.nav-phone i { color: var(--accent-green); }
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px; z-index: 10;
}
.hamburger span { width: 24px; height: 2.5px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Hero ---- */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    background: var(--gradient-hero); overflow: hidden; padding-top: 80px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; opacity: 0.12; animation: float 8s ease-in-out infinite; }
.shape-1 { width: 450px; height: 450px; background: #a855f7; top: -120px; right: -120px; }
.shape-2 { width: 350px; height: 350px; background: #ec4899; bottom: -100px; left: -100px; animation-delay: 2s; }
.shape-3 { width: 200px; height: 200px; background: #f97316; top: 35%; left: 12%; animation-delay: 4s; }
.shape-4 { width: 160px; height: 160px; background: #eab308; bottom: 25%; right: 18%; animation-delay: 1s; }
.shape-5 { width: 120px; height: 120px; background: #06b6d4; top: 55%; right: 38%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.95); }
}

.hero-container {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; position: relative; z-index: 2;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, rgba(168,85,247,0.12), rgba(236,72,153,0.12));
    padding: 8px 20px; border-radius: var(--radius-full);
    font-size: 0.85rem; font-weight: 700; color: #8b3cf0;
    border: 1px solid rgba(168,85,247,0.12);
    box-shadow: 0 10px 24px rgba(168,85,247,0.12); margin-bottom: 20px; animation: bounceIn 0.8s ease-out;
}
@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.8); }
    60% { transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}
.hero-origin-tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, rgba(5,150,105,0.1), rgba(16,185,129,0.1));
    padding: 6px 16px; border-radius: var(--radius-full);
    font-size: 0.8rem; font-weight: 600; color: var(--accent-green);
    margin-bottom: 16px;
}
.hero-title { font-size: 3.8rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; color: #1a1a2e; }
.hero-subtitle { font-size: 1.15rem; color: #6b7280; margin-bottom: 24px; max-width: 520px; line-height: 1.7; }
.hero-stats { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.stat-pill {
    display: flex; align-items: center; gap: 6px;
    background: var(--white); padding: 8px 16px; border-radius: var(--radius-full);
    font-size: 0.85rem; font-weight: 500; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: var(--transition);
}
.stat-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.stat-icon { font-size: 1.1rem; }
.hero-actions { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.trust-badge {
    display: flex; align-items: center; gap: 8px;
    background: var(--white); padding: 8px 16px; border-radius: var(--radius-sm);
    font-size: 0.8rem; font-weight: 600; box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.trust-badge i { color: var(--accent-green); }

/* Hero Visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-visual-card {
    position: relative; background: var(--white); border-radius: 24px;
    padding: 28px; box-shadow: var(--shadow-lg); width: 380px;
    animation: cardFloat 4s ease-in-out infinite;
}
@keyframes cardFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.hero-glow {
    position: absolute; width: 220px; height: 220px;
    background: var(--gradient-warm); border-radius: 50%;
    filter: blur(60px); opacity: 0.28; top: 50%; left: 50%;
    transform: translate(-50%, -50%); z-index: 0;
}
.hero-makhana-display {
    position: relative; z-index: 1; width: 100%; height: 260px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff7a66 45%, #ff914d 100%); border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.55);
}
.makhana-illustration {
    position: relative;
    width: 250px;
    height: 190px;
}
.makhana-shadow {
    position: absolute;
    bottom: 12px;
    left: 50%;
    width: 150px;
    height: 28px;
    background: rgba(131, 24, 67, 0.12);
    border-radius: 50%;
    transform: translateX(-50%);
    filter: blur(4px);
}
.makhana-bowl {
    position: absolute;
    left: 50%;
    bottom: 20px;
    width: 172px;
    height: 98px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #f97316 0%, #ea580c 55%, #c2410c 100%);
    border-radius: 0 0 88px 88px;
    box-shadow: inset 0 -8px 18px rgba(124, 45, 18, 0.28);
}
.makhana-bowl-rim {
    position: absolute;
    top: -10px;
    left: 50%;
    width: 186px;
    height: 34px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #fdba74, #fb923c);
    border-radius: 50%;
    box-shadow: inset 0 3px 0 rgba(255,255,255,0.35);
}
.makhana-cluster {
    position: absolute;
    left: 50%;
    bottom: 42px;
    width: 176px;
    height: 110px;
    transform: translateX(-50%);
}
.makhana-piece {
    position: absolute;
    width: 42px;
    height: 34px;
    background: radial-gradient(circle at 35% 30%, #fffdf7 0%, #f7f0dd 58%, #e8dcc0 100%);
    border-radius: 52% 48% 55% 45%;
    box-shadow: inset -4px -4px 0 rgba(214, 198, 160, 0.45), 0 6px 10px rgba(120, 113, 108, 0.12);
}
.makhana-piece::after {
    content: '';
    position: absolute;
    top: 9px;
    left: 13px;
    width: 12px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    transform: rotate(-18deg);
}
.piece-1 { top: 40px; left: 2px; transform: rotate(-14deg); }
.piece-2 { top: 22px; left: 28px; transform: rotate(8deg); }
.piece-3 { top: 38px; left: 54px; transform: rotate(12deg); }
.piece-4 { top: 12px; left: 72px; transform: rotate(-10deg); }
.piece-5 { top: 36px; left: 96px; transform: rotate(14deg); }
.piece-6 { top: 48px; left: 122px; transform: rotate(-8deg); }
.piece-7 { top: 62px; left: 28px; transform: rotate(4deg); }
.piece-8 { top: 66px; left: 78px; transform: rotate(-12deg); }
.piece-9 { top: 60px; left: 114px; transform: rotate(10deg); }
.makhana-spark,
.makhana-leaf {
    position: absolute;
}
.makhana-spark {
    width: 16px;
    height: 16px;
    background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 70%);
}
.spark-1 { top: 28px; left: 18px; }
.spark-2 { top: 18px; right: 24px; width: 20px; height: 20px; }
.makhana-leaf {
    width: 26px;
    height: 14px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 100% 0 100% 0;
    box-shadow: inset 0 -2px 0 rgba(22, 101, 52, 0.2);
}
.leaf-1 { top: 122px; left: 30px; transform: rotate(-28deg); }
.leaf-2 { top: 98px; right: 30px; transform: rotate(22deg); }
.hero-makhana-display .floating-el {
    position: absolute; font-size: 1.4rem; animation: floatEmoji 3s ease-in-out infinite;
}
.fe-1 { top: 12%; left: 8%; animation-delay: 0s; }
.fe-2 { top: 8%; right: 12%; animation-delay: 0.6s; }
.fe-3 { bottom: 12%; left: 12%; animation-delay: 1.2s; }
.fe-4 { bottom: 8%; right: 8%; animation-delay: 1.8s; }
@keyframes floatEmoji {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(5px, -10px) rotate(10deg); }
}
.hero-card-info { position: relative; z-index: 1; margin-top: 16px; text-align: center; }
.hero-card-tag {
    display: inline-block; background: var(--gradient-warm); color: var(--white);
    padding: 4px 14px; border-radius: var(--radius-full);
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px;
}
.hero-card-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.hero-card-info p { font-size: 0.85rem; color: var(--gray-500); }

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    animation: fadeInUp 1s ease-out 1.5s both;
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.scroll-mouse { width: 26px; height: 40px; border: 2px solid var(--gray-300); border-radius: 13px; position: relative; }
.scroll-dot {
    width: 4px; height: 8px; background: var(--primary); border-radius: 2px;
    position: absolute; left: 50%; top: 8px; transform: translateX(-50%);
    animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce { 0%, 100% { opacity: 1; top: 8px; } 50% { opacity: 0.3; top: 22px; } }
.hero-scroll-indicator span { font-size: 0.7rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; }

/* ---- Marquee ---- */
.marquee-banner { background: var(--dark); padding: 14px 0; overflow: hidden; }
.marquee-track { display: flex; animation: marquee 25s linear infinite; }
.marquee-content { display: flex; gap: 32px; white-space: nowrap; padding-right: 32px; }
.marquee-content span { color: var(--white); font-weight: 700; font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---- Section Common ---- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(168,85,247,0.12), rgba(236,72,153,0.14));
    color: #8b3cf0; padding: 6px 18px; border-radius: var(--radius-full);
    font-size: 0.85rem; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.5px;
    border: 1px solid rgba(168,85,247,0.12);
}
.section-title { font-size: 2.8rem; font-weight: 800; line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.5px; }
.section-desc { font-size: 1.1rem; color: var(--gray-500); max-width: 600px; margin: 0 auto; }

/* ---- Mithila Origin Section ---- */
.origin-section { padding: 100px 0; background: var(--white); }
.origin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.origin-visual {
    position: relative; background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 24px; padding: 40px; min-height: 420px;
    display: flex; align-items: center; justify-content: center;
}
.origin-map-placeholder {
    text-align: center;
}
.origin-map-placeholder .map-emoji { font-size: 8rem; display: block; margin-bottom: 16px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1)); }
.origin-map-placeholder .map-label {
    display: inline-block; background: var(--white); padding: 10px 24px; border-radius: var(--radius-full);
    font-weight: 700; font-size: 1rem; color: var(--primary-dark); box-shadow: var(--shadow);
}
.origin-badge-float {
    position: absolute; background: var(--white); padding: 10px 18px; border-radius: var(--radius-sm);
    box-shadow: var(--shadow); font-size: 0.8rem; font-weight: 600;
    animation: cardFloat 5s ease-in-out infinite;
}
.origin-badge-1 { top: 20px; right: -10px; animation-delay: 0s; }
.origin-badge-2 { bottom: 30px; left: -10px; animation-delay: 1.5s; }
.origin-badge-3 { top: 50%; right: -20px; animation-delay: 3s; }
.origin-content .section-tag { margin-bottom: 12px; }
.origin-content .section-title { text-align: left; font-size: 2.4rem; margin-bottom: 16px; }
.origin-content > p { color: var(--gray-500); line-height: 1.8; margin-bottom: 24px; }
.origin-highlights { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.origin-highlight {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px; background: var(--gray-100); border-radius: var(--radius-sm);
    transition: var(--transition);
}
.origin-highlight:hover { background: var(--cream); transform: translateX(4px); }
.origin-highlight-icon {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.origin-highlight h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.origin-highlight p { font-size: 0.85rem; color: var(--gray-500); }

/* ---- Products / Sizes Section ---- */
.products-section { padding: 100px 0; background: var(--gray-100); }
.size-info-bar {
    display: flex; justify-content: center; align-items: center; gap: 24px;
    background: var(--cream); padding: 16px 32px; border-radius: var(--radius);
    margin-bottom: 48px; flex-wrap: wrap;
}
.size-info-bar p { font-size: 0.9rem; color: var(--gray-700); }
.size-info-bar strong { color: var(--primary-dark); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.product-card {
    background: var(--white); border-radius: 20px; overflow: hidden;
    transition: var(--transition); position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-badge {
    position: absolute; top: 16px; left: 16px;
    padding: 6px 14px; border-radius: var(--radius-full);
    font-size: 0.75rem; font-weight: 700; z-index: 5;
}
.badge-popular { background: linear-gradient(135deg, rgba(168,85,247,0.14), rgba(236,72,153,0.16)); color: #8b3cf0; }
.badge-premium { background: linear-gradient(135deg, rgba(168,85,247,0.18), rgba(236,72,153,0.18)); color: #be185d; }
.badge-bulk { background: rgba(5,150,105,0.15); color: var(--accent-green); }

.product-image {
    height: 220px; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.product-emoji { font-size: 5rem; transition: var(--transition); filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1)); }
.product-card:hover .product-emoji { transform: scale(1.15) rotate(5deg); }
.product-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0.3);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.enquiry-overlay-btn {
    padding: 10px 24px; border-radius: var(--radius-full);
    border: 2px solid var(--white); background: transparent; color: var(--white);
    font-family: var(--font); font-weight: 600; font-size: 0.85rem;
    cursor: pointer; transition: var(--transition); transform: translateY(10px);
}
.product-card:hover .enquiry-overlay-btn { transform: translateY(0); }
.enquiry-overlay-btn:hover { background: var(--white); color: var(--dark); }

.product-info { padding: 20px; }
.product-size-label {
    display: inline-block; padding: 3px 10px; border-radius: var(--radius-full);
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.product-name { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.product-desc { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 12px; line-height: 1.5; }
.product-meta { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.meta-tag {
    display: flex; align-items: center; gap: 4px;
    font-size: 0.75rem; font-weight: 600; color: var(--gray-500);
    background: var(--gray-100); padding: 4px 10px; border-radius: var(--radius-full);
}
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-size-badge { font-size: 1.1rem; font-weight: 800; color: var(--primary); }
.enquiry-btn {
    display: flex; align-items: center; gap: 6px; padding: 10px 20px;
    border-radius: var(--radius-full); border: none;
    background: var(--gradient-warm); color: var(--white);
    font-family: var(--font); font-weight: 600; font-size: 0.85rem;
    cursor: pointer; transition: var(--transition);
    box-shadow: 0 10px 24px rgba(168,85,247,0.2);
}
.enquiry-btn:hover { transform: scale(1.05); box-shadow: 0 14px 28px rgba(236,72,153,0.24); }

/* ---- Size Guide ---- */
.size-guide-section { padding: 100px 0; background: var(--white); }
.size-guide-table-wrapper {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-lg); margin-top: 40px;
}
.size-guide-table {
    width: 100%; border-collapse: collapse; font-size: 0.95rem;
}
.size-guide-table thead { background: var(--gradient-warm); }
.size-guide-table th {
    padding: 16px 20px; text-align: left; color: var(--white);
    font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px;
}
.size-guide-table td { padding: 16px 20px; border-bottom: 1px solid var(--gray-200); }
.size-guide-table tbody tr { transition: var(--transition); }
.size-guide-table tbody tr:hover { background: var(--cream); }
.size-guide-table tbody tr:last-child td { border-bottom: none; }
.size-dot {
    display: inline-flex; width: 12px; height: 12px; border-radius: 50%;
    margin-right: 8px; vertical-align: middle;
}
.size-name { font-weight: 700; }

/* ---- Why Choose Us ---- */
.why-section { padding: 100px 0; background: var(--gray-100); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
    background: var(--white); padding: 36px 28px; border-radius: var(--radius);
    border: 1px solid var(--gray-200); position: relative;
    transition: var(--transition); overflow: hidden;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.why-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
    background: var(--gradient-warm); transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
}
.why-card:hover::after { transform: scaleX(1); }
.why-card-number { position: absolute; top: 16px; right: 20px; font-size: 2.5rem; font-weight: 900; color: var(--gray-100); line-height: 1; }
.why-card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; }
.why-card-tag {
    display: inline-block; padding: 4px 12px; border-radius: var(--radius-full);
    font-size: 0.75rem; font-weight: 600;
    background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(217,119,6,0.1));
    color: var(--primary);
}

/* ---- Process Section ---- */
.process-section { padding: 100px 0; background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-card { text-align: center; position: relative; }
.process-step {
    width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center; font-size: 2rem;
    position: relative; z-index: 2;
}
.process-card:not(:last-child)::after {
    content: ''; position: absolute; top: 40px; left: 60%; width: 80%;
    height: 2px; background: var(--gray-200); z-index: 1;
}
.process-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.process-card p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; }

/* ---- Testimonials ---- */
.testimonials-section { padding: 100px 0; background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: var(--white); padding: 32px; border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card > p { font-size: 0.95rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 700; font-size: 1rem;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--gray-500); }

/* ---- Gallery Section ---- */
.gallery-section { padding: 100px 0; background: var(--gray-100); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.gallery-item:hover::before {
    opacity: 1;
}
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}
.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}
.gallery-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    transform: scale(0.5);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.gallery-item:hover .gallery-item-icon {
    transform: scale(1);
}
.gallery-item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 2;
}
.gallery-item:hover .gallery-item-caption {
    transform: translateY(0);
    opacity: 1;
}
.gallery-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 60px;
    color: var(--gray-500);
    font-size: 0.95rem;
}
.gallery-loading i {
    font-size: 2rem;
    color: var(--primary);
}
.gallery-empty {
    text-align: center;
    padding: 60px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.gallery-empty-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    opacity: 0.5;
}
.gallery-empty p {
    color: var(--gray-500);
    font-size: 1rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}
.lightbox.active .lightbox-content img {
    transform: scale(1);
    opacity: 1;
}
.lightbox-caption {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    margin-top: 16px;
    text-align: center;
    opacity: 0.9;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 10;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gradient-warm);
    transform: scale(1.1);
}
.lightbox-close {
    top: 20px;
    right: 20px;
}
.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* ---- Contact ---- */
.contact-section { padding: 100px 0; background: var(--white); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info .section-tag { margin-bottom: 12px; }
.contact-info .section-title { font-size: 2.2rem; text-align: left; margin-bottom: 12px; }
.contact-info > p { color: var(--gray-500); margin-bottom: 32px; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-icon {
    width: 48px; height: 48px; border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(168,85,247,0.12), rgba(236,72,153,0.14));
    display: flex; align-items: center; justify-content: center;
    color: #8b3cf0; font-size: 1.1rem; flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(168,85,247,0.1);
}
.contact-item strong { display: block; font-size: 0.9rem; }
.contact-item span { font-size: 0.85rem; color: var(--gray-500); }
.contact-form-wrapper {
    background: var(--white); padding: 36px; border-radius: var(--radius);
    border: 1px solid var(--gray-200); box-shadow: var(--shadow);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { position: relative; }
.form-input {
    width: 100%; padding: 14px 16px 14px 44px;
    border: 2px solid var(--gray-200); border-radius: var(--radius-sm);
    font-family: var(--font); font-size: 0.95rem; transition: var(--transition);
    background: var(--gray-100); outline: none;
}
.form-input:focus { border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 4px rgba(245,158,11,0.1); }
.form-textarea { padding-left: 16px; resize: vertical; }
.form-select {
    width: 100%; padding: 14px 16px 14px 44px;
    border: 2px solid var(--gray-200); border-radius: var(--radius-sm);
    font-family: var(--font); font-size: 0.95rem; transition: var(--transition);
    background: var(--gray-100); outline: none; appearance: none; cursor: pointer;
}
.form-select:focus { border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 4px rgba(245,158,11,0.1); }
.form-icon {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    color: var(--gray-500); font-size: 0.9rem; pointer-events: none; transition: var(--transition);
}
.form-input:focus + .form-icon,
.form-select:focus + .form-icon { color: var(--primary); }

/* ---- CTA ---- */
.cta-section { padding: 60px 0 80px; background: var(--white); }
.cta-card {
    background: var(--gradient-warm); border-radius: 24px;
    padding: 60px; text-align: center; position: relative; overflow: hidden;
}
.cta-content { position: relative; z-index: 2; }
.cta-card h2 { font-size: 2.5rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-card p { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-shapes .cta-shape { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.08); }
.cta-shape-1 { width: 200px; height: 200px; top: -60px; right: -40px; }
.cta-shape-2 { width: 150px; height: 150px; bottom: -40px; left: -30px; }
.cta-shape-3 { width: 100px; height: 100px; top: 40%; left: 20%; }

/* ---- Footer ---- */
.footer { position: relative; background: var(--dark); color: rgba(255,255,255,0.7); }
.footer-wave { color: var(--white); line-height: 0; margin-bottom: -1px; }
.footer-wave svg { width: 100%; height: 60px; }
.footer-content { padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand > p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; transition: var(--transition);
}
.social-link:hover { background: var(--gradient-warm); color: var(--white); transform: translateY(-3px); }
.footer-links-col h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a { font-size: 0.9rem; transition: var(--transition); }
.footer-links-col a:hover { color: var(--gold); padding-left: 6px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px; text-align: center; font-size: 0.85rem;
}
.footer-company { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 8px; }

/* ---- Toast ---- */
.toast {
    position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px);
    background: var(--dark); color: var(--white);
    padding: 14px 28px; border-radius: var(--radius-full);
    display: flex; align-items: center; gap: 10px;
    font-weight: 600; font-size: 0.9rem; z-index: 3000;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast i { color: var(--accent-green); }

/* ---- Scroll Animations ---- */
[data-animate] { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate="fade-up"] { transform: translateY(40px); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate].animated { opacity: 1; transform: translate(0, 0); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.3rem; }
    .origin-grid { grid-template-columns: 1fr; gap: 40px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-card:not(:last-child)::after { display: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: var(--white); flex-direction: column;
        align-items: center; justify-content: center; gap: 12px;
        transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: 5;
    }
    .nav-links.active { transform: translateX(0); }
    .nav-link { font-size: 1.2rem; padding: 12px 24px; }
    .nav-actions .cta-nav-btn, .nav-phone { display: none; }
    .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { margin: 0 auto 24px; }
    .hero-stats { justify-content: center; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual-card { width: 300px; }
    .section-title { font-size: 2rem; }
    .origin-grid { text-align: center; }
    .origin-content .section-title { text-align: center; }
    .origin-highlights { align-items: center; }
    .products-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .contact-info .section-title { text-align: center; }
    .contact-info { text-align: center; }
    .contact-item { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .cta-card { padding: 40px 24px; }
    .cta-card h2 { font-size: 1.8rem; }
    .size-guide-table-wrapper { overflow-x: auto; }
    .size-guide-table { min-width: 600px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-close { top: 10px; right: 10px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-visual-card { width: 260px; }
    .hero-makhana-display { height: 200px; }
    .makhana-illustration { width: 210px; height: 160px; }
    .makhana-bowl { width: 150px; height: 84px; }
    .makhana-bowl-rim { width: 162px; }
    .makhana-cluster { width: 150px; height: 96px; }
    .makhana-piece { width: 34px; height: 28px; }
    .section-title { font-size: 1.7rem; }
    .btn-lg { padding: 14px 28px; font-size: 0.95rem; }
}
