/* ===== CSS CUSTOM PROPERTIES — LUXURY LIGHT MODERN THEME ===== */
:root {
    --gold: #C8922A;
    --gold-light: #F3DB94;
    --gold-bright: #FDF3D6;
    --gold-dark: #9A6F1C;
    --gold-gradient: linear-gradient(135deg, #D4A338 0%, #A3741A 100%);
    --gold-glow: rgba(200, 146, 42, 0.25);
    --brown: #3C1F0A;
    --brown-light: #5C3A1E;
    --cream: #FFFDF7;
    --cream-warm: #FFF9EE;
    --cream-deep: #F7EBD7;
    --orange-soft: #FFF2DF;
    --bg-white: #FFFFFF;
    --bg-light: #FDFBF6;
    --bg-warm: #FAF3E6;
    --bg-section: #F6ECCB;
    --accent-red: #D94F4F;
    --green: #2EAF6A;
    --green-light: #E8F8EF;
    --text-dark: #1F150C;
    --text-body: #4A3D2E;
    --text-muted: #8C7B68;
    --border: rgba(200, 146, 42, 0.18);
    --border-light: rgba(0,0,0,0.06);
    --shadow-sm: 0 4px 14px rgba(60, 31, 10, 0.04);
    --shadow-md: 0 12px 36px rgba(60, 31, 10, 0.08);
    --shadow-lg: 0 24px 60px rgba(60, 31, 10, 0.12);
    --shadow-gold: 0 10px 30px rgba(200, 146, 42, 0.22);
    --radius: 24px;
    --radius-sm: 14px;
    --radius-xs: 10px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; scroll-padding-top: 120px; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-light);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--text-dark); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== ULTRA CLEAN ELEGANT LOADER ===== */
.loader {
    position: fixed; inset: 0; z-index: 10000;
    background: linear-gradient(135deg, #FFFDF8 0%, #F5E8D0 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: opacity 0.7s cubic-bezier(0.65, 0, 0.35, 1), visibility 0.7s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-badge-ring {
    position: relative; width: 100px; height: 100px;
    display: flex; align-items: center; justify-content: center;
}

.loader-emblem {
    width: 80px; height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 2.4rem; box-shadow: var(--shadow-gold);
    animation: loader-pulse 1.8s ease-in-out infinite;
}

.loader-spin-border {
    position: absolute; inset: 0; border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--gold);
    border-bottom-color: var(--gold-dark);
    animation: loader-spin 1.4s linear infinite;
}

@keyframes loader-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(200, 146, 42, 0.3); }
    50% { transform: scale(1.08); box-shadow: 0 0 35px rgba(200, 146, 42, 0.6); }
}

@keyframes loader-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    margin-top: 25px;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 800;
    color: var(--brown);
    letter-spacing: 2px;
    text-align: center;
}

.loader-subtext {
    font-size: 0.82rem;
    color: var(--gold-dark);
    font-weight: 700;
    margin-top: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.loader-progress-bar {
    width: 180px; height: 4px;
    background: rgba(200, 146, 42, 0.15);
    border-radius: 10px; margin-top: 20px;
    overflow: hidden; position: relative;
}

.loader-progress-fill {
    width: 0%; height: 100%;
    background: var(--gold-gradient);
    border-radius: 10px;
    transition: width 0.25s ease;
}

/* ===== AMBIENT PARTICLES OVERLAY (Light Dust Canvas) ===== */
#bg-canvas {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1; pointer-events: none; opacity: 0.5;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: all 0.6s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.12s; }
.stagger > *:nth-child(3) { transition-delay: 0.19s; }
.stagger > *:nth-child(4) { transition-delay: 0.26s; }
.stagger > *:nth-child(5) { transition-delay: 0.33s; }
.stagger > *:nth-child(6) { transition-delay: 0.40s; }

/* ===== MARQUEE BAR ===== */
.marquee-bar {
    background: var(--gold-gradient);
    color: white; padding: 10px 0; overflow: hidden; white-space: nowrap;
    position: fixed; top: 0; z-index: 1001; width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.marquee-inner {
    display: inline-block; animation: marquee-scroll 28s linear infinite;
    font-size: 0.85rem; font-weight: 700; letter-spacing: 1px;
}
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-inner span { margin: 0 40px; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 38px; left: 0; width: 100%; z-index: 1000;
    padding: 18px 5%; display: flex; justify-content: space-between; align-items: center;
    background: transparent; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.navbar.scrolled {
    background: rgba(255, 253, 247, 0.95);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    padding: 12px 5%; box-shadow: 0 8px 32px rgba(60, 31, 10, 0.08);
    border-bottom: 1px solid var(--border);
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo-icon {
    width: 46px; height: 46px;
    background: var(--gold-gradient);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; box-shadow: var(--shadow-gold);
    animation: logo-glow 3s ease-in-out infinite;
}
@keyframes logo-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(200, 146, 42, 0.3); }
    50% { box-shadow: 0 4px 28px rgba(200, 146, 42, 0.6); }
}
.logo-text {
    font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 800;
    background: linear-gradient(135deg, var(--brown), var(--gold-dark));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.nav-links { display: flex; list-style: none; gap: 34px; align-items: center; }
.nav-links a {
    font-size: 0.88rem; font-weight: 600; letter-spacing: 0.8px;
    text-transform: uppercase; color: var(--text-muted); position: relative; transition: color 0.3s;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
    width: 0; height: 2.5px; background: var(--gold); border-radius: 2px; transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold-dark); font-weight: 700; }
.nav-links a.active::after { width: 100%; }

.nav-cta {
    background: var(--gold-gradient) !important;
    color: white !important; padding: 11px 28px !important; border-radius: 50px !important;
    font-weight: 700 !important; box-shadow: var(--shadow-gold);
    transition: transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px) scale(1.05) !important; box-shadow: 0 12px 35px rgba(200, 146, 42, 0.45) !important; color: white !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 26px; height: 2.5px; background: var(--brown); border-radius: 2px; transition: all 0.3s; }
.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); }

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold-gradient);
    color: white; padding: 16px 38px; border-radius: 50px;
    font-size: 1.05rem; font-weight: 700; letter-spacing: 0.5px;
    border: none; cursor: pointer; transition: all 0.3s ease;
    box-shadow: var(--shadow-gold); position: relative; overflow: hidden;
}
.btn-primary::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 16px 45px rgba(200, 146, 42, 0.4); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--bg-white); color: var(--gold-dark); padding: 16px 38px; border-radius: 50px;
    font-size: 1.05rem; font-weight: 600; border: 2px solid var(--border);
    cursor: pointer; transition: all 0.3s; box-shadow: var(--shadow-sm);
}
.btn-outline:hover { border-color: var(--gold); background: var(--cream-deep); transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ===== HERO SECTION WITH LUXURY PHOTO DISPLAY ===== */
.hero {
    min-height: 100vh; display: flex; align-items: center; position: relative;
    padding: 160px 5% 80px; overflow: hidden;
    background: linear-gradient(165deg, var(--cream-warm) 0%, var(--bg-warm) 45%, var(--cream-deep) 100%);
}
.hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; max-width: 1350px; margin: 0 auto; align-items: center; width: 100%; }
.hero-content { position: relative; z-index: 2; }
.hero-tagline {
    font-family: 'Dancing Script', cursive; font-size: 1.5rem;
    color: var(--gold-dark); margin-bottom: 12px; letter-spacing: 1px;
    display: inline-block; animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
.hero-title {
    font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 900;
    background: linear-gradient(135deg, var(--brown) 0%, var(--gold-dark) 60%, var(--gold) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 20px; line-height: 1.15;
}
.hero-subtitle { font-size: 1.15rem; color: var(--text-muted); max-width: 540px; margin-bottom: 30px; font-weight: 400; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 35px; }
.hero-badge {
    background: var(--bg-white); border: 1px solid var(--border);
    padding: 8px 18px; border-radius: 50px;
    font-size: 0.82rem; font-weight: 600; color: var(--text-body);
    display: flex; align-items: center; gap: 7px;
    box-shadow: var(--shadow-sm); transition: all 0.3s;
    animation: badge-float 4s ease-in-out infinite;
}
.hero-badge:nth-child(odd) { animation-delay: 0.5s; }
.hero-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold); }
@keyframes badge-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-stats {
    display: flex; gap: 30px; margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--border);
}
.hero-stat { text-align: center; }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 800; color: var(--gold-dark); }
.hero-stat-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* HIGH-END PHOTO SHOWCASE WITH FLOATING BADGES */
.hero-photo-showcase {
    position: relative; width: 100%;
    display: flex; align-items: center; justify-content: center;
}

.hero-photo-card {
    position: relative; border-radius: 30px; overflow: hidden;
    box-shadow: 0 30px 70px rgba(60, 31, 10, 0.16);
    border: 8px solid var(--bg-white);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    animation: hero-card-float 6s ease-in-out infinite;
}

@keyframes hero-card-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(1.2deg); }
}

.hero-photo-card img {
    width: 100%; max-height: 480px; object-fit: cover;
    transition: transform 0.8s ease;
}
.hero-photo-card:hover img { transform: scale(1.06); }

.hero-float-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    padding: 12px 20px; border-radius: 50px;
    box-shadow: 0 10px 30px rgba(60, 31, 10, 0.12);
    display: flex; align-items: center; gap: 10px;
    font-size: 0.88rem; font-weight: 700; color: var(--brown);
    z-index: 10; animation: float-badge-pulse 4s ease-in-out infinite;
}

.hero-float-badge.b-top-left { top: 25px; left: -20px; }
.hero-float-badge.b-bottom-right { bottom: 30px; right: -20px; animation-delay: 2s; }

@keyframes float-badge-pulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
    padding: 160px 5% 80px;
    background: linear-gradient(165deg, var(--cream-warm) 0%, var(--bg-warm) 40%, var(--cream-deep) 100%);
    text-align: center; position: relative; overflow: hidden;
}
.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900;
    background: linear-gradient(135deg, var(--brown) 0%, var(--gold-dark) 60%, var(--gold) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 16px;
}
.page-hero p { font-size: 1.15rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.breadcrumb { margin-top: 20px; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumb a { color: var(--gold-dark); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== SECTIONS ===== */
section { position: relative; padding: 100px 5%; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
    font-size: 0.82rem; text-transform: uppercase; letter-spacing: 4px;
    color: var(--gold-dark); font-weight: 700; margin-bottom: 12px; display: inline-block; position: relative;
}
.section-label::before, .section-label::after {
    content: ''; position: absolute; top: 50%; width: 40px; height: 1px; background: var(--gold);
}
.section-label::before { right: calc(100% + 15px); }
.section-label::after { left: calc(100% + 15px); }
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 15px; }
.section-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ===== USP CARDS ===== */
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; max-width: 1200px; margin: 0 auto; }
.usp-card {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 38px 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; overflow: hidden; cursor: default;
    box-shadow: var(--shadow-sm);
}
.usp-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0); transform-origin: center; transition: transform 0.4s ease;
}
.usp-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.usp-card:hover::before { transform: scaleX(1); }
.usp-icon {
    width: 64px; height: 64px; border-radius: 18px;
    background: linear-gradient(135deg, var(--cream-deep), var(--orange-soft));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin-bottom: 22px; transition: transform 0.4s; box-shadow: var(--shadow-sm);
}
.usp-card:hover .usp-icon { transform: scale(1.12) rotate(6deg); }
.usp-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.usp-card p { color: var(--text-muted); font-size: 0.94rem; }

/* ===== PRODUCT SECTION ===== */
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; max-width: 1200px; margin: 0 auto; align-items: center; }
.product-img-wrap {
    position: relative; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-lg); transition: transform 0.5s ease;
    border: 6px solid var(--bg-white);
}
.product-img-wrap img { border-radius: var(--radius-sm); transition: transform 0.6s; width: 100%; }
.product-img-wrap:hover img { transform: scale(1.05); }
.product-img-badge {
    position: absolute; top: 20px; left: 20px;
    background: var(--green); color: white;
    padding: 8px 18px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 700; box-shadow: 0 4px 15px rgba(46,175,106,0.3);
}
.product-details h3 { font-size: 2rem; margin-bottom: 16px; }
.product-details p { color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }
.product-price {
    display: inline-flex; align-items: baseline; gap: 8px; margin-bottom: 25px;
    background: linear-gradient(135deg, var(--cream-deep), var(--orange-soft));
    padding: 12px 28px; border-radius: var(--radius-sm); border: 1px solid var(--border);
}
.product-price .amt { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 800; color: var(--gold-dark); }
.product-price .unit { color: var(--text-muted); font-size: 1rem; }
.check-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--text-body); }
.check-list li .chk { color: var(--green); font-weight: 700; font-size: 1.1rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag-no { background: #FFF0F0; border: 1px solid #FDDEDE; color: #D94F4F; padding: 6px 16px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; }
.tag-yes { background: var(--green-light); border: 1px solid #C8EDDA; color: var(--green); padding: 6px 16px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; }

/* ===== VARIETY CARDS (FIXED MAX-HEIGHT TRUNCATION) ===== */
.variety-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 32px; max-width: 1200px; margin: 0 auto; }
.variety-card {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden; transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}
.variety-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); border-color: var(--gold-light); }
.variety-img { height: 260px; overflow: hidden; position: relative; }
.variety-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.variety-card:hover .variety-img img { transform: scale(1.08); }
.variety-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%); }
.variety-img-price {
    position: absolute; bottom: 20px; left: 20px;
    font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 800;
    color: white; text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.variety-body { padding: 30px; }
.variety-body h3 { font-size: 1.5rem; margin-bottom: 10px; }
.variety-body > p { color: var(--text-muted); font-size: 0.94rem; margin-bottom: 20px; }
.variety-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.variety-feat { background: var(--cream-deep); color: var(--brown-light); padding: 6px 16px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; }

.variety-desc-toggle {
    display: flex; align-items: center; justify-content: space-between; width: 100%;
    background: var(--cream-deep); border: 1px solid var(--border);
    padding: 14px 20px; border-radius: var(--radius-xs); cursor: pointer;
    font-size: 0.92rem; font-weight: 700; color: var(--brown-light);
    margin-bottom: 16px; transition: all 0.3s;
}
.variety-desc-toggle:hover { background: var(--gold-bright); color: var(--brown); }
.variety-desc-toggle .arrow { transition: transform 0.3s; font-size: 0.8rem; }
.variety-desc-toggle.open .arrow { transform: rotate(180deg); }
.variety-desc-content {
    max-height: 0; overflow: hidden; transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
    background: var(--cream-warm); border-radius: var(--radius-xs);
}
.variety-desc-content.open { max-height: 1200px; padding: 20px; margin-bottom: 16px; border: 1px solid var(--border); }
.variety-desc-content p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 12px; line-height: 1.7; }
.variety-desc-content ul { list-style: none; }
.variety-desc-content ul li { padding: 5px 0 5px 24px; position: relative; color: var(--text-body); font-size: 0.88rem; }
.variety-desc-content ul li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 0.75rem; }

.variety-btn {
    display: block; width: 100%; text-align: center;
    background: var(--gold-gradient);
    color: white; padding: 15px; border-radius: var(--radius-xs);
    font-weight: 700; font-size: 1.02rem; border: none; cursor: pointer;
    transition: all 0.3s; box-shadow: var(--shadow-gold); position: relative; overflow: hidden;
}
.variety-btn::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s;
}
.variety-btn:hover::before { left: 100%; }
.variety-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(200, 146, 42, 0.4); }

/* ===== INGREDIENTS ===== */
.ingredients-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; align-items: center; }
.ingredient-img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid var(--bg-white); }
.ingredient-img-wrap img { width: 100%; transition: transform 0.6s; }
.ingredient-img-wrap:hover img { transform: scale(1.05); }
.ingredients-info h3 { font-size: 1.8rem; margin-bottom: 18px; }
.ingredients-info > p { color: var(--text-muted); margin-bottom: 25px; }
.ingredient-list { list-style: none; }
.ingredient-list li {
    display: flex; align-items: center; gap: 15px;
    padding: 15px 0; border-bottom: 1px solid var(--border-light); transition: all 0.3s;
}
.ingredient-list li:hover { padding-left: 10px; background: rgba(200,146,42,0.04); }
.ingredient-list li .emoji { font-size: 1.5rem; width: 38px; text-align: center; }
.ingredient-list li strong { color: var(--gold-dark); }

/* ===== TESTIMONIALS ===== */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; max-width: 1200px; margin: 0 auto; }
.testimonial-card {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 35px; transition: all 0.4s; position: relative;
    box-shadow: var(--shadow-sm);
}
.testimonial-card::before {
    content: '"'; position: absolute; top: 15px; right: 25px;
    font-family: 'Playfair Display', serif; font-size: 5rem;
    color: var(--gold-light); opacity: 0.4; line-height: 1;
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.t-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 3px; }
.t-text { color: var(--text-body); font-size: 0.95rem; font-style: italic; margin-bottom: 20px; line-height: 1.8; }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--gold-gradient);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: white; font-size: 0.95rem; box-shadow: var(--shadow-sm);
}
.t-name { font-weight: 700; color: var(--text-dark); font-size: 0.94rem; }
.t-loc { font-size: 0.82rem; color: var(--text-muted); }

/* ===== CHECKOUT ===== */
.checkout-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; max-width: 1100px; margin: 0 auto; }
.checkout-form-box {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 40px;
    box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.checkout-form-box::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--gold-gradient);
}

.form-title { font-size: 1.5rem; margin-bottom: 6px; }
.form-sub { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; position: relative; }
.form-group label {
    display: block; font-size: 0.8rem; font-weight: 700;
    color: var(--text-muted); margin-bottom: 7px;
    text-transform: uppercase; letter-spacing: 1px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 18px; padding-right: 45px;
    background: var(--bg-light); border: 1.5px solid var(--border-light);
    border-radius: var(--radius-xs); color: var(--text-dark);
    font-family: 'Inter', sans-serif; font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s; outline: none;
}
.form-group select { padding-right: 18px; }
.form-group textarea { padding-right: 18px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.12);
}
.form-group input.valid, .form-group select.valid, .form-group textarea.valid { border-color: var(--green); }
.form-group input.invalid, .form-group select.invalid, .form-group textarea.invalid { border-color: var(--accent-red); }

.validation-icon {
    position: absolute; right: 14px; top: 38px;
    font-size: 1.1rem; opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.validation-icon.show { opacity: 1; }
.validation-msg {
    font-size: 0.75rem; margin-top: 5px; font-weight: 500;
    opacity: 0; transition: opacity 0.3s; height: 0; overflow: hidden;
}
.validation-msg.show { opacity: 1; height: auto; }
.validation-msg.error { color: var(--accent-red); }
.validation-msg.success { color: var(--green); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.payment-box {
    background: linear-gradient(135deg, var(--cream-deep), var(--orange-soft));
    border: 2px solid var(--gold-light); border-radius: var(--radius-sm);
    padding: 24px; margin: 25px 0;
}
.payment-box-header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.payment-box-header .pay-icon { font-size: 2rem; }
.payment-box-header h4 { font-size: 1.15rem; color: var(--brown); }
.payment-box p { color: var(--text-body); font-size: 0.9rem; margin-bottom: 10px; }
.payment-box .cod-note {
    display: flex; align-items: center; gap: 8px;
    background: var(--green-light); border: 1px solid #C8EDDA;
    padding: 10px 16px; border-radius: var(--radius-xs);
    color: var(--green); font-size: 0.82rem; font-weight: 600;
}
.prepaid-soon {
    background: var(--bg-light); border: 1.5px dashed var(--border);
    border-radius: var(--radius-xs); padding: 16px 20px;
    display: flex; align-items: center; gap: 12px; margin-top: 12px; opacity: 0.75;
}
.prepaid-soon .soon-badge {
    background: var(--gold-light); color: var(--brown-light);
    padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 800; white-space: nowrap;
}
.prepaid-soon p { color: var(--text-muted); font-size: 0.82rem; }

.submit-btn {
    width: 100%; padding: 18px;
    background: var(--gold-gradient);
    color: white; font-size: 1.1rem; font-weight: 700;
    border: none; border-radius: var(--radius-xs);
    cursor: pointer; letter-spacing: 0.5px; transition: all 0.3s;
    box-shadow: var(--shadow-gold); position: relative; overflow: hidden;
}
.submit-btn::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s;
}
.submit-btn:hover::before { left: 100%; }
.submit-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(200, 146, 42, 0.4); }
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }
.secure-note { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 14px; color: var(--text-muted); font-size: 0.78rem; }

.order-summary {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 32px;
    box-shadow: var(--shadow-sm); height: fit-content; position: sticky; top: 100px;
}
.order-summary h3 { font-size: 1.3rem; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border-light); }
.order-summary-img { width: 100%; border-radius: var(--radius-sm); margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.order-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: 0.92rem; }
.order-item span:first-child { color: var(--text-muted); }
.order-item span:last-child { font-weight: 600; color: var(--text-dark); }
.order-item.total { border-top: 2px solid var(--gold); margin-top: 12px; padding-top: 16px; font-size: 1.15rem; }
.order-item.total span:last-child { color: var(--gold-dark); font-family: 'Playfair Display', serif; font-size: 1.4rem; }
.delivery-note {
    background: var(--green-light); border: 1px solid #C8EDDA;
    border-radius: var(--radius-xs); padding: 14px; margin-top: 18px;
}
.delivery-note p { color: var(--green); font-size: 0.82rem; font-weight: 600; display: flex; align-items: center; gap: 8px; margin: 0; }
.delivery-note .sub { color: var(--text-muted); font-weight: 400; margin-top: 4px; }

/* QUANTITY SELECTOR STYLING FIX */
.qty-selector { display: flex; align-items: center; }
.qty-btn {
    width: 44px; height: 44px; background: var(--bg-light);
    border: 1.5px solid var(--border-light); color: var(--gold-dark);
    font-size: 1.2rem; cursor: pointer; display: flex;
    align-items: center; justify-content: center; transition: all 0.3s;
}
.qty-btn:first-child { border-radius: var(--radius-xs) 0 0 var(--radius-xs); }
.qty-btn:last-child { border-radius: 0 var(--radius-xs) var(--radius-xs) 0; }
.qty-btn:hover { background: var(--cream-deep); border-color: var(--gold); }

.qty-selector input {
    width: 70px !important; text-align: center !important;
    border-radius: 0 !important; border-left: none !important; border-right: none !important;
    padding: 10px 0 !important; -moz-appearance: textfield; font-weight: 700;
}
.qty-selector input::-webkit-outer-spin-button, .qty-selector input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* ===== POLICIES ===== */
.policy-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.policy-tab {
    padding: 12px 28px; background: var(--bg-white); border: 1px solid var(--border);
    border-radius: 50px; font-size: 0.88rem; font-weight: 600;
    color: var(--text-muted); cursor: pointer; transition: all 0.3s; box-shadow: var(--shadow-sm);
}
.policy-tab.active { background: var(--gold-gradient); color: white; border-color: var(--gold); box-shadow: var(--shadow-gold); }
.policy-tab:hover:not(.active) { border-color: var(--gold); color: var(--gold-dark); transform: translateY(-2px); }
.policy-box {
    max-width: 920px; margin: 0 auto;
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 48px; box-shadow: var(--shadow-md);
}
.policy-content { display: none; }
.policy-content.active { display: block; animation: fadeSlide 0.5s ease; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.policy-content h3 { font-size: 1.7rem; color: var(--brown); margin-bottom: 20px; }
.policy-content h4 { color: var(--text-dark); margin-top: 24px; margin-bottom: 10px; font-size: 1.15rem; }
.policy-content p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.policy-content ul { list-style: none; margin-bottom: 20px; }
.policy-content ul li { padding: 8px 0 8px 26px; position: relative; color: var(--text-body); line-height: 1.7; font-size: 0.95rem; }
.policy-content ul li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); }
.policy-highlight {
    background: linear-gradient(135deg, var(--cream-deep), var(--orange-soft));
    border-left: 4px solid var(--gold); padding: 18px 24px;
    margin: 16px 0; border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
}
.policy-highlight p { color: var(--text-body); margin: 0; }

/* ===== FOOTER WITH POLICY LINKS ===== */
.footer {
    background: var(--brown); color: var(--cream-warm);
    padding: 85px 5% 30px; position: relative; overflow: hidden;
}
.footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--gold-gradient);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; max-width: 1200px; margin: 0 auto 50px; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.8; margin-top: 18px; }
.footer-col h4 { font-size: 0.92rem; color: var(--gold-light); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: all 0.3s; display: inline-block; }
.footer-col ul li a:hover { color: var(--gold-light); transform: translateX(4px); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px !important; color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 15px; max-width: 1200px; margin: 0 auto;
}
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.84rem; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-fbadge {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
    padding: 5px 12px; border-radius: 50px; font-size: 0.72rem; color: rgba(255,255,255,0.55);
}

/* ===== FLOATING BUTTONS ===== */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: white; cursor: pointer; z-index: 999;
    opacity: 0; visibility: hidden; transition: all 0.4s;
    box-shadow: var(--shadow-gold); border: none;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px) scale(1.1); }

.whatsapp-float {
    position: fixed; bottom: 30px; left: 30px; width: 54px; height: 54px;
    background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: white; z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.3s;
    cursor: pointer; text-decoration: none; animation: wa-pulse 2s ease-in-out infinite;
}
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.3); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.1); }
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-3px); }

/* ===== SUCCESS MODAL ===== */
.success-modal {
    display: none; position: fixed; inset: 0; z-index: 10000;
    background: rgba(0,0,0,0.4); backdrop-filter: blur(8px);
    align-items: center; justify-content: center;
}
.success-modal.show { display: flex; }
.success-box {
    background: var(--bg-white); border: 2px solid var(--gold);
    border-radius: var(--radius); padding: 50px; text-align: center;
    max-width: 480px; width: 90%; animation: popIn 0.5s ease; box-shadow: var(--shadow-lg);
}
@keyframes popIn { 0% { opacity: 0; transform: scale(0.85) translateY(20px); } 100% { opacity: 1; transform: scale(1) translateY(0); } }
.success-icon { font-size: 3.5rem; margin-bottom: 18px; animation: bounce-success 1s ease infinite; }
@keyframes bounce-success { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.15); } }
.success-box h2 { font-size: 1.5rem; margin-bottom: 10px; }
.success-box p { color: var(--text-muted); margin-bottom: 25px; font-size: 0.92rem; line-height: 1.7; }
.success-close-btn {
    background: var(--gold-gradient);
    color: white; padding: 14px 40px; border: none; border-radius: 50px;
    font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.3s;
}
.success-close-btn:hover { transform: scale(1.05); box-shadow: var(--shadow-gold); }
.confetti-piece { position: fixed; width: 10px; height: 10px; z-index: 10001; pointer-events: none; opacity: 0; }

/* ===== TRUST & GIFTING SECTIONS ===== */
.trust-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--cream-deep), var(--orange-soft));
    border: 1px solid var(--gold-light);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin: 5px;
}

.msme-highlight {
    background: linear-gradient(135deg, var(--cream-deep), var(--orange-soft));
    border: 2px solid var(--gold-light);
    border-radius: var(--radius-sm);
    padding: 20px 28px;
    margin-top: 16px;
    text-align: center;
}

.msme-highlight strong {
    color: var(--gold-dark);
    font-size: 1.05rem;
}

.gifting-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner, .product-grid, .ingredients-grid { grid-template-columns: 1fr; gap: 40px; }
    .checkout-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-float-badge.b-top-left { left: 10px; top: 10px; }
    .hero-float-badge.b-bottom-right { right: 10px; bottom: 10px; }
}
@media (max-width: 768px) {
    .nav-links {
        display: none; position: fixed; top: 0; right: 0;
        width: 80%; max-width: 320px; height: 100vh;
        background: rgba(255,253,247,0.98); backdrop-filter: blur(30px);
        flex-direction: column; padding: 100px 35px 40px; gap: 22px;
        border-left: 1px solid var(--border); box-shadow: -10px 0 40px rgba(0,0,0,0.08);
    }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }
    .hero-title { font-size: 2.3rem; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .variety-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 35px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    section { padding: 70px 5%; }
    .policy-box { padding: 25px; }
    .section-label::before, .section-label::after { display: none; }
    .page-hero { padding: 140px 5% 60px; }
}
