/* Ultra-Premium Gulab Chicken (गुलाब चिकन) eCommerce Design System */
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Mukta:wght@400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary-crimson: #6B0A19;
    --primary-crimson-dark: #520511;
    --primary-crimson-deep: #3A030C;
    --primary-crimson-footer: #200307;
    --accent-gold: #FFB800;
    --accent-gold-dark: #E5A700;
    --licious-red: #6B0A19;
    --licious-dark-red: #520511;
    --primary-light: #FFF8F0;
    --cream-bg: #FAF5EE;
    --card-cream: #FFFBF7;
    --text-dark: #1A1A1A;
    --text-muted: #6B7280;
    --text-grey: #64748b;
    --bg-light: #FAF8F5;
    --white: #ffffff;
    --border-color: #EAE0D5;
    --border-subtle: #F2E8DC;
}

/* Universal Cross-Browser Box Sizing & Font Adjustments */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Mukta', 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: transparent;
    padding-bottom: calc(75px + env(safe-area-inset-bottom, 0px)); /* Space for Mobile Bottom Nav */
}

/* Cross-Browser Responsive Media */
img, svg, video, canvas, audio, iframe {
    max-width: 100%;
    height: auto;
}

/* Universal Cross-Browser Scrollbars (Firefox, Chrome, Edge, Safari, Opera) */
* {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

@media (min-width: 769px) {
    body { padding-bottom: 0; }
}

/* Keyframe Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.35); }
    100% { transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0.3; }
    to { opacity: 1; }
}

@keyframes modalPop {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Smooth Continuous Running Ticker Animation */
@keyframes tickerMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.pulse-anim { animation: pulse 0.4s ease-in-out; }

/* Google Translate Dropdown Styling */
.skiptranslate iframe { display: none !important; }
body { top: 0 !important; }

.language-dropdown-wrapper {
    overflow: hidden;
    display: flex;
    align-items: center;
}
.goog-te-gadget-simple {
    background-color: var(--white) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
    padding: 6px 10px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    cursor: pointer;
    display: flex !important;
    align-items: center;
}
.goog-te-gadget-icon { display: none !important; }
.goog-te-gadget-simple img { display: none !important; }
.goog-te-menu-value { color: var(--text-dark) !important; margin: 0 !important; padding: 0 !important; }
.goog-te-menu-value span { color: var(--text-dark) !important; border-left: none !important; }
.goog-te-menu-value span:nth-child(3) { display: none; }

/* --- HEADER & TOP ANNOUNCEMENT RUNNING TICKER STRIP --- */
header {
    background-color: var(--white);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-strip {
    background: linear-gradient(90deg, #090d16 0%, #0f172a 50%, #1e1b4b 100%);
    font-size: 13px;
    padding: 8px 0;
    color: #f1f5f9;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    width: 100%;
}

.top-announcement-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.top-announcement-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: tickerMarquee 18s linear infinite;
    will-change: transform;
}

.top-announcement-track:hover {
    animation-play-state: paused;
}

.top-announcement-group {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 16px;
    white-space: nowrap;
}

.top-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.badge-lightning {
    background: rgba(245, 158, 11, 0.18);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.35);
}
.badge-lightning i { color: #f59e0b; font-size: 13px; }

.badge-shield {
    background: rgba(16, 185, 129, 0.18);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.35);
}
.badge-shield i { color: #10b981; font-size: 13px; }

.badge-gift {
    background: rgba(209, 18, 67, 0.2);
    color: #f43f5e;
    border: 1px solid rgba(209, 18, 67, 0.4);
}
.badge-gift i { color: var(--licious-red); font-size: 13px; }

.strip-divider {
    color: #475569;
    font-size: 12px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    white-space: nowrap;
    width: 100%;
}

@media (min-width: 769px) {
    .logo-section {
        width: auto;
        justify-content: flex-start;
        gap: 20px;
    }
}

.header-tools-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.logo h1 {
    font-size: 28px;
    font-weight: 900;
    color: var(--licious-red);
    letter-spacing: -0.8px;
    margin-right: 5px;
}

.location-picker {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 800;
    background: #f1f5f9;
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.2s;
}

.location-picker:hover {
    background: #e2e8f0;
}

.loc-icon-badge {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fee2e2;
    color: var(--licious-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.search-bar {
    flex-grow: 1;
    min-width: 240px;
    max-width: 540px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 12px 18px 12px 42px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background-color: #f8fafc;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s;
}

.search-bar input:focus {
    outline: none;
    background-color: var(--white);
    border-color: var(--licious-red);
    box-shadow: 0 0 0 4px rgba(209, 18, 67, 0.12);
}

.search-bar i.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
}

.nav-item {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.nav-item:hover { color: var(--licious-red); }

.admin-badge-btn {
    background: #fee2e2;
    color: var(--licious-red) !important;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 800 !important;
}

.cart-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fdf2f4;
    color: var(--licious-red) !important;
    padding: 8px 18px;
    border-radius: 8px;
    border: 1px solid #fecdd3;
    transition: background 0.2s;
}

.cart-btn:hover { background: #fce7f3; }

.cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-badge {
    position: absolute;
    top: -9px;
    right: -12px;
    background: var(--licious-red);
    color: white;
    border-radius: 50%;
    padding: 2px 7px;
    font-size: 11px;
    font-weight: 900;
}

/* --- CITY SELECTOR MODAL --- */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-backdrop.active {
    display: flex;
}

.modal-card {
    background: #fff;
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    overflow: hidden;
    animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 { font-size: 18px; font-weight: 800; color: var(--text-dark); display: flex; align-items: center; gap: 8px; }
.close-modal-btn { background: none; border: none; font-size: 24px; color: #94a3b8; cursor: pointer; }
.close-modal-btn:hover { color: var(--text-dark); }

.modal-body { padding: 24px; }

.detect-loc-btn {
    width: 100%;
    padding: 12px;
    background: #fdf2f4;
    color: var(--licious-red);
    border: 1px solid #fecdd3;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    transition: background 0.2s;
}

.detect-loc-btn:hover { background: #fce7f3; }

.city-pill-label { font-size: 12px; font-weight: 800; text-transform: uppercase; color: var(--text-grey); margin-bottom: 12px; }

.city-chips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.city-chip {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.city-chip:hover, .city-chip.active {
    border-color: var(--licious-red);
    background: #fdf2f4;
    color: var(--licious-red);
}

/* --- STICKY FLOATING MINI-CART BAR --- */
.sticky-cart-bar {
    position: fixed;
    bottom: -80px;
    left: 0;
    right: 0;
    background: #0f172a;
    color: #fff;
    padding: 14px 0;
    z-index: 1500;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transition: bottom 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-cart-bar.visible { bottom: 0; }

@media (max-width: 768px) {
    .sticky-cart-bar.visible { bottom: calc(62px + env(safe-area-inset-bottom, 0px)); }
}

.sticky-cart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-cart-info { display: flex; align-items: center; gap: 16px; }

.sticky-cart-badge {
    background: var(--licious-red);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sticky-cart-text { font-size: 14px; font-weight: 600; color: #cbd5e1; }

.sticky-cart-btn {
    background: var(--licious-red);
    color: #fff;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* --- MOBILE BOTTOM NAVIGATION --- */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: calc(62px + env(safe-area-inset-bottom, 0px)) !important;
        background: #ffffff !important;
        border-top: 1px solid var(--border-color) !important;
        z-index: 99999 !important;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1) !important;
        align-items: center !important;
        justify-content: space-around !important;
        padding: 0 0 env(safe-area-inset-bottom, 0px) 0 !important;
    }

    .mobile-nav-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 3px !important;
        text-decoration: none !important;
        color: #64748b !important;
        font-size: 11px !important;
        font-weight: 800 !important;
        flex: 1 !important;
        height: 100% !important;
        transition: color 0.2s !important;
    }

    .mobile-nav-item i {
        font-size: 18px !important;
    }

    .mobile-nav-item.active {
        color: var(--licious-red) !important;
    }

    .mobile-cart-badge {
        position: absolute;
        top: -5px;
        right: -9px;
        background: var(--licious-red);
        color: #fff;
        border-radius: 50%;
        padding: 1px 5px;
        font-size: 10px;
        font-weight: 900;
    }
}

/* --- FULL-WIDTH EDGE-TO-EDGE HERO BANNER --- */
.hero-banner-wrapper {
    width: 100%;
    background-color: #0f172a;
    margin-bottom: 24px;
}

.hero-banner-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    height: 450px;
}

.hero-slide {
    display: none;
    position: relative;
    width: 100%;
    height: 450px;
}

.hero-slide.active {
    display: block;
    animation: fadeIn 0.6s ease-in-out;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,23,42,0.94) 0%, rgba(15,23,42,0.72) 50%, rgba(15,23,42,0.2) 100%);
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.hero-content {
    max-width: 620px;
    color: #fff;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(209, 18, 67, 0.95), rgba(158, 11, 48, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: 0.6px;
    box-shadow: 0 4px 14px rgba(209, 18, 67, 0.4);
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.hero-tag i {
    font-size: 15px;
    color: #fbbf24;
}

.hero-content h1, .hero-content h2 {
    font-size: 38px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-shadow: 0 3px 15px rgba(0,0,0,0.8);
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: block !important;
    width: 100%;
}

.hero-highlight {
    background: linear-gradient(135deg, #ff4b78 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    display: inline !important;
    white-space: normal;
}

.hero-content p {
    font-size: 15px;
    color: #f1f5f9;
    margin-bottom: 24px;
    line-height: 1.55;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    max-width: 560px;
    display: block !important;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d11243 0%, #9e0b30 100%);
    color: #fff;
    text-decoration: none;
    padding: 13px 32px;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 800;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 25px rgba(209, 18, 67, 0.45);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-btn:hover {
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(209, 18, 67, 0.6);
}

.hero-btn i {
    transition: transform 0.2s ease;
}

.hero-btn:hover i {
    transform: translateX(4px);
}

/* Smooth Hero Text Swap Animations */
@keyframes heroFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeOutUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.hero-text-in {
    animation: heroFadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-text-out {
    animation: heroFadeOutUp 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* --- PROMO COUPONS TICKER --- */
.promo-coupon-bar {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
    margin-bottom: 35px;
}

.promo-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.promo-scroll::-webkit-scrollbar { display: none; }

.coupon-chip {
    background: #fff5f7;
    border: 1px dashed var(--licious-red);
    padding: 10px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: transform 0.2s;
    min-width: 260px;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.coupon-chip:hover { transform: translateY(-2px); }

.coupon-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #d11243 0%, #9e0b30 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(209, 18, 67, 0.25);
}

.coupon-text .code-title { font-size: 14px; font-weight: 800; color: var(--text-dark); }
.coupon-text .code-desc { font-size: 11px; color: var(--text-grey); margin-top: 2px; }

.coupon-apply-btn {
    margin-left: auto;
    background: var(--text-dark);
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

/* --- REALISTIC 3D GLASSMORPHISM TRUST BADGES --- */
.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
    margin-bottom: 45px;
}

.trust-badge-item {
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-badge-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.07);
}

.badge-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    position: relative;
}

/* 3D Realistic Glossy Gradient Icon Badges */
.badge-3d-green {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(16, 185, 129, 0.35);
    border: 1px solid rgba(255,255,255,0.25);
}

.badge-3d-red {
    background: linear-gradient(135deg, #f43f5e 0%, #be123c 100%);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(244, 63, 94, 0.35);
    border: 1px solid rgba(255,255,255,0.25);
}

.badge-3d-amber {
    background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(245, 158, 11, 0.35);
    border: 1px solid rgba(255,255,255,0.25);
}

.badge-3d-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #0e7490 100%);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(6, 182, 212, 0.35);
    border: 1px solid rgba(255,255,255,0.25);
}

.trust-badge-item h4 { font-size: 15px; font-weight: 800; color: var(--text-dark); }
.trust-badge-item p { font-size: 12px; color: var(--text-grey); margin-top: 3px; }

/* --- LAYOUT & HEADERS --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
}





.section-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-grey);
    margin-top: 4px;
}

.view-all-link {
    color: var(--licious-red);
    font-weight: 800;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* --- CATEGORIES GRID --- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 20px;
    margin-bottom: 55px;
}

.category-card {
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    background: var(--white);
    padding: 24px 16px 18px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    border-color: #fca5a5;
}

.category-img-box {
    width: 100px;
    height: 100px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.category-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.cat-explore-btn {
    font-size: 12px;
    font-weight: 800;
    color: var(--licious-red);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

/* --- DAILY DEAL BANNER --- */
.daily-deal-banner {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 16px;
    padding: 35px 40px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 55px;
    box-shadow: 0 10px 25px rgba(15,23,42,0.15);
}

.deal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f59e0b;
    color: #0f172a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 12px;
}

.deal-content h2 { font-size: 26px; font-weight: 900; margin-bottom: 8px; }
.deal-content p { color: #94a3b8; font-size: 14px; margin-bottom: 20px; max-width: 600px; }

.deal-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
}

.time-box {
    background: #334155;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 900;
    color: #f1f5f9;
}

.btn-deal {
    background: var(--licious-red);
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.btn-deal:hover { background: var(--licious-dark-red); }

/* --- PRODUCT CARDS --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 55px;
}

.product-card {
    background-color: var(--white);
    border-radius: 14px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure card stretches to grid cell height */
    transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-img { transform: scale(1.04); }

.tag-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(15,23,42,0.85);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 4px;
}

.wishlist-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.92);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.wishlist-icon:hover { transform: scale(1.1); }

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}





.weight-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-grey);
    margin-bottom: 16px;
    font-weight: 700;
    background: #f8fafc;
    padding: 7px 12px;
    border-radius: 8px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price-box { display: flex; align-items: baseline; gap: 8px; }

.price {
    font-size: 22px;
    font-weight: 900;
    color: var(--licious-red);
}

.mrp {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: line-through;
}

.btn-add {
    background-color: var(--licious-red);
    color: var(--white);
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.1s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-add:hover { background-color: var(--licious-dark-red); }
.btn-add:active { transform: scale(0.95); }

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    background: #fff;
    padding: 50px 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.stars { color: #fbbf24; margin-bottom: 12px; font-size: 16px; }

.review-text {
    font-size: 14px;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer-info { display: flex; align-items: center; gap: 12px; }

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--licious-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.reviewer-info .name { font-weight: 800; font-size: 14px; color: var(--text-dark); }
.reviewer-info .location { font-size: 12px; color: var(--text-grey); }

/* --- FOOTER --- */
footer {
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
    padding: 50px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-logo h1 {
    font-size: 30px;
    color: var(--licious-red);
    font-weight: 900;
    margin-bottom: 15px;
}

.footer-app-links img {
    height: 40px;
    margin-right: 10px;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    color: var(--text-grey);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--licious-red); }

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    font-size: 13px;
    color: var(--text-grey);
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
}

/* ==========================================================================
   SINGLE-LINE HORIZONTAL CAROUSELS FOR MOBILE & TABLET (UP TO 1200px)
   ========================================================================== */

@media (max-width: 1200px) {
    /* category-grid: restored to original desktop behaviour for tablet/desktop */

    /* MANDATORY SINGLE LINE HORIZONTAL CAROUSEL FOR TRUST BADGES */
    .trust-badges-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 16px !important;
        padding-bottom: 12px !important;
        margin-bottom: 35px !important;
        -webkit-overflow-scrolling: touch !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .trust-badges-grid::-webkit-scrollbar { display: none !important; }

    .trust-badge-item {
        flex: 0 0 255px !important;
        min-width: 255px !important;
        max-width: 255px !important;
        scroll-snap-align: start !important;
    }
}

@media (max-width: 992px) {
    .hero-banner-container, .hero-slide { height: 320px; }
    .hero-overlay { padding: 0 40px; }
    .hero-content h2 { font-size: 30px; }
    
    .daily-deal-banner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 30px 24px;
    }
    .deal-timer { justify-content: center; }
}

/* --- MOBILE ONLY: 2-column category grid (phones) --- */
@media (max-width: 600px) {
    .category-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        overflow-x: unset !important;
        gap: 12px !important;
        padding-bottom: 10px !important;
        margin-bottom: 28px !important;
    }

    .category-card {
        flex: unset !important;
        min-width: unset !important;
        max-width: unset !important;
        padding: 16px 10px 14px !important;
        border-radius: 14px !important;
    }
}

@media (max-width: 768px) {
    /* Header & Navigation */
    .nav-container {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 12px 16px;
    }

    .logo-section {
        justify-content: space-between;
        width: 100%;
    }

    .header-tools-group {
        gap: 6px;
    }
    
    .location-picker {
        padding: 6px 10px;
        font-size: 11px;
        border-radius: 8px;
    }

    .loc-icon-badge {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }

    .language-dropdown-wrapper {
        display: flex !important;
    }

    .goog-te-gadget-simple {
        padding: 5px 8px !important;
        font-size: 11px !important;
        border-radius: 8px !important;
    }

    .search-bar {
        max-width: 100%;
        width: 100%;
    }

    .nav-icons {
        display: none; /* Accessible via Mobile Bottom Nav Bar */
    }

    /* Hero Banner Mobile Adjustments */
    .hero-banner-container, .hero-slide {
        height: 310px;
    }

    .hero-overlay {
        padding: 0 20px;
        background: linear-gradient(180deg, rgba(15,23,42,0.94) 0%, rgba(15,23,42,0.78) 100%);
    }

    .hero-content h1, .hero-content h2 {
        font-size: 21px;
        margin-bottom: 6px;
        line-height: 1.3;
        display: block !important;
    }

    .hero-content p {
        font-size: 12px;
        margin-bottom: 14px;
        line-height: 1.45;
        display: block !important;
    }

    .hero-tag {
        font-size: 10px;
        padding: 4px 12px;
        margin-bottom: 8px;
    }

    .hero-btn {
        padding: 10px 22px;
        font-size: 13px;
    }

    .trust-badge-item {
        flex: 0 0 240px !important;
        min-width: 240px !important;
        max-width: 240px !important;
        padding: 16px !important;
        gap: 12px !important;
        border-radius: 14px !important;
    }

    .badge-icon-wrap {
        width: 44px !important;
        height: 44px !important;
        font-size: 18px !important;
        border-radius: 12px !important;
    }

    .trust-badge-item h4 { font-size: 14px; }
    .trust-badge-item p { font-size: 11px; }

    .category-card {
        flex: 0 0 140px !important;
        min-width: 140px !important;
        max-width: 140px !important;
    }

    .category-img-box {
        width: 75px !important;
        height: 75px !important;
        margin-bottom: 10px !important;
    }

    .category-card h3 { font-size: 14px; }

    /* Product Cards Mobile Grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card { border-radius: 12px; }
    .product-img { height: 135px; }

    .product-info { padding: 12px; }
    
    
    .weight-row { padding: 4px 8px; font-size: 10px; margin-bottom: 10px; }
    
    .price-row { flex-direction: column; align-items: flex-start; gap: 8px; }
    .price { font-size: 17px; }
    .btn-add { width: 100%; justify-content: center; padding: 8px; font-size: 12px; }

    .testimonials-section { padding: 30px 16px; }
    .testimonials-grid { grid-template-columns: 1fr; }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-col { padding-left: 0 !important; }
}

@media (max-width: 480px) {
    .trust-badge-item {
        flex: 0 0 220px !important;
        min-width: 220px !important;
        max-width: 220px !important;
    }

    .category-card {
        flex: 0 0 130px !important;
        min-width: 130px !important;
        max-width: 130px !important;
    }
}

/* --- PREMIUM BOXICONS STYLING --- */
i.bx, i.bxs- {
    filter: drop-shadow(0 2px 4px rgba(209, 18, 67, 0.15));
    transition: transform 0.2s ease, filter 0.2s ease;
}

/* Hover effects for interactive icons */
a:hover i.bx, a:hover i.bxs-,
button:hover i.bx, button:hover i.bxs- {
    transform: translateY(-1px);
    filter: drop-shadow(0 4px 6px rgba(209, 18, 67, 0.25));
}

/* Specific vibrant gradients for navigation icons */
.nav-item i.bx {
    background: linear-gradient(135deg, var(--text-dark) 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: none;
}

.nav-item:hover i.bx {
    background: linear-gradient(135deg, var(--licious-red) 0%, #ff7e5f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Exclude icons that need their own color (e.g. inside badges, buttons) */
.badge-3d-green i, .badge-3d-red i, .badge-3d-amber i, .badge-3d-cyan i, 
.coupon-icon-box i, .hero-btn i, .btn-deal i, .btn-add i, .cart-badge, .mobile-cart-badge,
.top-badge i, .sticky-cart-badge i, .admin-badge-btn i, .cart-btn i, .detect-loc-btn i, 
.coupon-chip i, .hero-tag i, .deal-badge i, .tag-badge i {
    background: none;
    -webkit-text-fill-color: initial;
    filter: none;
    color: inherit;
    transform: none !important;
}

/* Fix colors for specific elements to retain visibility */
.tag-badge i.bx-star, .tag-badge i.bxs-star {
    color: #fbbf24 !important;
}

.trust-badge-item .badge-3d-green i,
.trust-badge-item .badge-3d-red i,
.trust-badge-item .badge-3d-amber i,
.trust-badge-item .badge-3d-cyan i {
    color: #ffffff !important;
}

/* --- PREMIUM FORMS & AUTH --- */
.form-control {
    width: 100% !important;
    padding: 14px 16px !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    font-family: inherit !important;
    background-color: #f8fafc !important;
    transition: all 0.3s ease !important;
    outline: none !important;
}
.form-control:focus {
    background-color: var(--white) !important;
    border-color: var(--licious-red) !important;
    box-shadow: 0 0 0 4px rgba(209, 18, 67, 0.1) !important;
}

/* --- CATEGORIES MEGA MENU --- */
.mega-menu-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.mega-menu-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 10px 14px;
    border-radius: 8px;
    transition: background 0.2s;
}

.mega-menu-trigger:hover {
    background: #fdf2f4;
}

.mega-menu-dropdown {
    position: absolute;
    top: 100%;
    left: -100px; /* Adjust based on navbar layout */
    width: 550px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2000;
    overflow: hidden;
}

.mega-menu-wrapper:hover .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(15px); /* small gap */
}

/* Invisible bridge so mouse doesn't fall off */
.mega-menu-wrapper::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.mega-menu-inner {
    display: flex;
    min-height: 350px;
}

/* Left Pane */
.mega-menu-left {
    width: 250px;
    background: #fff;
    border-right: 1px solid var(--border-color);
    padding: 15px 0;
    display: flex;
    flex-direction: column;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 24px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 14px;
    transition: background 0.2s;
}

.mega-menu-item:hover {
    background: #f8fafc;
    color: var(--licious-red);
}

.mega-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.mega-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Pane */
.mega-menu-right {
    flex: 1;
    background: #f8fafc;
    padding: 24px;
}

.sub-cat-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sub-cat-link {
    text-decoration: none;
    color: var(--text-grey);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
    display: inline-block;
}

.sub-cat-link:hover {
    color: var(--licious-red);
}

/* Sub-Categories Premium Grid */
.sub-cat-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.sub-cat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

.sub-cat-card:hover {
    border-color: #fca5a5;
    box-shadow: 0 4px 12px rgba(209, 18, 67, 0.1);
    transform: translateY(-2px);
}

.sub-cat-img-box {
    width: 45px;
    height: 45px;
    border-radius: 6px;
    background: #f1f5f9;
    overflow: hidden;
    flex-shrink: 0;
}

.sub-cat-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-cat-info {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}

.active-hover {
    background: #f8fafc;
    color: var(--licious-red) !important;
    border-right: 3px solid var(--licious-red);
}

.auth-container {
    background: var(--white) !important;
    border-radius: 16px !important;
    border: 1px solid var(--border-color) !important;
    padding: 36px 30px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06) !important;
}

/* Premium Add Button Override */
.btn-add {
    background: linear-gradient(135deg, var(--licious-red) 0%, #ff4b69 100%) !important;
    box-shadow: 0 4px 14px rgba(209, 18, 67, 0.25) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 800 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}
.btn-add:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(209, 18, 67, 0.35) !important;
}

/* Receipt Style Card for Cart */
.receipt-card {
    background: var(--white) !important;
    border-radius: 16px !important;
    border: 1px solid var(--border-color) !important;
    padding: 24px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
}

/* --- PREMIUM PRODUCTS CATALOG & DETAILS --- */
/* Category Tabs */
.category-tabs-bar {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 25px;
    -webkit-overflow-scrolling: touch;
}
.category-tabs-bar::-webkit-scrollbar {
    display: none;
}
.category-tab {
    padding: 10px 22px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-grey);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.category-tab:hover {
    background: #fdf2f4;
    color: var(--licious-red);
    border-color: #fecdd3;
}
.category-tab.active {
    background: var(--licious-red);
    color: var(--white);
    border-color: var(--licious-red);
    box-shadow: 0 4px 12px rgba(209, 18, 67, 0.3);
}

/* Product Details Layout */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .product-detail-layout {
        grid-template-columns: 1fr 1fr;
    }
}
.product-detail-img-box {
    background: #f8fafc;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border-color);
}
.product-detail-img-box img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.product-detail-content {
    padding: 40px;
}
.category-badge {
    display: inline-block;
    padding: 6px 12px;
    background: #f1f5f9;
    color: var(--text-grey);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.product-detail-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.product-detail-desc {
    font-size: 15px;
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Specification Grid */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}
.spec-card {
    background: #f8fafc;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}
.spec-card .label {
    font-size: 12px;
    color: var(--text-grey);
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.spec-card .value {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-dark);
}

/* Price & Buy Box */
.price-buy-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: #fdf2f4;
    border-radius: 12px;
    border: 1px solid #fecdd3;
    margin-bottom: 30px;
}
.price-large {
    font-size: 36px;
    font-weight: 900;
    color: var(--licious-red);
    line-height: 1;
}
.guarantee-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #ecfdf5;
    border-radius: 12px;
    border: 1px solid #d1fae5;
}

.product-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 40px;
}

.product-desc {
    font-size: 13px;
    color: var(--text-grey);
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 38px;
}

@media (max-width: 768px) {
    .product-title {
        font-size: 13px;
        height: 34px;
        -webkit-line-clamp: 2;
    }
    .product-desc {
        display: none;
    }
}

/* --- OTP LOGIN MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-top: max(20px, env(safe-area-inset-top, 0px));
    padding-bottom: max(20px, env(safe-area-inset-bottom, 0px));
}

.modal-overlay.active {
    display: flex !important;
}

.auth-modal {
    background: var(--white);
    width: 100%;
    max-width: 440px;
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.35);
    position: relative;
    animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--text-grey);
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--licious-red);
}

.auth-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-modal-header img {
    height: 40px;
    margin-bottom: 20px;
}

.auth-modal-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.auth-modal-header p {
    font-size: 14px;
    color: var(--text-grey);
}

.auth-input-group {
    margin-bottom: 24px;
    position: relative;
}

.auth-input-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.phone-input-wrapper:focus-within {
    border-color: var(--licious-red);
    box-shadow: 0 0 0 4px rgba(209, 18, 67, 0.1);
}

.country-code {
    background: #f8fafc;
    padding: 14px 16px;
    font-weight: 700;
    color: var(--text-dark);
    border-right: 1px solid #e2e8f0;
}

.phone-input-wrapper input {
    flex: 1;
    border: none;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    outline: none;
    width: 100%;
}

.otp-inputs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

.otp-input {
    width: 50px;
    height: 60px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    color: var(--text-dark);
    transition: all 0.3s;
}

.otp-input:focus {
    border-color: var(--licious-red);
    outline: none;
    box-shadow: 0 0 0 4px rgba(209, 18, 67, 0.15);
    transform: translateY(-2px);
}

.auth-btn {
    width: 100%;
    padding: 16px;
    background: var(--licious-red);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.auth-btn:hover {
    background: var(--licious-dark-red);
}

.auth-btn:active {
    transform: scale(0.98);
}

.auth-btn:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
}

.resend-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--licious-red);
    text-decoration: none;
}

.resend-link.disabled {
    color: var(--text-grey);
    pointer-events: none;
}

.step-hidden {
    display: none !important;
}

/* ==========================================================================
   Comprehensive Mobile Responsiveness Rules (Phones & Tablets)
   ========================================================================== */
@media (max-width: 768px) {
    /* Container & Layout */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Auth Modal Responsiveness */
    .auth-modal {
        width: 92% !important;
        max-width: 420px !important;
        padding: 24px 18px !important;
        border-radius: 16px !important;
    }

    .auth-modal-header h2 {
        font-size: 20px !important;
    }

    /* Custom Google One Tap Slide-In Popup on Mobile */
    #custom-one-tap {
        width: calc(100% - 32px) !important;
        left: 16px !important;
        right: 16px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
    }

    /* User Profile & Account Page Mobile Responsiveness */
    .profile-overview-banner {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 20px !important;
        gap: 16px !important;
    }

    .profile-user-info {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    .profile-stats-group {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .profile-stats-card {
        width: 100% !important;
        min-width: unset !important;
    }

    .profile-grid-container {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .profile-column-left,
    .profile-column-right {
        width: 100% !important;
        min-width: 100% !important;
        padding: 20px 16px !important;
    }
}

@media (max-width: 480px) {
    .auth-modal-header h2 {
        font-size: 18px !important;
    }

    .nav-container {
        padding: 10px 12px !important;
    }

    .otp-input {
        width: 42px !important;
        height: 50px !important;
        font-size: 20px !important;
    }
}

/* ==========================================================================
   Universal Cross-Platform & Cross-Browser Enhancements
   (Chrome, Firefox, Safari, Edge, Opera, Samsung Internet, Android & iOS WebViews)
   ========================================================================== */

/* 1. Prevent Mobile Auto-Zoom on Form Inputs across all WebKit/Blink mobile browsers */
@media screen and (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="number"],
    input[type="search"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* 2. Normalize Form Controls & Buttons across all browser engines */
button, input[type="submit"], input[type="button"], input[type="reset"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    font-family: inherit;
}

/* 3. Smooth Momentum Scrolling for Touch Devices (iOS & Android) */
.scroll-container,
.category-chips,
.hero-slider-container,
.drawer-body,
.mobile-drawer,
.table-responsive,
.city-chips-grid {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
}

/* 4. Eliminate 300ms tap delay & remove grey touch tap highlights */
a, button, input, select, textarea, .location-picker, .mobile-menu-toggle, .mobile-nav-item, .city-chip, .wishlist-icon {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* 5. Prevent Text Selection & Callouts on Interactive Navigation Elements */
.mobile-menu-toggle,
.mobile-nav-item,
.location-picker,
.cart-btn,
.wishlist-icon,
.btn-add,
.city-chip {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* 6. High-DPI & Retina Display Enhancements */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body {
        -webkit-font-smoothing: subpixel-antialiased;
    }
}

/* 7. Prevent Sticky Hover States on Touchscreens */
@media (hover: none) and (pointer: coarse) {
    .btn-add:hover,
    .product-card:hover,
    .city-chip:hover {
        transform: none !important;
        box-shadow: inherit !important;
    }
}

/* ==========================================================================
   GULAB CHICKEN (गुलाब चिकन) PIXEL-TO-PIXEL MASTER COMPONENTS
   ========================================================================== */

/* 1. HERO BANNER SECTION */
.gulab-hero-section {
    background: radial-gradient(ellipse at 68% 40%, #8b1020 0%, #620815 45%, #3d020a 100%);
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
    padding: 52px 0 58px 0;
    min-height: 520px;
}

/* Dot-grid watermark overlay — matches reference */
.gulab-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.045) 1.2px, transparent 1.2px);
    background-size: 26px 26px;
    pointer-events: none;
    z-index: 1;
}

/* Radial glow circle top-right (behind dish) */
.gulab-hero-section::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180, 30, 50, 0.55) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.gulab-hero-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 2;
}

/* Left Hero Content */
.hero-hindi-headline {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 10px;
    letter-spacing: -1px;
    color: #FFFFFF;
    font-family: 'Mukta', 'Plus Jakarta Sans', sans-serif;
    transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-hindi-headline.fade-out {
    opacity: 0;
    transform: translateY(-8px);
}

.hero-hindi-headline .gold-accent {
    color: #FFB800;
    display: block;
}

.hero-dots-subtext {
    font-size: 15.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 24px;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-dots-subtext.fade-out {
    opacity: 0;
}

.hero-dots-subtext .dot-sep {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 184, 0, 0.7);
    flex-shrink: 0;
}

/* 4 Feature Circles in row - Bigger Icons & Compact */
.hero-features-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: nowrap;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    text-align: center;
    cursor: default;
    flex: 0 0 auto;
}

.hero-feature-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFB800;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.hero-feature-icon-circle svg {
    width: 26px;
    height: 26px;
}

.hero-feature-item:hover .hero-feature-icon-circle {
    transform: translateY(-4px);
    border-color: rgba(255, 184, 0, 0.6);
    background: rgba(255, 184, 0, 0.12);
}

.hero-feature-label {
    font-size: 12.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    line-height: 1.2;
}

/* Hero CTA Buttons */
.hero-actions-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.btn-hero-primary {
    background: #E5A700;
    color: #200307;
    font-size: 15px;
    font-weight: 900;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 2px 0 rgba(255,255,255,0.15) inset;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.2px;
}

.btn-hero-primary:hover {
    background: #FFB800;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(229, 167, 0, 0.45);
    color: #200307;
    text-decoration: none;
}

.btn-hero-whatsapp {
    background: rgba(20, 2, 5, 0.8);
    color: #FFFFFF;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    font-size: 14.5px;
    font-weight: 800;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    backdrop-filter: blur(6px);
}

.btn-hero-whatsapp:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-2px);
    color: #FFFFFF;
    text-decoration: none;
}

/* ======================================================
   RIGHT COLUMN: HERO IMAGE SLIDER SHOWCASE (SLIDES WITH IMAGES)
   ====================================================== */
.hero-visual-col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 8px 0;
}

/* Modern rounded rectangular slider card */
.hero-slider-card {
    position: relative;
    width: 100%;
    max-width: 540px;
    height: 380px;
    border-radius: 22px;
    overflow: hidden;
    background: #1F0307;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.55),
        0 0 0 1.5px rgba(255, 255, 255, 0.14),
        0 0 0 4px rgba(255, 184, 0, 0.28);
}

/* Horizontal sliding track */
.hero-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Slide item */
.hero-slide-item {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Slide image */
.hero-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    transition: transform 5s ease-out;
}

.hero-slide-item.active img {
    transform: scale(1.04);
}

/* Gradient caption overlay */
.hero-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 24px 18px 24px;
    background: linear-gradient(to top, rgba(15, 1, 4, 0.94) 0%, rgba(15, 1, 4, 0.6) 65%, transparent 100%);
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 4px;
    pointer-events: none;
    z-index: 5;
}

.hero-slide-tag {
    display: inline-block;
    background: rgba(255, 184, 0, 0.22);
    border: 1px solid rgba(255, 184, 0, 0.65);
    color: #FFB800;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    width: fit-content;
}

.hero-slide-title {
    font-size: 21px;
    font-weight: 900;
    color: #FFFFFF;
    margin: 2px 0 0 0;
    letter-spacing: 0.2px;
    font-family: 'Mukta', 'Outfit', sans-serif;
    line-height: 1.2;
}

.hero-slide-desc {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 600;
}

/* Slider Prev / Next Arrow Buttons */
.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(26, 2, 6, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
    padding: 0;
    outline: none;
}

.hero-slider-btn:hover {
    background: #6B0A19;
    border-color: #FFB800;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-slider-prev {
    left: 14px;
}

.hero-slider-next {
    right: 14px;
}

/* 100% FRESH Floating Badge (Top-Left) */
.hero-slider-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 10;
    background: rgba(26, 2, 6, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 184, 0, 0.8);
    border-radius: 30px;
    padding: 5px 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.hero-slider-badge .badge-leaf {
    display: flex;
    align-items: center;
}

/* Dots / Pill Indicators (Bottom-Right) */
.hero-slider-dots {
    position: absolute;
    bottom: 16px;
    right: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    outline: none;
}

.hero-slider-dot:hover {
    background: rgba(255, 184, 0, 0.7);
}

.hero-slider-dot.active {
    width: 24px;
    background: #FFB800;
    box-shadow: 0 0 10px rgba(255, 184, 0, 0.8);
}

@media (max-width: 900px) {
    .hero-slider-card {
        max-width: 100%;
        height: 320px;
    }
}

@media (max-width: 600px) {
    .hero-slider-card {
        height: 250px;
        border-radius: 16px;
    }
    .hero-slide-title {
        font-size: 17px;
    }
    .hero-slide-desc {
        display: none;
    }
    .hero-slider-btn {
        width: 32px;
        height: 32px;
    }
    .hero-slider-prev {
        left: 8px;
    }
    .hero-slider-next {
        right: 8px;
    }
}

/* 2. QUICK ORDER WIDGET ("झटपट ऑर्डर") - Compact & Bigger Icons */
.quick-order-section {
    max-width: 1320px;
    margin: -24px auto 32px auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.quick-order-card {
    background: #FFFBF7;
    border: 1px solid #EFE4D6;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(80, 10, 20, 0.08);
    padding: 18px 26px;
    display: grid;
    grid-template-columns: 210px 1fr 1fr 1fr 220px;
    gap: 18px;
    align-items: center;
}

.qo-title-block {
    display: flex;
    flex-direction: column;
}

.qo-title-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 21px;
    font-weight: 900;
    color: #1A1A1A;
}

.qo-subtitle {
    font-size: 12px;
    color: #718096;
    margin-top: 3px;
    font-weight: 600;
}

.qo-step-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.qo-step-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 800;
    color: #2D3748;
}

.qo-step-badge {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #6B0A19;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.qo-pill-group {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.qo-pill-btn {
    background: #FFFFFF;
    border: 1.5px solid #DFD5C8;
    color: #2D3748;
    padding: 6px 13px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
    outline: none;
    font-family: inherit;
}

.qo-pill-btn:hover {
    border-color: #6B0A19;
    background: #FFF9F2;
}

.qo-pill-btn.active {
    background: #6B0A19 !important;
    color: #FFFFFF !important;
    border-color: #6B0A19 !important;
    box-shadow: 0 2px 8px rgba(107, 10, 25, 0.3);
}

.qo-price-order-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
}

.qo-price-label {
    font-size: 12px;
    font-weight: 800;
    color: #718096;
}

.qo-price-val {
    font-size: 28px;
    font-weight: 900;
    color: #1A1A1A;
    line-height: 1;
}

.qo-price-breakdown {
    font-size: 11px;
    color: #718096;
    margin-bottom: 4px;
    white-space: nowrap;
    font-weight: 600;
}

.btn-qo-order {
    background: #6B0A19;
    color: #FFFFFF;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 900;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(107, 10, 25, 0.3);
    white-space: nowrap;
    font-family: inherit;
}

.btn-qo-order:hover {
    background: #850E20;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(107, 10, 25, 0.4);
}

/* 3. SECTION HEADERS */
.gulab-section-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 24px 24px;
}

.section-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
}

.section-heading-hindi {
    font-size: 26px;
    font-weight: 900;
    color: #1A1A1A;
    line-height: 1.2;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-subheading-hindi {
    font-size: 14px;
    color: #718096;
    margin-top: 4px;
    font-weight: 600;
}

.section-view-all-link {
    color: #6B0A19;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}

.section-view-all-link:hover {
    gap: 8px;
    color: #850E20;
}

/* 4. CIRCULAR CATEGORY CAROUSEL & GRID - Bigger Pictures */
.category-six-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.category-carousel-wrapper {
    position: relative;
    width: 100%;
}
.category-carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 4px 18px 4px;
}
.category-carousel-track::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}
.category-carousel-track .category-round-card {
    flex: 0 0 calc((100% - (16px * 5)) / 6);
    min-width: 175px;
    max-width: 220px;
    scroll-snap-align: start;
    user-select: none;
    box-sizing: border-box;
}
@media (max-width: 1280px) {
    .category-carousel-track .category-round-card {
        flex: 0 0 calc((100% - (16px * 4)) / 5);
        min-width: 170px;
    }
}
@media (max-width: 992px) {
    .category-carousel-track .category-round-card {
        flex: 0 0 calc((100% - (16px * 3)) / 4);
        min-width: 160px;
    }
}
@media (max-width: 768px) {
    .category-carousel-track .category-round-card {
        flex: 0 0 148px;
        min-width: 148px;
        padding: 14px 8px;
    }
    .category-carousel-track .category-round-img-wrap {
        width: 100px;
        height: 100px;
    }
    .category-carousel-track .category-round-title {
        font-size: 15px;
    }
}
.cat-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1.5px solid #DFD5C8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: all 0.22s ease;
    padding: 0;
}
.cat-nav-btn:hover {
    background: #6B0A19;
    border-color: #6B0A19;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(107, 10, 25, 0.25);
}
.cat-nav-btn:hover svg {
    stroke: #FFFFFF !important;
}
.cat-float-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.98);
    border: 1.5px solid #EFEAE2;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.22s ease;
    backdrop-filter: blur(4px);
    padding: 0;
}
.cat-float-prev { left: -18px; }
.cat-float-next { right: -18px; }
.cat-float-btn:hover {
    background: #6B0A19;
    border-color: #6B0A19;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(107, 10, 25, 0.28);
}
.cat-float-btn:hover svg {
    stroke: #FFFFFF !important;
}

.category-round-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid #EFEAE2;
    transition: all 0.25s ease;
}

.category-round-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(107, 10, 25, 0.12);
    border-color: #DFD5C8;
}

.category-round-img-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 12px;
    border: 3px solid #F6F1EA;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.category-round-card:hover .category-round-img-wrap {
    transform: scale(1.05);
    border-color: #FFB800;
}

.category-round-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-round-title {
    font-size: 16.5px;
    font-weight: 900;
    color: #1A1A1A;
    margin-bottom: 3px;
}

.category-round-sub {
    font-size: 12.5px;
    color: #718096;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

/* 5. BESTSELLER POPULAR PRODUCTS GRID - 3X3 & Load More */
.popular-six-grid,
.products-3x3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width: 992px) {
    .popular-six-grid,
    .products-3x3-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .popular-six-grid,
    .products-3x3-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.product-card-item.load-more-hidden {
    display: none !important;
}

@keyframes productFadeInUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card-item.just-revealed {
    animation: productFadeInUp 0.45s ease forwards;
}

/* Load More Pagination Button */
.load-more-container {
    text-align: center;
    margin-top: 36px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.btn-load-more {
    background: #FFFFFF;
    color: #6B0A19;
    border: 2px solid #6B0A19;
    padding: 13px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(107, 10, 25, 0.08);
    font-family: inherit;
}

.btn-load-more:hover:not(:disabled) {
    background: #6B0A19;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 10, 25, 0.25);
}

.btn-load-more:disabled,
.btn-load-more.all-loaded {
    background: #F1F3F5;
    color: #868E96;
    border-color: #CED4DA;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.load-more-counter {
    font-size: 13px;
    color: #718096;
    font-weight: 600;
    margin: 0;
}

.gulab-product-card {
    background: #FFFFFF;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #EAE2D7;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.25s ease;
}

.gulab-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(107, 10, 25, 0.12);
    border-color: #D3C3B1;
}

.product-tag-pill {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #E53935;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 5;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.product-tag-pill.tag-gold {
    background: #E5A700;
    color: #260308;
}

.prod-img-box {
    width: 100%;
    height: 210px;
    overflow: hidden;
    position: relative;
    background: #FAF7F2;
}

.prod-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gulab-product-card:hover .prod-img-box img {
    transform: scale(1.06);
}

.prod-details-box {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.prod-title {
    font-size: 16px;
    font-weight: 900;
    color: #1A1A1A;
    margin: 0 0 2px 0;
    line-height: 1.25;
}

.prod-cut-info {
    font-size: 12px;
    color: #718096;
    font-weight: 600;
    margin-bottom: 6px;
}

.prod-price-row {
    font-size: 17px;
    font-weight: 900;
    color: #6B0A19;
    margin-bottom: 8px;
}

.prod-price-row span {
    font-size: 12px;
    font-weight: 600;
    color: #718096;
}

/* Weight Selector Pills on Product Card */
.prod-weight-pills {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.prod-w-pill {
    background: #FAF5EE;
    border: 1px solid #DFD5C8;
    color: #4A5568;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s ease;
    outline: none;
    font-family: inherit;
}

.prod-w-pill:hover {
    border-color: #6B0A19;
}

.prod-w-pill.active {
    background: #6B0A19 !important;
    color: #FFFFFF !important;
    border-color: #6B0A19 !important;
}

.btn-add-to-cart {
    width: 100%;
    background: #6B0A19;
    color: #FFFFFF;
    border: none;
    padding: 9px 0;
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.2s ease;
    margin-top: auto;
    font-family: inherit;
}

.btn-add-to-cart:hover {
    background: #850E20;
    box-shadow: 0 4px 10px rgba(107, 10, 25, 0.25);
}

/* 6. HORIZONTAL VALUE PROPOSITIONS STRIP - Bigger & Compact */
.gulab-guarantee-strip {
    background: #5E0715;
    color: #FFFFFF;
    padding: 24px 0;
    margin: 36px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-inner-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.guarantee-icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid rgba(255, 184, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFB800;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.guarantee-text {
    display: flex;
    flex-direction: column;
}

.guarantee-title {
    font-size: 15.5px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
}

.guarantee-sub {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* 7. FOUR-COLUMN TRUST, STEPS, TESTIMONIAL, DELIVERY GRID */
.four-column-promo-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr 1.05fr 0.85fr;
    gap: 18px;
    margin-bottom: 40px;
}

/* Card 1: क्यों चुनें गुलाब चिकन? */
.card-why-choose {
    background: linear-gradient(145deg, #4A050E 0%, #300208 100%);
    border-radius: 12px;
    padding: 20px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 16px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-choose-thumb {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #FFB800;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.why-choose-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-choose-body h3 {
    font-size: 19px;
    font-weight: 900;
    margin: 0 0 10px 0;
    color: #FFFFFF;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.why-choose-list li {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.why-choose-list li i {
    color: #FFB800;
    font-size: 12px;
}

.btn-why-choose {
    background: #EAE2D7;
    color: #33050C;
    font-size: 11.5px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-why-choose:hover {
    background: #FFB800;
}

/* Card 2: कैसे ऑर्डर करें? */
.card-how-to-order {
    background: #FAF5EE;
    border: 1px solid #E8DFD3;
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
}

.card-how-to-order h3 {
    font-size: 15.5px;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.how-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.how-step-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    border: 1px solid #EAE2D7;
    border-radius: 6px;
    padding: 6px 10px;
}

.how-step-num {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #6B0A19;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-step-text {
    font-size: 12.5px;
    font-weight: 700;
    color: #2D3748;
}

.how-step-arrow {
    margin-left: auto;
    color: #A0AEC0;
    font-size: 14px;
}

/* Card 3: हमारे ग्राहक क्या कहते हैं */
.card-testimonial {
    background: #FAF5EE;
    border: 1px solid #E8DFD3;
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-testimonial h3 {
    font-size: 15.5px;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0 0 10px 0;
}

.testimonial-quote {
    font-size: 12.5px;
    color: #4A5568;
    line-height: 1.5;
    font-style: normal;
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
}

.testimonial-stars {
    color: #FFB800;
    font-size: 14px;
    margin-bottom: 6px;
}

.testimonial-author {
    font-size: 12px;
    font-weight: 700;
    color: #718096;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.testimonial-controls i {
    cursor: pointer;
    color: #A0AEC0;
    font-size: 18px;
    transition: color 0.2s;
}

.testimonial-controls i:hover {
    color: #6B0A19;
}

.testimonial-dots {
    display: flex;
    gap: 4px;
}

.testimonial-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #CBD5E0;
}

.testimonial-dot.active {
    background: #6B0A19;
}

/* Card 4: ताजा चिकन सीधे आपके घर तक & WhatsApp */
.card-delivery-whatsapp {
    background: #FFF9EE;
    border: 1px solid #F0E2CA;
    border-radius: 12px;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.delivery-headline {
    font-size: 14.5px;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 4px;
    line-height: 1.3;
}

.delivery-tag-badge {
    background: #FFEDD5;
    color: #C2410C;
    font-size: 10.5px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.delivery-scooter-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
}

.btn-whatsapp-order-card {
    background: #128C7E;
    color: #FFFFFF;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(18, 140, 126, 0.25);
}

.btn-whatsapp-order-card:hover {
    background: #075E54;
    transform: translateY(-1px);
}

/* 8. MASTER LUXURY DARK FOOTER */
.gulab-footer {
    background: #200307;
    color: #FFFFFF;
    position: relative;
    padding-top: 40px;
    border-top: 3px solid #6B0A19;
}

.footer-inner-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px 35px 24px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1.1fr;
    gap: 30px;
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo-img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
}

.footer-brand-titles h3 {
    font-size: 18px;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    margin: 0;
}

.brand-tagline {
    font-size: 11.5px;
    color: #FFB800;
    font-weight: 700;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.footer-links-col h4,
.footer-contact-col h4,
.footer-social-col h4 {
    font-size: 14px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-links-col a:hover {
    color: #FFB800;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 8px;
    font-weight: 600;
}

.footer-contact-item i {
    color: #FFB800;
    font-size: 15px;
}

.footer-social-icons {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.social-circle-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s;
}

.social-circle-btn:hover {
    background: #6B0A19;
    color: #FFB800;
    border-color: #FFB800;
}

.footer-lang-selector label {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.footer-lang-dropdown {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12.5px;
    color: #FFFFFF;
    font-weight: 700;
    min-width: 90px;
    cursor: pointer;
}

.footer-bottom-bar {
    background: #140104;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 24px;
}

.footer-bottom-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.footer-bottom-slogan {
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.3px;
}

.scroll-top-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
}

.scroll-top-btn:hover {
    background: #6B0A19;
    color: #FFB800;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES FOR GULAB CHICKEN
   ========================================================================== */
@media (max-width: 1200px) {
    .quick-order-card {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .qo-title-block {
        grid-column: span 2;
    }
    .qo-price-order-col {
        grid-column: span 2;
        align-items: flex-start;
    }
    .popular-six-grid,
    .category-six-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .four-column-promo-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-inner-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991px) {
    .hero-features-row {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 8px !important;
        width: 100% !important;
        max-width: 440px !important;
        margin: 0 auto 24px auto !important;
        justify-content: center !important;
        align-items: start !important;
    }
}

@media (max-width: 768px) {
    .gulab-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 28px;
    }
    .hero-hindi-headline {
        font-size: 34px;
    }
    .hero-features-row {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 6px !important;
        width: 100% !important;
        max-width: 440px !important;
        margin: 0 auto 24px auto !important;
        justify-content: center !important;
        align-items: start !important;
    }
    .hero-feature-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 6px !important;
        min-width: 0 !important;
    }
    .hero-feature-icon-circle {
        width: 48px !important;
        height: 48px !important;
        flex-shrink: 0 !important;
    }
    .hero-feature-icon-circle svg {
        width: 22px !important;
        height: 22px !important;
    }
    .hero-feature-label {
        font-size: 11px !important;
        white-space: normal !important;
        line-height: 1.15 !important;
        text-align: center !important;
        display: block !important;
        word-break: keep-all !important;
    }
    .hero-actions-row {
        justify-content: center;
    }
    .hero-platter-disc {
        max-width: 300px;
    }
    .quick-order-section {
        margin-top: 10px;
    }
    .quick-order-card {
        grid-template-columns: 1fr;
    }
    .qo-title-block,
    .qo-price-order-col {
        grid-column: span 1;
    }
    .popular-six-grid,
    .category-six-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .guarantee-inner-container {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .four-column-promo-grid {
        grid-template-columns: 1fr;
    }
    .card-why-choose {
        flex-direction: column;
        text-align: center;
    }
    .footer-inner-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 380px) {
    .hero-features-row {
        gap: 4px !important;
    }
    .hero-feature-icon-circle {
        width: 42px !important;
        height: 42px !important;
    }
    .hero-feature-icon-circle svg {
        width: 20px !important;
        height: 20px !important;
    }
    .hero-feature-label {
        font-size: 10px !important;
    }
}
