/* ============================================
   FRESH DHARA — PREMIUM VISUAL UPGRADE
   Layered on top of home.css for a
   state-of-the-art, visually stunning redesign
   ============================================ */

/* ------------------------------------------
   1. ENHANCED DESIGN TOKENS
   ------------------------------------------ */
:root {
    /* Richer primary palette */
    --premium-rose: #e8453c;
    --premium-rose-light: #ff6b5e;
    --premium-amber: #f59e0b;
    --premium-emerald: #10b981;
    --premium-indigo: #6366f1;

    /* Gradient systems — LIGHT MODE (strong enough to be visible on white) */
    --gradient-hero: 
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255, 107, 94, 0.28) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 85% 70%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 60% at 15% 80%, rgba(232, 69, 60, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 10% 20%, rgba(99, 102, 241, 0.10) 0%, transparent 50%),
        linear-gradient(180deg, #fff8f6 0%, #ffffff 100%);
    --gradient-section-warm: 
        linear-gradient(180deg, #fff5f0 0%, #ffffff 50%),
        radial-gradient(ellipse 60% 40% at 80% 0%, rgba(255, 107, 94, 0.10) 0%, transparent 60%);
    --gradient-section-cool:
        linear-gradient(180deg, #f0f1ff 0%, #ffffff 50%),
        radial-gradient(ellipse 50% 50% at 20% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);

    /* Premium surfaces */
    --surface-elevated: rgba(255, 255, 255, 0.92);
    --surface-glass: rgba(255, 255, 255, 0.75);

    /* Richer shadows */
    --shadow-premium-sm: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-premium-md: 0 4px 6px rgba(0,0,0,0.03), 0 12px 28px rgba(0,0,0,0.07);
    --shadow-premium-lg: 0 8px 16px rgba(0,0,0,0.04), 0 24px 56px rgba(0,0,0,0.09);
    --shadow-glow-coral: 0 8px 32px rgba(232, 69, 60, 0.18), 0 2px 8px rgba(232, 69, 60, 0.10);
    --shadow-glow-amber: 0 8px 32px rgba(245, 158, 11, 0.18);
    --shadow-glow-emerald: 0 8px 32px rgba(16, 185, 129, 0.18);

    /* Spacing */
    --section-gap: clamp(80px, 10vw, 120px);
}

[data-theme="dark"] {
    --surface-elevated: rgba(30, 30, 35, 0.9);
    --surface-glass: rgba(30, 30, 35, 0.7);
    --gradient-hero:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(232, 69, 60, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(245, 158, 11, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 60% at 20% 80%, rgba(99, 102, 241, 0.06) 0%, transparent 50%);
    --gradient-section-warm:
        linear-gradient(180deg, rgba(40, 20, 10, 0.3) 0%, transparent 40%);
    --gradient-section-cool:
        linear-gradient(180deg, rgba(20, 20, 40, 0.3) 0%, transparent 40%);
    --shadow-premium-sm: 0 1px 3px rgba(0,0,0,0.2), 0 4px 12px rgba(0,0,0,0.15);
    --shadow-premium-md: 0 4px 6px rgba(0,0,0,0.15), 0 12px 28px rgba(0,0,0,0.2);
    --shadow-premium-lg: 0 8px 16px rgba(0,0,0,0.2), 0 24px 56px rgba(0,0,0,0.25);
    --shadow-glow-coral: 0 8px 32px rgba(232, 69, 60, 0.12);
    --shadow-glow-amber: 0 8px 32px rgba(245, 158, 11, 0.12);
    --shadow-glow-emerald: 0 8px 32px rgba(16, 185, 129, 0.12);
}


/* ------------------------------------------
   2. GLOBAL POLISH & TEXTURE
   ------------------------------------------ */

/* Subtle noise texture overlay for depth */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px 128px;
}

/* Better anti-aliased text */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Smooth scroll-reveal animation */
@keyframes premiumReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section dividers — elegant gradient lines */
.offers-section::before,
.freshdhara-specials::before,
.category-grid-section::before,
.premium-service-section::before,
.service-area-section::before,
.customer-reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(80%, 600px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}


/* ------------------------------------------
   3. PREMIUM HEADER ENHANCEMENT
   ------------------------------------------ */
.header-glass {
    background: var(--surface-elevated);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 1px 1px rgba(0,0,0,0.02),
        0 4px 8px rgba(0,0,0,0.04),
        0 16px 48px rgba(0,0,0,0.06);
}

[data-theme="dark"] .header-glass {
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 1px 1px rgba(0,0,0,0.1),
        0 4px 8px rgba(0,0,0,0.15),
        0 16px 48px rgba(0,0,0,0.2);
}

.brand-lux {
    background: linear-gradient(135deg, var(--premium-rose) 0%, #ff8c42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(232, 69, 60, 0.15));
}

.icon-btn {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.icon-btn:hover {
    background: rgba(232, 69, 60, 0.08);
    border-color: rgba(232, 69, 60, 0.12);
    color: var(--premium-rose);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-glow-coral);
}

[data-theme="dark"] .icon-btn {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.06);
}


/* ------------------------------------------
   4. HERO SECTION — DRAMATIC UPGRADE
   ------------------------------------------ */
.hero-lux {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

/* Animated ambient orbs */
.hero-lux::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 94, 0.20) 0%, transparent 70%);
    top: -15%;
    right: -10%;
    animation: orbFloat 20s ease-in-out infinite;
    pointer-events: none;
}

.hero-lux::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.14) 0%, transparent 70%);
    bottom: -10%;
    left: -8%;
    animation: orbFloat 25s ease-in-out infinite reverse;
    pointer-events: none;
}

[data-theme="dark"] .hero-lux::before {
    background: radial-gradient(circle, rgba(255, 107, 94, 0.10) 0%, transparent 70%);
}
[data-theme="dark"] .hero-lux::after {
    background: radial-gradient(circle, rgba(251, 191, 36, 0.06) 0%, transparent 70%);
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-15px, 15px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

/* Hero title — gradient text with more weight */
.hero-lux-title {
    font-size: clamp(3rem, 9vw, 6rem);
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 1.05;
    position: relative;
}

.hero-lux-title span {
    background: linear-gradient(135deg, var(--premium-rose) 0%, #ff8c42 50%, var(--premium-amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(232, 69, 60, 0.15));
}

/* Greeting text — softer */
.hero-time-greeting {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--light-text);
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Hero subtitle — better styling */
.hero-lux-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    color: var(--light-text);
    font-weight: 500;
    line-height: 1.7;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced search bar */
.search-lux-form {
    background: var(--surface-elevated) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 
        0 2px 4px rgba(0,0,0,0.03),
        0 8px 24px rgba(0,0,0,0.06),
        0 20px 60px rgba(0,0,0,0.04) !important;
    border-radius: 60px !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.search-lux-form:focus-within {
    transform: translateY(-3px) !important;
    box-shadow: 
        0 4px 12px rgba(0,0,0,0.04),
        0 30px 70px rgba(0,0,0,0.08),
        0 0 0 3px rgba(232, 69, 60, 0.1) !important;
    border-color: rgba(232, 69, 60, 0.2) !important;
}

.search-lux-btn {
    background: linear-gradient(135deg, var(--premium-rose) 0%, #ff6b5e 100%) !important;
    box-shadow: 0 4px 16px rgba(232, 69, 60, 0.3) !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.search-lux-btn:hover {
    transform: scale(1.04) !important;
    box-shadow: 0 6px 24px rgba(232, 69, 60, 0.4) !important;
}

/* CTA Buttons — Clean Premium Pills */
.hero-dual-cta {
    gap: 12px;
    margin-top: 24px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta-btn {
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
}

.hero-cta-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover i {
    transform: scale(1.15);
}

/* Subtle shine sweep */
.hero-cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: skewX(-20deg);
    animation: ctaShineSweep 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctaShineSweep {
    0%, 70%, 100% { left: -100%; }
    85% { left: 150%; }
}

/* Individual button themes */
.hero-cta-food {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.35),
                inset 0 1px 0 rgba(255,255,255,0.15);
}
.hero-cta-food:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(220, 38, 38, 0.45),
                inset 0 1px 0 rgba(255,255,255,0.2);
}

.hero-cta-grocery {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.35),
                inset 0 1px 0 rgba(255,255,255,0.15);
}
.hero-cta-grocery:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(5, 150, 105, 0.45),
                inset 0 1px 0 rgba(255,255,255,0.2);
}

.hero-cta-vegetables {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.35),
                inset 0 1px 0 rgba(255,255,255,0.15);
}
.hero-cta-vegetables:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(217, 119, 6, 0.45),
                inset 0 1px 0 rgba(255,255,255,0.2);
}

.hero-cta-btn:active {
    transform: translateY(0) scale(0.97);
    transition-duration: 0.1s;
}

/* Responsive hero + CTA */
@media (max-width: 768px) {
    .hero-lux-title {
        letter-spacing: -2px;
    }
    .hero-lux::before {
        width: 300px;
        height: 300px;
        top: -10%;
        right: -15%;
    }
    .hero-lux::after {
        width: 250px;
        height: 250px;
    }
    .hero-cta-btn {
        padding: 12px 24px;
        font-size: 0.92rem;
    }
}

@media (max-width: 480px) {
    .hero-lux-title {
        letter-spacing: -1.5px;
    }
    .hero-dual-cta {
        gap: 10px;
    }
    .hero-cta-btn {
        padding: 13px 22px;
        font-size: 0.9rem;
    }
}


/* ------------------------------------------
   5. OFFERS SECTION — RICHER CARDS
   ------------------------------------------ */
.offers-section {
    padding: 30px 0 40px;
    background: var(--gradient-section-warm);
    position: relative;
}

.offers-badge {
    background: linear-gradient(135deg, #e8453c, #ff6b5e);
    box-shadow: 0 4px 16px rgba(232, 69, 60, 0.25);
    padding: 8px 20px;
    font-size: 13px;
}

.offers-title {
    font-size: clamp(24px, 4.5vw, 36px);
    letter-spacing: -0.5px;
}

.offer-card {
    flex: 0 0 300px;
    border-radius: 20px;
    padding: 18px 20px;
    box-shadow: var(--shadow-premium-md);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.offer-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-premium-lg);
}

.offer-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
    font-size: 20px;
}

.offer-discount {
    font-size: 16px;
    font-weight: 800;
}

.offer-cta-btn {
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.offer-card:hover .offer-cta-btn {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

@media (min-width: 769px) {
    .offer-card {
        flex: 0 0 330px;
    }
}


/* ------------------------------------------
   6. FEATURED PRODUCTS — PREMIUM CARDS
   ------------------------------------------ */
.freshdhara-specials {
    padding: 60px 0;
    background: #faf8ff;
    position: relative;
}

[data-theme="dark"] .freshdhara-specials {
    background: var(--gradient-section-cool);
}

/* Better decorative backgrounds */
.freshdhara-specials::after {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
}

.specials-badge {
    background: linear-gradient(135deg, var(--premium-rose), #ff6b5e);
    box-shadow: 0 4px 16px rgba(232, 69, 60, 0.25);
    font-size: 13px;
    padding: 10px 24px;
    border-radius: 14px;
    letter-spacing: 0.8px;
}

.specials-title {
    font-size: clamp(30px, 5.5vw, 46px);
    letter-spacing: -1px;
}

/* ---------- CARD CONTAINER ---------- */
.special-product-card {
    background: var(--card-bg);
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 
        0 2px 4px rgba(0,0,0,0.04),
        0 8px 20px rgba(0,0,0,0.07),
        0 16px 40px rgba(0,0,0,0.04);
    transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    cursor: pointer;
}

.special-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 8px 16px rgba(0,0,0,0.06),
        0 20px 40px rgba(0,0,0,0.08),
        0 32px 64px rgba(0,0,0,0.04);
    border-color: rgba(232, 69, 60, 0.15);
}

[data-theme="dark"] .special-product-card {
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 12px 32px rgba(0,0,0,0.15);
}

[data-theme="dark"] .special-product-card:hover {
    border-color: rgba(232, 69, 60, 0.2);
    box-shadow: 0 12px 28px rgba(0,0,0,0.25), 0 24px 48px rgba(0,0,0,0.2);
}

/* ---------- IMAGE AREA ---------- */
.product-image-wrapper {
    height: 200px;
    position: relative;
    background: var(--section-bg-2);
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* Soft gradient fade at bottom of image for smooth transition */
.product-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, var(--card-bg), transparent);
    pointer-events: none;
    z-index: 1;
}

/* ---------- BADGE ---------- */
.product-badge.bestseller {
    background: linear-gradient(135deg, var(--premium-rose), #ff6b5e);
    color: white;
    box-shadow: 0 4px 14px rgba(232, 69, 60, 0.35);
    border-radius: 10px;
    font-size: 11px;
    padding: 5px 12px;
    letter-spacing: 0.5px;
    font-weight: 800;
    top: 12px;
    left: 12px;
}

/* ---------- SHARE BUTTON ---------- */
.share-btn-top {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--dark-text);
    font-size: 13px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    top: 12px;
    right: 12px;
    transition: all 0.3s ease;
}

.share-btn-top:hover {
    background: var(--premium-rose);
    color: white;
    border-color: var(--premium-rose);
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(232, 69, 60, 0.3);
}

[data-theme="dark"] .share-btn-top {
    background: rgba(40, 40, 50, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ---------- PRODUCT INFO ---------- */
.product-info {
    padding: 16px 18px 18px;
    gap: 14px;
}

.product-header-row {
    gap: 10px;
    align-items: flex-start;
}

.product-name {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.2px;
    line-height: 1.3;
    color: var(--dark-text);
}

.product-category {
    color: var(--light-text);
    font-size: 12px;
    font-weight: 600;
    margin-top: 3px;
    gap: 5px;
}

.product-category i {
    color: var(--premium-rose);
    font-size: 10px;
}

/* ---------- PRICING ---------- */
.product-pricing {
    background: linear-gradient(135deg, rgba(232, 69, 60, 0.08), rgba(255, 107, 94, 0.05));
    border: 1px solid rgba(232, 69, 60, 0.1);
    border-radius: 12px;
    padding: 8px 14px;
    flex-shrink: 0;
    align-self: flex-start;
}

.product-price {
    font-size: 17px;
    font-weight: 800;
    color: var(--premium-rose);
}

[data-theme="dark"] .product-pricing {
    background: linear-gradient(135deg, rgba(232, 69, 60, 0.12), rgba(255, 107, 94, 0.06));
    border-color: rgba(232, 69, 60, 0.15);
}

/* ---------- ADD TO CART BUTTON ---------- */
.add-to-cart-btn,
.view-options-btn {
    background: linear-gradient(135deg, #e8453c 0%, #ff6b5e 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(232, 69, 60, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

/* Shine sweep */
.add-to-cart-btn::before,
.view-options-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
    transition: left 0.5s ease;
}

.add-to-cart-btn:hover::before,
.view-options-btn:hover::before {
    left: 120%;
}

.add-to-cart-btn:hover,
.view-options-btn:hover {
    background: linear-gradient(135deg, #d13d35 0%, #e8453c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 69, 60, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.add-to-cart-btn:active,
.view-options-btn:active {
    transform: translateY(0) scale(0.97);
    box-shadow: 0 2px 8px rgba(232, 69, 60, 0.3);
    transition-duration: 0.1s;
}

[data-theme="dark"] .add-to-cart-btn,
[data-theme="dark"] .view-options-btn {
    background: linear-gradient(135deg, #e8453c 0%, #ff6b5e 100%);
    box-shadow: 0 4px 14px rgba(232, 69, 60, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .add-to-cart-btn:hover,
[data-theme="dark"] .view-options-btn:hover {
    background: linear-gradient(135deg, #d13d35 0%, #e8453c 100%);
    box-shadow: 0 8px 24px rgba(232, 69, 60, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ---------- MOBILE CAROUSEL ---------- */
@media (max-width: 768px) {
    .specials-grid {
        scrollbar-width: none;          /* Firefox */
        -ms-overflow-style: none;       /* IE/Edge */
    }
    .specials-grid::-webkit-scrollbar {
        display: none;                  /* Chrome/Safari */
    }
    .specials-grid .special-product-card {
        min-width: 260px;
        max-width: 280px;
    }
    .product-image-wrapper {
        height: 180px;
    }
    .product-info {
        padding: 14px 16px 16px;
    }
    .product-name {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .specials-grid .special-product-card {
        min-width: 240px;
        max-width: 270px;
    }
    .product-image-wrapper {
        height: 170px;
    }
}


/* ------------------------------------------
   7. CATEGORY GRID — REFINED
   ------------------------------------------ */
.category-grid-section {
    padding: 50px 0 40px;
    position: relative;
}

.category-grid-badge {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.08));
    color: var(--premium-indigo);
    border-color: rgba(99, 102, 241, 0.12);
    font-size: 0.8rem;
    padding: 8px 20px;
}

[data-theme="dark"] .category-grid-badge {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
    border-color: rgba(99, 102, 241, 0.2);
}

.category-grid-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    letter-spacing: -0.8px;
}

.category-tile-icon {
    width: 68px;
    height: 68px;
    font-size: 1.8rem;
    box-shadow: var(--shadow-premium-md);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category-tile:hover .category-tile-icon {
    transform: scale(1.12) translateY(-2px);
    box-shadow: var(--shadow-premium-lg);
}

.category-tile span {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

@media (max-width: 480px) {
    .category-tile-icon {
        width: 58px;
        height: 58px;
        font-size: 1.5rem;
    }
}


/* ------------------------------------------
   8. PREMIUM SERVICES — CINEMATIC
   ------------------------------------------ */
.premium-service-section {
    padding: var(--section-gap) 0;
    background: var(--gradient-section-warm);
    position: relative;
}

.premium-badge {
    background: linear-gradient(135deg, rgba(232, 69, 60, 0.08), rgba(255, 107, 94, 0.06));
    color: var(--premium-rose);
    border: 1px solid rgba(232, 69, 60, 0.1);
    padding: 10px 22px;
    border-radius: 14px;
    font-size: 13px;
}

.premium-title {
    font-size: clamp(28px, 5vw, 42px);
    letter-spacing: -1px;
}

.premium-service-card {
    border-radius: 28px;
    height: 420px;
    box-shadow: var(--shadow-premium-lg);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-service-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.premium-card-bg img {
    opacity: 0.9;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-service-card:hover .premium-card-bg img {
    transform: scale(1.08);
    opacity: 1;
}

.premium-card-gradient {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.05) 70%,
        transparent 100%
    );
}

.premium-card-content {
    margin: 20px;
    padding: 22px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.premium-service-card:hover .premium-card-content {
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.premium-icon-floating {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--premium-rose), #ff6b5e);
    box-shadow: 0 8px 24px rgba(232, 69, 60, 0.35);
    font-size: 22px;
}

.premium-text h2 {
    font-size: 24px;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.premium-text p {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.premium-arrow {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 14px;
}

.premium-service-card:hover .premium-arrow {
    background: white;
    color: var(--premium-rose);
    transform: translateX(0) scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}


/* ------------------------------------------
   9. SERVICE AREA — FROM EMPTY TO RICH
   ------------------------------------------ */
.service-area-section {
    padding: 70px 0 50px;
    background: var(--gradient-section-cool);
    position: relative;
    overflow: hidden;
}

/* Decorative gradient orb behind the card */
.service-area-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.service-area-badge {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.08));
    color: var(--premium-emerald);
    border: 1px solid rgba(16, 185, 129, 0.12);
    padding: 8px 20px;
    font-size: 0.82rem;
}

.service-area-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: -0.8px;
}

.service-area-card {
    max-width: 520px;
    border-radius: 28px;
    padding: 40px;
    border: 1px solid rgba(16, 185, 129, 0.12);
    box-shadow: var(--shadow-premium-md);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-area-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium-lg);
}

/* Animated gradient border */
.service-area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #06b6d4, #6366f1, #10b981);
    background-size: 300% 100%;
    animation: gradientShimmer 4s linear infinite;
}

@keyframes gradientShimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.service-area-pin {
    font-size: 3rem;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.3));
}

.service-area-card h3 {
    font-size: 1.5rem;
    letter-spacing: -0.3px;
}

.service-area-badges span,
.service-area-badges a {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 14px;
    padding: 10px 18px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #059669;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-area-badges span:hover,
.service-area-badges a:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--shadow-glow-emerald);
    background: rgba(16, 185, 129, 0.12);
}

.service-area-expansion {
    font-size: 0.9rem;
    color: var(--premium-rose);
    gap: 10px;
    padding-top: 20px;
}


/* ------------------------------------------
   10. TESTIMONIALS — PREMIUM CARDS
   ------------------------------------------ */
.customer-reviews-section {
    padding: var(--section-gap) 0 60px;
    background: var(--gradient-section-warm);
    position: relative;
}

.reviews-badge {
    background: linear-gradient(135deg, var(--premium-amber), #f97316);
    color: white;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    border-radius: 14px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.reviews-section-title {
    font-size: clamp(30px, 5.5vw, 46px);
    letter-spacing: -1px;
    font-weight: 800;
    color: var(--dark-text);
    margin-top: 18px;
    margin-bottom: 12px;
}

.reviews-section-subtitle {
    font-size: 16px;
    color: var(--light-text);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.review-card {
    flex: 0 0 360px;
    border-radius: 26px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-premium-sm);
    transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

/* Always-visible gradient top bar */
.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #f97316, #ef4444);
    opacity: 1;
    border-radius: 26px 26px 0 0;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium-lg);
    border-color: rgba(245, 158, 11, 0.15);
}

.review-card-quote {
    font-size: 2.5rem;
    color: rgba(245, 158, 11, 0.15);
}

.review-card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
    font-size: 1.1rem;
}

.review-card-name {
    font-size: 1rem;
    font-weight: 800;
}

.review-card-stars i {
    color: #f59e0b;
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 3px rgba(245, 158, 11, 0.3));
}

/* Carousel nav buttons */
.reviews-carousel-btn {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--surface-elevated);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-premium-md);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reviews-carousel-btn:hover {
    background: var(--premium-rose);
    color: white;
    border-color: var(--premium-rose);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-glow-coral);
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 310px;
        padding: 26px;
        border-radius: 22px;
    }
}

@media (max-width: 480px) {
    .review-card {
        flex: 0 0 280px;
        padding: 22px;
        border-radius: 20px;
    }
}


/* ------------------------------------------
   11. FOOTER — PROFESSIONAL & EDITORIAL
   ------------------------------------------ */
.footer-v2 {
    background: linear-gradient(180deg, #0c1222 0%, #111827 50%, #0c1222 100%);
    padding: 35px 0 0;
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.65);
}

/* Animated gradient top edge */
.footer-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--premium-rose), var(--premium-amber), 
        var(--premium-emerald), var(--premium-indigo), 
        var(--premium-rose));
    background-size: 300% 100%;
    animation: gradientShimmer 8s linear infinite;
}

/* Subtle ambient glow */
.footer-v2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 40% 50% at 15% 80%, rgba(232, 69, 60, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 30% 40% at 85% 30%, rgba(99, 102, 241, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

/* ---- MAIN LAYOUT ---- */
.footer-v2-main {
    position: relative;
    z-index: 1;
    gap: 30px;
    padding-bottom: 25px;
}

/* ---- BRAND AREA ---- */
.footer-v2 .footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.75) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.footer-v2-tagline {
    font-size: 13.5px;
    opacity: 0.45;
    line-height: 1.6;
    max-width: 240px;
    margin-bottom: 12px;
}

/* ---- SOCIAL ICONS — Brand Colors on Hover ---- */
.footer-v2-social {
    gap: 8px;
}

.footer-v2-social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Facebook */
.footer-v2-social a[aria-label="Facebook"]:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(24, 119, 242, 0.3);
}

/* Instagram */
.footer-v2-social a[aria-label="Instagram"]:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #dc2743;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(220, 39, 67, 0.3);
}

/* Twitter */
.footer-v2-social a[aria-label="Twitter"]:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(29, 161, 242, 0.3);
}

/* WhatsApp */
.footer-v2-social a[aria-label="WhatsApp"]:hover {
    background: #25d366;
    border-color: #25d366;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

/* ---- LINK COLUMNS ---- */
.footer-v2-col h5 {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-bottom: 6px;
}

/* Subtle underline accent */
.footer-v2-col h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--premium-rose);
    border-radius: 2px;
}

.footer-v2-col a {
    font-size: 13px;
    padding: 3px 0;
    color: rgba(255, 255, 255, 0.40);
    transition: all 0.3s ease;
    position: relative;
}

.footer-v2-col a:hover {
    color: rgba(255, 255, 255, 0.95);
    padding-left: 0;
    transform: translateX(4px);
}

/* ---- APP STORE BADGES ---- */
.footer-v2-app-links {
    gap: 8px;
    margin-top: 2px;
}

.footer-v2-app-links img {
    height: 36px;
    border-radius: 8px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-v2-app-links img:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

/* ---- BOTTOM BAR ---- */
.footer-v2-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-v2-bottom a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

.footer-v2-bottom a:hover {
    color: var(--premium-rose);
}

/* ---- RESPONSIVE COMPACT OVERRIDES ---- */
@media (max-width: 768px) {
    .footer-v2 {
        padding: 25px 0 0 !important;
    }
    .footer-v2-main {
        gap: 20px !important;
        padding-bottom: 15px !important;
    }
    .footer-v2-tagline {
        margin-bottom: 10px !important;
    }
    .footer-v2-links {
        gap: 15px !important;
    }
    .footer-v2-col {
        margin-bottom: 5px !important;
    }
    .footer-v2-col h5 {
        margin-bottom: 8px !important;
        padding-bottom: 4px !important;
    }
    .footer-v2-col h5::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    .footer-v2-app-links {
        gap: 6px !important;
        margin-top: 0 !important;
    }
    .footer-v2-bottom {
        padding: 10px 0 !important;
    }
}


/* ------------------------------------------
   12. SECTION BADGES — UNIFIED STYLE
   ------------------------------------------ */
/* Make all section badges consistent and premium */
.specials-badge,
.offers-badge {
    border-radius: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.category-grid-badge,
.premium-badge,
.service-area-badge,
.reviews-badge {
    border-radius: 14px;
}


/* ------------------------------------------
   13. MOBILE BOTTOM NAV — REFINED
   ------------------------------------------ */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        background: var(--card-bg, rgba(255, 255, 255, 0.96)) !important;
        backdrop-filter: blur(24px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
        border: 1px solid var(--border-color, rgba(0,0,0,0.08)) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
        border-radius: 999px !important;
        bottom: 12px !important;
    }

    .mobile-bottom-nav a.active {
        background: linear-gradient(135deg, rgba(255, 111, 97, 0.14), rgba(255, 111, 97, 0.05)) !important;
        color: var(--primary-coral, #ff6f61) !important;
        border-radius: 20px !important;
    }

    [data-theme="dark"] .mobile-bottom-nav {
        background: rgba(30, 30, 35, 0.95) !important;
        border-color: rgba(255, 255, 255, 0.08) !important;
    }

    [data-theme="dark"] .mobile-bottom-nav a span,
    [data-theme="dark"] .mobile-bottom-nav a i {
        color: #a0a0a0 !important;
    }

    [data-theme="dark"] .mobile-bottom-nav a.active span,
    [data-theme="dark"] .mobile-bottom-nav a.active i {
        color: var(--primary-coral, #ff6f61) !important;
    }
}


/* ------------------------------------------
   14. PRELOADER — PREMIUM TOUCH
   ------------------------------------------ */
#app-preloader {
    background: linear-gradient(135deg, #fefefe 0%, #fff7f5 100%) !important;
}

.preloader-brand {
    background: linear-gradient(135deg, var(--premium-rose), #ff8c42) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-size: 4rem !important;
}

.preloader-spinner {
    border-color: rgba(232, 69, 60, 0.15) !important;
    border-left-color: var(--premium-rose) !important;
}


/* ------------------------------------------
   15. ACCOUNT DROPDOWN — POLISHED
   ------------------------------------------ */
.account-dropdown-lux {
    border-radius: 24px;
    box-shadow: var(--shadow-premium-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(20px);
}

.account-lux-header {
    background: linear-gradient(135deg, rgba(232, 69, 60, 0.04), rgba(255, 140, 66, 0.02));
}


/* ------------------------------------------
   16. CART TOAST — ELEVATED
   ------------------------------------------ */
.cart-toast {
    background: linear-gradient(135deg, #059669, #10b981) !important;
    border-radius: 18px;
    box-shadow: var(--shadow-glow-emerald);
    padding: 16px 30px;
    font-weight: 700;
}


/* ------------------------------------------
   17. SKELETON LOADING — SMOOTHER
   ------------------------------------------ */
.skeleton-shimmer {
    background: linear-gradient(
        110deg,
        rgba(0, 0, 0, 0.04) 8%,
        rgba(0, 0, 0, 0.02) 18%,
        rgba(0, 0, 0, 0.04) 33%
    ) !important;
    background-size: 200% 100% !important;
    animation: skeletonShimmerPremium 1.5s linear infinite !important;
}

@keyframes skeletonShimmerPremium {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

[data-theme="dark"] .skeleton-shimmer {
    background: linear-gradient(
        110deg,
        rgba(255, 255, 255, 0.04) 8%,
        rgba(255, 255, 255, 0.02) 18%,
        rgba(255, 255, 255, 0.04) 33%
    ) !important;
    background-size: 200% 100% !important;
}


/* ------------------------------------------
   18. TYPING CURSOR — PREMIUM
   ------------------------------------------ */
.typing-cursor {
    color: var(--premium-rose);
    font-weight: 300;
    animation: typingCursorBlink 1s ease-in-out infinite;
}

@keyframes typingCursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}


/* ------------------------------------------
   19. HERO FLOATING SHAPES — PREMIUM
   ------------------------------------------ */
.hero-shape {
    background: radial-gradient(circle, rgba(232, 69, 60, 0.07) 0%, rgba(245, 158, 11, 0.04) 60%, transparent 80%) !important;
    border: 1px solid rgba(232, 69, 60, 0.04);
    backdrop-filter: blur(1px);
}

/* Alternate colors for variety */
.hero-shape:nth-child(even) {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, rgba(139, 92, 246, 0.03) 60%, transparent 80%) !important;
    border-color: rgba(99, 102, 241, 0.04);
}

.hero-shape:nth-child(3n) {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, rgba(251, 191, 36, 0.03) 60%, transparent 80%) !important;
    border-color: rgba(245, 158, 11, 0.04);
}


/* ------------------------------------------
   20. SCROLL REVEAL ANIMATIONS
   ------------------------------------------ */
/* CSS-only reveal using scroll-driven animations where supported */
@supports (animation-timeline: scroll()) {
    .offers-section,
    .freshdhara-specials,
    .category-grid-section,
    .premium-service-section,
    .service-area-section,
    .customer-reviews-section {
        animation: premiumReveal linear both;
        animation-timeline: view();
        animation-range: entry 0% entry 30%;
    }
}


/* ------------------------------------------
   20. DARK MODE REFINEMENTS
   ------------------------------------------ */
[data-theme="dark"] .hero-lux {
    background: var(--gradient-hero);
}

[data-theme="dark"] .offers-section {
    background: var(--gradient-section-warm);
}

[data-theme="dark"] .freshdhara-specials {
    background: var(--gradient-section-cool);
}

[data-theme="dark"] .category-grid-section {
    background: transparent;
}

[data-theme="dark"] .premium-service-section {
    background: transparent;
}

[data-theme="dark"] .service-area-section {
    background: var(--gradient-section-cool);
}

[data-theme="dark"] .customer-reviews-section {
    background: var(--gradient-section-warm);
}

[data-theme="dark"] .review-card {
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-premium-sm);
}

[data-theme="dark"] .review-card:hover {
    box-shadow: var(--shadow-premium-lg);
    border-color: rgba(245, 158, 11, 0.15);
}

[data-theme="dark"] .special-product-card {
    border-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .special-product-card:hover {
    border-color: rgba(232, 69, 60, 0.15);
}

[data-theme="dark"] .service-area-card {
    border-color: rgba(16, 185, 129, 0.1);
}

[data-theme="dark"] .footer-v2 {
    background: linear-gradient(180deg, #0a0e1a 0%, #111827 100%);
}

[data-theme="dark"] .brand-lux {
    background: linear-gradient(135deg, #ff6b5e 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] #app-preloader {
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%) !important;
}

[data-theme="dark"] .service-area-badges span,
[data-theme="dark"] .service-area-badges a {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

[data-theme="dark"] .search-lux-form {
    background: var(--surface-elevated) !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
}

[data-theme="dark"] .search-lux-form:focus-within {
    border-color: rgba(232, 69, 60, 0.3) !important;
    box-shadow: 0 30px 70px rgba(0,0,0,0.2), 0 0 0 3px rgba(232, 69, 60, 0.1) !important;
}

[data-theme="dark"] .hero-cta-btn {
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .mobile-bottom-nav a.active {
    background: rgba(255, 111, 97, 0.18) !important;
}
