/* ==========================================================================
   Modak Darbar - Custom Styling System
   Theme: Authenticity, Festive Maharashtrian Tradition
   Colors: Saffron, Crimson, Gold, Coconut Ivory
   ========================================================================== */

:root {
    --color-saffron: #E06A2B; /* Warm festive orange */
    --color-saffron-light: #F08A4B; /* light orange accent */
    --color-saffron-dark: #B14B1A; /* deep orange */
    --color-maroon: #6E1E1E; /* maroon accent */
    --color-maroon-dark: #4B1515; /* dark maroon */
    --color-gold: #D4AF37; /* Traditional Premium Gold */
    --color-gold-light: #F7E7C4; /* Soft Gold */
    --color-gold-dark: #9E7D3F; /* Deep Gold Accent */
    --color-ivory: #FFF8F1; /* Premium Cream Background */
    --color-charcoal: #2A1F1F; /* Rich Dark Charcoal */
    --color-clay: #7B6248; /* Warm Traditional Clay */
    --color-accent: #8A2B0B; /* additional warm accent */
    /* Backwards-compatible legacy names used in CSS */
    --color-crimson: var(--color-maroon);
    --color-crimson-dark: var(--color-maroon-dark);
    --color-saffron-dark: var(--color-saffron-dark);
    --color-leaf-green: var(--color-accent);
    --color-leaf-green-light: var(--color-saffron-light);
    
    --font-heading: 'Rozha One', serif;
    --font-subheading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    
    --shadow-soft: 0 10px 30px rgba(5, 43, 25, 0.08);
    --shadow-medium: 0 15px 35px rgba(5, 43, 25, 0.15);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.35);
    --border-gold: 2px solid var(--color-gold);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-ivory);
    color: var(--color-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

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

button {
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
    outline: none;
    background: none;
    transition: var(--transition-smooth);
}

/* Typography Utilities */
.text-center { text-align: center; }
.hidden { display: none !important; }
.highlight { color: var(--color-saffron); }

/* Common Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    gap: 10px;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-saffron) 0%, var(--color-saffron-light) 100%);
    color: #fff;
    box-shadow: 0 5px 15px rgba(10, 92, 54, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 92, 54, 0.45);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-crimson);
    border: 2px solid var(--color-crimson);
}

.btn-secondary:hover {
    background-color: var(--color-crimson);
    color: #fff;
    transform: translateY(-3px);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: 0.8s;
    opacity: 0;
}

.btn-glow:hover::after {
    left: 120%;
    opacity: 1;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.85rem;
}

/* Traditional Rangoli Borders */
.rangoli-divider {
    height: 20px;
    width: 100%;
    background-size: contain;
    background-repeat: repeat-x;
}

.rangoli-divider.bottom {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' fill='%23D4AF37'%3E%3Cpath d='M0,10 Q5,5 10,10 T20,10 T30,10 T40,10 T50,10 T60,10 T70,10 T80,10 T90,10 T100,10 L100,20 L0,20 Z'/%3E%3Ccircle cx='10' cy='6' r='1' fill='%23052B19'/%3E%3Ccircle cx='30' cy='6' r='1' fill='%23052B19'/%3E%3Ccircle cx='50' cy='6' r='1' fill='%23052B19'/%3E%3Ccircle cx='70' cy='6' r='1' fill='%23052B19'/%3E%3Ccircle cx='90' cy='6' r='1' fill='%23052B19'/%3E%3C/svg%3E");
    background-color: transparent;
}

.rangoli-divider.top {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' fill='%23D4AF37'%3E%3Cpath d='M0,10 Q5,15 10,10 T20,10 T30,10 T40,10 T50,10 T60,10 T70,10 T80,10 T90,10 T100,10 L100,0 L0,0 Z'/%3E%3Ccircle cx='10' cy='14' r='1' fill='%23052B19'/%3E%3Ccircle cx='30' cy='14' r='1' fill='%23052B19'/%3E%3Ccircle cx='50' cy='14' r='1' fill='%23052B19'/%3E%3Ccircle cx='70' cy='14' r='1' fill='%23052B19'/%3E%3Ccircle cx='90' cy='14' r='1' fill='%23052B19'/%3E%3C/svg%3E");
    background-color: transparent;
}

.decorative-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0 25px;
}

.decorative-line::before, .decorative-line::after {
    content: '';
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--color-gold) 50%, transparent);
}

.decorative-line i {
    color: var(--color-gold);
    font-size: 1.2rem;
    animation: pulseGlow 3s infinite ease-in-out;
}

/* Ambient Music Player */
.audio-player {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 100;
}

.logo-img, .footer-logo-img, .brand-mark-img, .brand-banner-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 50%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(197, 160, 89, 0.35);
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.premium-strip {
    padding: 32px 0 0;
}

.premium-strip-card, .menu-intro-card, .order-brand-banner {
    background: linear-gradient(135deg, rgba(255, 248, 233, 0.95), rgba(245, 233, 202, 0.95));
    border: 1px solid rgba(197, 160, 89, 0.3);
    box-shadow: var(--shadow-soft);
    border-radius: 24px;
    padding: 24px;
}

.premium-strip-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.brand-mark-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-mark-card h3 {
    margin-top: 6px;
    font-size: 1rem;
    color: var(--color-charcoal);
}

.strip-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.menu-intro-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.price-pill {
    background: var(--color-saffron);
    color: #fff;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 700;
    white-space: nowrap;
}

.order-brand-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.order-brand-banner h3 {
    margin-bottom: 6px;
}

.payment-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 16px 0 8px;
}

.payment-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(10, 92, 54, 0.08);
    color: var(--color-crimson);
    border: 1px solid rgba(10, 92, 54, 0.15);
    font-weight: 600;
}

.cancellation-link {
    cursor: pointer;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .premium-strip-card,
    .menu-intro-card,
    .order-brand-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .strip-actions {
        width: 100%;
    }
}

.music-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(5, 43, 25, 0.9);
    border: 1px solid var(--color-gold);
    padding: 10px 18px;
    border-radius: 30px;
    color: #fff;
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(5px);
}

.music-btn:hover {
    background: var(--color-crimson);
    border-color: #fff;
    transform: scale(1.05);
}

.music-icon {
    font-size: 1.2rem;
    color: var(--color-gold);
}

.music-text {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Sound Wave Animation */
.music-wave {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 15px;
}

.music-wave .stroke {
    display: block;
    width: 2px;
    height: 100%;
    background: var(--color-gold-light);
    border-radius: 50px;
    animation: bounceWave 1.2s infinite ease-in-out;
    transform-origin: bottom;
}

.music-wave .stroke:nth-child(1) { animation-delay: 0.1s; }
.music-wave .stroke:nth-child(2) { animation-delay: 0.3s; }
.music-wave .stroke:nth-child(3) { animation-delay: 0.5s; }
.music-wave .stroke:nth-child(4) { animation-delay: 0.2s; }
.music-wave .stroke:nth-child(5) { animation-delay: 0.4s; }

.music-btn.muted .music-wave .stroke {
    animation: none;
    height: 3px;
}

/* Main Navigation Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    background: rgba(252, 252, 249, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background: rgba(5, 43, 25, 0.95);
    color: #fff;
    border-bottom: 2px solid var(--color-gold);
    box-shadow: var(--shadow-medium);
}

.main-header.scrolled .logo-text h1 {
    color: var(--color-gold);
}

.main-header.scrolled .logo-text .brand-sub {
    color: var(--color-gold-light);
}

.main-header.scrolled .nav-links a {
    color: #ffeedd;
}

.main-header.scrolled .nav-links a:hover,
.main-header.scrolled .nav-links a.active {
    color: var(--color-gold);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2.2rem;
    color: var(--color-saffron);
    animation: rotateSlow 20s infinite linear;
}

.logo-text h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-crimson);
    line-height: 1;
}

.brand-sub {
    font-family: var(--font-subheading);
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-charcoal);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--color-crimson);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.city-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(10, 92, 54, 0.1);
    color: var(--color-saffron);
    border: 1px solid rgba(10, 92, 54, 0.3);
}

.city-badge.unselected {
    background: rgba(5, 43, 25, 0.05);
    color: var(--color-crimson);
    border-color: rgba(5, 43, 25, 0.2);
}

.city-badge.active-city {
    background: var(--color-saffron);
    color: #fff;
    border-color: var(--color-saffron-dark);
    box-shadow: 0 4px 10px rgba(10, 92, 54, 0.2);
}

.cart-btn {
    position: relative;
    width: 45px;
    height: 45px;
    background: var(--color-crimson);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1px solid var(--color-gold);
}

.cart-btn:hover {
    transform: scale(1.08);
    background: var(--color-saffron);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--color-gold);
    color: var(--color-crimson);
    font-size: 0.75rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-crimson);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 24, 14, 0.92) 0%, rgba(5, 43, 25, 0.8) 50%, rgba(10, 92, 54, 0.45) 100%);
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 750px;
    color: #fff;
}

.devanagari-greeting {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-gold);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.hero-tagline {
    font-size: 1.35rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: var(--color-gold-light);
    border-left: 3px solid var(--color-gold);
    padding-left: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 45px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(5px);
    font-size: 0.95rem;
    font-weight: 600;
}

.hero-feature-item i {
    color: var(--color-gold);
    font-size: 1.1rem;
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

/* Heritage Section */
.heritage-section {
    padding: 100px 0;
    background-color: var(--color-ivory);
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.sub-heading {
    font-family: var(--font-subheading);
    color: var(--color-saffron);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--color-crimson);
    margin-top: 5px;
}

.heritage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.heritage-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 4px solid var(--color-gold-light);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: var(--color-crimson);
    border: 2px solid var(--color-gold);
    color: #fff;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    animation: floatAnimation 4s infinite ease-in-out;
}

.experience-badge .number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.heritage-text h3 {
    font-family: var(--font-subheading);
    font-size: 1.8rem;
    color: var(--color-crimson);
    margin-bottom: 20px;
    line-height: 1.3;
}

.heritage-text p {
    margin-bottom: 30px;
    color: var(--color-charcoal);
    font-size: 1.05rem;
}

.heritage-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.heritage-highlights li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.highlight-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(10, 92, 54, 0.1);
    color: var(--color-saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(10, 92, 54, 0.2);
    font-size: 0.95rem;
}

.heritage-tag {
    display: flex;
    gap: 15px;
    background: rgba(212, 175, 55, 0.08);
    border-left: 4px solid var(--color-gold);
    padding: 15px 20px;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: var(--color-crimson);
}

.heritage-tag i {
    font-size: 1.4rem;
    color: var(--color-gold-dark);
}

/* Menu/Offering Section */
.menu-section {
    padding: 100px 0;
    background: radial-gradient(circle at top, #FAF6F0 0%, var(--color-ivory) 100%);
    position: relative;
}

.city-selector-card {
    background: #fff;
    max-width: 650px;
    margin: 0 auto 50px;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--color-gold-light);
    text-align: center;
}

.city-selector-card h3 {
    font-family: var(--font-subheading);
    color: var(--color-crimson);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.city-selector-card p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    color: var(--color-charcoal);
}

.city-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.city-btn {
    padding: 20px;
    border: 2px solid rgba(5, 43, 25, 0.15);
    border-radius: 12px;
    background: var(--color-ivory);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.city-btn i {
    font-size: 1.8rem;
    color: var(--color-crimson);
}

.city-btn span {
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-crimson);
}

.city-btn small {
    font-size: 0.75rem;
    color: #666;
}

.city-btn:hover {
    border-color: var(--color-saffron);
    background: rgba(10, 92, 54, 0.02);
    transform: translateY(-2px);
}

.city-btn.active {
    border-color: var(--color-saffron);
    background: linear-gradient(135deg, rgba(10, 92, 54, 0.05) 0%, rgba(18, 130, 76, 0.05) 100%);
    box-shadow: 0 8px 20px rgba(10, 92, 54, 0.1);
}

.city-btn.active i {
    color: var(--color-saffron);
    animation: bounce 1s infinite alternate;
}

.city-alert {
    margin-top: 20px;
    padding: 10px 15px;
    background: rgba(59, 122, 87, 0.1);
    color: var(--color-leaf-green);
    border-radius: 8px;
    border: 1px solid rgba(59, 122, 87, 0.2);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Scalable catalog styles */
.menu-catalog-container {
    position: relative;
    transition: var(--transition-smooth);
}

.menu-catalog-container.blurred {
    filter: blur(3px);
    pointer-events: none;
    opacity: 0.6;
}

.menu-lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(252, 252, 249, 0.4);
    z-index: 10;
    display: none;
    align-items: center;
    justify-content: center;
}

.menu-catalog-container.blurred .menu-lock-overlay {
    display: flex;
}

.lock-message {
    background: var(--color-crimson);
    color: #fff;
    border: 1px solid var(--color-gold);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.lock-message i {
    font-size: 2.2rem;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(5, 43, 25, 0.08);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-gold-light);
}

.product-image-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image-container img {
    transform: scale(1.06);
}

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-saffron);
    color: #fff;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
}

.product-weight {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(5, 43, 25, 0.85);
    color: #fff;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    backdrop-filter: blur(2px);
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-family: var(--font-subheading);
    font-size: 1.3rem;
    color: var(--color-crimson);
    margin-bottom: 8px;
}

.product-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.product-price span {
    font-size: 0.75rem;
    color: #888;
}

.product-price strong {
    font-size: 1.4rem;
    color: var(--color-charcoal);
    font-weight: 700;
}

.quantity-controller {
    display: flex;
    align-items: center;
    background: var(--color-ivory);
    border: 1px solid rgba(5, 43, 25, 0.15);
    border-radius: 30px;
    overflow: hidden;
}

.qty-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--color-crimson);
    font-weight: bold;
    font-size: 1rem;
}

.qty-btn:hover {
    background: rgba(5, 43, 25, 0.05);
}

.qty-val {
    width: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.add-to-cart-btn {
    background: var(--color-crimson);
    color: #fff;
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.add-to-cart-btn:hover {
    background: var(--color-saffron);
}

.pricing-notice {
    margin-top: 40px;
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

/* Slide Shopping Cart Drawer */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 24, 14, 0.5);
    backdrop-filter: blur(4px);
    z-index: 110;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.cart-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: #fff;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    z-index: 120;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    padding: 25px;
    background: var(--color-crimson);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid var(--color-gold);
}

.cart-header h3 {
    font-family: var(--font-subheading);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-btn {
    font-size: 2.2rem;
    color: #fff;
    line-height: 1;
}

.close-btn:hover {
    color: var(--color-gold);
}

.cart-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.cart-empty-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-grow: 1;
    gap: 15px;
    color: #888;
}

.empty-icon {
    font-size: 3.5rem;
    color: var(--color-gold-light);
}

.cart-items-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-info h4 {
    font-size: 0.95rem;
    color: var(--color-crimson);
    margin-bottom: 2px;
}

.cart-item-info p {
    font-size: 0.85rem;
    color: #666;
}

.cart-item-remove {
    color: #c93b2b;
    font-size: 0.9rem;
    background: transparent;
}

.cart-item-remove:hover {
    color: #ff0000;
}

/* Delivery Details UI */
.cart-delivery-section {
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 20px;
    margin-bottom: 25px;
}

.cart-delivery-section h4 {
    font-family: var(--font-subheading);
    font-size: 1.1rem;
    color: var(--color-crimson);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #555;
}

.form-group textarea {
    width: 100%;
    border: 1px solid rgba(5, 43, 25, 0.2);
    border-radius: 8px;
    padding: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    resize: none;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--color-saffron);
}

.error-msg {
    color: #c93b2b;
    font-size: 0.75rem;
    margin-top: 4px;
}

.partner-selector h5 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
}

.partner-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.partner-option {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 12px 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.partner-option:hover {
    border-color: var(--color-saffron);
    background: rgba(10, 92, 54, 0.02);
}

.partner-option.active {
    border-color: var(--color-saffron);
    background: rgba(10, 92, 54, 0.04);
}

.partner-header {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-crimson);
}

.partner-time {
    font-size: 0.75rem;
    color: #666;
    margin-top: 3px;
    display: block;
}

/* Pricing Summary Box */
.cart-summary-section {
    background: var(--color-ivory);
    border: 1px solid rgba(5, 43, 25, 0.1);
    padding: 20px;
    border-radius: 12px;
    margin-top: auto;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.summary-line.grand-total {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-crimson);
    margin-top: 10px;
    margin-bottom: 15px;
}

.checkout-btn {
    justify-content: center;
}

/* Live Order Tracker Section */
.tracker-section {
    padding: 100px 0;
    background: #FFF;
    border-top: 1px solid rgba(0,0,0,0.04);
}

.tracker-card {
    background: var(--color-ivory);
    border: 2px solid var(--color-gold-light);
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    padding: 40px;
    max-width: 950px;
    margin: 0 auto;
}

.tracker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.order-meta h3 {
    font-family: var(--font-subheading);
    color: var(--color-crimson);
    font-size: 1.3rem;
}

.order-time {
    font-size: 0.85rem;
    color: #666;
}

.tracker-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 40px;
}

.tracker-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-container {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.visual-container h4 {
    font-family: var(--font-subheading);
    color: var(--color-crimson);
    font-size: 1.25rem;
    margin-top: 20px;
    margin-bottom: 8px;
}

.visual-container p {
    font-size: 0.85rem;
    color: #666;
}

/* Pot Steamer Animation styling */
.steamer-pot {
    position: relative;
    width: 120px;
    height: 100px;
    margin: 0 auto;
}

.steam-vapors {
    position: absolute;
    top: -25px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-around;
}

.vapor {
    width: 4px;
    height: 25px;
    background: rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    animation: steamFloat 2s infinite ease-in-out;
}

.vapor:nth-child(2) { animation-delay: 0.4s; height: 35px; }
.vapor:nth-child(3) { animation-delay: 0.8s; }

.pot-lid {
    width: 100px;
    height: 15px;
    background: radial-gradient(circle, #E6C280, var(--color-gold));
    border-radius: 15px 15px 0 0;
    margin: 0 auto;
    border-bottom: 2px solid var(--color-gold-dark);
}

.pot-body {
    width: 120px;
    height: 70px;
    background: linear-gradient(90deg, var(--color-gold-dark) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    border-radius: 0 0 40px 40px;
    position: relative;
    border-top: 1px solid #FFF;
}

.pot-handle {
    position: absolute;
    top: 15px;
    width: 15px;
    height: 25px;
    border: 3px solid var(--color-gold-dark);
    background: transparent;
}

.pot-handle.left {
    left: -14px;
    border-radius: 15px 0 0 15px;
    border-right: none;
}

.pot-handle.right {
    right: -14px;
    border-radius: 0 15px 15px 0;
    border-left: none;
}

.pot-flame {
    width: 40px;
    height: 15px;
    background: var(--color-saffron);
    border-radius: 50% 50% 0 0;
    margin: 8px auto 0;
    animation: flamePulse 0.4s infinite alternate;
}

/* Timeline status tracker steps */
.tracker-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-step {
    display: flex;
    gap: 15px;
    position: relative;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 35px;
    bottom: -20px;
    width: 2px;
    background: rgba(0,0,0,0.08);
}

.timeline-step:last-child::before {
    display: none;
}

.step-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #EAEAE6;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border: 2px solid #E0E0DB;
    z-index: 5;
    transition: var(--transition-smooth);
}

.timeline-step.active .step-icon {
    background: var(--color-saffron);
    color: #fff;
    border-color: var(--color-saffron-dark);
    box-shadow: 0 4px 10px rgba(10, 92, 54, 0.2);
}

.timeline-step.active::before {
    background: var(--color-saffron);
}

.timeline-step.completed::before {
    background: var(--color-leaf-green);
}

.timeline-step.completed .step-icon {
    background: var(--color-leaf-green);
    color: #fff;
    border-color: var(--color-leaf-green-light);
}

.step-content h4 {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 2px;
}

.timeline-step.active .step-content h4 {
    color: var(--color-crimson);
    font-weight: 700;
}

.step-content p {
    font-size: 0.85rem;
    color: #888;
}

.timeline-step.active .step-content p {
    color: var(--color-charcoal);
}

/* Delivery Rider Details Overlay */
.delivery-rider-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 1px solid var(--color-gold-light);
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    box-shadow: var(--shadow-soft);
}

.rider-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-saffron);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.rider-info {
    flex-grow: 1;
}

.rider-info h4 {
    font-size: 0.95rem;
    color: var(--color-crimson);
    margin-bottom: 2px;
}

.rider-info p {
    font-size: 0.8rem;
    color: #666;
}

.eta-text {
    margin-top: 4px;
    color: var(--color-leaf-green) !important;
}

/* Review Cards Grid Styling */
.reviews-section {
    padding: 100px 0;
    background: var(--color-ivory);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(5, 43, 25, 0.04);
}

.stars {
    color: var(--color-gold);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.review-card p {
    font-size: 0.95rem;
    color: var(--color-charcoal);
    font-style: italic;
    margin-bottom: 25px;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-initials {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.reviewer-initials.P { background-color: var(--color-saffron); }
.reviewer-initials.M { background-color: var(--color-crimson); }
.reviewer-initials.V { background-color: var(--color-gold-dark); }

.reviewer-meta h4 {
    font-size: 0.95rem;
    color: var(--color-crimson);
}

.reviewer-meta span {
    font-size: 0.75rem;
    color: #888;
}

/* Hidden Administrative Console */
.admin-panel {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 100;
}

.admin-toggle-btn {
    width: 45px;
    height: 45px;
    background: var(--color-charcoal);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
}

.badge-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-saffron);
}

.admin-toggle-btn:hover {
    transform: rotate(45deg);
    background: var(--color-saffron);
}

.admin-window {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 320px;
    background: #fff;
    border: 2px solid var(--color-gold);
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.admin-header {
    background: var(--color-charcoal);
    color: #fff;
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--color-gold);
}

.admin-header h4 {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.close-admin {
    color: #aaa;
    font-size: 1.4rem;
}

.close-admin:hover {
    color: #fff;
}

.admin-body {
    padding: 18px;
}

.admin-intro {
    font-size: 0.75rem;
    color: #777;
    margin-bottom: 15px;
}

.sim-group {
    margin-bottom: 18px;
}

.sim-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-crimson);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}

.btn-status {
    text-align: left;
    padding: 6px 12px;
    border: 1px solid rgba(0,0,0,0.08);
    font-size: 0.8rem;
    border-radius: 4px;
    background: var(--color-ivory);
}

.btn-status.active {
    background: var(--color-saffron);
    color: #fff;
    border-color: var(--color-saffron-dark);
}

.btn-action {
    background: var(--color-ivory);
    border: 1px solid rgba(5, 43, 25, 0.2);
    color: var(--color-crimson);
    font-weight: 600;
    margin-bottom: 6px;
}

.btn-action:hover:not(:disabled) {
    background: var(--color-crimson);
    color: #fff;
}

.btn-action:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-danger {
    background: rgba(201, 59, 43, 0.1);
    border: 1px solid rgba(201, 59, 43, 0.2);
    color: #c93b2b;
}

.btn-danger:hover {
    background: #c93b2b;
    color: #fff;
}

/* Toast Notifications styling */
.toast-container {
    position: fixed;
    top: 95px;
    right: 25px;
    z-index: 150;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
    width: 100%;
}

.toast {
    background: #fff;
    border-left: 4px solid var(--color-saffron);
    box-shadow: var(--shadow-medium);
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInLeft 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: var(--transition-smooth);
}

.toast.success {
    border-left-color: var(--color-leaf-green);
}

.toast-icon {
    font-size: 1.2rem;
}

.toast.success .toast-icon { color: var(--color-leaf-green); }
.toast.info .toast-icon { color: var(--color-saffron); }

.toast-msg {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Footer Section */
.main-footer {
    background: var(--color-crimson-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
    border-top: 4px solid var(--color-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.brand-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.brand-info p {
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--color-gold);
    color: var(--color-crimson);
}

.footer-col h4 {
    font-family: var(--font-subheading);
    color: var(--color-gold);
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.links-col a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.cities-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 30px;
    font-size: 0.85rem;
}

.designed-text {
    color: var(--color-gold);
    font-size: 0.75rem;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes steamFloat {
    0% { transform: translateY(0) scaleX(1); opacity: 0; }
    30% { opacity: 0.6; }
    80% { transform: translateY(-20px) scaleX(1.3); opacity: 0; }
    100% { transform: translateY(-20px) scaleX(1.3); opacity: 0; }
}

@keyframes flamePulse {
    0% { transform: scaleY(1); background: var(--color-saffron); }
    100% { transform: scaleY(1.3); background: #FF8C00; }
}

@keyframes rotateSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes floatAnimation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; box-shadow: var(--shadow-glow); }
    100% { transform: scale(1); opacity: 0.8; }
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-5px); }
}

@keyframes slideInLeft {
    0% { transform: translateX(100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes bounceWave {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

/* Responsive Rules */
@media (max-width: 991px) {
    .hero-title { font-size: 2.8rem; }
    .heritage-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; } /* Mobile Menu toggle simplified */
    .hero-title { font-size: 2.3rem; }
    .hero-tagline { font-size: 1.15rem; }
    .hero-features { flex-direction: column; gap: 15px; }
    .hero-ctas { flex-direction: column; width: 100%; }
    .hero-ctas .btn { width: 100%; }
    .city-buttons { grid-template-columns: 1fr; }
    .tracker-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ==========================================================================
   Modak Darbar - Brand Logo & Sizing Styles
   ========================================================================== */
.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

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

.footer-logo-container {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* ==========================================================================
   Modak Darbar - Interactive Product Card & Package Selector
   ========================================================================== */
.product-options {
    margin: 15px 0 20px;
    padding: 12px;
    background: rgba(14, 92, 54, 0.04);
    border-radius: 8px;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.option-group {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.option-group:last-child {
    margin-bottom: 0;
}

.option-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-crimson);
}

.option-select {
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid var(--color-gold);
    background: #fff;
    color: var(--color-charcoal);
    outline: none;
    cursor: pointer;
    font-weight: 600;
}

.coming-soon-badge {
    background: #777 !important;
    color: #fff !important;
}

.coming-soon-card {
    opacity: 0.75;
    filter: grayscale(40%);
}

.coming-soon-btn {
    background: #ddd !important;
    color: #666 !important;
    border: none !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
}

/* ==========================================================================
   Modak Darbar - Process Gallery Liveness Section
   ========================================================================== */
.liveness-section {
    padding: 100px 0;
    background: var(--color-ivory);
    text-align: center;
    position: relative;
}

.liveness-player-wrapper {
    max-width: 850px;
    margin: 40px auto 0;
    background: #fff;
    border-radius: 20px;
    border: 3px solid var(--color-gold);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    position: relative;
}

.liveness-player-header {
    background: var(--color-crimson);
    color: #fff;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    border-bottom: 2px solid var(--color-gold);
}

.liveness-player-header .live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #ff4d4d;
}

.liveness-player-header .live-dot {
    width: 10px;
    height: 10px;
    background: #ff4d4d;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff4d4d;
    animation: pulseGlow 1.5s infinite ease-in-out;
}

.liveness-slideshow {
    height: 480px;
    position: relative;
    background: #000;
}

.liveness-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.liveness-slide.active {
    opacity: 1;
    z-index: 2;
}

.liveness-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.liveness-caption {
    background: linear-gradient(to top, rgba(5, 43, 25, 0.95) 0%, rgba(5, 43, 25, 0.4) 60%, transparent 100%);
    color: #fff;
    padding: 40px 30px 25px;
    z-index: 2;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.liveness-caption h3 {
    font-family: var(--font-subheading);
    color: var(--color-gold-light);
    margin-bottom: 6px;
    font-size: 1.35rem;
}

.liveness-caption p {
    font-size: 0.95rem;
    color: #eaeaea;
}

.liveness-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    background: var(--color-crimson-dark);
    z-index: 3;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.liveness-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.liveness-dot.active {
    background: var(--color-gold);
    transform: scale(1.3);
    box-shadow: 0 0 8px var(--color-gold);
}

/* ==========================================================================
   Modak Darbar - Order Flow Section
   ========================================================================== */
.order-flow-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.flow-card {
    background: var(--color-ivory);
    padding: 35px 25px;
    border-radius: 15px;
    border: 1px solid var(--color-gold-light);
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.flow-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-gold);
}

.flow-num {
    width: 45px;
    height: 45px;
    background: var(--color-gold);
    color: var(--color-crimson-dark);
    font-weight: 800;
    font-size: 1.3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.3);
}

.flow-card h3 {
    font-family: var(--font-subheading);
    color: var(--color-crimson);
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.flow-card p {
    font-size: 0.9rem;
    color: #4f4f4f;
    line-height: 1.5;
}

/* ==========================================================================
   Modak Darbar - Secure Payments Section
   ========================================================================== */
.payments-container {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px dashed var(--color-gold-light);
    text-align: center;
}

.payments-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 700;
}

.payment-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.payment-badge-icon {
    font-size: 2.2rem;
    color: var(--color-crimson);
    transition: var(--transition-smooth);
    opacity: 0.9;
}

.payment-badge-icon:hover {
    color: var(--color-gold-dark);
    transform: translateY(-3px);
    opacity: 1;
}

.payment-trust-tag {
    font-size: 0.8rem;
    color: #666;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
}

.payment-trust-tag i {
    color: #12824C;
}

/* ==========================================================================
   Modak Darbar - Discreet Cancellation Policy & Modal
   ========================================================================== */
.cancellation-link-container {
    margin-top: 25px;
    font-size: 0.75rem;
    text-align: center;
}

.cancellation-link {
    color: #999;
    text-decoration: underline;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.cancellation-link:hover {
    color: var(--color-gold);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 24, 14, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    background: #fff;
    border: 3px solid var(--color-gold);
    border-radius: 18px;
    max-width: 500px;
    width: 100%;
    padding: 35px;
    box-shadow: var(--shadow-medium);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.8rem;
    color: #666;
    cursor: pointer;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--color-crimson);
}

.modal-title {
    font-family: var(--font-heading);
    color: var(--color-crimson);
    font-size: 1.6rem;
    margin-bottom: 15px;
    border-bottom: 2px dashed var(--color-gold-light);
    padding-bottom: 12px;
}

.modal-body p {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 12px;
    line-height: 1.5;
}

.modal-body ul {
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
}

.form-group-modal {
    margin-bottom: 15px;
    text-align: left;
}

.form-group-modal label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-crimson-dark);
}

.form-group-modal input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--color-gold);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    background: #fafafa;
}

.form-group-modal input:focus {
    background: #fff;
    border-color: var(--color-saffron-light);
}

@media (max-width: 991px) {
    .flow-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .liveness-slideshow { height: 380px; }
    .category-filter-bar { gap: 8px; }
    .category-btn { font-size: 0.8rem; padding: 8px 14px; }
}

@media (max-width: 576px) {
    .flow-grid { grid-template-columns: 1fr; }
    .liveness-slideshow { height: 280px; }
    .liveness-caption h3 { font-size: 1.15rem; }
    .liveness-caption p { font-size: 0.85rem; }
    .category-filter-bar { flex-direction: column; }
    .category-btn { width: 100%; justify-content: center; }
}

/* ── Category Filter Bar ── */
.category-filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 25px auto 20px;
    padding: 10px 15px;
    background: rgba(5, 43, 25, 0.06);
    border-radius: 16px;
    max-width: 700px;
    border: 1px solid rgba(197, 160, 89, 0.15);
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border: 2px solid rgba(197, 160, 89, 0.25);
    border-radius: 12px;
    background: var(--color-cream);
    color: var(--color-deep-green);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    border-color: var(--color-gold);
    background: rgba(197, 160, 89, 0.1);
    transform: translateY(-1px);
}

.category-btn.active {
    background: var(--color-deep-green);
    color: var(--color-gold);
    border-color: var(--color-gold);
    box-shadow: 0 4px 15px rgba(5, 43, 25, 0.3);
}

.category-btn i {
    font-size: 0.95rem;
}

/* ── Product Type Badge ── */
.product-type-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: var(--font-body);
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 3;
    backdrop-filter: blur(6px);
}

.product-type-badge.type-steamed {
    background: rgba(220, 80, 20, 0.88);
    color: #fff;
    box-shadow: 0 2px 10px rgba(220, 80, 20, 0.3);
}

.product-type-badge.type-frozen {
    background: rgba(30, 120, 180, 0.88);
    color: #fff;
    box-shadow: 0 2px 10px rgba(30, 120, 180, 0.3);
}

/* Steamed card subtle accent */
.product-card.type-steamed {
    border-left: 4px solid #dc5014;
}

.product-card.type-frozen {
    border-left: 4px solid #1e78b4;
}

/* ── Footer Logo Container ── */
.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-gold);
}

