/* =========================================================
   NSW Car Parts - Customer Website Stylesheet
   Theme: White / Dark Gray / Red — Mobile First
   ========================================================= */

:root {
  --color-white: #ffffff;
  --color-bg: #f6f6f7;
  --color-dark: #1c1e22;
  --color-dark-2: #2a2d33;
  --color-gray: #6b7280;
  --color-gray-light: #e5e7eb;
  --color-red: #e2231a;
  --color-red-dark: #b91c1c;
  --radius: 14px;
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-hover: 0 10px 28px rgba(0,0,0,0.14);
  --transition: all 0.25s ease;
  --max-width: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--color-red); color: #fff; }
.btn-primary:hover { background: var(--color-red-dark); transform: translateY(-2px); }
.btn-dark { background: var(--color-dark); color: #fff; }
.btn-dark:hover { background: var(--color-dark-2); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--color-dark); color: var(--color-dark); }
.btn-outline:hover { background: var(--color-dark); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 16px; font-size: 0.83rem; }

/* ---------- Header ---------- */
.site-header {
  background: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  flex-wrap: nowrap;
}
.logo img { height: 42px; width: auto; }

/* Desktop nav */
.main-nav > ul { display: flex; gap: 24px; align-items: center; }
.main-nav a {
  font-weight: 600;
  color: var(--color-dark-2);
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
  font-size: 0.92rem;
}
.main-nav a:hover, .main-nav a.active { color: var(--color-red); }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--color-red);
  transition: var(--transition);
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

/* ── Service Areas dropdown ──────────────────────────────────────────────── */
.main-nav > ul > li.has-dropdown { position: relative; }
.main-nav > ul > li.has-dropdown > a { cursor: pointer; }

/* Nested dropdown ul — override the top-level flex */
.main-nav ul.dropdown {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
  min-width: 200px;
  z-index: 500;
  padding: 16px 0 8px;   /* top padding bridges the gap visually */
  margin-top: 0;
  flex-direction: column !important;
  gap: 0 !important;
}
/* Invisible bridge between the nav link and the dropdown panel */
.main-nav > ul > li.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;   /* covers the gap so mouse can travel down */
  background: transparent;
}
.main-nav > ul > li.has-dropdown:hover ul.dropdown { display: flex !important; }
/* Scrollable when many items */
.main-nav ul.dropdown { max-height: 70vh; overflow-y: auto; }
.main-nav ul.dropdown li { list-style: none; width: 100%; }
.main-nav ul.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  color: #222;
  width: 100%;
}
.main-nav ul.dropdown li a:hover { color: var(--color-red); background: #f5f5f5; }
.main-nav ul.dropdown li a::after { display: none !important; }

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.search-form {
  display: flex;
  align-items: center;
  background: var(--color-bg);
  border-radius: 999px;
  padding: 6px 6px 6px 14px;
}
.search-form input {
  border: none;
  background: transparent;
  outline: none;
  width: 160px;
  font-size: 0.88rem;
}
.search-form button {
  border: none;
  background: var(--color-dark);
  color: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  cursor: pointer;
  font-size: 0.85rem;
}

.icon-btn { position: relative; font-size: 1.3rem; color: var(--color-dark); transition: var(--transition); }
.icon-btn:hover { color: var(--color-red); }
.cart-badge {
  position: absolute; top: -8px; right: -10px;
  background: var(--color-red); color: #fff;
  font-size: 0.65rem; font-weight: 700;
  border-radius: 999px; padding: 1px 5px;
}

/* ---------- Cart modal ---------- */
.cart-modal {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(17,19,23,0.58);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0s linear 0.24s;
}
.cart-modal.open { opacity: 1; visibility: visible; transition: opacity 0.24s ease; }
.cart-modal-dialog {
  position: relative;
  width: min(100%, 580px);
  max-height: min(760px, calc(100dvh - 40px));
  overflow: auto;
  padding: 28px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,0.3);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.24s ease;
}
.cart-modal.open .cart-modal-dialog { transform: translateY(0) scale(1); }
.cart-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: var(--color-bg);
  color: var(--color-dark);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
}
.cart-modal-heading { display: flex; align-items: center; justify-content: space-between; padding-right: 42px; margin-bottom: 20px; }
.cart-modal-heading h2 { font-size: 1.5rem; }
.cart-modal-heading span { color: var(--color-gray); font-size: 0.88rem; }
.cart-modal-items { display: grid; gap: 14px; }
.cart-modal-item { display: grid; grid-template-columns: 68px 1fr auto auto; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--color-gray-light); }
.cart-modal-item img { width: 68px; height: 68px; border-radius: 10px; object-fit: cover; }
.cart-modal-item h3 { font-size: 0.95rem; line-height: 1.3; }
.cart-modal-item p { margin-top: 4px; color: var(--color-gray); font-size: 0.85rem; }
.cart-modal-item strong { font-size: 0.9rem; white-space: nowrap; }
.cart-modal-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-gray);
  font-size: 1rem;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.cart-modal-remove:hover { background: #fee2e2; color: var(--color-red); }
.cart-modal-total { display: flex; justify-content: space-between; margin: 20px 0; font-size: 1.1rem; }
.cart-modal-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.cart-modal-actions .btn { padding-left: 12px; padding-right: 12px; }
.cart-modal-empty { display: grid; justify-items: center; gap: 12px; padding: 26px 0 10px; color: var(--color-gray); }
.cart-modal-empty div { font-size: 3rem; }

@media (max-width: 520px) {
  .cart-modal { padding: 12px; }
  .cart-modal-dialog { padding: 24px 18px; }
  .cart-modal-actions { grid-template-columns: repeat(2, 1fr); }
  .cart-modal-actions .btn:first-child { grid-column: 1 / -1; }
}

.user-chip { display: flex; align-items: center; gap: 8px; }
.user-chip img { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--color-red); }
.user-chip span { font-size: 0.85rem; font-weight: 600; }

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-dark);
  padding: 4px;
  flex-shrink: 0;
}

/* Mobile nav drawer */
.mobile-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100dvh;
  padding: 20px 16px;
  gap: 6px;
  background: var(--color-white);
  box-shadow: -16px 0 36px rgba(0,0,0,0.18);
  transform: translateX(105%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.32s ease, visibility 0s linear 0.32s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.32s ease;
}
.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 2px 8px 12px;
  border-bottom: 1px solid var(--color-gray-light);
  font-weight: 700;
  font-size: 1.1rem;
}
.mobile-close {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: var(--color-bg);
  color: var(--color-dark);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}
.mobile-nav a {
  padding: 12px 16px;
  font-weight: 600;
  border-radius: 10px;
  transition: var(--transition);
  color: var(--color-dark-2);
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--color-bg);
  color: var(--color-red);
}

/* ── Mobile Service Areas accordion ─────────────────────────────────────── */
.mobile-accordion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  background: none;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark-2);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}
.mobile-accordion:hover { background: var(--color-bg); color: var(--color-red); }
.mobile-accordion.open  { color: var(--color-red); }
.accordion-arrow {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
  display: inline-block;
}
.mobile-accordion.open .accordion-arrow { transform: rotate(180deg); }

.mobile-accordion-body {
  display: none;
  flex-direction: column;
  overflow: visible;
  background: var(--color-bg, #f5f5f5);
  border-radius: 10px;
  margin: 0 8px 4px;
}
.mobile-accordion-body.open { display: flex; }
.mobile-accordion-body a {
  padding: 10px 20px !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  border-radius: 0 !important;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.mobile-accordion-body a:last-child { border-bottom: none; }
.mobile-menu-backdrop {
  position: fixed;
  z-index: 150;
  inset: 0;
  border: none;
  background: rgba(0,0,0,0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s ease, visibility 0s linear 0.32s;
}
.mobile-menu-backdrop.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.32s ease;
}
/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(120deg, var(--color-dark) 0%, var(--color-dark-2) 60%, var(--color-red-dark) 130%);
  color: #fff;
  padding: 60px 16px;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}
.hero h1 { font-size: 2.2rem; line-height: 1.15; margin-bottom: 14px; }
.hero h1 span { color: var(--color-red); }
.hero p { font-size: 1rem; color: #d1d5db; margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.home-search { display: none !important; }
.hero-art { display: none; }
.hero-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ---------- About ---------- */
.about-art {
  height: 280px;
  overflow: hidden;
  background: var(--color-dark);
  border-radius: var(--radius);
}
.about-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ---------- FAQ ---------- */
.faq-hero {
  padding: 58px 16px 64px;
  background: linear-gradient(120deg, var(--color-dark), var(--color-dark-2));
  color: #fff;
}
.faq-hero .breadcrumbs { color: #c7cbd1; margin-bottom: 36px; }
.faq-hero .breadcrumbs a { color: #fff; }
.faq-eyebrow { color: #ff625a; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; }
.faq-hero h1 { margin: 10px 0 12px; font-size: clamp(2rem, 7vw, 3.2rem); line-height: 1.1; }
.faq-hero p { max-width: 560px; color: #c7cbd1; margin-bottom: 24px; }
.faq-layout { display: grid; gap: 26px; align-items: start; }
.faq-side { padding: 28px; border-radius: 18px; background: #eceff2; }
.faq-side-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 14px; border-radius: 14px; background: #fff; font-size: 1.35rem; }
.faq-side h2 { font-size: 1.35rem; margin-bottom: 8px; }
.faq-side p { color: var(--color-gray); margin-bottom: 20px; font-size: 0.92rem; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { overflow: hidden; border: 1px solid var(--color-gray-light); border-radius: 14px; background: #fff; box-shadow: 0 4px 14px rgba(0,0,0,0.04); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px; font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; flex: 0 0 auto; color: var(--color-red); font-size: 1.5rem; font-weight: 400; line-height: 1; }
.faq-list details[open] { border-color: #f2b4b0; }
.faq-list details[open] summary { color: var(--color-red); }
.faq-list details[open] summary::after { content: '–'; }
.faq-list details p { padding: 0 20px 20px; color: var(--color-gray); font-size: 0.94rem; }

/* ---------- Section ---------- */
.section { padding: 50px 16px; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 10px;
}
.section-head h2 { font-size: 1.6rem; }
.section-head p { color: var(--color-gray); margin-top: 4px; font-size: 0.92rem; }
.section-head a { color: var(--color-red); font-weight: 600; font-size: 0.9rem; white-space: nowrap; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 16px; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-2 { grid-template-columns: repeat(1, 1fr); }

/* ---------- Product Cards ---------- */
.card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.product-card { display: flex; flex-direction: column; }
.product-card .thumb {
  height: 160px;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-card .body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 5px; }
.product-card .category { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-red); font-weight: 700; }
.product-card h3 { font-size: 0.95rem; line-height: 1.3; }
.product-card .price { font-size: 1.1rem; font-weight: 700; color: var(--color-dark); margin-top: 4px; }
.product-card .stock { font-size: 0.78rem; color: var(--color-gray); }

/* ---------- Category Cards ---------- */
.category-card {
  text-align: center;
  padding: 24px 16px 20px;
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.category-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(145deg, #f1f3f5, #dfe3e7);
  color: var(--color-dark);
  box-shadow: 0 12px 26px rgba(28,30,34,0.14);
  outline: 1px solid #cfd4da;
}
.category-card:hover .icon { transform: scale(1.08); }
.category-card .icon {
  transition: transform 0.25s ease;
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
}
.category-card .icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}
.category-card h4 { font-size: 0.82rem; font-weight: 600; }

/* ---------- Feature Cards ---------- */
.feature-card { padding: 24px 20px; }
.feature-card .icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(226,35,26,0.1); color: var(--color-red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 14px;
}
.feature-card h3 { font-size: 1rem; margin-bottom: 8px; text-align: center; }
.feature-card p { color: var(--color-gray); font-size: 0.88rem; text-align: center; }
.feature-icon {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 18px;
  margin: 0 auto 16px;
}

/* ---------- Why Choose / dark band ---------- */
.band-dark {
  background:
    radial-gradient(circle at 14% 0%, rgba(31, 112, 224, 0.24), transparent 34%),
    radial-gradient(circle at 88% 100%, rgba(24, 89, 183, 0.18), transparent 38%),
    #141b27;
  color: #fff;
  border-radius: 20px;
  margin: 0 16px;
  padding: 50px 24px;
}
.band-dark .section-head { text-align: center; justify-content: center; }
.band-dark .section-head p { color: #b6b9c0; }
.band-dark .grid-3 { max-width: 960px; margin: 0 auto; }
.band-dark .feature-card {
  position: relative;
  padding: 22px 18px 24px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff 0%, #eff6ff 100%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.band-dark .feature-card::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  right: -42px;
  bottom: -48px;
  border-radius: 50%;
  background: rgba(18, 101, 208, 0.08);
}
.band-dark .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.28);
}
.band-dark .feature-card h3 {
  position: relative;
  z-index: 1;
  color: #142847;
  font-size: 1.08rem;
}
.band-dark .feature-card p {
  position: relative;
  z-index: 1;
  color: #52647d;
  line-height: 1.55;
}
.band-dark .feature-icon {
  position: relative;
  z-index: 1;
  width: 128px;
  height: 128px;
  margin-bottom: 14px;
}

/* ---------- Homepage search content ---------- */
.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.seo-intro { display: grid; gap: 24px; align-items: center; }
.seo-intro-copy { padding: 4px 2px; }
.seo-intro h2, .parts-coverage h2, .delivery-section h2 { margin-bottom: 14px; font-size: clamp(1.7rem, 4vw, 2.35rem); }
.section-lead { max-width: 660px; color: #1f4c82 !important; font-size: 1.1rem; font-weight: 600; }
.seo-intro p, .coverage-copy p, .delivery-section p { color: var(--color-gray); line-height: 1.75; }
.seo-intro p + p, .coverage-copy p + p, .delivery-section p + p { margin-top: 12px; }
.seo-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 22px; }
.text-link { color: var(--color-dark); font-weight: 700; }
.text-link:hover { color: var(--color-red); }
.seo-stat-card {
  padding: 28px;
  color: #fff;
  background: linear-gradient(145deg, #10233e, #1759a5);
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(21, 59, 112, 0.22);
}
.stat-icon { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 18px; border-radius: 14px; background: rgba(255,255,255,0.14); font-size: 1.5rem; }
.seo-stat-card h3 { font-size: 1.2rem; }
.seo-stat-card ul { display: grid; gap: 11px; margin-top: 18px; color: #dceaff; }
.seo-stat-card li { display: flex; gap: 9px; align-items: flex-start; font-size: 0.9rem; line-height: 1.45; }
.seo-stat-card li::before { content: '✓'; color: #93c5fd; font-weight: 800; }
.process-section { background: #f1f6fc; }
.section-head-centred { justify-content: center; text-align: center; }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 1080px; margin: 30px auto 0; list-style: none; }
.process-grid li { position: relative; min-height: 176px; padding: 22px; overflow: hidden; background: #fff; border: 1px solid #e1e9f3; border-radius: 18px; box-shadow: 0 10px 20px rgba(35, 62, 96, 0.06); }
.process-grid span { position: relative; z-index: 1; display: grid; width: 34px; height: 34px; place-items: center; margin-bottom: 18px; color: #fff; background: #2774c9; border-radius: 50%; font-size: 0.72rem; font-weight: 800; }
.process-grid h3 { margin-bottom: 8px; font-size: 1.05rem; }
.process-grid p { color: var(--color-gray); font-size: 0.9rem; line-height: 1.6; }
.brand-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 24px; }
.brand-list span, .delivery-areas span { padding: 9px 13px; border-radius: 999px; font-size: 0.84rem; font-weight: 700; }
.brand-list span { color: #1d4f84; background: #edf5ff; border: 1px solid #d8e9fb; }
.coverage-copy { max-width: 820px; padding: 22px; border-left: 4px solid #2774c9; background: #f7fbff; border-radius: 0 14px 14px 0; }
.coverage-copy strong { color: #193d68; }
.delivery-section { color: #fff; background: linear-gradient(125deg, #111d2d, #143f76); }
.delivery-section .eyebrow { color: #93c5fd; }
.delivery-section h2 { color: #fff; }
.delivery-section p { color: #d6e3f3; }
.delivery-layout { display: grid; gap: 28px; align-items: center; }
.delivery-section .btn-outline { margin-top: 22px; border-color: #bfdbfe; color: #fff; }
.delivery-areas { display: flex; flex-wrap: wrap; gap: 10px; align-content: center; }
.delivery-areas span { color: #eaf4ff; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); }
.faq-grid { display: grid; gap: 12px; }
.faq-grid details { padding: 0 18px; background: #fff; border: 1px solid #e1e8f0; border-radius: 14px; box-shadow: 0 6px 18px rgba(28, 54, 88, 0.05); }
.faq-grid summary { padding: 18px 28px 18px 0; color: #182c45; font-weight: 700; cursor: pointer; list-style: none; }
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::after { content: '+'; float: right; margin-right: -26px; color: #2674c9; font-size: 1.3rem; line-height: 1; }
.faq-grid details[open] summary::after { content: '−'; }
.faq-grid p { padding: 0 0 18px; color: var(--color-gray); line-height: 1.65; font-size: 0.92rem; }
.final-cta-section { padding-top: 24px; }
.newsletter .eyebrow { margin-bottom: 6px; color: #ffd7d5; }

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--color-red);
  border-radius: var(--radius);
  padding: 36px 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  margin: 0 16px;
}
.newsletter h3 { font-size: 1.3rem; margin-bottom: 4px; }
.newsletter form { display: flex; gap: 10px; width: 100%; max-width: 440px; flex-wrap: wrap; justify-content: center; }
.newsletter input { padding: 12px 16px; border-radius: 999px; border: none; flex: 1; min-width: 200px; outline: none; font-size: 0.9rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-dark); color: #cbd0d8; padding: 50px 16px 24px; margin-top: 50px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.footer-grid h4 { color: #fff; margin-bottom: 12px; font-size: 0.95rem; }
.footer-grid li { margin-bottom: 8px; font-size: 0.88rem; line-height: 1.5; }
.footer-grid a:hover { color: var(--color-red); }
.footer-grid > div:first-child p { color: #9ca3af; max-width: 280px; }
.footer-logo { display: inline-block; margin-bottom: 14px; }
.footer-logo img { height: 38px; }
.footer-bottom { text-align: center; padding-top: 24px; margin-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.8rem; color: #8b8f98; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: 0.82rem; color: var(--color-gray); margin-bottom: 16px; }
.breadcrumbs a { color: var(--color-gray); }
.breadcrumbs a:hover { color: var(--color-red); }

/* ---------- Toolbar / Filters ---------- */
.toolbar { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 22px; }
.toolbar select, .toolbar input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--color-gray-light);
  background: #fff;
  font-size: 0.88rem;
  outline: none;
  flex: 1;
  min-width: 140px;
}
.toolbar select:focus, .toolbar input:focus { border-color: var(--color-red); }

/* ---------- Pagination ---------- */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.pagination a, .pagination span {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px; background: #fff; box-shadow: var(--shadow);
  font-weight: 600; font-size: 0.88rem;
}
.pagination a:hover { background: var(--color-red); color: #fff; }
.pagination .active { background: var(--color-dark); color: #fff; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.88rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--color-gray-light);
  outline: none;
  font-size: 0.92rem;
  font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--color-red); }
.form-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; }

/* ---------- Product Detail ---------- */
.product-detail { display: grid; grid-template-columns: 1fr; gap: 28px; }
.product-detail .thumb {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 280px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.product-detail .thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-detail .price { font-size: 1.8rem; font-weight: 700; color: var(--color-red); margin: 12px 0; }
.qty-input { display: flex; align-items: center; gap: 10px; margin: 16px 0; }
.qty-input button { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--color-gray-light); background: #fff; cursor: pointer; font-size: 1.1rem; }
.qty-input input { width: 60px; text-align: center; padding: 8px; border-radius: 8px; border: 1px solid var(--color-gray-light); }

/* ---------- Cart ---------- */
.cart-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.cart-table th, .cart-table td { padding: 12px; text-align: left; border-bottom: 1px solid var(--color-gray-light); font-size: 0.85rem; }
.cart-table th { background: var(--color-bg); text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.05em; color: var(--color-gray); }
.cart-table img { width: 50px; height: 50px; object-fit: cover; border-radius: 8px; }
.cart-summary { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; }
.cart-summary .row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.92rem; }
.cart-summary .total { font-size: 1.2rem; font-weight: 700; border-top: 1px solid var(--color-gray-light); padding-top: 12px; margin-top: 8px; }

/* ---------- Toasts ---------- */
#toast-container { position: fixed; bottom: 20px; right: 16px; z-index: 999; display: flex; flex-direction: column; gap: 8px; max-width: calc(100vw - 32px); }
.toast {
  background: var(--color-dark); color: #fff; padding: 12px 16px; border-radius: 10px;
  box-shadow: var(--shadow-hover); font-size: 0.88rem; min-width: 200px;
  animation: toast-in 0.3s ease;
}
.toast.success { border-left: 4px solid #22c55e; }
.toast.error { border-left: 4px solid var(--color-red); }
@keyframes toast-in { from { opacity:0; transform: translateY(10px);} to {opacity:1; transform:translateY(0);} }

/* ---------- Alerts ---------- */
.alert { padding: 12px 16px; border-radius: 10px; margin-bottom: 16px; font-size: 0.88rem; }
.alert-success { background: #dcfce7; color: #166534; }
.alert-error { background: #fee2e2; color: #991b1b; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 14px; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--color-gray); }
.empty-state .icon { font-size: 2.8rem; margin-bottom: 14px; }
.spinner { width: 32px; height: 32px; border: 4px solid var(--color-gray-light); border-top-color: var(--color-red); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 40px auto; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================
   TABLET — 600px+
   ========================================================== */
@media (min-width: 600px) {
  .container { padding: 0 20px; }
  .section { padding: 60px 20px; }

  .hero { padding: 70px 20px; }
  .hero h1 { font-size: 2.6rem; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }

  .band-dark .feature-icon { width: 146px; height: 146px; }
  .seo-intro { grid-template-columns: minmax(0, 1.45fr) minmax(230px, 0.85fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-layout { grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr); }
  .faq-grid { grid-template-columns: repeat(2, 1fr); align-items: start; }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .product-detail { grid-template-columns: 1fr; }
  .product-detail .thumb { height: 340px; }

  .newsletter { flex-direction: row; text-align: left; padding: 40px 36px; }
  .newsletter form { width: auto; flex-wrap: nowrap; }
}

/* ==========================================================
   DESKTOP — 960px+
   ========================================================== */
@media (min-width: 960px) {
  .container { padding: 0 24px; }
  .section { padding: 72px 24px; }

  /* Show desktop nav, hide mobile toggle */
  .main-nav { display: block !important; }
  .mobile-toggle { display: none !important; }
  .mobile-nav { display: none !important; }
  .mobile-menu-backdrop { display: none !important; }
  .search-form { display: flex !important; }

  .header-inner { padding: 14px 24px; }
  .logo img { height: 48px; }

  .hero { padding: 90px 24px; border-radius: 0 0 40px 40px; }
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; text-align: left; }
  .hero h1 { font-size: 3rem; }
  .hero p { margin-left: 0; margin-right: 0; }
  .hero-actions { justify-content: flex-start; }
  .hero-art {
    display: flex;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius);
    height: 320px;
  }

  .about-art { height: 455px; }
  .faq-layout { grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1.45fr); gap: 42px; }
  .faq-side { position: sticky; top: 92px; }

  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }

  .product-detail { grid-template-columns: 1fr 1fr; gap: 50px; }
  .product-detail .thumb { height: 420px; }

  .band-dark.container {
    width: calc(100% - 48px);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 28px;
  }
  .band-dark .feature-card { padding: 26px 22px 28px; }
  .band-dark .feature-icon { width: 164px; height: 164px; }
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .newsletter { margin: 0 24px; }

  /* Homepage motion: enabled only when JavaScript confirms support. */
  .has-home-animations .hero-inner > div:first-child { animation: desktop-hero-copy 0.75s cubic-bezier(0.22, 1, 0.36, 1) both; }
  .has-home-animations .hero-art { animation: desktop-hero-art 0.85s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both; }
  .has-home-animations .hero-art img { animation: hero-drift 7s ease-in-out 0.8s infinite; }
  .has-home-animations .home-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--home-delay, 0ms);
  }
  .has-home-animations .home-reveal.is-visible { opacity: 1; transform: translateY(0); }
  .has-home-animations .product-card, .has-home-animations .category-card,
  .has-home-animations .process-grid li, .has-home-animations .feature-card {
    transition: transform 0.28s ease, box-shadow 0.28s ease;
  }
  .has-home-animations .product-card:hover, .has-home-animations .category-card:hover,
  .has-home-animations .process-grid li:hover { transform: translateY(-7px); }
  .has-home-animations .feature-card:hover { transform: translateY(-6px); }
}

/* ==========================================================
   MOBILE HEADER — hide search bar and show toggle
   ========================================================== */
@media (max-width: 959px) {
  .main-nav { display: none; }
  .search-form { display: none; }
  .mobile-toggle { display: block; }
  .user-chip span { display: none; }
  .user-chip .btn { display: none; }
  .header-inner { gap: 8px; padding: 10px 12px; }
  .header-actions { gap: 8px; }
  .logo img { height: 36px; }
  .checkout-layout { grid-template-columns: minmax(0, 1fr) !important; gap: 20px !important; }
  .checkout-layout .form-card, .checkout-layout .cart-summary { min-width: 0; }
  .cart-layout { grid-template-columns: minmax(0, 1fr) !important; gap: 20px !important; }
  .cart-layout > * { min-width: 0; }
  .cart-layout .cart-table-scroll {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .cart-layout .cart-table { min-width: 600px; }
  .cart-layout .cart-summary { width: 100%; box-sizing: border-box; }
  .home-search {
    display: flex !important;
    max-width: 480px;
    margin: 0 auto 24px;
    gap: 10px;
    padding: 7px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.22);
    backdrop-filter: blur(10px);
  }
  .home-search input {
    min-width: 0;
    flex: 1;
    padding: 13px 10px 13px 14px;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font: inherit;
  }
  .home-search input::placeholder { color: #d1d5db; }
  .home-search button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--color-red);
    color: #fff;
    border: none;
    border-radius: 11px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(226,35,26,0.35);
  }
  .home-search button:active { transform: scale(0.98); }

  .cart-modal { padding: 16px; }
  .cart-modal-dialog {
    width: 100%;
    max-width: 440px;
    max-height: calc(100dvh - 32px);
    padding: 24px 20px;
    border-radius: 18px;
  }
  .cart-modal-heading { margin-bottom: 16px; }
  .cart-modal-item {
    grid-template-columns: 56px minmax(0, 1fr) auto auto;
    gap: 8px;
    align-items: center;
  }
  .cart-modal-item img { width: 56px; height: 56px; }
  .cart-modal-item h3 { font-size: 0.88rem; }
  .cart-modal-item strong { font-size: 0.88rem; white-space: nowrap; }
  .cart-modal-remove { padding: 6px; font-size: 0.85rem; }
  .cart-modal-actions { grid-template-columns: 1fr; }
  .cart-modal-actions .btn:first-child { grid-column: auto; }

  /* Gentle mobile-only entrance motion. */
  .hero-inner > div:first-child { animation: mobile-rise 0.55s ease-out both; }
  .home-search { animation: mobile-rise 0.55s 0.12s ease-out both; }
  .hero-actions { animation: mobile-rise 0.55s 0.2s ease-out both; }
  .hero { background-size: 180% 180%; animation: mobile-hero-glow 9s ease-in-out infinite; }
  .hero h1 span { display: inline-block; animation: accent-pop 0.7s 0.25s cubic-bezier(0.22, 1, 0.36, 1) both; }
  .home-search button { animation: search-glow 2.8s 0.8s ease-in-out infinite; }

  .mobile-nav.open .mobile-nav-head { animation: nav-head-in 0.28s ease-out both; }
  .mobile-nav.open a { animation: nav-link-in 0.32s ease-out both; }
  .mobile-nav.open a:nth-of-type(1) { animation-delay: 0.06s; }
  .mobile-nav.open a:nth-of-type(2) { animation-delay: 0.1s; }
  .mobile-nav.open a:nth-of-type(3) { animation-delay: 0.14s; }
  .mobile-nav.open a:nth-of-type(4) { animation-delay: 0.18s; }
  .mobile-nav.open a:nth-of-type(5) { animation-delay: 0.22s; }
  .mobile-nav.open a:nth-of-type(6) { animation-delay: 0.26s; }
  .mobile-nav.open a:nth-of-type(n + 7) { animation-delay: 0.3s; }

  /* Scroll-reveal motion is only enabled after JavaScript marks an element. */
  .mobile-reveal {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
  }
  .mobile-reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }

  .btn, .icon-btn, .mobile-toggle, .category-card, .product-card,
  .feature-card, .faq-item, .cart-modal-item {
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  }
  .btn:active, .icon-btn:active, .mobile-toggle:active { transform: scale(0.95); }
  .category-card:active, .product-card:active, .feature-card:active,
  .faq-item:active, .cart-modal-item:active { transform: scale(0.985); }
  .feature-icon { animation: mobile-float 3.6s ease-in-out infinite; }
  .feature-card:nth-child(2) .feature-icon { animation-delay: -1.2s; }
  .feature-card:nth-child(3) .feature-icon { animation-delay: -2.4s; }
  .cart-badge:not(:empty) { animation: badge-pulse 2.4s ease-in-out infinite; }
  .delivery-areas span { animation: area-bob 4s ease-in-out infinite; }
  .delivery-areas span:nth-child(2n) { animation-delay: -1.2s; }
  .delivery-areas span:nth-child(3n) { animation-delay: -2.2s; }
  .faq-grid details { transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease; }
  .faq-grid details[open] { background: #f7fbff; box-shadow: 0 12px 24px rgba(28, 82, 141, 0.1); transform: translateY(-2px); }
  .newsletter {
    background: linear-gradient(120deg, #cf1d17, var(--color-red), #f04b43);
    background-size: 160% 160%;
    animation: newsletter-shift 8s ease-in-out infinite;
  }
}

@media (max-width: 599px) {
  .band-dark { margin: 0 12px; padding: 38px 16px; }
  .band-dark .grid-3 { gap: 16px; }
  .band-dark .feature-card { padding: 20px 16px 22px; }
  .band-dark .feature-icon { width: 118px; height: 118px; }
}

/* Card-style cart rows for phones. */
@media (max-width: 767px) {
  .cart-layout .cart-table-scroll { overflow: visible; }
  .cart-layout .cart-table { display: block; min-width: 0; background: transparent; box-shadow: none; }
  .cart-layout .cart-table thead { display: none; }
  .cart-layout .cart-table tbody { display: grid; gap: 14px; }
  .cart-layout .cart-table tr {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 10px 14px;
    padding: 16px;
    background: #fff;
    border: 1px solid #e6ebf0;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(28, 48, 76, 0.08);
  }
  .cart-layout .cart-table td { display: block; padding: 0; border: none; font-size: 0.92rem; }
  .cart-layout .cart-product-cell {
    grid-row: 1 / span 3;
    display: flex !important;
    align-items: flex-start;
  }
  .cart-layout .cart-product-cell img { width: 82px; height: 82px; border-radius: 12px; object-fit: cover; }
  .cart-layout .cart-product-cell span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }
  .cart-layout .cart-detail {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
  }
  .cart-layout .cart-detail::before { content: attr(data-label); color: var(--color-gray); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
  .cart-layout .cart-price-cell { font-size: 1.08rem; font-weight: 700; }
  .cart-layout .cart-quantity-cell input { width: 58px !important; box-sizing: border-box; text-align: center; }
  .cart-layout .line-total { color: var(--color-dark); font-weight: 800; }
  .cart-layout .cart-remove-cell { grid-column: 1 / -1; padding-top: 4px !important; }
  .cart-layout .remove-item { width: 100%; }
  .cart-layout .cart-summary { padding: 22px 20px; border-radius: 18px; }
}

@keyframes mobile-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes mobile-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(226, 35, 26, 0); }
  50% { box-shadow: 0 0 0 5px rgba(226, 35, 26, 0.16); }
}
@keyframes mobile-hero-glow {
  0%, 100% { background-position: 0% 45%; }
  50% { background-position: 100% 55%; }
}
@keyframes accent-pop {
  from { opacity: 0; transform: scale(0.78) rotate(-4deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}
@keyframes search-glow {
  0%, 100% { box-shadow: 0 4px 12px rgba(226,35,26,0.35); }
  50% { box-shadow: 0 6px 20px rgba(226,35,26,0.6); }
}
@keyframes nav-head-in {
  from { opacity: 0; transform: translateX(14px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes nav-link-in {
  from { opacity: 0; transform: translateX(22px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes area-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes newsletter-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes desktop-hero-copy {
  from { opacity: 0; transform: translateX(-34px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes desktop-hero-art {
  from { opacity: 0; transform: translateX(34px) scale(0.96); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes hero-drift {
  0%, 100% { transform: scale(1.01) translateY(0); }
  50% { transform: scale(1.05) translateY(-5px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Latest Arrivals Auto-Scroll Carousel ── */
.arrivals-track-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.arrivals-track-wrapper:hover .arrivals-track {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.arrivals-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollLeft 22s linear infinite;
  will-change: transform;
}

.arrivals-card {
  flex: 0 0 280px;
  width: 280px;
  text-decoration: none;
  color: inherit;
}

/* Responsive card widths */
@media (max-width: 600px) {
  .arrivals-card {
    flex: 0 0 220px;
    width: 220px;
  }
  .arrivals-track {
    gap: 14px;
    animation-duration: 18s;
  }
}
