:root {
    --green-dark: #1a4a1a;
    --green-mid:  #2d6a2d;
    --yellow:     #f5c518;
    --yellow-dk:  #e6b800;
    --text:       #1a1a1a;
    --white:      #ffffff;
    --muted:      #888;
    --radius:     14px;
    --shadow:     0 2px 12px rgba(0,0,0,0.08);
}
*, *::before, *::after { box-sizing: border-box; }
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #f0f2ee;
    color: var(--text);
    margin: 0;
}

/* ── SECTION CARD ── */
.sec {
    background: #fff;
    border-radius: 18px;
    margin: 18px 18px 0;
    padding: 20px 22px 18px;
    box-shadow: var(--shadow);
}
.sec:last-of-type { margin-bottom: 24px; }

/* ── SECTION HEADER ── */
.sec-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}
.sec-head h2 {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0;
    color: var(--text);
    letter-spacing: -.01em;
}
.sec-head .icon { font-size: 1.15rem; }
.sec-head a.see-all {
    margin-left: auto;
    font-size: .8rem;
    font-weight: 600;
    color: var(--green-mid);
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 3px;
}
.sec-head a.see-all:hover { text-decoration: underline; }

/* ══════════════════════════════════════
    CATEGORY ROW — single row, no scroll
    11 items (10 cats + Show All) fit by
    flex with min-width 0 and wrap:nowrap
══════════════════════════════════════ */
.cat-row {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
}
.cat-item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 4px 10px;
    border-radius: var(--radius);
    border: 1.5px solid #e8f0e8;
    background: #f7faf3;
    cursor: pointer;
    transition: transform .17s, box-shadow .17s, border-color .17s, background .17s;
    text-align: center;
}
.cat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(45,106,45,.14);
    border-color: var(--yellow);
    background: #fffbea;
}
/* "Show All" tile — green accent */
.cat-item.show-all {
    background: #eaf4ea;
    border-color: #b8d9b8;
}
.cat-item.show-all:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
}
.cat-item.show-all:hover .cat-circle { background: rgba(255,255,255,.15); }
.cat-item.show-all:hover .cat-circle i { color: #fff; }
.cat-item.show-all:hover .cat-lbl { color: #fff; }

.cat-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    flex-shrink: 0;
    overflow: hidden;
}
.cat-circle img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.cat-circle i { font-size: 1.4rem; color: var(--green-mid); }
.cat-lbl {
    font-size: .7rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    word-break: break-word;
}

/* ── FLASH TIMER ── */
.timer-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 6px;
}
.t-lbl { font-size: .75rem; color: var(--muted); font-weight: 500; }
.t-box {
    background: var(--green-dark);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    border-radius: 5px;
    padding: 2px 7px;
    min-width: 28px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}
.t-sep { font-weight: 800; color: var(--green-dark); }

/* ── PILL NAV ── */
.pill-row {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
    margin-bottom: 16px;
}
.pill-row::-webkit-scrollbar { display: none; }
.pill {
    flex-shrink: 0;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid #ddd;
    background: #fff;
    color: var(--text);
    transition: all .15s;
    white-space: nowrap;
}
.pill.active, .pill:hover {
    background: var(--green-dark);
    color: #fff;
    border-color: var(--green-dark);
}

/* ── SLIDER WRAPPER ── */
.slider-outer { position: relative; padding: 0 4px; }
.slider-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 6px;
    scrollbar-width: none;
}
.slider-track::-webkit-scrollbar { display: none; }
.s-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,.14);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: .9rem;
    color: var(--text);
    padding: 0;
    transition: background .14s, border-color .14s;
}
.s-btn:hover { background: var(--yellow); border-color: var(--yellow-dk); }
.s-btn.prev { left: -14px; }
.s-btn.next { right: -14px; }

/* ── PRODUCT CARD ── */
.p-card {
    flex: 0 0 162px;
    background: #fff;
    border: 1.5px solid #ebebeb;
    border-radius: var(--radius);
    padding: 10px 9px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    cursor: pointer;
    transition: box-shadow .18s, transform .18s;
}
.p-card:hover {
    box-shadow: 0 6px 20px rgba(45,106,45,.13);
    transform: translateY(-3px);
}
.p-badge {
    position: absolute;
    top: 9px;
    left: 9px;
    background: var(--yellow);
    color: var(--text);
    font-size: .62rem;
    font-weight: 800;
    border-radius: 5px;
    padding: 2px 6px;
    line-height: 1.4;
    letter-spacing: .01em;
}
.p-img {
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f5;
    border-radius: 10px;
    overflow: hidden;
}
.p-img img {
    max-height: 84px;
    max-width: 110px;
    object-fit: contain;
    transition: transform .2s;
}
.p-card:hover .p-img img { transform: scale(1.07); }
.p-name {
    font-size: .75rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    min-height: 30px;
}
.p-sel {
    font-size: .7rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 3px 6px;
    color: var(--text);
    background: #f7f7f5;
    width: fit-content;
    cursor: pointer;
}
.p-price-row { display: flex; align-items: center; gap: 6px; }
.p-price { font-size: .92rem; font-weight: 800; }
.p-strike { font-size: .75rem; color: var(--muted); text-decoration: line-through; }
.p-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    margin-top: auto;
}
.qty {
    display: flex;
    align-items: center;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}
.q-btn {
    width: 26px; height: 26px;
    background: #f4f4f0;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .12s;
}
.q-btn:hover { background: var(--yellow); }
.q-num {
    width: 24px;
    text-align: center;
    font-size: .82rem;
    font-weight: 700;
    pointer-events: none;
    background: transparent;
    border: none;
}
.btn-add {
    flex: 1;
    background: var(--yellow);
    border: none;
    border-radius: 8px;
    font-size: .7rem;
    font-weight: 800;
    color: var(--text);
    padding: 5px 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: background .14s, transform .1s;
    white-space: nowrap;
}
.btn-add:hover { background: var(--yellow-dk); transform: scale(1.03); }
.btn-add i { font-size: .8rem; }

/* ── BEST SELLERS section ── */
.bs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
@media (max-width: 900px) { .bs-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 600px) { .bs-grid { grid-template-columns: repeat(2,1fr); } }
.bs-card {
    background: #fff;
    border: 1.5px solid #ebebeb;
    border-radius: var(--radius);
    padding: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
    transition: box-shadow .17s, transform .17s;
    position: relative;
}
.bs-card:hover {
    box-shadow: 0 4px 16px rgba(45,106,45,.12);
    transform: translateY(-2px);
}
.bs-img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: #f8f8f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.bs-img img { width: 48px; height: 48px; object-fit: contain; }
.bs-info { flex: 1; min-width: 0; }
.bs-name { font-size: .75rem; font-weight: 700; line-height: 1.3; margin-bottom: 3px; }
.bs-sub  { font-size: .68rem; color: var(--muted); margin-bottom: 4px; }
.bs-pr   { font-size: .88rem; font-weight: 800; }
.bs-strike { font-size: .7rem; color: var(--muted); text-decoration: line-through; }
.bs-badge {
    position: absolute;
    top: 8px; right: 8px;
    background: #fde8e8;
    color: #c0392b;
    font-size: .6rem;
    font-weight: 800;
    border-radius: 4px;
    padding: 1px 5px;
}

/* ── DEALS OF THE DAY (wide cards) ── */
.dotd-track .p-card { flex: 0 0 200px; }
.dotd-track .p-img  { height: 110px; }
.dotd-track .p-img img { max-height: 100px; max-width: 130px; }

/* ── PROMO BANNER STRIP ── */
.promo-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.promo-card {
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: transform .17s, box-shadow .17s;
    position: relative;
    overflow: hidden;
    min-height: 90px;
}
.promo-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.13); }
.promo-card.green  { background: linear-gradient(120deg,#1b5e20,#2e7d32); color:#fff; }
.promo-card.orange { background: linear-gradient(120deg,#e65100,#f57c00); color:#fff; }
.promo-card.blue   { background: linear-gradient(120deg,#0d47a1,#1565c0); color:#fff; }
.promo-icon { font-size: 2.2rem; flex-shrink: 0; opacity: .9; }
.promo-text h4 { font-size: .9rem; font-weight: 800; margin: 0 0 3px; }
.promo-text p  { font-size: .72rem; margin: 0; opacity: .88; line-height: 1.3; }
.promo-badge {
    position: absolute; top: 10px; right: 12px;
    background: rgba(255,255,255,.22);
    font-size: .65rem; font-weight: 800;
    border-radius: 20px; padding: 2px 9px;
}
@media (max-width: 700px) { .promo-strip { grid-template-columns: 1fr; } }

/* ── TRENDING SEARCHES ── */
.trend-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.trend-chip {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f3f7f0;
    border: 1.5px solid #d4e8d4;
    border-radius: 30px;
    padding: 6px 14px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: background .14s, border-color .14s, color .14s;
}
.trend-chip:hover { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }
.trend-chip i { font-size: .8rem; color: var(--green-mid); }
.trend-chip:hover i { color: #fff; }
.trend-chip .t-count { font-size: .66rem; color: var(--muted); margin-left: 2px; }
.trend-chip:hover .t-count { color: rgba(255,255,255,.7); }

/* ── TOP BRANDS ── */
.brand-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.brand-row::-webkit-scrollbar { display: none; }
.brand-card {
    flex: 0 0 110px;
    height: 70px;
    background: #fafafa;
    border: 1.5px solid #ebebeb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: box-shadow .16s, transform .16s, border-color .16s;
    padding: 10px;
}
.brand-card:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,.1);
    transform: translateY(-2px);
    border-color: var(--yellow);
}
.brand-card img { max-width: 80px; max-height: 44px; object-fit: contain; filter: grayscale(30%); }
.brand-card:hover img { filter: grayscale(0%); }

/* ── WHY US STRIP ── */
.why-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    text-align: center;
}
@media (max-width: 700px) { .why-strip { grid-template-columns: repeat(2,1fr); } }
.why-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 10px;
    background: #f7faf3;
    border: 1.5px solid #e4efe4;
    border-radius: 14px;
}
.why-icon {
    width: 52px; height: 52px;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.why-title { font-size: .82rem; font-weight: 800; color: var(--text); }
.why-sub   { font-size: .7rem; color: var(--muted); line-height: 1.3; }

/* ══════════════════════════════
    SHOP BY LIFESTYLE
══════════════════════════════ */
.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
@media (max-width: 900px) { .lifestyle-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 500px) { .lifestyle-grid { grid-template-columns: repeat(2,1fr); } }
.lf-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1.1;
    background: #c8e6c9;
    transition: transform .18s, box-shadow .18s;
}
.lf-card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,.15); }
.lf-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}
.lf-card:hover img { transform: scale(1.06); }
.lf-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.62) 40%, transparent 80%);
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 10px 10px 12px;
    gap: 6px;
}
.lf-label { font-size: .78rem; font-weight: 800; color: #fff; line-height: 1.25; }
.lf-arrow {
    width: 26px; height: 26px;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem; color: var(--green-dark);
    align-self: flex-start;
}

/* ══════════════════════════════
    WEEKLY GROCERY PACK BANNER
══════════════════════════════ */
.weekly-banner {
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 60%, #c8e6c9 100%);
    border: 2px solid #a5d6a7;
    border-radius: 18px;
    padding: 24px 24px 20px;
    display: flex;
    gap: 18px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.weekly-left { flex: 1; min-width: 0; }
.weekly-left h3 { font-size: 1.3rem; font-weight: 900; color: var(--green-dark); margin: 0 0 4px; }
.weekly-left p { font-size: .82rem; color: #444; margin: 0 0 14px; }
.weekly-feat {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    margin-bottom: 18px;
}
.wf-item { display: flex; align-items: center; gap: 7px; font-size: .75rem; font-weight: 600; color: #333; }
.wf-item i { color: var(--green-mid); font-size: .9rem; }
.btn-weekly {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--green-dark); color: #fff;
    border: none; border-radius: 10px;
    padding: 10px 20px; font-size: .82rem; font-weight: 700;
    cursor: pointer; text-decoration: none;
    transition: background .15s, transform .1s;
}
.btn-weekly:hover { background: var(--green-mid); transform: scale(1.03); color: #fff; }
.weekly-right {
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.weekly-right img { width: 160px; height: 160px; object-fit: contain; }
.save-badge {
    position: absolute; top: -8px; right: -8px;
    width: 72px; height: 72px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; box-shadow: 0 3px 10px rgba(0,0,0,.15);
}
.save-badge span:first-child { font-size: .55rem; font-weight: 700; color: var(--text); }
.save-badge .save-amt { font-size: .95rem; font-weight: 900; color: var(--text); line-height: 1; }
.save-badge span:last-child { font-size: .55rem; color: #555; }

/* ══════════════════════════════
    BEST SELLERS WITH RATINGS
══════════════════════════════ */
.bs2-track .p-card { flex: 0 0 155px; }
.p-rating { display: flex; align-items: center; gap: 3px; font-size: .7rem; }
.stars { color: var(--yellow-dk); font-size: .72rem; }
.rcount { color: var(--muted); font-size: .65rem; }
.p-badge-seller {
    display: inline-block;
    background: var(--yellow); color: var(--text);
    font-size: .6rem; font-weight: 800;
    border-radius: 4px; padding: 1px 6px;
    margin-bottom: 2px; align-self: flex-start;
}
.btn-add-sm {
    display: flex; align-items: center; gap: 4px;
    background: #fff; border: 1.5px solid var(--green-mid);
    color: var(--green-mid); border-radius: 8px;
    padding: 5px 10px; font-size: .72rem; font-weight: 700;
    cursor: pointer; transition: background .13s, color .13s;
    white-space: nowrap; flex-shrink: 0;
}
.btn-add-sm:hover { background: var(--green-mid); color: #fff; }

/* ══════════════════════════════
    MYMALL PLUS CARD
══════════════════════════════ */
.plus-card {
    background: linear-gradient(135deg, #1a3a1a 0%, #2e5d2e 50%, #1b4a1b 100%);
    border-radius: 18px;
    padding: 24px 22px;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.plus-card::before {
    content: '';
    position: absolute; top: -40px; right: -40px;
    width: 180px; height: 180px;
    background: rgba(245,197,24,.08);
    border-radius: 50%;
}
.plus-header { display: flex; align-items: center; gap: 8px; }
.plus-crown { font-size: 1.3rem; }
.plus-header h3 { font-size: 1rem; font-weight: 900; margin: 0; color: var(--yellow); }
.plus-header p { font-size: .72rem; margin: 0; opacity: .8; }
.plus-perks { display: flex; flex-direction: column; gap: 7px; }
.plus-perk { display: flex; align-items: center; gap: 8px; font-size: .76rem; }
.plus-perk i { color: var(--yellow); font-size: .85rem; flex-shrink: 0; }
.plus-badge-up {
    position: absolute; top: 16px; right: 16px;
    background: var(--yellow);
    color: var(--text); font-size: .7rem; font-weight: 900;
    border-radius: 8px; padding: 6px 10px;
    text-align: center; line-height: 1.2;
}
.plus-badge-up small { font-size: .6rem; display: block; font-weight: 600; }
.btn-join {
    background: var(--yellow); color: var(--text);
    border: none; border-radius: 10px;
    padding: 10px 20px; font-size: .82rem; font-weight: 800;
    cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
    transition: background .14s, transform .1s; align-self: flex-start;
    margin-top: 4px;
}
.btn-join:hover { background: var(--yellow-dk); transform: scale(1.03); }
.plus-bag {
    position: absolute; bottom: 0; right: 10px;
    font-size: 5rem; opacity: .18; line-height: 1;
}

/* ══════════════════════════════
    TRUST STRIP
══════════════════════════════ */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #e8e8e8;
    overflow: hidden;
}
@media (max-width: 600px) { .trust-strip { grid-template-columns: repeat(2,1fr); } }
.trust-item {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 18px;
    border-right: 1.5px solid #ebebeb;
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1.6rem; flex-shrink: 0; }
.trust-txt h5 { font-size: .8rem; font-weight: 800; margin: 0 0 2px; }
.trust-txt p  { font-size: .68rem; color: var(--muted); margin: 0; line-height: 1.3; }

/* ══════════════════════════════
    THREE-COL ROW (Fresh Arrival,
    Popular in Area, Trusted Brands)
══════════════════════════════ */
.three-col {
    display: grid;
    grid-template-columns: 1fr 1.6fr 1.2fr;
    gap: 16px;
    margin: 18px 18px 0;
}
@media (max-width: 800px) { .three-col { grid-template-columns: 1fr; } }
.col-sec {
    background: #fff;
    border-radius: 18px;
    padding: 18px 18px 14px;
    box-shadow: var(--shadow);
}
.col-head { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.col-head h3 { font-size: .9rem; font-weight: 800; margin: 0; }
.col-head a { margin-left: auto; font-size: .73rem; color: var(--green-mid); text-decoration: none; font-weight: 600; white-space: nowrap; }
.col-head a:hover { text-decoration: underline; }
.col-sub { font-size: .7rem; color: var(--muted); margin: 0 0 12px; }

/* Fresh Arrival mini-slider */
.fa-track {
    display: flex; gap: 8px;
    overflow-x: auto; scrollbar-width: none;
}
.fa-track::-webkit-scrollbar { display: none; }
.fa-card {
    flex: 0 0 90px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform .17s;
}
.fa-card:hover { transform: translateY(-3px); }
.fa-card img { width: 90px; height: 90px; object-fit: cover; display: block; }
.fa-lbl {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,.65), transparent);
    color: #fff; font-size: .64rem; font-weight: 700;
    padding: 14px 5px 5px; line-height: 1.25;
}
.fa-arrow {
    position: absolute; bottom: 5px; right: 5px;
    width: 18px; height: 18px;
    background: rgba(255,255,255,.85); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .55rem; color: var(--green-dark);
}

/* Popular in Area list */
.pop-list { display: flex; flex-direction: column; gap: 10px; }
.pop-item {
    display: flex; align-items: center; gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}
.pop-item:last-child { border-bottom: none; padding-bottom: 0; }
.pop-img {
    width: 52px; height: 52px; flex-shrink: 0;
    background: #f5f5f2; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.pop-img img { width: 44px; height: 44px; object-fit: contain; }
.pop-info { flex: 1; min-width: 0; }
.pop-name { font-size: .76rem; font-weight: 700; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pop-meta { font-size: .66rem; color: var(--muted); }
.pop-time { display: flex; align-items: center; gap: 3px; font-size: .64rem; color: var(--green-mid); font-weight: 600; margin-top: 2px; }
.pop-time i { font-size: .65rem; }
.pop-price { font-size: .88rem; font-weight: 800; flex-shrink: 0; }

/* Trusted Brands logo grid */
.brand-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.bl-card {
    background: #fafafa; border: 1.5px solid #ebebeb;
    border-radius: 10px; padding: 10px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: box-shadow .15s, transform .15s, border-color .15s;
    height: 52px;
}
.bl-card:hover { box-shadow: 0 3px 10px rgba(0,0,0,.1); transform: translateY(-2px); border-color: var(--yellow); }
.bl-card img { max-width: 68px; max-height: 30px; object-fit: contain; filter: grayscale(20%); }
.bl-card:hover img { filter: grayscale(0%); }
.bl-see {
    grid-column: 1 / -1;
    background: #f4f4f0; border: 1.5px solid #ddd;
    border-radius: 10px; padding: 8px;
    display: flex; align-items: center; justify-content: center; gap: 5px;
    font-size: .73rem; font-weight: 700; color: var(--green-mid);
    cursor: pointer; text-decoration: none;
}
.bl-see:hover { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }

/* ══════════════════════════════
    TWO-COL ROW (App Download +
    Refer & Earn)
══════════════════════════════ */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 18px 18px 0;
}
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; } }

/* App Download Banner */
.app-banner {
    background: linear-gradient(130deg, #1a4a1a 0%, #2d7a2d 100%);
    border-radius: 18px;
    padding: 22px 20px;
    display: flex; align-items: center; gap: 16px;
    position: relative; overflow: hidden;
}
.app-phone {
    width: 64px; flex-shrink: 0;
    background: rgba(255,255,255,.1);
    border-radius: 12px; padding: 6px;
    display: flex; align-items: center; justify-content: center;
}
.app-phone i { font-size: 2.6rem; color: #fff; }
.app-text { flex: 1; }
.app-text h3 { font-size: .95rem; font-weight: 900; color: #fff; margin: 0 0 3px; }
.app-text h3 span { color: var(--yellow); }
.app-text p { font-size: .72rem; color: rgba(255,255,255,.8); margin: 0 0 12px; line-height: 1.5; }
.app-btns { display: flex; flex-direction: column; gap: 7px; }
.app-store-btn {
    display: flex; align-items: center; gap: 8px;
    background: #000; color: #fff;
    border-radius: 9px; padding: 7px 12px;
    text-decoration: none; transition: background .14s;
}
.app-store-btn:hover { background: #222; color: #fff; }
.app-store-btn i { font-size: 1.2rem; }
.app-store-btn div small { font-size: .55rem; display: block; opacity: .75; }
.app-store-btn div strong { font-size: .72rem; font-weight: 700; display: block; }
.app-qr {
    flex-shrink: 0;
    background: #fff; border-radius: 10px;
    padding: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: .55rem; color: var(--text); text-align: center;
}
.qr-box {
    width: 58px; height: 58px;
    background: #000;
    border-radius: 4px;
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 1.5px;
    padding: 5px;
}
.qr-dot { background: #000; border-radius: 1px; }
.qr-dot.w { background: #fff; }

/* Refer & Earn Banner */
.refer-banner {
    background: linear-gradient(130deg, #fffbea 0%, #fff8d6 60%, #fef3c7 100%);
    border: 2px solid #fde68a;
    border-radius: 18px;
    padding: 22px 20px;
    display: flex; align-items: center; gap: 16px;
    position: relative; overflow: hidden;
}
.refer-text { flex: 1; }
.refer-text h3 { font-size: 1.1rem; font-weight: 900; color: var(--green-dark); margin: 0 0 4px; }
.refer-text p { font-size: .75rem; color: #555; margin: 0 0 14px; }
.refer-amounts {
    display: flex; gap: 10px; margin-bottom: 14px;
}
.ref-amt-card {
    background: #fff; border: 1.5px solid #fde68a;
    border-radius: 10px; padding: 8px 14px;
    text-align: center;
}
.ref-amt-card small { font-size: .62rem; color: var(--muted); display: block; }
.ref-amt-card strong { font-size: 1.1rem; font-weight: 900; color: var(--green-dark); }
.btn-refer {
    background: var(--green-dark); color: #fff;
    border: none; border-radius: 10px;
    padding: 10px 22px; font-size: .82rem; font-weight: 800;
    cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
    transition: background .14s, transform .1s;
}
.btn-refer:hover { background: var(--green-mid); transform: scale(1.03); }
.refer-illus { font-size: 4.5rem; flex-shrink: 0; line-height: 1; }

/* ── FOOTER ── */
.site-footer {
    background: var(--green-dark);
    color: rgba(255,255,255,.85);
    padding: 32px 24px 20px;
    margin-top: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 28px;
    margin-bottom: 28px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand h3 {
    font-size: 1.3rem; font-weight: 900; color: var(--yellow); margin: 0 0 6px;
}
.footer-brand p { font-size: .78rem; line-height: 1.6; margin: 0 0 14px; }
.social-row { display: flex; gap: 10px; }
.soc-btn {
    width: 34px; height: 34px;
    background: rgba(255,255,255,.12);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: #fff;
    cursor: pointer; text-decoration: none;
    transition: background .14s;
}
.soc-btn:hover { background: var(--yellow); color: var(--text); }
.footer-col h4 { font-size: .82rem; font-weight: 800; color: var(--yellow); margin: 0 0 12px; text-transform: uppercase; letter-spacing: .05em; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.footer-col ul li a { font-size: .75rem; color: rgba(255,255,255,.75); text-decoration: none; }
.footer-col ul li a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p { font-size: .72rem; color: rgba(255,255,255,.5); margin: 0; }
.pay-icons { display: flex; gap: 8px; align-items: center; }
.pay-icon {
    background: rgba(255,255,255,.12);
    border-radius: 6px;
    padding: 4px 8px;
    font-size: .65rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: .03em;
}

/* ── RESPONSIVE tweaks ── */
@media (max-width: 600px) {
    .sec { margin: 12px 10px 0; padding: 14px 14px 14px; }
    .cat-circle { width: 42px; height: 42px; }
    .cat-circle img { width: 28px; height: 28px; }
    .cat-lbl { font-size: .62rem; }
    .cat-row { gap: 5px; }
}

/*********  ---- header-  ***********/
.main-header {
  background: #1a4a1a;
}
.main-nav {
  background: #1a4a1a;
}

.cat-btn {
  background: #1a4a1a;
}
.cat-btn:hover {
  background: #1a4a1a;
}
.hdr-main:hover {
  background: #1a4a1a;
}
.header-search-wrap{
    border: 1.5px solid #1a4a1a;
}
.cat-btn{
    border-right: 1.5px solid #1a4a1a;
}


/* ════════════════════════════════
       PAGE LAYOUT
    ════════════════════════════════ */
    .page-wrapper {
      display: flex;
      min-height: 100vh;
    }

    /* ════════════════════════════════
       SIDEBAR
    ════════════════════════════════ */
    .sidebar {
      width: 228px;
      flex-shrink: 0;
      background: var(--white);
      border-right: 1px solid var(--border);
      padding: 20px 0;
      min-height: 100vh;
      position: sticky;
      top: 0;
      height: 100vh;
      overflow-y: auto;
    }
    .sidebar::-webkit-scrollbar { width: 4px; }
    .sidebar::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 4px; }

    .filter-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 18px 14px;
      border-bottom: 1px solid var(--border);
    }
    .filter-header h5 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--dark);
    }
    .clear-all {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--green);
      text-decoration: none;
      cursor: pointer;
    }
    .clear-all:hover { text-decoration: underline; }

    /* Filter sections */
    .filter-section {
      border-bottom: 1px solid var(--border);
      padding: 14px 18px;
    }
    .filter-section-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      font-size: 0.83rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 12px;
      user-select: none;
    }
    .filter-section-title i { color: var(--muted); font-size: 0.8rem; transition: transform .2s; }
    .filter-section.collapsed .filter-section-title i { transform: rotate(180deg); }
    .filter-body { }
    .filter-section.collapsed .filter-body { display: none; }

    /* Category list */
    .cat-item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 5px 0;
      font-size: 0.8rem;
      color: var(--muted);
      cursor: pointer;
      border-radius: 6px;
      transition: color .15s;
    }
    .cat-item:hover { color: var(--green); }
    .cat-item.active {
      color: var(--green);
      font-weight: 700;
    }
    .cat-item.active::before {
      content: '';
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--green);
      flex-shrink: 0;
    }
    .cat-item:not(.active)::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #d1d5db;
      flex-shrink: 0;
    }
    .view-more {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--green);
      cursor: pointer;
      margin-top: 4px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .view-more:hover { text-decoration: underline; }

    /* Price radio */
    .price-option {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 4px 0;
      font-size: 0.8rem;
      color: var(--muted);
      cursor: pointer;
    }
    .price-option input[type="radio"] {
      accent-color: var(--green);
      width: 14px; height: 14px;
      cursor: pointer;
    }

    /* Range slider */
    .range-wrap { margin-top: 12px; }
    .range-slider {
      width: 100%;
      accent-color: var(--green);
      height: 4px;
      cursor: pointer;
    }
    .range-labels {
      display: flex;
      justify-content: space-between;
      font-size: 0.75rem;
      color: var(--muted);
      margin-top: 8px;
    }
    .range-labels span { font-weight: 600; color: var(--dark); }
    .btn-apply {
      background: var(--green);
      color: #fff;
      border: none;
      border-radius: 7px;
      font-size: 0.78rem;
      font-weight: 700;
      padding: 7px 18px;
      cursor: pointer;
      margin-top: 10px;
      transition: background .2s;
    }
    .btn-apply:hover { background: var(--green-dark); }

    /* Offer checkboxes */
    .offer-check {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 4px 0;
      font-size: 0.8rem;
      color: var(--muted);
      cursor: pointer;
    }
    .offer-check input[type="checkbox"] {
      accent-color: var(--green);
      width: 14px; height: 14px;
      cursor: pointer;
    }

    /* Rating stars */
    .rating-opt {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 4px 0;
      font-size: 0.8rem;
      color: var(--muted);
      cursor: pointer;
    }
    .rating-opt input[type="checkbox"] {
      accent-color: var(--green);
      width: 14px; height: 14px;
    }
    .stars-row { display: flex; gap: 2px; }
    .stars-row i { color: var(--star); font-size: 0.72rem; }

    /* ════════════════════════════════
       MAIN CONTENT
    ════════════════════════════════ */
    .main-content {
      flex: 1;
      padding: 20px 20px 40px;
      min-width: 0;
    }

    /* ── Hero Banner ── */
    .hero-banner {
      background: linear-gradient(135deg, #f0faf4 0%, #e4f5eb 50%, #d4eedb 100%);
      border-radius: 14px;
      border: 1px solid #c4e6ce;
      padding: 24px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 22px;
      overflow: hidden;
      position: relative;
    }
    .banner-left { flex: 1; }
    .banner-title-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 6px;
    }
    .banner-leaf {
      width: 38px; height: 38px;
      background: var(--green-light);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
    }
    .banner-title {
      font-size: clamp(1.3rem, 2.5vw, 1.8rem);
      font-weight: 800;
      color: var(--dark);
      line-height: 1.1;
    }
    .banner-subtitle {
      font-size: 0.84rem;
      color: var(--muted);
      margin-top: 4px;
    }

    .banner-center {
      background: linear-gradient(135deg, #fff 0%, #f0faf4 100%);
      border-radius: 12px;
      border: 1px solid #c4e6ce;
      padding: 18px 24px;
      flex-shrink: 0;
      min-width: 240px;
    }
    .banner-center-title {
      font-size: 1rem;
      font-weight: 800;
      color: var(--green-dark);
      margin-bottom: 2px;
    }
    .banner-center-sub {
      font-size: 0.78rem;
      color: #4a8c5c;
      margin-bottom: 12px;
    }
    .banner-badges {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    .b-badge {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.73rem;
      font-weight: 600;
      color: var(--green-dark);
    }
    .b-badge i { font-size: 0.9rem; color: var(--green); }

    .banner-right {
      flex-shrink: 0;
      width: 180px;
      text-align: right;
      position: relative;
    }
    .veg-emoji-stack {
      font-size: 3.2rem;
      line-height: 1;
      filter: drop-shadow(0 4px 12px rgba(0,0,0,.12));
    }

    /* ── Products Bar ── */
    .products-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
      flex-wrap: wrap;
      gap: 10px;
    }
    .products-count {
      font-size: 0.9rem;
      color: var(--muted);
    }
    .products-count strong { color: var(--dark); font-weight: 700; }

    .sort-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .sort-label { font-size: 0.8rem; color: var(--muted); font-weight: 500; }
    .sort-select {
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 6px 28px 6px 10px;
      font-size: 0.8rem;
      font-family: 'Inter', sans-serif;
      color: var(--dark);
      font-weight: 600;
      background: var(--white);
      cursor: pointer;
      outline: none;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 8px center;
    }
    .view-toggle {
      display: flex;
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
    }
    .view-btn {
      padding: 6px 12px;
      background: var(--white);
      border: none;
      cursor: pointer;
      font-size: 0.8rem;
      color: var(--muted);
      display: flex; align-items: center; gap: 5px;
      transition: background .15s, color .15s;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
    }
    .view-btn.active {
      background: var(--green);
      color: #fff;
    }
    .view-btn:not(.active):hover { background: var(--bg); }
    .view-btn + .view-btn { border-left: 1px solid var(--border); }

    /* ══════════════════════════════════════
       PRODUCT CARD
    ══════════════════════════════════════ */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
      gap: 14px;
    }

    .product-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 0;
      overflow: hidden;
      transition: box-shadow .2s, transform .2s;
      position: relative;
    }
    .product-card:hover {
      box-shadow: 0 6px 24px rgba(26,122,60,.12);
      transform: translateY(-2px);
    }

    /* Discount badge */
    .discount-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: #fef08a;
      color: #713f12;
      font-size: 0.64rem;
      font-weight: 800;
      padding: 3px 7px;
      border-radius: 5px;
      letter-spacing: 0.3px;
      z-index: 2;
      border: 1px solid #fde047;
    }
    .discount-badge .pct { color: var(--orange); }

    /* Wishlist */
    .wishlist-btn {
      position: absolute;
      top: 8px;
      right: 8px;
      width: 28px; height: 28px;
      background: rgba(255,255,255,.85);
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      font-size: 0.8rem;
      color: var(--muted);
      z-index: 2;
      transition: color .15s, background .15s;
      backdrop-filter: blur(4px);
    }
    .wishlist-btn:hover { color: #ef4444; background: #fff; }
    .wishlist-btn.active { color: #ef4444; }

    /* Product image area */
    .product-img-wrap {
      background: #f9fafb;
      height: 140px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      border-bottom: 1px solid var(--border);
      position: relative;
    }

    /* Product body */
    .product-body {
      padding: 10px 12px 12px;
    }
    .product-name {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
      line-height: 1.3;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* Weight options */
    .weight-options {
      display: flex;
      gap: 5px;
      flex-wrap: wrap;
      margin-bottom: 10px;
    }
    .wt-chip {
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 3px 7px;
      font-size: 0.68rem;
      font-weight: 500;
      color: var(--muted);
      cursor: pointer;
      background: var(--white);
      transition: border-color .15s, color .15s, background .15s;
      white-space: nowrap;
    }
    .wt-chip.active {
      border-color: var(--green);
      color: var(--green);
      background: var(--green-light);
      font-weight: 700;
    }
    .wt-chip:hover:not(.active) { border-color: var(--green); color: var(--green); }
    .wt-chip .wt-price {
      display: block;
      font-size: 0.64rem;
      color: inherit;
      opacity: .8;
    }

    /* Price row */
    .price-row {
      display: flex;
      align-items: baseline;
      gap: 6px;
      margin-bottom: 6px;
    }
    .price-now {
      font-size: 1rem;
      font-weight: 800;
      color: var(--dark);
    }
    .price-now span { font-size: 0.78rem; }
    .price-old {
      font-size: 0.76rem;
      color: #9ca3af;
      text-decoration: line-through;
    }

    /* Rating */
    .rating-row {
      display: flex;
      align-items: center;
      gap: 5px;
      margin-bottom: 10px;
    }
    .rating-val {
      font-size: 0.74rem;
      font-weight: 700;
      color: var(--star);
    }
    .rating-stars { display: flex; gap: 1px; }
    .rating-stars i { color: var(--star); font-size: 0.62rem; }
    .rating-count { font-size: 0.7rem; color: #9ca3af; }

    /* Add to cart row */
    .cart-row {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .qty-control {
      display: flex;
      align-items: center;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      flex: 1;
    }
    .qty-btn {
      width: 28px; height: 32px;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--green);
      display: flex; align-items: center; justify-content: center;
      transition: background .15s;
    }
    .qty-btn:hover { background: var(--green-light); }
    .qty-val {
      flex: 1;
      text-align: center;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--dark);
      border-left: 1px solid var(--border);
      border-right: 1px solid var(--border);
      padding: 0 2px;
      line-height: 32px;
    }
    .qty-unit {
      font-size: 0.6rem;
      color: var(--muted);
      display: block;
      line-height: 1;
      margin-top: 2px;
    }
    .btn-add {
      background: var(--green);
      color: #fff;
      border: none;
      border-radius: 8px;
      font-size: 0.78rem;
      font-weight: 700;
      padding: 0 14px;
      height: 32px;
      cursor: pointer;
      transition: background .2s, transform .1s;
      white-space: nowrap;
      font-family: 'Inter', sans-serif;
    }
    .btn-add:hover { background: var(--green-dark); transform: scale(1.03); }

    /* ════════════════════════════════
       PAGINATION
    ════════════════════════════════ */
    .pagination-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 32px;
      flex-wrap: wrap;
      gap: 12px;
    }
    .pagination-btns {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .page-btn {
      width: 36px; height: 36px;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      background: var(--white);
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--muted);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: border-color .15s, background .15s, color .15s;
      font-family: 'Inter', sans-serif;
      text-decoration: none;
    }
    .page-btn.active {
      background: var(--green);
      border-color: var(--green);
      color: #fff;
    }
    .page-btn:hover:not(.active) { border-color: var(--green); color: var(--green); }
    .page-btn.arrow { font-size: 0.8rem; gap: 4px; width: auto; padding: 0 12px; }
    .page-dots { color: var(--muted); font-size: 0.82rem; padding: 0 4px; }
    .tax-note {
      font-size: 0.75rem;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .tax-note i { color: var(--green); }

    /* ════════════════════════════════
       RESPONSIVE
    ════════════════════════════════ */
    @media (max-width: 991px) {
      .sidebar { display: none; }
      .banner-right { display: none; }
      .banner-center { min-width: 0; }
      .product-grid { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); }
    }
    @media (max-width: 576px) {
      .main-content { padding: 14px 12px 30px; }
      .hero-banner { flex-direction: column; align-items: flex-start; }
      .banner-center { width: 100%; }
      .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    }