/* ═══════════════════════════════════════════════════
   MAHAJANA SUPER — SEASONAL LANDING (Avurudu palette)
   Brand ref: Golden #FEC700 · Forest #02462E (coupon/avurudu)
   ═══════════════════════════════════════════════════ */

/* ── Design Tokens ───────────────────────────────── */
:root {
    /* Avurudu / brand */
    --sun-yellow:     #FEC700;
    --sun-yellow-soft:#FFE87A;
    --forest:         #02462E;
    --forest-deep:    #011D18;
    --forest-mid:     #03552f;
    --amber:          #F9A825;
    --maroon:         #7B1832;

    /* Legacy aliases — mapped to seasonal palette */
    --red:        var(--maroon);
    --red-light:  #A52A45;
    --red-dark:   #5C1026;
    --blue:       #1565C0;
    --blue-light: #42A5F5;
    --gold:       var(--sun-yellow);
    --gold-light: var(--sun-yellow-soft);

    --bg:         #F6F3EA;
    --bg-card:    #FFFFFF;
    --bg-dark:    var(--forest-deep);
    --bg-glass:   rgba(255,255,255,0.88);

    --text:       #0A1F14;
    --text-2:     #3D5245;
    --text-3:     #5C6B60;
    --border:     rgba(2,70,46,0.08);

    --radius-sm:  10px;
    --radius-md:  16px;
    --radius-lg:  24px;
    --radius-xl:  32px;

    --shadow-sm:  0 1px 3px rgba(1,29,24,0.06);
    --shadow-md:  0 4px 20px rgba(1,29,24,0.08);
    --shadow-lg:  0 12px 40px rgba(1,29,24,0.1);
    --shadow-xl:  0 24px 60px rgba(1,29,24,0.14);

    --font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --marker:     'Permanent Marker', cursive;
    --sinhala:    'Noto Serif Sinhala', 'Noto Sans Sinhala', serif;
    --ease:       cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce:cubic-bezier(0.34, 1.56, 0.64, 1);
}

body[data-day-theme="wednesday"] {
    --sun-yellow:      #ffdd00;
    --sun-yellow-soft: #ffe866;
    --forest:          #111111;
    --forest-deep:     #000000;
    --forest-mid:      #1a1a1a;
    --amber:           #ffa500;
    --maroon:          #ffdd00;
    --red:             #ffdd00;
    --red-light:       #ffe866;
    --red-dark:        #cc9900;
    --gold:            #ffdd00;
    --gold-light:      #ffe866;
    --bg:              #050505;
    --bg-card:         #111111;
    --bg-dark:         #000000;
    --bg-glass:        rgba(0, 0, 0, 0.84);
    --text:            #ffffff;
    --text-2:          #e5e7eb;
    --text-3:          #d1d5db;
    --border:          rgba(255, 221, 0, 0.18);
    --shadow-sm:       0 2px 10px rgba(255, 221, 0, 0.08);
    --shadow-md:       0 4px 24px rgba(255, 221, 0, 0.12);
    --shadow-lg:       0 12px 40px rgba(255, 221, 0, 0.14);
    --shadow-xl:       0 24px 60px rgba(255, 221, 0, 0.18);
}

/* Kolam strip — matches coupon/avurudu festive rail */
.kolam {
    height: 8px;
    background: repeating-linear-gradient(90deg,
        var(--forest-deep) 0 10px,
        var(--sun-yellow) 10px 22px,
        var(--amber) 22px 30px,
        var(--sun-yellow) 30px 42px,
        var(--forest-deep) 42px 52px
    );
}

body[data-day-theme="wednesday"] .kolam {
    background: repeating-linear-gradient(90deg,
        #000000 0 12px,
        #ffdd00 12px 24px,
        #ffffff 24px 28px,
        #ffdd00 28px 40px,
        #000000 40px 52px
    );
}

/* ── Reset & Base ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-family: var(--font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

body[data-day-theme="wednesday"] {
    background:
        radial-gradient(circle at 20% 20%, rgba(255,221,0,0.06) 0%, transparent 30%),
        radial-gradient(circle at 80% 10%, rgba(255,165,0,0.05) 0%, transparent 25%),
        linear-gradient(180deg, #000000 0%, #070707 100%);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; -webkit-appearance: none; }
input { -webkit-appearance: none; appearance: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Scroll Reveal ───────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════
   SECTION 1: HERO — golden field → forest wave (Avurudu)
   ═══════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--sun-yellow);
    padding-bottom: 0;
}

.hero__glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 90% 60% at 50% -10%, rgba(255,240,90,0.85) 0%, transparent 65%),
        radial-gradient(ellipse 55% 45% at 100% 100%, rgba(230,120,0,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 40% 35% at 0% 80%, rgba(2,70,46,0.07) 0%, transparent 55%);
}

.hero__bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 8s ease-in-out infinite;
}
.hero__orb--forest {
    width: 420px; height: 420px;
    bottom: -8%; left: -10%;
    background: radial-gradient(circle, rgba(2,70,46,0.22) 0%, transparent 70%);
    animation-delay: 1s;
}
.hero__orb--amber {
    width: 360px; height: 360px;
    top: -5%; right: -8%;
    background: radial-gradient(circle, rgba(249,168,37,0.35) 0%, transparent 70%);
    animation-delay: 0s;
}
.hero__orb--sun {
    width: 280px; height: 280px;
    top: 42%; left: 28%;
    background: radial-gradient(circle, rgba(255,232,122,0.5) 0%, transparent 68%);
    animation-delay: 4s;
}

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

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: calc(env(safe-area-inset-top, 0px) + 48px) 24px 100px;
    max-width: 820px;
}

.hero__logo {
    height: 56px;
    width: auto;
    margin: 0 auto 20px;
    filter: none;
    opacity: 0.96;
}

.hero__ai-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 10px;
    background: var(--forest-deep);
    border: 1px solid rgba(254,199,0,0.28);
    margin-bottom: 18px;
    box-shadow: 0 4px 18px rgba(1,29,24,0.25);
}
.hero__ai-chip-quiet {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.55);
}
.hero__ai-chip-marker {
    font-family: var(--marker);
    font-size: 15px;
    color: var(--sun-yellow);
    font-weight: 400;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(2,70,46,0.12);
    color: var(--forest);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.hero__badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--forest);
    animation: dotPulseForest 2s ease-in-out infinite;
}

@keyframes dotPulseForest {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.55; transform: scale(0.85); }
}

.hero__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
    line-height: 1.05;
}

.hero__sinhala {
    font-family: var(--sinhala);
    font-weight: 900;
    font-size: clamp(2.5rem, 11vw, 4.5rem);
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #01361e 0%, #02462E 22%, #3a7a2e 38%, #FEC700 48%, #fff5a8 52%, #FEC700 58%, #02462E 78%, #011D18 100%);
    background-size: 280% 280%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 3px 0 rgba(1,29,24,0.12));
    animation: avuruduGlowHero 6s ease-in-out infinite;
}

@keyframes avuruduGlowHero {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

.hero__title-en {
    font-family: var(--marker);
    font-size: clamp(2rem, 6vw, 3.25rem);
    font-weight: 400;
    color: var(--forest-deep);
    margin-top: 4px;
}
.hero__title-en span {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 45%, var(--amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: clamp(15px, 2.2vw, 18px);
    color: rgba(1,29,24,0.72);
    font-weight: 500;
    line-height: 1.65;
    max-width: 34rem;
    margin: 0 auto 32px;
    text-wrap: pretty;
}
.hero__subtitle strong {
    color: var(--forest-deep);
    font-weight: 800;
}

.hero__cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 800;
    color: var(--forest-deep);
    background: var(--sun-yellow);
    border: 2px solid rgba(1,29,24,0.08);
    box-shadow: 0 2px 4px rgba(1,29,24,0.1), 0 8px 28px rgba(254,199,0,0.35);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), opacity 0.2s;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1,29,24,0.12), 0 12px 36px rgba(254,199,0,0.45);
    opacity: 0.95;
}
.btn-primary--ai {
    font-weight: 900;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    color: var(--forest-deep);
    border: 2px solid rgba(2,70,46,0.22);
    background: rgba(255,255,255,0.45);
    backdrop-filter: blur(8px);
    transition: all 0.3s var(--ease);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.75);
    border-color: var(--forest);
}
.btn-secondary--ghost {
    border-color: rgba(2,70,46,0.12);
    background: rgba(255,255,255,0.28);
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.hero__stat {
    text-align: center;
}
.hero__stat-num {
    font-size: 34px;
    font-weight: 800;
    color: var(--forest-deep);
    line-height: 1;
}
.hero__stat-label {
    font-size: 12px;
    color: rgba(1,29,24,0.45);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.hero__scroll {
    position: absolute;
    bottom: 88px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(1,29,24,0.35);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, rgba(2,70,46,0.35), transparent);
}

.hero__wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    line-height: 0;
    color: var(--forest-deep);
    z-index: 1;
}
.hero__wave svg {
    display: block;
    width: 100%;
    height: 52px;
}
@media (min-width: 600px) {
    .hero__wave svg { height: 76px; }
}

.hero__wednesday-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 100px;
    font-family: var(--marker);
    font-size: clamp(1.05rem, 3vw, 1.3rem);
    color: #000000;
    background: linear-gradient(135deg, #ffdd00 0%, #ffa500 100%);
    box-shadow: 0 8px 28px rgba(255, 221, 0, 0.22);
}
.hero__title-en--wednesday {
    color: #ffffff;
    text-shadow: 0 0 18px rgba(255, 221, 0, 0.2);
}
.hero__title-en--wednesday span {
    background: linear-gradient(135deg, #ffdd00 0%, #ffffff 58%, #ffdd00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body[data-day-theme="wednesday"] .hero {
    background: linear-gradient(160deg, #000000 0%, #090909 52%, #111111 100%);
}
body[data-day-theme="wednesday"] .hero__glow {
    background:
        radial-gradient(ellipse 70% 45% at 50% -10%, rgba(255,221,0,0.22) 0%, transparent 60%),
        radial-gradient(circle at 12% 78%, rgba(255,221,0,0.1) 0%, transparent 35%),
        radial-gradient(circle at 85% 20%, rgba(255,165,0,0.12) 0%, transparent 28%);
}
body[data-day-theme="wednesday"] .hero__orb--forest {
    background: radial-gradient(circle, rgba(255,221,0,0.18) 0%, transparent 68%);
}
body[data-day-theme="wednesday"] .hero__orb--amber {
    background: radial-gradient(circle, rgba(255,165,0,0.26) 0%, transparent 70%);
}
body[data-day-theme="wednesday"] .hero__orb--sun {
    background: radial-gradient(circle, rgba(255,255,255,0.16) 0%, transparent 68%);
}
body[data-day-theme="wednesday"] .hero__logo {
    filter: drop-shadow(0 0 16px rgba(255,221,0,0.2));
}
body[data-day-theme="wednesday"] .hero__ai-chip {
    background: linear-gradient(135deg, #ffdd00 0%, #ffa500 100%);
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 12px 34px rgba(255, 221, 0, 0.22);
}
body[data-day-theme="wednesday"] .hero__ai-chip-quiet,
body[data-day-theme="wednesday"] .hero__ai-chip-marker {
    color: #000000;
}
body[data-day-theme="wednesday"] .hero__badge {
    background: rgba(255, 221, 0, 0.08);
    border-color: rgba(255, 221, 0, 0.22);
    color: #ffdd00;
    box-shadow: 0 4px 20px rgba(255, 221, 0, 0.08);
}
body[data-day-theme="wednesday"] .hero__badge-dot {
    background: #ffdd00;
}
body[data-day-theme="wednesday"] .hero__subtitle {
    color: rgba(255,255,255,0.78);
}
body[data-day-theme="wednesday"] .hero__subtitle strong {
    color: #ffdd00;
}
body[data-day-theme="wednesday"] .btn-primary {
    color: #000000;
    background: linear-gradient(135deg, #ffdd00 0%, #ffa500 100%);
    border-color: rgba(255,255,255,0.06);
    box-shadow: 0 10px 30px rgba(255, 221, 0, 0.22);
}
body[data-day-theme="wednesday"] .btn-primary:hover {
    box-shadow: 0 16px 38px rgba(255, 221, 0, 0.28);
}
body[data-day-theme="wednesday"] .btn-secondary {
    color: #ffffff;
    border-color: rgba(255, 221, 0, 0.22);
    background: rgba(255, 221, 0, 0.04);
}
body[data-day-theme="wednesday"] .btn-secondary:hover {
    background: rgba(255, 221, 0, 0.1);
    border-color: rgba(255, 221, 0, 0.42);
}
body[data-day-theme="wednesday"] .hero__stat {
    background: rgba(255, 221, 0, 0.05);
    border: 1px solid rgba(255, 221, 0, 0.12);
}
body[data-day-theme="wednesday"] .hero__stat-num {
    color: #ffdd00;
}
body[data-day-theme="wednesday"] .hero__stat-label,
body[data-day-theme="wednesday"] .hero__scroll {
    color: rgba(255,255,255,0.58);
}
body[data-day-theme="wednesday"] .hero__scroll-line {
    background: linear-gradient(to bottom, rgba(255,221,0,0.45), transparent);
}
body[data-day-theme="wednesday"] .hero__wave {
    color: #070707;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════════════
   SECTION 2: MARQUEE TICKER
   ═══════════════════════════════════════════════════ */
.ticker {
    background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 55%, var(--forest-mid) 100%);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}
body[data-day-theme="wednesday"] .ticker {
    background: linear-gradient(135deg, #050505 0%, #111111 55%, #000000 100%);
    border-top: 1px solid rgba(255, 221, 0, 0.18);
    border-bottom: 1px solid rgba(255, 221, 0, 0.18);
}
body[data-day-theme="wednesday"] .ticker__discount {
    background: linear-gradient(135deg, #ffdd00, #ffa500);
    color: #000000;
}
body[data-day-theme="wednesday"] .ticker__item {
    color: #ffffff;
}
.ticker__track {
    display: flex;
    width: max-content;
    animation: tickerScroll 60s linear infinite;
}
.ticker__track:hover { animation-play-state: paused; }

.ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 32px;
    white-space: nowrap;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}
.ticker__discount {
    background: rgba(255,255,255,0.2);
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
}
.ticker__sep {
    color: rgba(255,255,255,0.3);
    padding: 0 8px;
}

@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════
   SECTION 3: STATS BAR
   ═══════════════════════════════════════════════════ */
.stats-bar {
    padding: 48px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}
body[data-day-theme="wednesday"] .stats-bar,
body[data-day-theme="wednesday"] .categories,
body[data-day-theme="wednesday"] .offers,
body[data-day-theme="wednesday"] .branches {
    background: #050505;
}
body[data-day-theme="wednesday"] .stats-bar__item,
body[data-day-theme="wednesday"] .cat-card,
body[data-day-theme="wednesday"] .offer-card,
body[data-day-theme="wednesday"] .branch-card {
    background: #111111;
    border-color: rgba(255, 221, 0, 0.14);
    box-shadow: 0 8px 30px rgba(255, 221, 0, 0.04);
}
body[data-day-theme="wednesday"] .stats-bar__num,
body[data-day-theme="wednesday"] .section-title,
body[data-day-theme="wednesday"] .branch-card__name {
    color: #ffdd00;
}
body[data-day-theme="wednesday"] .section-subtitle,
body[data-day-theme="wednesday"] .cat-card__count,
body[data-day-theme="wednesday"] .branch-card__type,
body[data-day-theme="wednesday"] .branch-card__info li,
body[data-day-theme="wednesday"] .stats-bar__label {
    color: rgba(255,255,255,0.72);
}
body[data-day-theme="wednesday"] .section-tag--forest,
body[data-day-theme="wednesday"] .section-tag--gold {
    background: rgba(255, 221, 0, 0.1);
    color: #ffdd00;
    border-color: rgba(255, 221, 0, 0.15);
}
body[data-day-theme="wednesday"] .cat-card__name,
body[data-day-theme="wednesday"] .offer-card__name,
body[data-day-theme="wednesday"] .offer-card__mrp,
body[data-day-theme="wednesday"] .footer__brand-desc,
body[data-day-theme="wednesday"] .footer__links a,
body[data-day-theme="wednesday"] .footer__copy {
    color: rgba(255,255,255,0.84);
}
body[data-day-theme="wednesday"] .offer-card__img-wrap,
body[data-day-theme="wednesday"] .offers__search input,
body[data-day-theme="wednesday"] .btn-load,
body[data-day-theme="wednesday"] .btn-branch--call {
    background: #171717;
    color: #ffffff;
    border-color: rgba(255, 221, 0, 0.14);
}
body[data-day-theme="wednesday"] .offers__search-icon {
    color: rgba(255,255,255,0.62);
}
body[data-day-theme="wednesday"] .offer-card__price,
body[data-day-theme="wednesday"] .offer-card__category,
body[data-day-theme="wednesday"] .btn-load:hover {
    color: #ffdd00;
}
body[data-day-theme="wednesday"] .offer-card__img {
    width: 132px;
    height: 132px;
    padding: 16px;
    background: #ffffff;
    border-radius: 28px;
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.28),
        inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    object-fit: contain;
}
body[data-day-theme="wednesday"] .offer-card__img-placeholder {
    width: 132px;
    height: 132px;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
    color: #111111;
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.28),
        inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}
body[data-day-theme="wednesday"] .offer-card__ending {
    background: rgba(255, 221, 0, 0.18);
    color: #ffdd00;
}
body[data-day-theme="wednesday"] .filter-btn {
    color: #ffffff;
    background: #111111;
    border-color: rgba(255, 221, 0, 0.14);
}
body[data-day-theme="wednesday"] .filter-btn:hover,
body[data-day-theme="wednesday"] .filter-btn.active {
    color: #000000;
    background: linear-gradient(135deg, #ffdd00 0%, #ffa500 100%);
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 8px 24px rgba(255, 221, 0, 0.22);
}
body[data-day-theme="wednesday"] .branch-card__accent {
    background: linear-gradient(90deg, #ffdd00 0%, #ffa500 100%);
}
body[data-day-theme="wednesday"] .btn-branch--directions,
body[data-day-theme="wednesday"] .btn-gold {
    color: #000000;
    background: linear-gradient(135deg, #ffdd00 0%, #ffa500 100%);
}
body[data-day-theme="wednesday"] .membership {
    background: linear-gradient(160deg, #000000 0%, #090909 42%, #111111 100%);
}
body[data-day-theme="wednesday"] .membership__title,
body[data-day-theme="wednesday"] .footer__brand-name,
body[data-day-theme="wednesday"] .footer__col-title,
body[data-day-theme="wednesday"] .footer__festive {
    color: #ffdd00;
}
body[data-day-theme="wednesday"] .membership__desc {
    color: rgba(255,255,255,0.74);
}
body[data-day-theme="wednesday"] .membership__note {
    color: #ffdd00;
    background: rgba(255, 221, 0, 0.08);
    border: 1px solid rgba(255, 221, 0, 0.16);
}
body[data-day-theme="wednesday"] .footer {
    background: #000000;
    border-top: 1px solid rgba(255, 221, 0, 0.14);
}
body[data-day-theme="wednesday"] .footer__social-btn:hover {
    color: #000000;
    border-color: #ffdd00;
    background: #ffdd00;
}

.active-category-label {
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(2,70,46,0.1);
    color: var(--forest);
    cursor: pointer;
}
body[data-day-theme="wednesday"] .active-category-label {
    background: rgba(255, 221, 0, 0.1);
    color: #ffdd00;
}
.stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stats-bar__item {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.stats-bar__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.stats-bar__icon {
    font-size: 28px;
    margin-bottom: 8px;
}
.stats-bar__num {
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
}
.stats-bar__label {
    font-size: 13px;
    color: var(--text-3);
    margin-top: 4px;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════
   MAHAJANA AI × AVURUDU — mirrors coupon campaign story
   ═══════════════════════════════════════════════════ */
.ai-season {
    position: relative;
    padding: 72px 0 80px;
    background: var(--forest-deep);
    overflow: hidden;
}
.ai-season__deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.5;
    background:
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(254,199,0,0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 90% 80%, rgba(2,70,46,0.5) 0%, transparent 45%);
}
.ai-season__card {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 36px;
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,0.97);
    border: 1px solid rgba(254,199,0,0.15);
    box-shadow:
        0 1px 2px rgba(0,0,0,0.06),
        0 20px 50px rgba(1,29,24,0.35);
}
.ai-season__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 12px;
    background: rgba(2,70,46,0.06);
    border: 1px solid rgba(2,70,46,0.1);
    font-size: 12px;
    font-weight: 800;
    color: var(--forest);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}
.ai-season__badge img {
    border-radius: 6px;
}
.ai-season__title {
    font-family: var(--marker);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 400;
    color: var(--forest-deep);
    line-height: 1.2;
    margin-bottom: 14px;
    text-wrap: balance;
}
.ai-season__title em {
    font-style: normal;
    color: var(--forest-mid);
}
.ai-season__lead {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-2);
    text-wrap: pretty;
}
.ai-season__lead strong {
    color: var(--forest-deep);
    font-weight: 800;
}
.ai-season__chips {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 24px;
    padding: 0;
    justify-content: center;
}
.ai-season__chips li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: var(--forest-deep);
    background: rgba(254,199,0,0.14);
    border: 1px solid rgba(254,199,0,0.25);
}
.ai-season__chip-icon {
    font-size: 15px;
    line-height: 1;
}
.ai-season__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 8px;
}
.ai-season__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 900;
    color: var(--forest-deep);
    background: var(--sun-yellow);
    border: 2px solid rgba(1,29,24,0.06);
    box-shadow: 0 4px 20px rgba(254,199,0,0.35);
    transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.ai-season__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(254,199,0,0.45);
}
.ai-season__cta--outline {
    background: transparent;
    color: var(--forest);
    border-color: rgba(2,70,46,0.25);
    box-shadow: none;
    font-weight: 800;
}
.ai-season__cta--outline:hover {
    background: rgba(2,70,46,0.06);
    box-shadow: none;
}
.ai-season__fine {
    margin-top: 22px;
    text-align: center;
    font-size: 12px;
    color: var(--text-3);
    line-height: 1.5;
}
@media (max-width: 600px) {
    .ai-season { padding: 48px 0 56px; }
    .ai-season__card { padding: 28px 20px; margin: 0 8px; }
    .ai-season__chips { flex-direction: column; align-items: stretch; }
    .ai-season__chips li { justify-content: center; }

    .delivery { padding: 56px 0 64px; }
    .delivery__shell { grid-template-columns: 1fr; gap: 22px; }
    .delivery__feature-grid { grid-template-columns: 1fr; }
    .delivery__actions { flex-direction: column; }
    .delivery__cta { width: 100%; }
    .delivery__visual { min-height: auto; }
    .delivery__browser { max-width: none; }
    .delivery__floating-pill { position: static; margin-top: 12px; }
    .delivery__browser-body { padding: 0 14px 14px; }
    .delivery__browser-bar { margin: 0 14px 12px; }
    .delivery__hero-card { padding: 22px 18px; }
    .delivery__mini-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   HOME DELIVERY — shopmahajana.com
   ═══════════════════════════════════════════════════ */
.btn-secondary--delivery {
    border-color: rgba(37, 211, 102, 0.22);
    background: rgba(37, 211, 102, 0.08);
}
.btn-secondary--delivery:hover {
    border-color: rgba(37, 211, 102, 0.48);
    background: rgba(37, 211, 102, 0.14);
}

.delivery {
    position: relative;
    padding: 84px 0 92px;
    background:
        radial-gradient(circle at 10% 18%, rgba(2,70,46,0.08) 0%, transparent 28%),
        radial-gradient(circle at 90% 82%, rgba(254,199,0,0.1) 0%, transparent 26%),
        linear-gradient(180deg, #f8f5ee 0%, #f3efe3 100%);
    overflow: hidden;
}
.delivery__shell {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
}
.delivery__copy {
    position: relative;
    z-index: 1;
}
.delivery__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(37,211,102,0.1);
    border: 1px solid rgba(37,211,102,0.18);
    color: #1f8f4d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.delivery__title {
    font-family: var(--marker);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.08;
    color: var(--forest-deep);
    text-wrap: balance;
}
.delivery__title span {
    background: linear-gradient(135deg, var(--forest) 0%, #1f8f4d 42%, var(--sun-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.delivery__lead {
    margin-top: 18px;
    max-width: 42rem;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-2);
    text-wrap: pretty;
}
.delivery__lead strong {
    color: var(--forest-deep);
    font-weight: 800;
}
.delivery__feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}
.delivery__feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 18px 16px;
    border-radius: 22px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(2,70,46,0.08);
    box-shadow: 0 10px 28px rgba(1,29,24,0.06);
}
.delivery__feature-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(2,70,46,0.92) 0%, rgba(31,143,77,0.92) 100%);
    color: #ffffff;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(2,70,46,0.18);
}
.delivery__feature-title {
    color: var(--forest-deep);
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 4px;
}
.delivery__feature p {
    color: var(--text-2);
    font-size: 13px;
    line-height: 1.6;
}
.delivery__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}
.delivery__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366 0%, #1f8f4d 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.24);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
}
.delivery__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(37, 211, 102, 0.3);
    filter: brightness(1.02);
}
.delivery__cta--ghost {
    background: rgba(255,255,255,0.72);
    color: var(--forest);
    border: 1px solid rgba(2,70,46,0.12);
    box-shadow: 0 8px 20px rgba(1,29,24,0.06);
}
.delivery__cta--ghost:hover {
    box-shadow: 0 10px 24px rgba(1,29,24,0.08);
}
.delivery__visual {
    position: relative;
    min-height: 520px;
}
.delivery__browser {
    position: relative;
    margin-left: auto;
    max-width: 540px;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(2,70,46,0.08);
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 24px 60px rgba(1,29,24,0.14);
}
.delivery__browser-top {
    display: flex;
    gap: 8px;
    padding: 16px 18px 10px;
    background: rgba(2,70,46,0.04);
}
.delivery__browser-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(2,70,46,0.18);
}
.delivery__browser-top span:nth-child(2) { background: rgba(254,199,0,0.6); }
.delivery__browser-top span:nth-child(3) { background: rgba(37,211,102,0.6); }
.delivery__browser-bar {
    margin: 0 18px 12px;
    padding: 12px 16px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(2,70,46,0.08);
    color: var(--forest);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.delivery__browser-body {
    padding: 0 18px 18px;
}
.delivery__hero-card {
    padding: 26px 24px;
    border-radius: 22px;
    background: linear-gradient(135deg, #02462e 0%, #1f8f4d 54%, #25d366 100%);
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(2,70,46,0.22);
}
.delivery__hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.delivery__hero-title {
    margin-top: 16px;
    font-family: var(--marker);
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.12;
}
.delivery__hero-sub {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255,255,255,0.86);
}
.delivery__mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}
.delivery__mini-card {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(2,70,46,0.08);
}
.delivery__mini-label {
    color: #1f8f4d;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.delivery__mini-value {
    margin-top: 6px;
    color: var(--forest-deep);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}
.delivery__floating-pill {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    color: var(--forest);
    border: 1px solid rgba(2,70,46,0.08);
    box-shadow: 0 14px 30px rgba(1,29,24,0.1);
    font-size: 13px;
    font-weight: 800;
}
.delivery__floating-pill--one {
    top: 54px;
    left: -12px;
}
.delivery__floating-pill--two {
    right: 10px;
    bottom: 24px;
}

body[data-day-theme="wednesday"] .btn-secondary--delivery {
    border-color: rgba(255,221,0,0.22);
    background: rgba(255,221,0,0.08);
}
body[data-day-theme="wednesday"] .btn-secondary--delivery:hover {
    border-color: rgba(255,221,0,0.38);
    background: rgba(255,221,0,0.14);
}
body[data-day-theme="wednesday"] .delivery {
    background:
        radial-gradient(circle at 18% 22%, rgba(255,221,0,0.08) 0%, transparent 28%),
        radial-gradient(circle at 88% 80%, rgba(255,165,0,0.06) 0%, transparent 24%),
        linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
}
body[data-day-theme="wednesday"] .delivery__eyebrow {
    background: rgba(255,221,0,0.08);
    border-color: rgba(255,221,0,0.18);
    color: #ffdd00;
}
body[data-day-theme="wednesday"] .delivery__title {
    color: #ffffff;
}
body[data-day-theme="wednesday"] .delivery__title span {
    background: linear-gradient(135deg, #ffdd00 0%, #ffffff 56%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
body[data-day-theme="wednesday"] .delivery__lead,
body[data-day-theme="wednesday"] .delivery__feature p {
    color: rgba(255,255,255,0.76);
}
body[data-day-theme="wednesday"] .delivery__lead strong,
body[data-day-theme="wednesday"] .delivery__feature-title {
    color: #ffdd00;
}
body[data-day-theme="wednesday"] .delivery__feature {
    background: rgba(17,17,17,0.88);
    border-color: rgba(255,221,0,0.12);
    box-shadow: 0 12px 30px rgba(255,221,0,0.06);
}
body[data-day-theme="wednesday"] .delivery__feature-icon {
    background: linear-gradient(135deg, #ffdd00 0%, #ffa500 100%);
    color: #000000;
    box-shadow: 0 12px 24px rgba(255,221,0,0.14);
}
body[data-day-theme="wednesday"] .delivery__cta {
    background: linear-gradient(135deg, #ffdd00 0%, #ffa500 100%);
    color: #000000;
    box-shadow: 0 14px 34px rgba(255,221,0,0.18);
}
body[data-day-theme="wednesday"] .delivery__cta--ghost {
    background: rgba(17,17,17,0.86);
    color: #ffdd00;
    border-color: rgba(255,221,0,0.16);
}
body[data-day-theme="wednesday"] .delivery__browser {
    background: #111111;
    border-color: rgba(255,221,0,0.12);
    box-shadow:
        0 1px 2px rgba(0,0,0,0.2),
        0 24px 60px rgba(255,221,0,0.08);
}
body[data-day-theme="wednesday"] .delivery__browser-top {
    background: rgba(255,221,0,0.04);
}
body[data-day-theme="wednesday"] .delivery__browser-top span {
    background: rgba(255,255,255,0.16);
}
body[data-day-theme="wednesday"] .delivery__browser-bar,
body[data-day-theme="wednesday"] .delivery__mini-card,
body[data-day-theme="wednesday"] .delivery__floating-pill {
    background: #0f0f0f;
    border-color: rgba(255,221,0,0.12);
    color: #ffffff;
}
body[data-day-theme="wednesday"] .delivery__browser-bar {
    color: #ffdd00;
}
body[data-day-theme="wednesday"] .delivery__hero-card {
    background: linear-gradient(135deg, #111111 0%, #1b1b1b 42%, #3b2b00 100%);
    border: 1px solid rgba(255,221,0,0.14);
    box-shadow: 0 16px 36px rgba(255,221,0,0.08);
}
body[data-day-theme="wednesday"] .delivery__hero-badge {
    background: rgba(255,221,0,0.1);
    border-color: rgba(255,221,0,0.16);
    color: #ffdd00;
}
body[data-day-theme="wednesday"] .delivery__mini-label {
    color: #ffdd00;
}
body[data-day-theme="wednesday"] .delivery__mini-value {
    color: #ffffff;
}

/* ═══════════════════════════════════════════════════
   E-GIFT PROMO
   ═══════════════════════════════════════════════════ */
.egift-promo {
    padding: 78px 0 84px;
    background:
        radial-gradient(circle at 14% 18%, rgba(255,204,92,0.16) 0%, transparent 24%),
        radial-gradient(circle at 82% 14%, rgba(2,70,46,0.14) 0%, transparent 28%),
        linear-gradient(180deg, #fffaf0 0%, #f6fbf6 100%);
}
.egift-promo__shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    gap: 30px;
    align-items: center;
}
.egift-promo__copy,
.egift-promo__visual {
    border-radius: 30px;
    border: 1px solid rgba(2,70,46,0.08);
    box-shadow: 0 22px 54px rgba(2,70,46,0.08);
}
.egift-promo__copy {
    padding: 34px;
    background: linear-gradient(160deg, rgba(255,255,255,0.92) 0%, rgba(255,250,240,0.96) 100%);
}
.egift-promo__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(120, 1, 22, 0.08);
    color: #780116;
    border: 1px solid rgba(120, 1, 22, 0.1);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.egift-promo__title {
    margin-top: 20px;
    font-family: var(--marker);
    font-size: clamp(2rem, 4.6vw, 3.35rem);
    line-height: 1.06;
    color: var(--forest-deep);
    text-wrap: balance;
}
.egift-promo__title span {
    display: inline-block;
    background: linear-gradient(135deg, #780116 0%, #b83742 42%, #f0b84b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.egift-promo__lead {
    margin-top: 18px;
    color: var(--text-2);
    font-size: 15px;
    line-height: 1.78;
    max-width: 41rem;
}
.egift-promo__lead strong {
    color: #780116;
}
.egift-promo__points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}
.egift-promo__point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 15px;
    border-radius: 20px;
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(120,1,22,0.08);
}
.egift-promo__point i {
    margin-top: 2px;
    color: #780116;
}
.egift-promo__point span {
    color: var(--forest-deep);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 700;
}
.egift-promo__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}
.egift-promo__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #780116 0%, #9d1b2b 56%, #f0b84b 100%);
    color: #ffffff;
    border: 1px solid rgba(120,1,22,0.12);
    box-shadow: 0 16px 34px rgba(120,1,22,0.16);
    font-size: 14px;
    font-weight: 800;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
}
.egift-promo__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(120,1,22,0.22);
    filter: brightness(1.02);
}
.egift-promo__cta--ghost {
    background: rgba(255,255,255,0.82);
    color: #780116;
    box-shadow: 0 10px 24px rgba(120,1,22,0.08);
}
.egift-promo__note {
    margin-top: 14px;
    color: var(--text-3);
    font-size: 12px;
    line-height: 1.6;
}
.egift-promo__visual {
    padding: 24px;
    background:
        radial-gradient(circle at 78% 18%, rgba(240,184,75,0.2) 0%, transparent 24%),
        linear-gradient(160deg, #fff9ef 0%, #fff4f6 100%);
}
.egift-promo__card {
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(145deg, #780116 0%, #a32636 50%, #f0b84b 160%);
    color: #ffffff;
    box-shadow: 0 24px 52px rgba(120,1,22,0.22);
}
.egift-promo__card-top,
.egift-promo__card-chips {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.egift-promo__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.egift-promo__brand-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.egift-promo__brand-pill,
.egift-promo__card-badge,
.egift-promo__chip {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.14);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.egift-promo__card-body {
    margin-top: 28px;
}
.egift-promo__card-title {
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    line-height: 1.12;
    font-weight: 800;
    max-width: 20rem;
}
.egift-promo__card-copy {
    margin-top: 12px;
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    line-height: 1.7;
    max-width: 24rem;
}
.egift-promo__card-chips {
    margin-top: 22px;
    justify-content: flex-start;
}
.egift-promo__mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}
.egift-promo__mini-card {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(120,1,22,0.08);
}
.egift-promo__mini-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(120,1,22,0.1);
    color: #780116;
}
.egift-promo__mini-title {
    color: var(--forest-deep);
    font-size: 14px;
    font-weight: 800;
}
.egift-promo__mini-card p {
    margin-top: 4px;
    color: var(--text-2);
    font-size: 12px;
    line-height: 1.55;
}
body[data-day-theme="wednesday"] .egift-promo {
    background:
        radial-gradient(circle at 14% 18%, rgba(255,221,0,0.08) 0%, transparent 24%),
        radial-gradient(circle at 82% 14%, rgba(255,165,0,0.06) 0%, transparent 28%),
        linear-gradient(180deg, #070707 0%, #0d0d0d 100%);
}
body[data-day-theme="wednesday"] .egift-promo__copy,
body[data-day-theme="wednesday"] .egift-promo__visual,
body[data-day-theme="wednesday"] .egift-promo__point,
body[data-day-theme="wednesday"] .egift-promo__mini-card {
    background: rgba(16,16,16,0.92);
    border-color: rgba(255,221,0,0.12);
    box-shadow: 0 18px 40px rgba(255,221,0,0.06);
}
body[data-day-theme="wednesday"] .egift-promo__eyebrow,
body[data-day-theme="wednesday"] .egift-promo__mini-icon {
    background: rgba(255,221,0,0.1);
    color: #ffdd00;
    border-color: rgba(255,221,0,0.16);
}
body[data-day-theme="wednesday"] .egift-promo__title,
body[data-day-theme="wednesday"] .egift-promo__point span,
body[data-day-theme="wednesday"] .egift-promo__mini-title {
    color: #ffffff;
}
body[data-day-theme="wednesday"] .egift-promo__title span {
    background: linear-gradient(135deg, #ffdd00 0%, #ffffff 56%, #ffa500 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
body[data-day-theme="wednesday"] .egift-promo__lead,
body[data-day-theme="wednesday"] .egift-promo__mini-card p,
body[data-day-theme="wednesday"] .egift-promo__note {
    color: rgba(255,255,255,0.72);
}
body[data-day-theme="wednesday"] .egift-promo__lead strong {
    color: #ffdd00;
}
body[data-day-theme="wednesday"] .egift-promo__cta {
    background: linear-gradient(135deg, #ffdd00 0%, #ffa500 100%);
    color: #000000;
    box-shadow: 0 16px 34px rgba(255,221,0,0.16);
}
body[data-day-theme="wednesday"] .egift-promo__cta--ghost {
    background: rgba(17,17,17,0.88);
    color: #ffdd00;
    border-color: rgba(255,221,0,0.14);
}
body[data-day-theme="wednesday"] .egift-promo__card {
    background: linear-gradient(145deg, #111111 0%, #1b1b1b 48%, #564100 160%);
    box-shadow: 0 24px 52px rgba(255,221,0,0.08);
}
@media (max-width: 980px) {
    .egift-promo__shell,
    .egift-promo__points {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .egift-promo {
        padding: 58px 0 64px;
    }
    .egift-promo__copy,
    .egift-promo__visual {
        padding: 22px;
        border-radius: 24px;
    }
    .egift-promo__mini-grid {
        grid-template-columns: 1fr;
    }
    .egift-promo__actions {
        flex-direction: column;
    }
    .egift-promo__cta {
        width: 100%;
    }
}


/* ═══════════════════════════════════════════════════
   VERA LEVEL WEDNESDAY
   ═══════════════════════════════════════════════════ */
.wednesday-spotlight {
    padding: 72px 0 80px;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,221,0,0.05) 0%, transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(255,165,0,0.05) 0%, transparent 24%),
        linear-gradient(180deg, #000000 0%, #050505 100%);
}
.wednesday-spotlight__hero,
.wednesday-spotlight__meta {
    text-align: center;
}
.wednesday-spotlight__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255,221,0,0.1);
    color: #ffdd00;
    border: 1px solid rgba(255,221,0,0.18);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.wednesday-spotlight__eyebrow-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.wednesday-spotlight__brand {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 18px;
    min-height: 112px;
}
.wednesday-spotlight__logo {
    width: min(320px, 68vw);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 22px rgba(255, 221, 0, 0.2));
}
.wednesday-spotlight__tag {
    position: absolute;
    right: clamp(2%, 12vw, 18%);
    bottom: -14px;
    width: min(128px, 24vw);
    height: auto;
    object-fit: contain;
    transform: rotate(-8deg);
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}
.wednesday-spotlight__title {
    font-family: var(--marker);
    font-weight: 400;
    font-size: clamp(1.9rem, 5vw, 3rem);
    line-height: 1.12;
    color: #ffdd00;
    text-shadow: 0 0 20px rgba(255, 221, 0, 0.22);
}
.wednesday-spotlight__lead {
    max-width: 720px;
    margin: 16px auto 0;
    color: rgba(255,255,255,0.78);
    font-size: 16px;
    line-height: 1.75;
}
.wednesday-spotlight__lead strong {
    color: #ffdd00;
}
.wednesday-spotlight__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}
.wednesday-spotlight__badge {
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffdd00 0%, #ffa500 100%);
    color: #000000;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(255, 221, 0, 0.16);
}
.wednesday-spotlight__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 40px 0 24px;
    padding: 22px 24px;
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255, 221, 0, 0.14);
}
.wednesday-spotlight__campaign {
    flex: 1 1 320px;
    text-align: left;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}
.wednesday-spotlight__stats {
    display: flex;
    gap: 14px;
}
.wednesday-spotlight__stat {
    min-width: 120px;
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,221,0,0.1) 0%, rgba(255,165,0,0.08) 100%);
    border: 1px solid rgba(255,221,0,0.16);
}
.wednesday-spotlight__stat-num {
    display: block;
    color: #ffdd00;
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
}
.wednesday-spotlight__stat-label {
    display: block;
    margin-top: 6px;
    color: rgba(255,255,255,0.72);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.wednesday-spotlight__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}
.wednesday-spotlight__actions {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}
.wednesday-spotlight__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffdd00 0%, #ffa500 100%);
    color: #000000;
    font-size: 15px;
    font-weight: 900;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 14px 34px rgba(255, 221, 0, 0.18);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
}
.wednesday-spotlight__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(255, 221, 0, 0.24);
    filter: brightness(1.03);
}
.wednesday-spotlight__cta-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.wednesday-card {
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(17,17,17,0.98) 0%, rgba(10,10,10,0.98) 100%);
    border: 1px solid rgba(255,221,0,0.14);
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(255, 221, 0, 0.08);
}
.wednesday-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,221,0,0.1);
}
.wednesday-card__campaign {
    color: rgba(255,255,255,0.82);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.wednesday-card__discount {
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffdd00 0%, #ffa500 100%);
    color: #000000;
    font-size: 12px;
    font-weight: 900;
}
.wednesday-card__body {
    padding: 18px;
}
.wednesday-card__visual {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 18px;
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.015) 100%);
    margin-bottom: 16px;
}
.wednesday-card__brand-mark {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    object-fit: contain;
    opacity: 0.9;
    filter: drop-shadow(0 0 10px rgba(255, 221, 0, 0.2));
}
.wednesday-card__image-shell {
    width: 156px;
    height: 156px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 20px rgba(0,0,0,0.24),
        inset 0 0 0 1px rgba(0,0,0,0.05);
    overflow: hidden;
}
.wednesday-card__img {
    width: 108px;
    height: 108px;
    object-fit: contain;
    mix-blend-mode: multiply;
}
.wednesday-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    font-size: 40px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
}
.wednesday-card__meta {
    color: rgba(255,221,0,0.8);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}
.wednesday-card__name {
    margin-top: 8px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
}
.wednesday-card__prices {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 12px;
}
.wednesday-card__price {
    color: #ffdd00;
    font-size: 24px;
    font-weight: 900;
}
.wednesday-card__mrp {
    color: rgba(255,255,255,0.42);
    font-size: 14px;
    text-decoration: line-through;
}
.wednesday-card__save {
    margin-top: 8px;
    color: #ffe866;
    font-size: 12px;
    font-weight: 700;
}
.wednesday-spotlight__empty {
    text-align: center;
    padding: 48px 24px;
    color: rgba(255,255,255,0.68);
}
.wednesday-spotlight__empty-icon {
    font-size: 42px;
    color: #ffdd00;
    margin-bottom: 12px;
}
.wednesday-spotlight__empty-title {
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 8px;
}

/* ═══════════════════════════════════════════════════
   WEEKEND SHOWCASE
   ═══════════════════════════════════════════════════ */
.weekend-showcase {
    padding: 76px 0 84px;
    background:
        radial-gradient(circle at 14% 18%, rgba(254, 199, 0, 0.14) 0%, transparent 26%),
        radial-gradient(circle at 86% 12%, rgba(2, 70, 46, 0.16) 0%, transparent 28%),
        linear-gradient(180deg, #f7f3e8 0%, #fffaf0 24%, #f3f7f2 100%);
    position: relative;
    overflow: hidden;
}
.weekend-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.42) 0%, transparent 32%),
        linear-gradient(315deg, rgba(255,255,255,0.24) 0%, transparent 28%);
    pointer-events: none;
}
.weekend-showcase .container {
    position: relative;
    z-index: 1;
}
.weekend-showcase__shell {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 30px;
    align-items: stretch;
}
.weekend-showcase__copy,
.weekend-showcase__visual {
    border-radius: 30px;
    border: 1px solid rgba(2,70,46,0.09);
    box-shadow: 0 24px 70px rgba(2,70,46,0.10);
}
.weekend-showcase__copy {
    padding: 34px;
    background: linear-gradient(160deg, rgba(255,255,255,0.88) 0%, rgba(255,250,240,0.96) 100%);
    backdrop-filter: blur(10px);
}
.weekend-showcase__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(2,70,46,0.08);
    color: var(--forest);
    border: 1px solid rgba(2,70,46,0.12);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.weekend-showcase__title {
    margin-top: 20px;
    font-family: var(--marker);
    font-size: clamp(2rem, 4.8vw, 3.45rem);
    line-height: 1.05;
    color: var(--forest-deep);
    text-wrap: balance;
}
.weekend-showcase__title span {
    display: inline-block;
    background: linear-gradient(135deg, var(--forest) 0%, #146b46 42%, #d5a514 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.weekend-showcase__lead {
    margin-top: 18px;
    max-width: 42rem;
    color: var(--text-2);
    font-size: 15px;
    line-height: 1.75;
}
.weekend-showcase__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}
.weekend-showcase__stat {
    padding: 16px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(2,70,46,0.07) 0%, rgba(254,199,0,0.09) 100%);
    border: 1px solid rgba(2,70,46,0.10);
}
.weekend-showcase__stat-num {
    display: block;
    color: var(--forest-deep);
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}
.weekend-showcase__stat-label {
    display: block;
    margin-top: 8px;
    color: var(--text-2);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}
.weekend-showcase__headline {
    margin-top: 22px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.76);
    border: 1px solid rgba(2,70,46,0.08);
    color: var(--forest-deep);
    font-size: 16px;
    font-weight: 700;
}
.weekend-showcase__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}
.weekend-showcase__actions--center {
    justify-content: center;
    margin-top: 28px;
}
.weekend-showcase__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--forest) 0%, #1a7a4e 54%, #dab024 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    border: 1px solid rgba(2,70,46,0.14);
    box-shadow: 0 16px 36px rgba(2,70,46,0.16);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
}
.weekend-showcase__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(2,70,46,0.18);
    filter: brightness(1.02);
}
.weekend-showcase__cta--ghost {
    background: rgba(255,255,255,0.8);
    color: var(--forest);
    box-shadow: 0 10px 24px rgba(2,70,46,0.08);
}
.weekend-showcase__visual {
    padding: 20px;
    background:
        radial-gradient(circle at 85% 18%, rgba(254,199,0,0.16) 0%, transparent 22%),
        linear-gradient(160deg, #fefbf3 0%, #f3f8f1 100%);
}
.weekend-showcase__skeleton-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 14px;
}
.weekend-showcase__skeleton-grid .skeleton:first-child {
    min-height: 320px;
}
.weekend-showcase__skeleton-grid .skeleton:not(:first-child) {
    min-height: 152px;
}
.weekend-stage__lead {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(240px, 0.85fr);
    gap: 16px;
    align-items: center;
    min-height: 320px;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(145deg, #0d3e2d 0%, #126542 58%, #f3d66c 180%);
    color: #ffffff;
    overflow: hidden;
    position: relative;
}
.weekend-stage__lead::after {
    content: "";
    position: absolute;
    inset: auto -10% -26% auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.24) 0%, transparent 68%);
}
.weekend-stage__lead-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.16);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
}
.weekend-stage__lead-title {
    margin-top: 14px;
    font-size: clamp(1.5rem, 3vw, 2.35rem);
    line-height: 1.08;
    font-weight: 800;
    text-wrap: balance;
}
.weekend-stage__lead-meta {
    margin-top: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}
.weekend-stage__lead-prices {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 18px;
}
.weekend-stage__lead-price {
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
}
.weekend-stage__lead-mrp {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    text-decoration: line-through;
}
.weekend-stage__lead-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.weekend-stage__lead-chip {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f7d55d 0%, #fff5c7 100%);
    color: #143122;
    font-size: 12px;
    font-weight: 800;
}
.weekend-stage__lead-chip--soft {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.14);
    color: #ffffff;
}
.weekend-stage__lead-visual {
    position: relative;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.weekend-stage__lead-orb {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 244, 194, 0.86) 0%, rgba(255,255,255,0.06) 66%, transparent 74%);
}
.weekend-stage__lead-image-shell {
    position: relative;
    z-index: 1;
    width: 220px;
    height: 220px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(245,245,245,0.98) 100%);
    box-shadow:
        0 22px 46px rgba(0,0,0,0.18),
        inset 0 0 0 1px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.weekend-stage__lead-img {
    width: 148px;
    height: 148px;
    object-fit: contain;
    mix-blend-mode: multiply;
}
.weekend-stage__lead-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 54px;
    color: var(--forest);
}
.weekend-stage__stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}
.weekend-stage__mini {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(2,70,46,0.08);
    box-shadow: 0 12px 30px rgba(2,70,46,0.08);
}
.weekend-stage__mini-visual {
    width: 84px;
    height: 84px;
    flex: 0 0 84px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f4f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.weekend-stage__mini-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    mix-blend-mode: multiply;
}
.weekend-stage__mini-fallback {
    font-size: 28px;
    color: var(--forest);
}
.weekend-stage__mini-category {
    color: rgba(2,70,46,0.7);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
}
.weekend-stage__mini-name {
    margin-top: 6px;
    color: var(--forest-deep);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
}
.weekend-stage__mini-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}
.weekend-stage__mini-price {
    color: var(--forest);
    font-size: 16px;
    font-weight: 900;
}
.weekend-stage__mini-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(254,199,0,0.18);
    color: var(--forest-deep);
    font-size: 11px;
    font-weight: 900;
}
.weekend-showcase__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px 0 24px;
}
.weekend-showcase__chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.76);
    color: var(--forest-deep);
    border: 1px solid rgba(2,70,46,0.08);
    box-shadow: 0 8px 18px rgba(2,70,46,0.06);
    font-size: 12px;
    font-weight: 800;
}
.weekend-showcase__chip--category {
    background: rgba(2,70,46,0.08);
}
.weekend-showcase__chip--title {
    background: rgba(254,199,0,0.18);
}
.weekend-carousel {
    margin-top: 10px;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(248,249,244,0.94) 100%);
    border: 1px solid rgba(2,70,46,0.08);
    box-shadow: 0 18px 48px rgba(2,70,46,0.08);
}
.weekend-carousel__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}
.weekend-carousel__eyebrow {
    color: rgba(2,70,46,0.62);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.weekend-carousel__title {
    margin-top: 6px;
    color: var(--forest-deep);
    font-size: clamp(1.25rem, 2.2vw, 1.8rem);
    line-height: 1.15;
    font-weight: 800;
}
.weekend-carousel__controls {
    display: flex;
    align-items: center;
    gap: 10px;
}
.weekend-carousel__nav {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(2,70,46,0.1);
    background: rgba(255,255,255,0.88);
    color: var(--forest-deep);
    box-shadow: 0 10px 24px rgba(2,70,46,0.08);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), opacity 0.25s var(--ease);
}
.weekend-carousel__nav:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(2,70,46,0.12);
}
.weekend-carousel__nav:disabled {
    opacity: 0.35;
    cursor: default;
}
.weekend-carousel__viewport {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding: 4px 2px 14px;
    scrollbar-width: none;
}
.weekend-carousel__viewport::-webkit-scrollbar {
    display: none;
}
.weekend-carousel__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 14px;
}
.weekend-carousel__hint {
    color: var(--text-2);
    font-size: 13px;
    line-height: 1.6;
}
.weekend-carousel__link {
    flex: 0 0 auto;
    color: var(--forest);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}
.weekend-carousel__link:hover {
    text-decoration: underline;
}
.weekend-card {
    flex: 0 0 min(260px, calc(100vw - 72px));
    width: min(260px, calc(100vw - 72px));
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(249,249,245,0.96) 100%);
    border: 1px solid rgba(2,70,46,0.08);
    box-shadow: 0 16px 40px rgba(2,70,46,0.08);
}
.weekend-card__visual {
    position: relative;
    min-height: 198px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(2,70,46,0.06) 0%, rgba(254,199,0,0.10) 100%);
}
.weekend-card__glow {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(254,199,0,0.28) 0%, transparent 70%);
}
.weekend-card__img {
    position: relative;
    z-index: 1;
    width: 120px;
    height: 120px;
    object-fit: contain;
    mix-blend-mode: multiply;
}
.weekend-card__img-placeholder {
    position: relative;
    z-index: 1;
    font-size: 46px;
    color: var(--forest);
}
.weekend-card__discount {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f7d55d 0%, #fff2bc 100%);
    color: #173728;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.05em;
}
.weekend-card__body {
    padding: 18px 18px 20px;
}
.weekend-card__meta {
    color: rgba(2,70,46,0.68);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.weekend-card__name {
    margin-top: 9px;
    color: var(--forest-deep);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}
.weekend-card__prices {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 12px;
}
.weekend-card__price {
    color: var(--forest);
    font-size: 24px;
    font-weight: 900;
}
.weekend-card__mrp {
    color: rgba(34,34,34,0.38);
    font-size: 14px;
    text-decoration: line-through;
}
.weekend-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
}
.weekend-card__campaign {
    color: rgba(2,70,46,0.72);
    font-size: 12px;
    font-weight: 700;
}
.weekend-card__save {
    color: #8b6b00;
    font-size: 12px;
    font-weight: 800;
}
.weekend-showcase__empty {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-2);
}
.weekend-showcase__empty-icon {
    font-size: 42px;
    color: var(--forest);
    margin-bottom: 12px;
}
.weekend-showcase__empty-title {
    font-size: 20px;
    color: var(--forest-deep);
    font-weight: 700;
    margin-bottom: 8px;
}
@media (max-width: 980px) {
    .weekend-showcase__shell,
    .weekend-stage__lead,
    .weekend-showcase__skeleton-grid {
        grid-template-columns: 1fr;
    }
    .weekend-stage__lead {
        min-height: 0;
    }
    .weekend-showcase__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .weekend-showcase {
        padding: 58px 0 64px;
    }
    .weekend-showcase__copy,
    .weekend-showcase__visual {
        padding: 22px;
        border-radius: 24px;
    }
    .weekend-showcase__stats,
    .weekend-stage__stack {
        grid-template-columns: 1fr;
    }
    .weekend-carousel {
        padding: 18px;
    }
    .weekend-carousel__head,
    .weekend-carousel__footer {
        flex-direction: column;
        align-items: stretch;
    }
    .weekend-carousel__controls {
        justify-content: flex-start;
    }
    .weekend-stage__lead-image-shell {
        width: 180px;
        height: 180px;
    }
    .weekend-showcase__actions {
        flex-direction: column;
    }
    .weekend-showcase__cta {
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════════
   SECTION 4: CATEGORIES
   ═══════════════════════════════════════════════════ */
.categories {
    padding: 80px 0;
    background: var(--bg);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.section-tag--red {
    background: rgba(211,47,47,0.1);
    color: var(--red);
}
.section-tag--forest {
    background: rgba(2,70,46,0.1);
    color: var(--forest);
    border: 1px solid rgba(2,70,46,0.12);
}
.section-tag--blue {
    background: rgba(21,101,192,0.1);
    color: var(--blue);
}
.section-tag--gold {
    background: rgba(249,168,37,0.12);
    color: #E68900;
}
.section-title {
    font-family: var(--marker);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.2;
    color: var(--text);
}
.section-subtitle {
    font-size: 16px;
    color: var(--text-3);
    margin-top: 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.cat-card {
    position: relative;
    padding: 24px 16px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
    text-align: center;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    overflow: hidden;
}
.cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 45%, var(--sun-yellow) 100%);
    opacity: 0;
    transition: opacity 0.35s var(--ease);
}
.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.cat-card:hover::before { opacity: 1; }
.cat-card:hover .cat-card__name,
.cat-card:hover .cat-card__count { color: #fff; }
.cat-card:hover .cat-card__icon { transform: scale(1.15); }

.cat-card__inner {
    position: relative;
    z-index: 1;
}
.cat-card__icon {
    font-size: 32px;
    margin-bottom: 10px;
    transition: transform 0.35s var(--ease-bounce);
}
.cat-card__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    transition: color 0.35s var(--ease);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.cat-card__count {
    font-size: 12px;
    color: var(--text-3);
    font-weight: 500;
    transition: color 0.35s var(--ease);
}

/* ═══════════════════════════════════════════════════
   SECTION 5: OFFERS GRID
   ═══════════════════════════════════════════════════ */
.offers {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f5f5 0%, var(--bg) 100%);
}

.offers__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.offers__filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-2);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.25s var(--ease);
}
.filter-btn:hover,
.filter-btn.active {
    color: #fff;
    background: var(--forest);
    border-color: var(--forest);
    box-shadow: 0 4px 16px rgba(2,70,46,0.25);
}
.filter-btn.active--blue { background: var(--blue); border-color: var(--blue); box-shadow: 0 4px 16px rgba(21,101,192,0.3); }
.filter-btn.active--purple { background: #8B5CF6; border-color: #8B5CF6; box-shadow: 0 4px 16px rgba(139,92,246,0.3); }

.offers__search {
    position: relative;
    width: 280px;
}
.offers__search input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border-radius: 100px;
    font-size: 14px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    font-family: var(--font);
    transition: all 0.25s var(--ease);
}
.offers__search input:focus {
    outline: none;
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(2,70,46,0.12);
}
.offers__search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-3);
    font-size: 16px;
}

.offers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

/* ── Offer Card ─────────────────────────────────── */
.offer-card {
    position: relative;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s var(--ease);
}
.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.offer-card__img-wrap {
    position: relative;
    padding: 24px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}
.offer-card__img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: transform 0.5s var(--ease);
}
.offer-card:hover .offer-card__img { transform: scale(1.1); }

.offer-card__img-placeholder {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #ccc;
}

.offer-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    color: var(--forest-deep);
    background: linear-gradient(135deg, var(--sun-yellow), var(--sun-yellow-soft));
    box-shadow: 0 2px 10px rgba(254,199,0,0.35);
}

.offer-card__branch {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    backdrop-filter: blur(6px);
}

.offer-card__ending {
    position: absolute;
    bottom: 8px;
    right: 12px;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
}

.offer-card__body {
    padding: 20px;
}
.offer-card__category {
    font-size: 11px;
    font-weight: 600;
    color: var(--forest-mid);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}
.offer-card__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.offer-card__prices {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.offer-card__price {
    font-size: 22px;
    font-weight: 800;
    color: var(--forest-deep);
}
.offer-card__mrp {
    font-size: 14px;
    color: var(--text-3);
    text-decoration: line-through;
}
.offer-card__savings {
    font-size: 12px;
    color: #10b981;
    font-weight: 600;
    margin-top: 6px;
}

/* ── Load More ───────────────────────────────────── */
.offers__more {
    text-align: center;
    margin-top: 48px;
}
.btn-load {
    padding: 14px 40px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    background: var(--bg-card);
    border: 2px solid var(--border);
    transition: all 0.3s var(--ease);
}
.btn-load:hover {
    border-color: var(--forest);
    color: var(--forest);
    box-shadow: 0 4px 20px rgba(2,70,46,0.12);
}

/* ── Empty State ─────────────────────────────────── */
.offers__empty {
    text-align: center;
    padding: 80px 24px;
    color: var(--text-3);
}
.offers__empty-icon {
    font-size: 56px;
    margin-bottom: 16px;
}
.offers__empty-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-2);
    margin-bottom: 8px;
}

/* ═══════════════════════════════════════════════════
   SECTION 6: BRANCHES
   ═══════════════════════════════════════════════════ */
.branches {
    padding: 80px 0;
    background: var(--bg);
}
.branches__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.branch-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}
.branch-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.branch-card__accent {
    height: 6px;
    background: linear-gradient(90deg, var(--forest) 0%, var(--sun-yellow) 100%);
}
.branch-card--kandy .branch-card__accent {
    background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
}
.branch-card--hyper .branch-card__accent {
    background: linear-gradient(90deg, #8B5CF6 0%, #A78BFA 100%);
}

.branch-card__body {
    padding: 32px;
}
.branch-card__name {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
}
.branch-card__type {
    font-size: 13px;
    color: var(--text-3);
    font-weight: 500;
    margin-bottom: 20px;
}
.branch-card__info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.branch-card__info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-2);
}
.branch-card__info li i {
    width: 20px;
    text-align: center;
    color: var(--text-3);
    margin-top: 2px;
}
.branch-card__actions {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}
.btn-branch {
    flex: 1;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    transition: all 0.25s var(--ease);
}
.btn-branch--directions {
    color: var(--forest-deep);
    background: var(--sun-yellow);
}
.btn-branch--directions:hover { filter: brightness(1.05); }
.branch-card--kandy .btn-branch--directions { background: var(--blue); }
.branch-card--kandy .btn-branch--directions:hover { background: #0D47A1; }
.branch-card--hyper .btn-branch--directions { background: #8B5CF6; }
.branch-card--hyper .btn-branch--directions:hover { background: #7C3AED; }

.btn-branch--call {
    color: var(--text-2);
    border: 1px solid var(--border);
    background: var(--bg);
}
.btn-branch--call:hover { border-color: var(--text-3); }

/* ═══════════════════════════════════════════════════
   SECTION 7: MEMBERSHIP CTA
   ═══════════════════════════════════════════════════ */
.membership {
    padding: 80px 0;
    background: linear-gradient(160deg, var(--forest-deep) 0%, #022c1c 40%, var(--forest) 100%);
    position: relative;
    overflow: hidden;
}
.membership__orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    background: radial-gradient(circle, rgba(254,199,0,0.22) 0%, transparent 70%);
    top: -20%;
    right: -10%;
    animation: orbFloat 10s ease-in-out infinite;
}
.membership__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.membership__icon {
    font-size: 56px;
    margin-bottom: 20px;
}
.membership__title {
    font-family: var(--marker);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}
.membership__title span {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.membership__desc {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 36px;
    line-height: 1.7;
}
.membership__note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
}
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 800;
    color: var(--forest-deep);
    background: linear-gradient(135deg, var(--sun-yellow) 0%, var(--sun-yellow-soft) 100%);
    box-shadow: 0 4px 24px rgba(254,199,0,0.35);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn-gold:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 32px rgba(254,199,0,0.45);
}

/* ═══════════════════════════════════════════════════
   SECTION 8: FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
    background: var(--forest-deep);
    padding: 64px 0 32px;
    color: rgba(255,255,255,0.5);
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer__brand-name {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.footer__brand-desc {
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
}
.footer__col-title {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__links a {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    transition: color 0.2s ease;
}
.footer__links a:hover { color: rgba(255,255,255,0.8); }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer__copy {
    font-size: 13px;
}
.footer__festive {
    display: block;
    margin-top: 8px;
    font-family: var(--marker);
    font-size: 15px;
    color: var(--sun-yellow);
    font-weight: 400;
}
.footer__socials {
    display: flex;
    gap: 12px;
}
.footer__social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 16px;
    transition: all 0.25s var(--ease);
}
.footer__social-btn:hover {
    color: #fff;
    border-color: var(--sun-yellow);
    background: rgba(254,199,0,0.12);
}

/* ═══════════════════════════════════════════════════
   LOADING & SKELETONS
   ═══════════════════════════════════════════════════ */
.skeleton {
    background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: var(--radius-sm);
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.skeleton-card {
    border-radius: var(--radius-lg);
    height: 340px;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — Mobile-first optimizations
   ═══════════════════════════════════════════════════ */

/* Safe area + overscroll for iOS */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .footer { padding-bottom: calc(32px + env(safe-area-inset-bottom)); }
}

/* Touch device: disable hover transforms to keep 60fps */
@media (hover: none) {
    .offer-card:hover,
    .cat-card:hover,
    .branch-card:hover,
    .stats-bar__item:hover { transform: none; box-shadow: none; }
    .cat-card:hover::before { opacity: 0; }
    .cat-card:active::before { opacity: 1; }
    .cat-card:active { transform: scale(0.97); }
    .offer-card:active { transform: scale(0.98); }
}

/* ── Tablet ─────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
    .offers__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile ≤768 ────────────────────────────────── */
@media (max-width: 768px) {
    .container { padding: 0 16px; }

    /* Hero */
    .hero { min-height: 100svh; min-height: 100vh; padding-top: env(safe-area-inset-top); }
    .hero__content { padding: 32px 12px 24px; }
    .hero__logo { height: 44px; margin-bottom: 20px; }
    .hero__ai-chip { margin-bottom: 14px; padding: 7px 12px; }
    .hero__wednesday-kicker { font-size: 0.95rem; padding: 7px 14px; }
    .hero__badge { font-size: 13px; padding: 7px 16px; margin-bottom: 24px; }
    .hero__title { margin-bottom: 14px; }
    .hero__subtitle { font-size: 15px; margin-bottom: 28px; max-width: 340px; }
    .hero__cta-row { flex-direction: column; width: 100%; gap: 10px; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; padding: 15px 24px; font-size: 15px; min-height: 50px; }
    .hero__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 36px; }
    .hero__stat { background: rgba(255,255,255,0.42); border-radius: var(--radius-sm); padding: 12px 8px; border: 1px solid rgba(2,70,46,0.08); }
    .hero__stat-num { font-size: 22px; }
    .hero__stat-label { font-size: 10px; }
    .hero__scroll { display: none; }

    /* Hero orbs — smaller + less blur for mobile GPU */
    .hero__orb--forest { width: 220px; height: 220px; filter: blur(50px); }
    .hero__orb--amber  { width: 200px; height: 200px; filter: blur(50px); }
    .hero__orb--sun    { width: 160px; height: 160px; filter: blur(50px); }

    /* Ticker */
    .ticker { padding: 10px 0; }
    .ticker__item { font-size: 13px; padding: 0 20px; }
    .ticker__discount { font-size: 11px; padding: 2px 8px; }

    /* Stats Bar */
    .stats-bar { padding: 28px 0; }
    .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .stats-bar__item { padding: 16px 10px; border-radius: var(--radius-sm); }
    .stats-bar__icon { font-size: 22px; margin-bottom: 4px; }
    .stats-bar__num { font-size: 22px; }
    .stats-bar__label { font-size: 11px; }

    /* Delivery */
    .delivery { padding: 56px 0 64px; }
    .delivery__shell { grid-template-columns: 1fr; gap: 22px; }
    .delivery__title { font-size: clamp(1.85rem, 7vw, 2.4rem); }
    .delivery__lead { font-size: 14px; line-height: 1.72; }
    .delivery__feature-grid { grid-template-columns: 1fr; gap: 12px; }
    .delivery__feature { padding: 16px; border-radius: 18px; }
    .delivery__actions { flex-direction: column; }
    .delivery__cta { width: 100%; }
    .delivery__visual { min-height: auto; }
    .delivery__browser { max-width: none; margin-left: 0; border-radius: 24px; }
    .delivery__browser-body { padding: 0 14px 14px; }
    .delivery__browser-bar { margin: 0 14px 12px; }
    .delivery__hero-card { padding: 22px 18px; border-radius: 18px; }
    .delivery__hero-sub { font-size: 14px; line-height: 1.6; }
    .delivery__mini-grid { grid-template-columns: 1fr; }
    .delivery__floating-pill { position: static; margin-top: 12px; width: fit-content; max-width: 100%; }

    /* Section Headers */
    .section-header { margin-bottom: 28px; }
    .section-tag { font-size: 11px; padding: 5px 14px; margin-bottom: 10px; }
    .section-subtitle { font-size: 14px; margin-top: 8px; }

    /* Categories */
    .categories { padding: 48px 0; }
    .categories__grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .cat-card { padding: 14px 8px; border-radius: var(--radius-sm); min-height: 80px; }
    .cat-card__icon { font-size: 24px; margin-bottom: 6px; }
    .cat-card__name { font-size: 11px; }
    .cat-card__count { font-size: 10px; }

    /* Offers */
    .offers { padding: 48px 0; }
    .offers__toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 20px;
        position: sticky;
        top: 0;
        z-index: 50;
        background: linear-gradient(180deg, var(--bg) 0%, rgba(246,243,234,0.97) 70%, rgba(246,243,234,0.88) 100%);
        padding: 12px 0 8px;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    .offers__filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        gap: 6px;
        padding-bottom: 4px;
        scrollbar-width: none;
        scroll-snap-type: x proximity;
        scroll-padding: 0 16px;
    }
    .offers__filters::-webkit-scrollbar { display: none; }
    .offers__filters .filter-btn { scroll-snap-align: start; }
    .filter-btn { flex-shrink: 0; padding: 10px 16px; font-size: 13px; min-height: 44px; }
    .offers__search { width: 100%; }
    .offers__search input { padding: 11px 14px 11px 40px; font-size: 16px; }
    .offers__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .offer-card { border-radius: var(--radius-md); }
    .offer-card__img-wrap { min-height: 108px; padding: 12px 8px; }
    .offer-card__img, .offer-card__img-placeholder { width: 72px; height: 72px; }
    .offer-card__badge { top: 7px; left: 7px; padding: 4px 8px; font-size: 9px; }
    .offer-card__branch { top: 7px; right: 7px; padding: 3px 7px; font-size: 9px; }
    .offer-card__ending { bottom: 6px; right: 8px; font-size: 9px; }
    .offer-card__body { padding: 10px; }
    .offer-card__category { font-size: 9px; margin-bottom: 3px; }
    .offer-card__name { font-size: 12px; margin-bottom: 7px; line-height: 1.25; -webkit-line-clamp: 3; }
    .offer-card__prices { gap: 5px; flex-wrap: wrap; }
    .offer-card__price { font-size: 15px; }
    .offer-card__mrp { font-size: 11px; }
    .offer-card__savings { font-size: 10px; margin-top: 3px; }
    .offers__more { margin-top: 32px; }
    .btn-load { padding: 13px 32px; font-size: 14px; width: 100%; }

    /* Branches */
    .branches { padding: 48px 0; }
    .branches__grid { grid-template-columns: 1fr; gap: 16px; }
    .branch-card { border-radius: var(--radius-lg); }
    .branch-card__body { padding: 24px 20px; }
    .branch-card__name { font-size: 19px; }
    .branch-card__info li { font-size: 13px; }
    .branch-card__actions { gap: 8px; }
    .btn-branch { padding: 12px 12px; font-size: 13px; min-height: 44px; display: flex; align-items: center; justify-content: center; gap: 6px; }

    /* Membership */
    .membership { padding: 56px 0; }
    .membership__icon { font-size: 44px; margin-bottom: 14px; }
    .membership__desc { font-size: 14px; margin-bottom: 28px; }
    .membership__note { width: 100%; padding: 14px 20px; text-align: center; }
    .btn-gold { width: 100%; justify-content: center; padding: 15px 24px; }

    /* Footer */
    .footer { padding: 40px 0 24px; }
    .footer__grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 28px; }
    .footer__brand-name { font-size: 18px; }
    .footer__brand-desc { font-size: 13px; }
    .footer__col-title { font-size: 12px; margin-bottom: 10px; }
    .footer__links a { font-size: 13px; }
    .footer__links { gap: 8px; }
    .footer__bottom { flex-direction: column; text-align: center; padding-top: 20px; }
    .footer__copy { font-size: 12px; }
    .footer__socials { gap: 10px; }
    .footer__social-btn { width: 44px; height: 44px; }

    .wednesday-spotlight { padding: 48px 0 56px; }
    .wednesday-spotlight__lead { font-size: 14px; }
    .wednesday-spotlight__brand { min-height: 82px; margin-bottom: 12px; }
    .wednesday-spotlight__logo { width: min(250px, 72vw); }
    .wednesday-spotlight__tag { width: min(96px, 24vw); right: 4%; bottom: -10px; }
    .wednesday-spotlight__meta { padding: 18px 16px; flex-direction: column; align-items: stretch; }
    .wednesday-spotlight__campaign { text-align: center; font-size: 16px; }
    .wednesday-spotlight__stats { width: 100%; justify-content: center; }
    .wednesday-spotlight__stat { flex: 1 1 0; min-width: 0; }
    .wednesday-spotlight__grid { grid-template-columns: 1fr; gap: 14px; }
    .wednesday-spotlight__cta { width: 100%; }
    .wednesday-card__head { flex-wrap: wrap; align-items: flex-start; }
    .wednesday-card__image-shell { width: 136px; height: 136px; }
    .wednesday-card__img { width: 94px; height: 94px; }
}

@media (max-width: 768px) and (min-width: 600px) {
    .offers__grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .offer-card__img-wrap { min-height: 102px; padding: 10px 8px; }
    .offer-card__img, .offer-card__img-placeholder { width: 64px; height: 64px; }
    .offer-card__body { padding: 10px 9px; }
    .offer-card__name { font-size: 11px; }
    .offer-card__price { font-size: 14px; }
    .offer-card__mrp,
    .offer-card__savings { font-size: 10px; }
}

@media (max-width: 540px) {
    .hero__content { padding: 26px 8px 20px; }
    .hero__title-en { font-size: clamp(1.7rem, 9vw, 2.2rem); }
    .hero__subtitle { max-width: none; }

    .offers__toolbar {
        position: static;
        margin-bottom: 16px;
        padding: 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .offers__filters {
        padding-bottom: 2px;
    }
    .filter-btn {
        min-height: 42px;
        padding: 9px 14px;
        font-size: 12px;
    }
    .offers__search input {
        font-size: 15px;
    }
    .offers__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .offer-card__img-wrap {
        min-height: 104px;
        padding: 12px 8px;
    }
    .offer-card__img,
    .offer-card__img-placeholder {
        width: 70px;
        height: 70px;
    }
    body[data-day-theme="wednesday"] .offer-card__img,
    body[data-day-theme="wednesday"] .offer-card__img-placeholder {
        width: 82px;
        height: 82px;
    }

    .active-category-label {
        max-width: 100%;
        width: fit-content;
        font-size: 12px;
        padding: 8px 14px;
    }

    .delivery__eyebrow {
        font-size: 11px;
        letter-spacing: 0.06em;
    }
    .delivery__title {
        line-height: 1.1;
    }
    .delivery__feature {
        gap: 12px;
    }
    .delivery__feature-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 16px;
    }
    .delivery__mini-value {
        font-size: 14px;
    }

    .wednesday-spotlight__badges {
        gap: 8px;
    }
    .wednesday-spotlight__badge {
        font-size: 12px;
        padding: 9px 14px;
    }
    .wednesday-card__campaign {
        font-size: 11px;
    }
    .wednesday-card__discount {
        font-size: 11px;
        padding: 5px 10px;
    }
}

/* ── Small phones ≤400 ──────────────────────────── */
@media (max-width: 400px) {
    .container { padding: 0 12px; }

    .hero__content { padding: 24px 8px 20px; }
    .hero__logo { height: 38px; }
    .hero__badge { font-size: 12px; padding: 6px 14px; }
    .hero__stats { gap: 12px; }
    .hero__stat-num { font-size: 20px; }
    .hero__stat-label { font-size: 10px; letter-spacing: 0.05em; }

    .stats-bar__grid { gap: 8px; }
    .stats-bar__item { padding: 12px 8px; }
    .stats-bar__num { font-size: 20px; }

    .categories__grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .cat-card { padding: 12px 6px; }
    .cat-card__icon { font-size: 20px; margin-bottom: 4px; }
    .cat-card__name { font-size: 10px; }

    .offers__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .offer-card__img-wrap { min-height: 100px; padding: 10px 8px; }
    .offer-card__img, .offer-card__img-placeholder { width: 62px; height: 62px; }
    body[data-day-theme="wednesday"] .offer-card__img,
    body[data-day-theme="wednesday"] .offer-card__img-placeholder { width: 72px; height: 72px; border-radius: 20px; }
    .offer-card__body { padding: 9px; }
    .offer-card__category { font-size: 8px; }
    .offer-card__name { font-size: 11px; margin-bottom: 5px; line-height: 1.2; }
    .offer-card__price { font-size: 14px; }
    .offer-card__mrp,
    .offer-card__savings { font-size: 10px; }

    .branch-card__body { padding: 20px 16px; }
    .branch-card__name { font-size: 17px; }

    .delivery__browser-top { padding: 14px 14px 10px; }
    .delivery__floating-pill { width: 100%; justify-content: center; }
    .wednesday-card__image-shell { width: 124px; height: 124px; }
    .wednesday-card__img { width: 84px; height: 84px; }
}

/* ── Tiny phones ≤360 (iPhone SE, Galaxy A series) ─ */
@media (max-width: 360px) {
    .offers__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .offer-card__img-wrap { min-height: 96px; padding: 10px 6px; }
    .offer-card__img, .offer-card__img-placeholder { width: 58px; height: 58px; }
    body[data-day-theme="wednesday"] .offer-card__img,
    body[data-day-theme="wednesday"] .offer-card__img-placeholder { width: 68px; height: 68px; border-radius: 18px; }
    .offer-card__body { padding: 8px; }
    .offer-card__name { font-size: 10.5px; }
    .offer-card__price { font-size: 13px; }
    .offer-card__mrp,
    .offer-card__savings { font-size: 9px; }

    .categories__grid { grid-template-columns: repeat(2, 1fr); }

    .hero__stats { gap: 8px; }
    .hero__stat { padding: 10px 6px; }
    .hero__stat-num { font-size: 18px; }
}


/* ═══════════════════════════════════════════════════
   FRESH SPOTLIGHT — Meat · Seafood · Vegetables
   ═══════════════════════════════════════════════════ */

.fresh-spotlight {
    padding: 56px 0 48px;
    background: var(--bg);
    position: relative;
}

.fresh-spotlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 10% 50%, rgba(249,168,37,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 90% 40%, rgba(2,70,46,0.06) 0%, transparent 70%);
    pointer-events: none;
}

body[data-day-theme="wednesday"] .fresh-spotlight::before {
    background:
        radial-gradient(ellipse 60% 40% at 10% 50%, rgba(255,221,0,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 90% 40%, rgba(255,221,0,0.04) 0%, transparent 70%);
}

.fresh-spotlight__header {
    text-align: center;
    margin-bottom: 40px;
}

.fresh-spotlight__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 10px;
}

.fresh-spotlight__eyebrow-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--amber);
    animation: pulse 2s ease-in-out infinite;
}

.fresh-spotlight__title {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 800;
    color: var(--text);
    margin: 0 0 10px;
    line-height: 1.2;
}

.fresh-spotlight__lead {
    font-size: 15px;
    color: var(--text-3);
    margin: 0;
    max-width: 520px;
    margin-inline: auto;
}

/* ── Lanes layout ─────────────────────────────── */

.fresh-spotlight__lanes {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.fresh-lane {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Coloured left accent per lane */
.fresh-lane--meat    { --lane-accent: #D32F2F; --lane-accent-soft: rgba(211,47,47,0.08); --lane-icon-bg: rgba(211,47,47,0.1); }
.fresh-lane--seafood { --lane-accent: #0277BD; --lane-accent-soft: rgba(2,119,189,0.08); --lane-icon-bg: rgba(2,119,189,0.1); }
.fresh-lane--veg     { --lane-accent: #2E7D32; --lane-accent-soft: rgba(46,125,50,0.08);  --lane-icon-bg: rgba(46,125,50,0.1); }

body[data-day-theme="wednesday"] .fresh-lane--meat    { --lane-accent: #ffdd00; --lane-accent-soft: rgba(255,221,0,0.08); --lane-icon-bg: rgba(255,221,0,0.12); }
body[data-day-theme="wednesday"] .fresh-lane--seafood { --lane-accent: #ffdd00; --lane-accent-soft: rgba(255,221,0,0.06); --lane-icon-bg: rgba(255,221,0,0.10); }
body[data-day-theme="wednesday"] .fresh-lane--veg     { --lane-accent: #ffdd00; --lane-accent-soft: rgba(255,221,0,0.06); --lane-icon-bg: rgba(255,221,0,0.10); }

.fresh-lane__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px 16px;
    border-bottom: 1px solid var(--border);
    background: var(--lane-accent-soft);
    position: relative;
}

.fresh-lane__head::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--lane-accent);
    border-radius: 0 2px 2px 0;
}

.fresh-lane__icon {
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--lane-icon-bg);
    flex-shrink: 0;
}

.fresh-lane__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    flex: 1;
}

.fresh-lane__count {
    font-size: 12px;
    font-weight: 600;
    color: var(--lane-accent);
    background: var(--lane-icon-bg);
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

/* ── Horizontal scrolling track ───────────────── */

.fresh-lane__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 20px 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.fresh-lane__track::-webkit-scrollbar {
    height: 4px;
}
.fresh-lane__track::-webkit-scrollbar-track { background: transparent; }
.fresh-lane__track::-webkit-scrollbar-thumb {
    background: var(--lane-accent);
    border-radius: 2px;
    opacity: 0.4;
}

/* ── Fresh card ────────────────────────────────── */

.fresh-card {
    flex: 0 0 180px;
    scroll-snap-align: start;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s;
    cursor: default;
}

.fresh-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--lane-accent);
}

.fresh-card__visual {
    position: relative;
    height: 130px;
    background: var(--bg-card);
    overflow: hidden;
}

.fresh-card__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    transition: transform 0.3s var(--ease);
}

.fresh-card:hover .fresh-card__img {
    transform: scale(1.05);
}

.fresh-card__img-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 36px;
    opacity: 0.35;
}

.fresh-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--lane-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 6px;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

body[data-day-theme="wednesday"] .fresh-card__badge {
    color: #000;
}

.fresh-card__branch {
    position: absolute;
    bottom: 7px;
    right: 7px;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    line-height: 1.4;
    color: #fff;
}

.fresh-card__body {
    padding: 10px 12px 14px;
}

.fresh-card__category {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--lane-accent);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fresh-card__name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fresh-card__prices {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.fresh-card__price {
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
}

.fresh-card__mrp {
    font-size: 11px;
    color: var(--text-3);
    text-decoration: line-through;
}

.fresh-card__save {
    margin-top: 5px;
    font-size: 11px;
    font-weight: 600;
    color: var(--lane-accent);
}

/* ── Responsive ────────────────────────────────── */

@media (min-width: 768px) {
    .fresh-card { flex: 0 0 200px; }
    .fresh-card__visual { height: 148px; }
}

@media (max-width: 480px) {
    .fresh-lane__head { padding: 14px 16px 12px; }
    .fresh-lane__track { padding: 16px; gap: 12px; }
    .fresh-card { flex: 0 0 155px; }
    .fresh-card__visual { height: 110px; }
    .fresh-card__name { font-size: 12px; }
    .fresh-card__price { font-size: 13px; }
}

/* ── Reduced motion / Print overrides ──────────── */
@media (prefers-reduced-motion: reduce) {
    .fresh-card { transition: none; }
    .fresh-card:hover .fresh-card__img { transform: none; }
}
@media print {
    .fresh-spotlight { display: none; }
}


/* ── Reduced motion ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .ticker__track { animation: none; }
    .reveal { opacity: 1; transform: none; }
    .hero__sinhala { animation: none; background-position: 50% 50%; }
}

/* ── Print Cleanup ───────────────────────────────── */
@media print {
    .hero, .ticker, .membership, .footer, .ai-season, .wednesday-spotlight, .kolam { display: none; }
    .offers { padding: 20px 0; }
    .offer-card { break-inside: avoid; }
}
