/* ============================================================
   MenuPrices SA — Main Stylesheet
   Clean & Professional — South Africa Fast Food Price Guide
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --primary:      #E8272B;
  --primary-dk:   #c01e22;
  --accent:       #FF6B00;
  --dark:         #1a1a1a;
  --body-bg:      #f5f4f1;
  --white:        #ffffff;
  --card-bg:      #ffffff;
  --border:       #e4e0db;
  --text:         #222222;
  --muted:        #777770;
  --green:        #1a7a40;
  --green-bg:     #edf7f1;
  --tag-hot-bg:   #fff0f0;
  --tag-hot-c:    #b03030;
  --tag-new-bg:   #eff6ff;
  --tag-new-c:    #1d4ed8;
  --tag-val-bg:   #edf7f1;
  --tag-val-c:    #1a7a40;
  --tag-pop-bg:   #fff8e6;
  --tag-pop-c:    #92620a;
  --radius:       12px;
  --radius-lg:    18px;
  --shadow:       0 2px 10px rgba(0,0,0,0.06);
  --shadow-hover: 0 6px 28px rgba(0,0,0,0.11);
  --nav-h:        66px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--body-bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--font-body); }

/* ── UTILITY ── */
.container     { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section       { padding: 48px 0; }
.section-sm    { padding: 32px 0; }
.text-center   { text-align: center; }

.badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  line-height: 1.4;
}
.badge-hot { background: var(--tag-hot-bg); color: var(--tag-hot-c); }
.badge-new { background: var(--tag-new-bg); color: var(--tag-new-c); }
.badge-val { background: var(--tag-val-bg); color: var(--tag-val-c); }
.badge-pop { background: var(--tag-pop-bg); color: var(--tag-pop-c); }

/* ── NOTICE BAR ── */
.notice-bar {
  background: #fef9ec;
  border-bottom: 1px solid #f0dfa0;
  padding: 8px 0;
  text-align: center;
  font-size: 0.78rem;
  color: #7a5c0a;
  line-height: 1.5;
}
.notice-bar strong { font-weight: 700; }

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}
.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
  display: flex;
  align-items: baseline;
  gap: 0;
  flex-shrink: 0;
}
.nav-logo span { color: var(--dark); }
.nav-logo small {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: 3px;
  letter-spacing: 0.5px;
}
.nav-search {
  flex: 1;
  max-width: 380px;
  position: relative;
}
.nav-search input {
  width: 100%;
  padding: 9px 16px 9px 38px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: #faf9f7;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.18s, background 0.18s;
}
.nav-search input:focus {
  border-color: var(--primary);
  background: var(--white);
}
.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  display: flex;
  align-items: center;
  pointer-events: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 7px 13px;
  border-radius: 8px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text);
  transition: background 0.14s, color 0.14s;
  white-space: nowrap;
}
.nav-links a:hover { background: #f0efec; }
.nav-links a.active {
  background: var(--primary);
  color: #fff;
}
.nav-ham {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  padding: 5px;
  border-radius: 6px;
  transition: background 0.14s;
}
.nav-ham:hover { background: #f0efec; }

/* Search dropdown */
.search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  z-index: 500;
  max-height: 310px;
  overflow-y: auto;
}
.search-dropdown.open { display: block; }
.sd-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.1s;
  border-bottom: 1px solid var(--border);
  gap: 10px;
}
.sd-item:last-child { border-bottom: none; }
.sd-item:hover { background: #faf9f7; }
.sd-left { display: flex; flex-direction: column; }
.sd-name { font-weight: 600; font-size: 0.87rem; }
.sd-meta { font-size: 0.72rem; color: var(--muted); margin-top: 1px; }
.sd-price { font-weight: 800; color: var(--green); font-size: 0.93rem; white-space: nowrap; }

/* Mobile nav drawer */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.42);
  z-index: 300;
}
.mobile-menu.open { display: block; }
.mobile-menu-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: var(--white);
  padding: 22px 20px 32px;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0,0,0,0.11);
}
.mobile-menu-inner .close-btn {
  float: right;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 3px;
  border-radius: 4px;
}
.mobile-menu-inner .close-btn:hover { color: var(--dark); }
.mobile-menu-inner h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 18px;
  color: var(--primary);
  clear: both;
  padding-top: 4px;
}
.mobile-menu-inner > a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.93rem;
  transition: color 0.14s;
}
.mobile-menu-inner > a:hover { color: var(--primary); }
.mobile-brands-list {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.mobile-brands-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--muted);
  margin-bottom: 8px;
}
.mobile-brands-list a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  transition: color 0.14s;
}
.mobile-brands-list a:hover { color: var(--primary); }
.mobile-all-brands {
  color: var(--primary) !important;
  font-weight: 700;
  margin-top: 4px;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(130deg, #fff9f0 0%, #fff3f3 55%, #f2f6ff 100%);
  border-bottom: 1px solid var(--border);
  padding: 52px 0 44px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, #e8272b0a 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}
.hero-text { flex: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 14px;
}
.hero h1 em { color: var(--primary); font-style: normal; }
.hero p { font-size: 1.02rem; color: var(--muted); max-width: 480px; line-height: 1.7; }
.hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.17s;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover {
  background: var(--primary-dk);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(232,39,43,0.28);
}
.btn-outline {
  background: var(--white);
  color: var(--dark);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.hero-stats {
  display: flex;
  gap: 26px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.h-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--primary);
  line-height: 1;
}
.h-stat span { font-size: 0.77rem; color: var(--muted); }
.hero-visual {
  flex: 0 0 auto;
  display: none;
  font-size: 6.5rem;
  line-height: 1;
}
@media (min-width: 768px) { .hero-visual { display: block; } }

/* ── SECTION HEADING ── */
.sec-head { margin-bottom: 26px; }
.sec-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.8rem);
  color: var(--dark);
}
.sec-head p { color: var(--muted); font-size: 0.92rem; margin-top: 5px; }
.sec-head .line {
  display: inline-block;
  width: 38px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-top: 8px;
}

/* ── BRAND GRID ── */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(142px, 1fr));
  gap: 12px;
}
.brand-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 10px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.brand-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.bc-icon {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 1.6rem;
  transition: transform 0.18s;
}
.brand-card:hover .bc-icon { transform: scale(1.08); }
.bc-name { font-weight: 700; font-size: 0.84rem; line-height: 1.3; color: var(--text); }
.bc-sub  { font-size: 0.71rem; color: var(--muted); margin-top: 3px; }
.bc-new-badge {
  position: absolute;
  top: 7px;
  right: 7px;
  background: var(--primary);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ── DEAL CARDS ── */
.deals-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.deal-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.18s, transform 0.18s, border-color 0.18s;
  text-decoration: none;
  display: block;
}
.deal-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); border-color: #ddd; }
.deal-thumb {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #fff8f0, #fff0f0);
}
.deal-body { padding: 11px 13px; }
.deal-brand { font-size: 0.69rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.7px; font-weight: 600; }
.deal-name  { font-weight: 700; font-size: 0.91rem; margin-top: 3px; color: var(--text); }
.deal-row   { display: flex; align-items: center; justify-content: space-between; margin-top: 7px; }
.deal-price { font-weight: 800; font-size: 1.02rem; color: var(--green); }
.deal-cal   { font-size: 0.71rem; color: var(--muted); }

/* ── AFFORDABLE ITEMS ── */
.afford-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 10px;
}
.afford-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.afford-card:hover { border-color: var(--green); box-shadow: var(--shadow); }
.afford-icon  { font-size: 1.7rem; flex-shrink: 0; }
.afford-name  { font-weight: 700; font-size: 0.83rem; color: var(--text); line-height: 1.3; }
.afford-brand { font-size: 0.69rem; color: var(--muted); margin-top: 1px; }
.afford-price { font-weight: 800; color: var(--green); font-size: 0.93rem; margin-top: 2px; }

/* ── COMPARE BAR ── */
.compare-bar {
  background: linear-gradient(135deg, var(--primary), #c01e22);
  border-radius: var(--radius-lg);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.compare-bar h3 { color: #fff; font-size: 1.08rem; font-weight: 700; }
.compare-bar p  { color: rgba(255,255,255,0.78); font-size: 0.84rem; margin-top: 3px; }
.compare-bar .btn { background: var(--white); color: var(--primary); }
.compare-bar .btn:hover { background: #fff4f0; }

/* ── MENU HERO (brand pages) ── */
.menu-hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.menu-hero-inner {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}
.menu-hero-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: var(--body-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
}
.menu-hero-info h1 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: var(--dark);
  line-height: 1.2;
}
.menu-hero-info p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 6px;
  max-width: 520px;
  line-height: 1.65;
}
.menu-meta-row { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--body-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}
.meta-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.breadcrumb { font-size: 0.81rem; color: var(--muted); margin-bottom: 9px; }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 5px; }
.bc-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

/* ── CATEGORY TABS ── */
.cat-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
}
.cat-nav-inner {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 10px 20px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-btn {
  padding: 7px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.14s, color 0.14s, border-color 0.14s;
  flex-shrink: 0;
  outline: none;
}
.cat-btn:hover { color: var(--primary); border-color: var(--primary); }
.cat-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ── MENU LAYOUT ── */
.menu-layout {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 26px;
  align-items: start;
  margin-top: 26px;
}
@media (max-width: 900px) {
  .menu-layout { grid-template-columns: 1fr; }
}
.menu-cat-title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--dark);
  padding-bottom: 9px;
  margin: 22px 0 11px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 7px;
}
.menu-cat-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 20px;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}
.menu-items-list { display: flex; flex-direction: column; gap: 9px; }
.menu-item-row {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.menu-item-row:hover { border-color: #d8d4ce; box-shadow: var(--shadow); }
.mi-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--body-bg);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mi-body  { flex: 1; min-width: 0; }
.mi-name  { font-weight: 700; font-size: 0.92rem; color: var(--text); line-height: 1.3; }
.mi-desc  { font-size: 0.77rem; color: var(--muted); margin-top: 3px; line-height: 1.55; }
.mi-tags  { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 6px; }
.mi-right { text-align: right; flex-shrink: 0; min-width: 60px; }
.mi-price { font-weight: 800; font-size: 1.02rem; color: var(--green); }
.mi-cal   { font-size: 0.71rem; color: var(--muted); margin-top: 2px; }

/* ── SIDEBAR ── */
.menu-sidebar { display: flex; flex-direction: column; gap: 14px; }
.sidebar-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
}
.sidebar-card h4 {
  font-family: var(--font-display);
  font-size: 0.97rem;
  margin-bottom: 12px;
  color: var(--dark);
}
.related-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: color 0.14s;
}
.related-item:last-child { border-bottom: none; padding-bottom: 0; }
.related-item:hover { color: var(--primary); }
.ri-icon { font-size: 1.25rem; flex-shrink: 0; }
.ri-body { flex: 1; }
.ri-name { font-weight: 600; font-size: 0.83rem; }
.ri-from { font-size: 0.7rem; color: var(--muted); }
.ri-arr  { color: var(--muted); font-size: 0.9rem; }
.price-tip {
  background: var(--green-bg);
  border: 1.5px solid #a8d5bc;
  border-radius: var(--radius);
  padding: 11px 13px;
  font-size: 0.8rem;
  color: var(--green);
  line-height: 1.55;
}

/* ── COMPARE TABLE ── */
.compare-table-wrap { overflow-x: auto; margin-top: 18px; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-table th {
  background: var(--body-bg);
  padding: 12px 15px;
  text-align: left;
  font-size: 0.79rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border-bottom: 2px solid var(--border);
}
.compare-table td {
  padding: 12px 15px;
  font-size: 0.86rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: #faf9f7; }
.ct-brand { display: flex; align-items: center; gap: 7px; font-weight: 600; }
.ct-best  { color: var(--green); font-weight: 800; }
.ct-best-row td { background: var(--green-bg) !important; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: #999;
  padding: 40px 0 24px;
  margin-top: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-logo span { color: var(--primary); }
.footer-about { font-size: 0.81rem; line-height: 1.75; max-width: 230px; }
.footer-col h5 { color: var(--white); font-size: 0.83rem; margin-bottom: 11px; font-weight: 700; }
.footer-col a { display: block; font-size: 0.8rem; padding: 3px 0; transition: color 0.14s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.76rem;
}
.footer-bottom a { color: #999; transition: color 0.14s; }
.footer-bottom a:hover { color: #fff; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim    { animation: fadeUp 0.32s ease both; }
.anim-d1 { animation-delay: 0.05s; }
.anim-d2 { animation-delay: 0.10s; }
.anim-d3 { animation-delay: 0.15s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-ham   { display: flex; }
}
@media (max-width: 600px) {
  .nav-search { max-width: 175px; }
  .hero { padding: 32px 0 26px; }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 28px 0; }
  .hero-stats { gap: 18px; }
}
@media (max-width: 380px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
}
