/* ============================================
   HAGGLERS — Option 1 Design System (Fresh Market)
   Roboto + Roboto Condensed | Green + Orange
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green: #00875A;
  --green-mid: #00A86B;
  --green-light: #E3FCEF;
  --green-dark: #006644;
  --orange: #FF6B35;
  --orange-dark: #E85A2A;
  --orange-light: #FFF3EE;
  --yellow: #FFD60A;
  --dark: #1A1A2E;
  --gray: #F8F9FA;
  --border: #E2E8F0;
  --text: #2D3748;
  --muted: #718096;
  --white: #FFFFFF;
  --woolworths: #00875A;
  --coles: #D93025;
  --aldi: #1565C0;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif; background: var(--white); color: var(--text); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* ============================================ NAV ============================================ */

.nav {
  background: var(--white);
  border-bottom: 3px solid var(--green);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 26px; font-weight: 900;
  color: var(--green); letter-spacing: -0.5px;
}
.logo-icon { font-size: 22px; }
.logo-tag {
  background: var(--orange); color: white;
  font-size: 10px; font-weight: 700; padding: 2px 8px;
  border-radius: 4px; letter-spacing: 1px; text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--green); color: white;
  padding: 10px 22px; border-radius: 8px;
  font-weight: 700; font-size: 14px; border: none;
  transition: background 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--green-mid); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* ============================================ HERO ============================================ */

.hero {
  background: linear-gradient(135deg, #00875A 0%, #00A86B 50%, #00C47A 100%);
  padding: 80px 40px 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 64px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
  position: relative; z-index: 1;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(38px, 5vw, 56px); font-weight: 900;
  color: white; line-height: 1.05; margin-bottom: 20px;
}
.hero-title .highlight {
  background: var(--yellow); color: var(--dark);
  padding: 0 6px; border-radius: 4px;
}

.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.85);
  line-height: 1.65; margin-bottom: 36px;
}

.hero-search {
  background: white; border-radius: 12px;
  padding: 6px 6px 6px 18px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  margin-bottom: 20px;
}
.hero-search svg { flex-shrink: 0; color: #bbb; }
.hero-search input {
  flex: 1; border: none; outline: none;
  font-size: 16px; font-family: 'Roboto', sans-serif;
  color: var(--text); background: transparent; min-width: 0;
}
.hero-search input::placeholder { color: #bbb; }
.hero-search button {
  background: var(--orange); color: white; border: none;
  padding: 14px 26px; border-radius: 8px;
  font-size: 15px; font-weight: 700;
  transition: background 0.2s; white-space: nowrap;
}
.hero-search button:hover { background: var(--orange-dark); }

.hero-stats { display: flex; gap: 28px; padding-bottom: 72px; flex-wrap: wrap; }
.stat-num { font-family: 'Roboto Condensed', sans-serif; font-size: 26px; font-weight: 900; color: var(--yellow); line-height: 1; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.6); font-weight: 500; margin-top: 2px; }

/* Hero UI card */
.hero-ui {
  background: white; border-radius: 20px; padding: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
  margin-bottom: 64px; position: relative; z-index: 1;
}
.ui-label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }

.mock-winner {
  background: var(--green); border-radius: 12px; padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px;
}
.mw-store { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.5px; }
.mw-name { font-size: 13px; color: white; font-weight: 500; margin: 2px 0; }
.mw-price { font-family: 'Roboto Condensed', sans-serif; font-size: 30px; font-weight: 900; color: white; }
.mw-badge { background: var(--yellow); color: var(--dark); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; white-space: nowrap; align-self: flex-start; }

.mock-row {
  background: var(--gray); border-radius: 10px; padding: 12px 14px;
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px;
  border-left: 3px solid var(--border);
}
.mock-row.fake-row { border-left-color: var(--coles); }
.mock-row.track-row { border-left-color: var(--aldi); }
.mock-row:last-child { margin-bottom: 0; }
.mr-store { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); }
.mr-name { font-size: 13px; font-weight: 500; }
.mr-price { font-family: 'Roboto Condensed', sans-serif; font-size: 22px; font-weight: 900; text-align: right; }
.mr-badge { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 100px; display: block; margin-top: 2px; text-align: right; }
.mr-badge.fake { background: #FFE8E8; color: var(--coles); }
.mr-badge.real { background: var(--green-light); color: var(--green-dark); }

/* ============================================ SECTIONS ============================================ */

.section-inner { max-width: 1140px; margin: 0 auto; padding: 0 40px; }

.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.section-title { font-family: 'Roboto Condensed', sans-serif; font-size: 28px; font-weight: 900; color: var(--dark); }
.section-link { font-size: 14px; font-weight: 600; color: var(--green); transition: color 0.2s; }
.section-link:hover { color: var(--green-dark); }

/* ============================================ CATEGORIES ============================================ */

.categories-section { padding: 72px 40px; background: var(--white); }
.categories-section .section-inner { padding: 0; }

.cat-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; }

.cat-card {
  text-align: center; padding: 20px 8px;
  background: var(--gray); border-radius: 14px;
  transition: all 0.2s; cursor: pointer;
  border: 2px solid transparent; display: block;
  color: var(--text);
  -webkit-tap-highlight-color: transparent;
}
.cat-card:hover { background: var(--green-light); border-color: var(--green); transform: translateY(-2px); }
.cat-card:active { transform: translateY(0); }
.cat-emoji { font-size: 28px; display: block; margin-bottom: 8px; }
.cat-name { font-size: 11px; font-weight: 600; line-height: 1.3; }

/* ============================================ PROOF STRIP ============================================ */

.proof-strip {
  background: var(--dark); padding: 22px 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.proof-item { display: flex; align-items: center; gap: 10px; }
.proof-icon { font-size: 18px; }
.proof-text { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.55); }
.proof-text strong { color: var(--yellow); }
.proof-div { width: 1px; height: 22px; background: rgba(255,255,255,0.1); }

/* ============================================ HOW IT WORKS ============================================ */

.how-section { padding: 80px 40px; background: var(--gray); }

.how-title { font-family: 'Roboto Condensed', sans-serif; font-size: 34px; font-weight: 900; text-align: center; margin-bottom: 48px; color: var(--dark); }

.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.how-card { background: var(--white); border-radius: 16px; padding: 32px; border: 1px solid var(--border); text-align: center; }
.how-num {
  width: 44px; height: 44px; background: var(--green); color: white; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Roboto Condensed', sans-serif; font-size: 20px; font-weight: 900;
  margin: 0 auto 16px;
}
.how-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.how-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ============================================ RESULTS ============================================ */

.results-section { padding: 56px 0 80px; }

.results-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 32px;
}

.results-title { font-family: 'Roboto Condensed', sans-serif; font-size: clamp(22px, 3vw, 28px); font-weight: 900; line-height: 1.2; }
.results-title em { font-style: italic; color: var(--green); }
.results-subtitle { font-size: 13px; color: var(--muted); margin-top: 4px; }

.results-filter { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-label { font-size: 13px; color: var(--muted); font-weight: 500; }

.filter-btn {
  padding: 7px 14px; border-radius: 100px;
  border: 1px solid var(--border); background: var(--white);
  font-size: 13px; color: var(--muted); transition: all 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.filter-btn:hover, .filter-btn.active { background: var(--green); color: white; border-color: var(--green); }

/* ============================================ PRODUCT GROUPS ============================================ */

.groups-list { display: flex; flex-direction: column; gap: 20px; }

.product-group { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }

.group-header {
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  background: var(--gray);
  border-bottom: 1px solid var(--border);
}

.group-title-wrap { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.group-title { font-family: 'Roboto Condensed', sans-serif; font-size: 18px; font-weight: 900; color: var(--dark); line-height: 1.3; }

.comparison-badge {
  font-size: 11px; font-weight: 700; letter-spacing: 0.3px;
  background: var(--dark); color: white; padding: 3px 10px; border-radius: 100px;
}

.cheapest-callout {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  background: var(--white); border-radius: 8px; padding: 8px 14px;
  border: 1px solid var(--border);
}
.cheapest-label { font-size: 12px; color: var(--muted); }
.cheapest-store { font-size: 14px; font-weight: 700; }
.cheapest-price { font-family: 'Roboto Condensed', sans-serif; font-size: 18px; font-weight: 900; }
.store-text-woolworths { color: var(--woolworths); }
.store-text-coles { color: var(--coles); }
.store-text-aldi { color: var(--aldi); }

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

.store-card {
  padding: 20px 24px; color: var(--text);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
  position: relative; transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
  border-top: 3px solid transparent;
}
.store-card:last-child { border-right: none; }
.store-card:hover { background: var(--gray); }
.store-card.real { border-top-color: var(--green); }
.store-card.fake { border-top-color: var(--coles); }
.store-card.cheapest { background: #FFFEF0; }

.cheapest-ribbon {
  position: absolute; top: 0; right: 0;
  background: var(--orange); color: white;
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 3px 10px; border-bottom-left-radius: 8px;
}

.store-card-header { display: flex; align-items: center; justify-content: space-between; gap: 8px; }

.store-badge { font-size: 11px; font-weight: 700; letter-spacing: 0.3px; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; }
.store-woolworths { background: var(--green-light); color: var(--woolworths); }
.store-coles { background: #FDE8E7; color: var(--coles); }
.store-aldi { background: #E8F0FE; color: var(--aldi); }

.sale-badge { font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 100px; }
.real-badge { background: var(--green-light); color: var(--green-dark); }
.fake-badge { background: #FDE8E7; color: var(--coles); }

.store-card-pricing { display: flex; align-items: baseline; gap: 8px; }
.store-price { font-family: 'Roboto Condensed', sans-serif; font-size: 30px; font-weight: 900; line-height: 1; }
.store-was { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.store-verdict { font-size: 12px; color: var(--muted); line-height: 1.5; flex: 1; }
.store-cta { font-size: 12px; font-weight: 700; color: var(--orange); margin-top: 4px; }

/* ============================================ EMPTY STATE ============================================ */

.empty-state { text-align: center; padding: 80px 20px; }
.empty-emoji { font-size: 48px; display: block; margin-bottom: 16px; }
.empty-state h3 { font-family: 'Roboto Condensed', sans-serif; font-size: 24px; font-weight: 900; margin-bottom: 8px; }
.empty-state p { color: var(--muted); margin-bottom: 24px; }

/* ============================================ CTA BANNER ============================================ */

.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #FF8C42 100%);
  padding: 72px 40px; text-align: center;
}
.cta-section h2 { font-family: 'Roboto Condensed', sans-serif; font-size: 40px; font-weight: 900; color: white; margin-bottom: 12px; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.cta-search {
  display: inline-flex; background: white; border-radius: 12px; overflow: hidden;
  max-width: 520px; width: 100%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.cta-search input { flex: 1; border: none; outline: none; padding: 16px 20px; font-size: 15px; font-family: 'Roboto', sans-serif; min-width: 0; color: var(--text); }
.cta-search input::placeholder { color: #bbb; }
.cta-search button { background: var(--dark); color: white; border: none; padding: 16px 28px; font-weight: 700; font-size: 15px; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.cta-search button:hover { background: #333; }

/* ============================================ PRODUCT DETAIL ============================================ */

.product-detail { max-width: 900px; margin: 0 auto; padding: 40px 24px 80px; }

.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: 14px; font-weight: 500;
  margin-bottom: 28px; transition: color 0.2s;
}
.back-link:hover { color: var(--text); }

.detail-header { background: var(--white); border-radius: 16px; padding: 28px; margin-bottom: 20px; border: 1px solid var(--border); }
.detail-badges { display: flex; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.detail-name { font-family: 'Roboto Condensed', sans-serif; font-size: clamp(22px, 3.5vw, 30px); font-weight: 900; line-height: 1.2; margin-bottom: 18px; color: var(--dark); }
.detail-pricing { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.detail-price { font-family: 'Roboto Condensed', sans-serif; font-size: clamp(38px, 5vw, 52px); font-weight: 900; color: var(--dark); }
.detail-was { font-size: 16px; color: var(--muted); text-decoration: line-through; }
.detail-verdict {
  font-size: 15px; line-height: 1.6; padding: 14px 18px; border-radius: 10px;
  background: var(--gray); border-left: 4px solid var(--border); font-weight: 500;
}
.detail-verdict.real { background: var(--green-light); border-left-color: var(--green); color: var(--green-dark); }
.detail-verdict.fake { background: #FDE8E7; border-left-color: var(--coles); color: #B71C1C; }

.chart-card { background: var(--white); border-radius: 16px; padding: 28px; border: 1px solid var(--border); margin-bottom: 20px; }
.chart-title { font-family: 'Roboto Condensed', sans-serif; font-size: 20px; font-weight: 900; margin-bottom: 8px; color: var(--dark); }
.chart-subtitle { font-size: 13px; color: var(--muted); margin-bottom: 20px; }

.compare-summary { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; margin-top: 24px; }
.compare-store-card { background: var(--gray); border-radius: 10px; padding: 14px 16px; border-left: 4px solid var(--border); display: flex; flex-direction: column; gap: 2px; }
.compare-store-name { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); }
.compare-store-price { font-family: 'Roboto Condensed', sans-serif; font-size: 26px; font-weight: 900; color: var(--dark); }
.compare-store-label { font-size: 11px; color: var(--muted); }
.compare-cheaper { font-size: 12px; font-weight: 700; color: var(--green-dark); margin-top: 4px; }
.compare-dearer { font-size: 12px; font-weight: 700; color: var(--coles); margin-top: 4px; }
.compare-same { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ============================================ FOOTER ============================================ */

.footer { background: var(--dark); padding: 32px 40px; }
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo { font-family: 'Roboto Condensed', sans-serif; font-size: 22px; font-weight: 900; color: white; }
.footer-text { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-tagline { font-size: 11px; color: rgba(255,255,255,0.2); margin-top: 4px; }

/* ============================================ RESPONSIVE ============================================ */

@media (max-width: 900px) {
  .nav { padding: 0 20px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: var(--white); flex-direction: column; gap: 0; padding: 8px 0; z-index: 99;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; border-bottom: 1px solid var(--border); color: var(--text); }
  .nav-cta { margin: 12px 24px; display: block; text-align: center; }

  /* ── HERO ── */
  .hero { padding: 40px 20px 0; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-copy { align-items: center; }
  .hero-eyebrow { margin-left: auto; margin-right: auto; }
  .hero-sub { margin-left: auto; margin-right: auto; max-width: 480px; }
  .hero-search {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-search input { min-width: 0; }
  .hero-search button { padding: 14px 18px; font-size: 14px; }
  .hero-stats {
    justify-content: center;
    padding-bottom: 48px;
    gap: 32px;
  }
  .hero-stat { align-items: center; }

  /* Hero UI mock card — centered, max width, tidy margin */
  .hero-card-wrap { align-items: center; }
  .hero-ui {
    max-width: 420px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 56px;
  }

  /* ── CATEGORIES ── */
  .categories-section { padding: 48px 20px; }
  .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .section-header { text-align: center; justify-content: center; }

  /* ── HOW IT WORKS ── */
  .how-section { padding: 56px 20px; }
  .how-grid { grid-template-columns: 1fr !important; gap: 14px; max-width: 480px; margin: 0 auto; }
  #basketPromo { grid-template-columns: 1fr !important; gap: 28px !important; padding: 40px 20px !important; }

  /* ── PROOF STRIP ── */
  .proof-strip {
    padding: 20px 16px;
    gap: 12px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .proof-div { display: none; }
  .proof-item { justify-content: center; }

  /* ── CTA SECTION ── */
  .cta-section { padding: 56px 20px; }
  .cta-search { display: flex; flex-direction: column; border-radius: 12px; overflow: hidden; }
  .cta-search input { padding: 16px 20px; font-size: 16px; border-bottom: 1px solid var(--border); }
  .cta-search button { padding: 16px; border-radius: 0; width: 100%; font-size: 15px; }

  /* ── FOOTER ── */
  .footer { padding: 24px 20px; }
  .footer-inner { flex-direction: column; text-align: center; }

  /* ── RESULTS ── */
  .results-section { padding: 32px 0 60px; }
  .results-header { flex-direction: column; }
  .results-filter { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .store-cards { grid-template-columns: 1fr; }
  .store-card { border-right: none; border-bottom: 1px solid var(--border); }
  .store-card:last-child { border-bottom: none; }
  .group-header { flex-direction: column; align-items: flex-start; }

  .product-detail { padding: 24px 16px 60px; }
}

@media (max-width: 520px) {
  /* Hero */
  .hero { padding: 32px 16px 0; }
  .hero-title { font-size: clamp(30px, 8vw, 40px); }
  .hero-sub { font-size: 15px; }
  .hero-search { border-radius: 10px; padding: 5px 5px 5px 14px; }
  .hero-search button { padding: 12px 16px; white-space: nowrap; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 22px; }

  /* Categories — 4-up grid */
  .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .cat-card { padding: 12px 4px; border-radius: 10px; }
  .cat-emoji { font-size: 20px; margin-bottom: 6px; }
  .cat-name { font-size: 10px; }

  /* CTA */
  .cta-section h2 { font-size: 28px; }
  .cta-section p { font-size: 15px; }

  /* How it works */
  .how-title { font-size: 26px; }
  .how-card { padding: 24px 20px; }
  .how-card h3 { font-size: 15px; }
}

@media (min-width: 901px) {
  .store-cards { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================ BASKET PROMO ============================================ */

#basketPromo {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ============================================ BASKET ============================================ */

.nav-basket { position: relative; display: flex; align-items: center; gap: 6px; }
.basket-count {
  background: var(--orange); color: white;
  font-size: 10px; font-weight: 700; min-width: 18px; height: 18px;
  border-radius: 100px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 5px; line-height: 1;
}
.basket-count:empty { display: none; }

.btn-basket {
  background: white; color: var(--green);
  border: 1.5px solid var(--green); padding: 7px 14px;
  border-radius: 8px; font-size: 12px; font-weight: 700;
  cursor: pointer; transition: all 0.15s; white-space: nowrap;
  font-family: 'Roboto', sans-serif;
}
.btn-basket:hover { background: var(--green); color: white; }
.btn-basket.added { background: var(--green); color: white; border-color: var(--green); }
.btn-basket.added:hover { background: var(--green-dark); border-color: var(--green-dark); }

/* Firefox */
@-moz-document url-prefix() { .hero-search input { font-size: 16px; } }
/* Focus */
button:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
a:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }