
/* ══════════════════════════════════════════════════════════
   STORES LIST PAGE — Page-specific styles
══════════════════════════════════════════════════════════ */

/* ── PAGE HERO ─────────────────────────────────────────── */
.stores-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a2550 55%, #231840 100%);
  padding: 3rem 1.5rem 4.5rem;
  position: relative;
  overflow: hidden;
}
.stores-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23FF5C28' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stores-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.stores-hero-text { flex: 1; min-width: 280px; }
.stores-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,92,40,.15);
  border: 1px solid rgba(255,92,40,.3);
  color: var(--accent);
  font-size: .73rem;
  font-weight: 700;
  padding: .28rem .85rem;
  border-radius: 40px;
  margin-bottom: 1rem;
  letter-spacing: .3px;
}
.stores-hero-eyebrow svg { width: 13px; height: 13px; }
.stores-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  letter-spacing: -.5px;
  line-height: 1.12;
  margin-bottom: .875rem;
}
.stores-hero h1 em { color: var(--accent); font-style: normal; }
.stores-hero-desc {
  font-size: .95rem;
  color: rgba(255,255,255,.68);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 1.5rem;
}
.hero-stat-pills {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.hsp {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.88);
  font-size: .77rem;
  font-weight: 600;
  padding: .35rem .8rem;
  border-radius: 40px;
}
.hsp svg { width: 13px; height: 13px; color: var(--accent); }

/* Hero search */
.hero-store-search {
  flex: 0 0 360px;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1rem;
}
.hero-store-search p {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-bottom: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.hss-form {
  display: flex;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.hss-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: .75rem 1rem;
  font-size: .875rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  min-width: 0;
}
.hss-form input::placeholder { color: var(--text3); }
.hss-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: .75rem 1.1rem;
  cursor: pointer;
  transition: background .15s;
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .82rem;
  font-weight: 700;
}
.hss-form button:hover { background: var(--accent-h); }
.hss-form button svg { width: 15px; height: 15px; }
.hss-quick {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .75rem;
}
.hss-qtag {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.78);
  font-size: .7rem;
  font-weight: 600;
  padding: .22rem .65rem;
  border-radius: 40px;
  cursor: pointer;
  transition: all .15s;
}
.hss-qtag:hover { background: rgba(255,92,40,.25); border-color: rgba(255,92,40,.5); color: #fff; }

/* ── FLOATING WAVE ─────────────────────────────────────── */
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
  pointer-events: none;
}
.hero-wave svg { width: 100%; height: 52px; }

/* ── MAIN LAYOUT ───────────────────────────────────────── */
.stores-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.stores-sidebar { position: sticky; top: 78px; display: flex; flex-direction: column; gap: 1rem; }
.stores-main { min-width: 0; }

/* ── SIDEBAR FILTER CARDS ──────────────────────────────── */
.sf-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.sf-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .875rem 1rem .6rem;
  border-bottom: 1px solid var(--border);
}
.sf-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: var(--text);
}
.sf-clear {
  font-size: .68rem;
  color: var(--accent);
  font-weight: 700;
  cursor: pointer;
  background: none;
  border: none;
  display: none;
  padding: 0;
}
.sf-clear.visible { display: block; }
.sf-body { padding: .75rem 1rem; }

/* Category list */
.sf-cat-list { display: flex; flex-direction: column; gap: .1rem; }
.sf-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem .5rem;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: background .12s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.sf-cat-item:hover { background: var(--surface2); }
.sf-cat-item.active { background: var(--accent-light); }
.sf-cat-item.active .sf-cat-label { color: var(--accent-h); font-weight: 700; }
.sf-cat-item.active .sf-cat-count { background: var(--accent); color: #fff; border-color: transparent; }
.sf-cat-left { display: flex; align-items: center; gap: .6rem; }
.sf-cat-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sf-cat-icon svg { width: 15px; height: 15px; }
.sf-cat-label { font-size: .82rem; font-weight: 500; color: var(--text2); }
.sf-cat-count {
  font-size: .65rem;
  font-weight: 700;
  padding: .12rem .5rem;
  border-radius: 40px;
  background: var(--surface3);
  color: var(--text3);
  border: 1px solid var(--border);
  white-space: nowrap;
}

/* Sort & filter row */
.sf-radio-list { display: flex; flex-direction: column; gap: .35rem; }
.sf-radio {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .4rem .4rem;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: background .12s;
  font-size: .82rem;
  color: var(--text2);
}
.sf-radio:hover { background: var(--surface2); }
.sf-radio.active { color: var(--accent-h); font-weight: 700; }
.sf-radio-dot {
  width: 16px; height: 16px;
  border: 2px solid var(--border2);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color .15s;
}
.sf-radio.active .sf-radio-dot { border-color: var(--accent); }
.sf-radio.active .sf-radio-dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--accent);
  border-radius: 50%;
}

/* Cash back only toggle */
.sf-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem 0;
  border-top: 1px solid var(--border);
  margin-top: .3rem;
}
.sf-toggle-label { font-size: .82rem; color: var(--text2); display: flex; align-items: center; gap: .4rem; }
.sf-toggle-label svg { width: 14px; height: 14px; color: var(--teal); }
.sf-switch {
  width: 36px; height: 20px;
  background: var(--border2);
  border-radius: 40px;
  position: relative;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
  border: none;
}
.sf-switch.on { background: var(--teal); }
.sf-switch::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.sf-switch.on::after { left: 19px; }

/* Featured categories pill cloud */
.sf-tag-cloud { display: flex; flex-wrap: wrap; gap: .35rem; padding: .75rem 1rem; }
.sf-tag {
  font-size: .72rem;
  font-weight: 600;
  padding: .28rem .7rem;
  border-radius: 40px;
  border: 1.5px solid var(--border);
  color: var(--text2);
  background: var(--surface);
  cursor: pointer;
  transition: all .15s;
}
.sf-tag:hover { border-color: var(--accent); color: var(--accent); }
.sf-tag.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ── MAIN CONTENT TOP BAR ──────────────────────────────── */
.stores-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.stores-topbar-left { display: flex; align-items: baseline; gap: .6rem; }
.stores-page-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: -.3px;
}
.stores-page-title span { color: var(--accent); }
.stores-count { font-size: .78rem; color: var(--text3); font-weight: 600; }
.stores-topbar-right { display: flex; align-items: center; gap: .5rem; }
.sort-select {
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: .38rem .875rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text2);
  background: var(--surface);
  cursor: pointer;
  outline: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: border-color .15s;
}
.sort-select:focus { border-color: var(--accent); }
.view-btn {
  width: 34px; height: 34px;
  border-radius: var(--radius-xs);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .15s;
  color: var(--text3);
  background: var(--surface);
}
.view-btn:hover { border-color: var(--accent); color: var(--accent); }
.view-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.view-btn svg { width: 16px; height: 16px; }

/* ── ALPHABET JUMP BAR ─────────────────────────────────── */
.alpha-bar {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: .75rem 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
  margin-bottom: 1.25rem;
  align-items: center;
}
.alpha-bar-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text3);
  margin-right: .4rem;
  white-space: nowrap;
}
.alpha-btn {
  width: 30px; height: 30px;
  border-radius: 7px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--text2);
  background: none;
  border: none;
  cursor: pointer;
  transition: all .15s;
  display: flex; align-items: center; justify-content: center;
}
.alpha-btn:hover { background: var(--accent-light); color: var(--accent-h); }
.alpha-btn.active { background: var(--accent); color: #fff; }
.alpha-btn.disabled { color: var(--border2); cursor: default; pointer-events: none; }

/* ── PROMO BANNER STRIP ────────────────────────────────── */
.promo-strip {
  background: linear-gradient(135deg, #0C1B3A 0%, #1a2550 100%);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.promo-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='15' stroke='%23FF5C28' stroke-width='.5' fill='none' opacity='.12'/%3E%3C/svg%3E") center/cover;
  pointer-events: none;
}
.ps-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(255,92,40,.18);
  border: 1.5px solid rgba(255,92,40,.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ps-icon svg { width: 22px; height: 22px; color: var(--accent); }
.ps-text { flex: 1; position: relative; }
.ps-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: .95rem; color: #fff; margin-bottom: .2rem; }
.ps-desc { font-size: .78rem; color: rgba(255,255,255,.58); }
.ps-cta {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: .6rem 1.25rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
}
.ps-cta:hover { background: var(--accent-h); transform: translateY(-1px); box-shadow: var(--shadow-accent); }

/* ── LETTER SECTION HEADING ────────────────────────────── */
.letter-section { margin-bottom: 1.75rem; }
.letter-heading {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .875rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--border);
}
.lh-letter {
  width: 38px; height: 38px;
  background: var(--primary);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lh-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  color: var(--text3);
}
.lh-count {
  font-size: .72rem;
  color: var(--text3);
  margin-left: auto;
  font-weight: 600;
}

/* ── STORE GRID ────────────────────────────────────────── */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1rem;
}
.stores-grid.list-view { grid-template-columns: 1fr; }

/* ── STORE CARD (GRID) ─────────────────────────────────── */
.sc2 {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .2s, transform .18s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.sc2:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.sc2:hover .sc2-visit { background: var(--accent); color: #fff; border-color: var(--accent); }
.sc2-cashback-tag {
  position: absolute;
  top: 0; left: 0;
  background: var(--teal);
  color: #fff;
  font-size: .58rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-bottom-right-radius: var(--radius-xs);
  text-transform: uppercase;
  letter-spacing: .4px;
  z-index: 1;
}
.sc2-feat-tag {
  position: absolute;
  top: 0; right: 0;
  background: var(--accent);
  color: #fff;
  font-size: .58rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-bottom-left-radius: var(--radius-xs);
  text-transform: uppercase;
  letter-spacing: .4px;
  z-index: 1;
}
.sc2-banner {
  height: 58px;
  position: relative;
  flex-shrink: 0;
}
.sc2-logo-wrap {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 50px;
  border-radius: 13px;
  background: #fff;
  border: 2.5px solid rgba(255,255,255,.3);
  box-shadow: 0 3px 16px rgba(12,27,58,.2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  z-index: 2;
}
.sc2-logo-wrap img { width: 38px; height: auto; object-fit: contain; }
.sc2-logo-fb {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: .85rem;
  color: var(--text2);
}
.sc2-body {
  padding: 1.5rem .875rem .75rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sc2-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  color: var(--text);
  margin-bottom: .2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sc2-rating { display: flex; align-items: center; justify-content: center; gap: .3rem; margin-bottom: .5rem; }
.sc2-stars { color: var(--amber); font-size: .75rem; letter-spacing: .5px; }
.sc2-rating-n { font-size: .68rem; color: var(--text3); font-weight: 600; }
.sc2-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  flex-wrap: wrap;
  margin-bottom: .65rem;
}
.sc2-pill {
  font-size: .62rem;
  font-weight: 700;
  padding: .14rem .52rem;
  border-radius: 40px;
}
.sc2p-deals { background: var(--accent-light); color: var(--accent-h); border: 1px solid rgba(255,92,40,.2); }
.sc2p-cash { background: var(--teal-light); color: var(--teal-h); border: 1px solid rgba(0,176,155,.2); }
.sc2p-sale { background: var(--green-light); color: var(--green-h); border: 1px solid rgba(24,167,96,.2); }
.sc2-best-deal {
  font-size: .73rem;
  color: var(--text3);
  background: var(--surface2);
  border-radius: 6px;
  padding: .3rem .55rem;
  margin-bottom: .7rem;
  border: 1px solid var(--border);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sc2-best-deal strong { color: var(--accent-h); font-weight: 700; }
.sc2-visit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  border: 1.5px solid var(--border2);
  border-radius: 50px;
  padding: .5rem;
  font-size: .76rem;
  font-weight: 700;
  color: var(--text2);
  transition: all .18s;
  margin-top: auto;
  background: var(--surface);
  cursor: pointer;
  width: 100%;
}
.sc2-visit svg { width: 13px; height: 13px; }

/* ── STORE CARD (LIST VIEW) ────────────────────────────── */
.stores-grid.list-view .sc2 { flex-direction: row; align-items: center; }
.stores-grid.list-view .sc2-banner { width: 72px; height: 72px; border-radius: 14px; overflow: visible; flex-shrink: 0; position: relative; }
.stores-grid.list-view .sc2-logo-wrap { position: relative; bottom: auto; left: auto; transform: none; width: 100%; height: 100%; border-radius: 12px; border-width: 2px; }
.stores-grid.list-view .sc2-body { text-align: left; flex-direction: row; align-items: center; gap: 1rem; padding: .75rem 1rem; }
.stores-grid.list-view .sc2-body-left { flex: 1; min-width: 0; }
.stores-grid.list-view .sc2-name { margin-bottom: .15rem; }
.stores-grid.list-view .sc2-rating { justify-content: flex-start; margin-bottom: .3rem; }
.stores-grid.list-view .sc2-pills { justify-content: flex-start; margin-bottom: 0; }
.stores-grid.list-view .sc2-best-deal { display: none; }
.stores-grid.list-view .sc2-visit { width: auto; padding: .45rem 1rem; white-space: nowrap; flex-shrink: 0; margin-top: 0; }
.stores-grid.list-view .sc2-cashback-tag { border-radius: 0 0 var(--radius-xs) 0; }
.stores-grid.list-view .sc2-feat-tag { display: none; }

/* Banner colour variants */
.scb-v1 { background: linear-gradient(135deg, #0C1B3A 0%, #1E3260 100%); }
.scb-v2 { background: linear-gradient(135deg, #7F1D1D 0%, #B91C1C 100%); }
.scb-v3 { background: linear-gradient(135deg, #14532D 0%, #166534 100%); }
.scb-v4 { background: linear-gradient(135deg, #1e1b4b 0%, #4338ca 100%); }
.scb-v5 { background: linear-gradient(135deg, #713f12 0%, #d97706 100%); }
.scb-v6 { background: linear-gradient(135deg, #0e4272 0%, #1d4ed8 100%); }
.scb-v7 { background: linear-gradient(135deg, #4a044e 0%, #a21caf 100%); }
.scb-v8 { background: linear-gradient(135deg, #042f2e 0%, #0f766e 100%); }
.scb-v9 { background: linear-gradient(135deg, #431407 0%, #ea580c 100%); }

/* ── LOAD MORE & PAGINATION ────────────────────────────── */
.stores-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.pg-btn {
  min-width: 38px; height: 38px;
  border-radius: var(--radius-xs);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text2);
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
  display: flex; align-items: center; justify-content: center;
  padding: 0 .6rem;
}
.pg-btn:hover { border-color: var(--accent); color: var(--accent); }
.pg-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.pg-btn.disabled { opacity: .38; cursor: default; pointer-events: none; }
.pg-btn svg { width: 14px; height: 14px; }
.pg-ellipsis { color: var(--text3); font-size: .82rem; padding: 0 .25rem; }

/* ── TOP CATEGORIES QUICK ACCESS ───────────────────────── */
.cats-quick {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.cq-chip {
  background: var(--surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: .875rem .75rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  cursor: pointer;
  transition: all .18s;
  border: 1.5px solid transparent;
}
.cq-chip:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.cq-chip.active { border-color: var(--accent); background: var(--accent-light); }
.cq-chip.active .cq-label { color: var(--accent-h); }
.cq-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cq-icon svg { width: 18px; height: 18px; }
.cq-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  color: var(--text);
  line-height: 1.3;
}
.cq-count { font-size: .65rem; color: var(--text3); }

/* ── TRENDING BADGE ON CARDS ───────────────────────────── */
.trending-badge {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  background: linear-gradient(90deg, #FF5C28, #FF3D6B);
  color: #fff;
  font-size: .58rem;
  font-weight: 700;
  padding: .16rem .5rem;
  border-radius: 40px;
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 3;
}
.trending-badge svg { width: 9px; height: 9px; }

/* ── RECENTLY VIEWED ROW ───────────────────────────────── */
.recently-wrap {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  display: none;
}
.recently-wrap.visible { display: block; }
.recently-head {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text3);
}
.recently-head svg { width: 13px; height: 13px; }
.recently-list { display: flex; gap: .6rem; flex-wrap: wrap; }
.recently-chip {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: .3rem .75rem .3rem .4rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text2);
  cursor: pointer;
  transition: all .15s;
}
.recently-chip:hover { border-color: var(--accent); color: var(--accent); }
.recently-logo {
  width: 20px; height: 20px;
  border-radius: 5px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .55rem;
  font-weight: 900;
  color: var(--text2);
  overflow: hidden;
}

/* ── NO RESULTS ────────────────────────────────────────── */
.no-results {
  text-align: center;
  padding: 3rem 1.5rem;
  display: none;
}
.no-results.visible { display: block; }
.no-results svg { width: 52px; height: 52px; color: var(--border2); margin: 0 auto 1rem; }
.no-results h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--text); margin-bottom: .4rem; }
.no-results p { font-size: .85rem; color: var(--text3); }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stores-layout { grid-template-columns: 220px 1fr; }
}
@media (max-width: 860px) {
  .stores-layout { grid-template-columns: 1fr; }
  .stores-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .sf-card { flex: 1; min-width: 200px; }
  .hero-store-search { flex: 0 0 100%; }
  .stores-hero-inner { flex-direction: column; }
}
@media (max-width: 600px) {
  .stores-hero { padding: 2rem 1rem 3.5rem; }
  .stores-layout { padding: 1rem 1rem 2rem; }
  .stores-grid { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: .75rem; }
  .alpha-bar { gap: .15rem; }
  .alpha-btn { width: 26px; height: 26px; font-size: .72rem; }
  .cats-quick { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .promo-strip { flex-wrap: wrap; }
}
