/*
Theme Name: RecallsAtHome 2026
Theme URI: https://recallsathome.com
Description: Consumer-facing UK product recall database theme
Author: ESG Messages
Version: 1.0
Text Domain: recallsathome
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --navy:      #0D1B3E;
  --red:       #D0021B;
  --red-dark:  #A80015;
  --off-white: #F7F6F3;
  --white:     #FFFFFF;
  --mid-grey:  #6B7280;
  --light-grey:#E5E7EB;
  --border:    #DDE1E7;
  --serious:   #D0021B;
  --high:      #E65100;
  --medium:    #F57F17;
  --low:       #2E7D32;
  --font-head: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::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(--off-white);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   TICKER
   ============================================================ */
.alert-ticker {
  background: var(--red);
  color: var(--white);
  padding: 0.5rem 0;
  overflow: hidden;
  position: relative;
}
.alert-ticker::before {
  content: '⚠ LATEST RECALLS';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.2rem;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker-scroll 40s linear infinite;
  padding-left: calc(160px + 1rem);
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-size: 0.82rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
.ticker-item:hover { opacity: 0.85; }
.ticker-badge {
  background: rgba(255,255,255,0.25);
  padding: 0.1rem 0.5rem;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ticker-badge.serious { background: rgba(0,0,0,0.3); }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(13,27,62,0.3);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.logo-main {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-main span { color: var(--red); }
.logo-sub {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}
.header-search {
  flex: 1;
  max-width: 480px;
}
.header-search form {
  display: flex;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s;
}
.header-search form:focus-within {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
}
.header-search input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 0.55rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
}
.header-search input::placeholder { color: rgba(255,255,255,0.45); }
.header-search button {
  background: var(--red);
  border: none;
  color: var(--white);
  padding: 0 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.header-search button:hover { background: var(--red-dark); }
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-nav a {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--white); }
.nav-alert-btn {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.4rem 1rem;
  border-radius: 5px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-alert-btn:hover { background: var(--red-dark) !important; }

/* ============================================================
   HERO
   ============================================================ */
.site-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2f5e 60%, #0d1b3e 100%);
  padding: 4rem 2rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.site-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(208,2,27,0.15) 0%, transparent 70%);
}
.hero-inner { max-width: 700px; margin: 0 auto; position: relative; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(208,2,27,0.2);
  border: 1px solid rgba(208,2,27,0.35);
  color: #ff8a8a;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: '🔴'; font-size: 0.6rem; }
.hero-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.hero-title em { color: var(--red); font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.hero-search-wrap {
  background: var(--white);
  border-radius: 10px;
  padding: 0.35rem 0.35rem 0.35rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 560px;
  margin: 0 auto 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.hero-search-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  background: transparent;
}
.hero-search-wrap input::placeholder { color: var(--mid-grey); }
.hero-search-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 7px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.hero-search-btn:hover { background: var(--red-dark); }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories-section {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-bottom: 2px solid var(--border);
}
.categories-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 1.2rem;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.75rem;
}
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  background: var(--white);
}
.category-card:hover {
  border-color: var(--navy);
  background: var(--off-white);
  transform: translateY(-2px);
}
.category-card.active {
  border-color: var(--red);
  background: #fff5f5;
}
.cat-icon {
  width: 44px;
  height: 44px;
}
.cat-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.cat-count {
  font-size: 0.65rem;
  color: var(--mid-grey);
}

/* ============================================================
   MAIN LAYOUT
   ============================================================ */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}

/* ============================================================
   RECALLS LIST
   ============================================================ */
.recalls-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.recalls-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}
.recalls-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.3rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--red);
  color: var(--red);
  background: #fff5f5;
}
.recall-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 0.85rem;
  display: flex;
  gap: 1.1rem;
  transition: all 0.2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.recall-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
}
.recall-card.risk-serious::before { background: var(--serious); }
.recall-card.risk-high::before { background: var(--high); }
.recall-card.risk-medium::before { background: var(--medium); }
.recall-card.risk-low::before { background: var(--low); }
.recall-card:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 20px rgba(13,27,62,0.08);
  transform: translateY(-1px);
}
.recall-card-img {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  background: var(--off-white);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recall-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recall-card-body { flex: 1; min-width: 0; }
.recall-card-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
  flex-wrap: wrap;
}
.risk-badge {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.15rem 0.55rem;
  border-radius: 3px;
  color: var(--white);
}
.risk-badge.serious { background: var(--serious); }
.risk-badge.high { background: var(--high); }
.risk-badge.medium { background: var(--medium); }
.risk-badge.low { background: var(--low); }
.source-badge {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--mid-grey);
  background: var(--off-white);
  padding: 0.15rem 0.55rem;
  border-radius: 3px;
  border: 1px solid var(--border);
}
.recall-date {
  font-size: 0.72rem;
  color: var(--mid-grey);
  margin-left: auto;
}
.recall-card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.35rem;
}
.recall-card-excerpt {
  font-size: 0.82rem;
  color: var(--mid-grey);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recall-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--light-grey);
}
.recall-action-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
.recall-action-link:hover { gap: 0.5rem; }
.recall-category-tag {
  font-size: 0.72rem;
  color: var(--mid-grey);
  background: var(--off-white);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  transition: all 0.2s;
}
.page-numbers:hover, .page-numbers.current {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.sidebar-card-header {
  background: var(--navy);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.sidebar-card-header h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.sidebar-card-body { padding: 1.2rem; }

/* Alert signup */
.alert-form { display: flex; flex-direction: column; gap: 0.75rem; }
.alert-form p {
  font-size: 0.82rem;
  color: var(--mid-grey);
  line-height: 1.5;
}
.category-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}
.check-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  cursor: pointer;
  padding: 0.3rem 0;
}
.check-label input[type="checkbox"] {
  accent-color: var(--red);
  width: 14px;
  height: 14px;
}
.alert-email-input {
  width: 100%;
  padding: 0.6rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}
.alert-email-input:focus { border-color: var(--navy); }
.alert-submit-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 0.7rem;
  border-radius: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}
.alert-submit-btn:hover { background: var(--red-dark); }

/* Source trust */
.source-list { display: flex; flex-direction: column; gap: 0.6rem; }
.source-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-grey);
  font-size: 0.82rem;
}
.source-item:last-child { border-bottom: none; }
.source-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.source-item strong { font-weight: 700; color: var(--navy); }
.source-item span { color: var(--mid-grey); font-size: 0.76rem; }

/* Quick links */
.quick-links { display: flex; flex-direction: column; gap: 0; }
.quick-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--light-grey);
  font-size: 0.83rem;
  color: var(--navy);
  font-weight: 500;
  transition: color 0.2s;
}
.quick-link-item:last-child { border-bottom: none; }
.quick-link-item:hover { color: var(--red); }
.quick-link-item span { color: var(--mid-grey); font-size: 0.75rem; }

/* ============================================================
   RECALL DETAIL PAGE
   ============================================================ */
.recall-detail-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}
.recall-detail-main {}
.recall-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--mid-grey);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.recall-breadcrumb a { color: var(--red); }
.recall-breadcrumb span { color: var(--light-grey); }
.recall-detail-header {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.recall-detail-top {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.recall-detail-img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  background: var(--off-white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border);
}
.recall-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}
.recall-detail-title-block {}
.recall-detail-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.recall-detail-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.recall-detail-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--mid-grey);
}
.recall-detail-meta strong { color: var(--navy); }
.recall-detail-body { padding: 1.5rem; }
.recall-section { margin-bottom: 1.5rem; }
.recall-section:last-child { margin-bottom: 0; }
.recall-section h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--off-white);
}
.recall-section p, .recall-section li {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.6;
}
.recall-action-box {
  background: #fff5f5;
  border: 2px solid var(--red);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.recall-action-box h3 {
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.recall-action-box p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #374151;
}
.recall-detail-sidebar {}
.share-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.share-btn {
  flex: 1;
  min-width: 80px;
  padding: 0.55rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  color: var(--white);
}
.share-btn:hover { opacity: 0.85; }
.share-btn.whatsapp { background: #25D366; }
.share-btn.facebook { background: #1877F2; }
.share-btn.x { background: #000; }
.share-btn.email { background: #6B7280; }
.share-btn.copy { background: var(--navy); }

/* ============================================================
   SEARCH RESULTS
   ============================================================ */
.search-results-header {
  background: var(--navy);
  padding: 2rem;
  color: var(--white);
  text-align: center;
}
.search-results-header h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.search-results-header p { font-size: 0.88rem; opacity: 0.7; }
.no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--mid-grey);
}
.no-results svg { margin: 0 auto 1rem; }
.no-results h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 3rem 2rem 1.5rem;
  margin-top: 4rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
.footer-brand .logo-main { font-size: 1.2rem; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.82rem; line-height: 1.6; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--white); }
.gov-attribution {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 5px;
  padding: 0.6rem 1rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1.5rem;
  line-height: 1.5;
  text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .main-content { grid-template-columns: 1fr; }
  .sidebar { grid-row: 1; }
  .recall-detail-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header-inner { height: auto; padding: 0.75rem 1rem; flex-wrap: wrap; }
  .header-search { order: 3; width: 100%; max-width: 100%; }
  .site-nav { display: none; }
  .site-hero { padding: 2.5rem 1rem 2rem; }
  .hero-stats { gap: 1.5rem; }
  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .main-content { padding: 1.5rem 1rem; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 1.7rem; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-red { color: var(--red); }
.text-navy { color: var(--navy); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
