/* ============================================================
   Machines & Equipments — Sober Light Theme
   ============================================================ */
:root {
  /* Sober, eye-pleasing light colors */
  --color-bg: #f9fafb; /* Off-white sober background */
  --color-surface: #ffffff;
  --color-ink: #1f2937;
  --color-ink-soft: #4b5563;
  --color-border: #e5e7eb;
  
  --color-primary: #1e3a8a; /* Trustworthy deep blue */
  --color-primary-dark: #1e40af;
  --color-accent: #2563eb; /* Eye-pleasing accent blue */
  --color-accent-soft: #eff6ff;
  --color-success: #16a34a;

  /* China-origin accent — used sparingly (origin badge, thin accent line) */
  --color-cn-red: #de2910;
  --color-cn-red-dark: #b81f0b;
  --color-cn-gold: #ffde00;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  
  /* Soft, elegant shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08);
  
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  
  --max-width: 1280px;
  
  /* Clean System Fonts */
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
}

/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg, picture { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
button, input, textarea { font-family: inherit; }

/* Typography */
h1, h2, h3, h4 { color: var(--color-primary); line-height: 1.2; margin-bottom: var(--space-3); font-weight: 700; }
h1 { font-size: clamp(2rem, 3.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin-bottom: var(--space-4); color: var(--color-ink-soft); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-5); }
.section { padding: var(--space-8) 0; }
.section-alt { background: var(--color-surface); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.section-head { margin-bottom: var(--space-6); text-align: center; max-width: 800px; margin-inline: auto; }
.eyebrow { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-accent); font-weight: 700; margin-bottom: var(--space-2); display: block; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.flex-between { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-4); }

/* Skip Link */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--color-primary); color: #fff; padding: var(--space-3) var(--space-4); z-index: 200; }
.skip-link:focus { left: 0; }

/* Visually hidden but still announced by screen readers */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Header */
.site-header {
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid var(--color-border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-sm);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  transition: box-shadow 0.35s ease, background-color 0.35s ease;
  /* Own compositing layer — works around iOS Safari flicker/detach bugs where
     a `position: sticky` element with `backdrop-filter` intermittently
     disappears or fails to repaint during scroll. */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.site-header.is-scrolled { background: rgba(255,255,255,0.96); box-shadow: var(--shadow-lg); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-3) var(--space-5); max-width: var(--max-width); margin: 0 auto;
  min-height: 70px;
  transition: min-height 0.35s ease;
}
.site-header.is-scrolled .header-inner { min-height: 58px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.2rem; color: var(--color-primary); letter-spacing: -0.01em; }
.brand-logo { height: 44px; width: 44px; object-fit: contain; flex-shrink: 0; transition: height 0.35s ease, width 0.35s ease, transform 0.4s ease; }
.site-header.is-scrolled .brand-logo { height: 36px; width: 36px; }
.brand:hover .brand-logo, .brand:focus-visible .brand-logo { transform: scale(1.08) rotate(-4deg); }
.brand-name { white-space: nowrap; }
.brand-mark { width: 32px; height: 32px; color: var(--color-accent); display: flex; align-items: center; justify-content: center; }
.brand-mark svg { width: 100%; height: 100%; }

.main-nav ul { display: flex; align-items: center; gap: var(--space-5); list-style: none; flex-wrap: nowrap; }
.main-nav li { display: flex; align-items: center; }
.main-nav a { position: relative; font-weight: 500; font-size: 1rem; color: var(--color-ink-soft); padding: var(--space-2) 0; white-space: nowrap; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--color-accent); border-radius: 2px;
  transform: scaleX(0); transform-origin: right; transition: transform 0.28s ease;
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--color-accent); }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

/* Animated hamburger */
.nav-toggle {
  display: none; background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); padding: 10px; cursor: pointer; color: var(--color-ink);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.nav-toggle:hover { background: var(--color-accent-soft); border-color: var(--color-accent); }
.nav-toggle:active { transform: scale(0.92); }
.nav-toggle-bars { position: relative; display: block; width: 20px; height: 14px; }
.nav-toggle-bars span {
  position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px;
  background: currentColor; transition: transform 0.3s ease, opacity 0.25s ease, top 0.3s ease;
}
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 6px; }
.nav-toggle-bars span:nth-child(3) { top: 12px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; transform: translateX(-6px); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* Mobile nav: animated slide-down panel with staggered links */
.mobile-nav {
  display: flex; flex-direction: column; background: var(--color-surface);
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  /* Without an explicit position, this is a static element — which always
     paints BELOW the positioned .mobile-nav-backdrop (fixed, z-index: 90)
     regardless of z-index, since static elements paint before any positioned
     one in the same stacking context. That made the dark backdrop render on
     top of the menu (looked grey/dimmed) and swallow taps meant for the nav
     links. Giving it its own position + a higher z-index fixes both. */
  position: relative; z-index: 95;
}
.mobile-nav.is-open { max-height: 80vh; max-height: 80dvh; opacity: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; border-top: 1px solid var(--color-border); }
/* > direct-child combinator so this only targets the top-level page links,
   never the nested language links inside .mobile-lang-grid */
.mobile-nav > a {
  padding: var(--space-3) var(--space-5); border-bottom: 1px solid var(--color-border); font-weight: 500;
  opacity: 0; transform: translateY(-6px); transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
}
.mobile-nav > a:active, .mobile-nav > a:hover { background: var(--color-accent-soft); color: var(--color-accent); }
.mobile-nav.is-open > a { opacity: 1; transform: translateY(0); }
.mobile-nav.is-open > a:nth-child(1) { transition-delay: 0.04s; }
.mobile-nav.is-open > a:nth-child(2) { transition-delay: 0.08s; }
.mobile-nav.is-open > a:nth-child(3) { transition-delay: 0.12s; }
.mobile-nav.is-open > a:nth-child(4) { transition-delay: 0.16s; }
.mobile-nav.is-open > a:nth-child(5) { transition-delay: 0.2s; }
.mobile-nav.is-open > a:nth-child(6) { transition-delay: 0.24s; }

.mobile-lang-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  padding: var(--space-4) var(--space-5); background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  opacity: 0; transform: translateY(-6px); transition: opacity 0.3s ease 0.26s, transform 0.3s ease 0.26s;
}
.mobile-nav.is-open .mobile-lang-grid { opacity: 1; transform: translateY(0); }
.mobile-lang-grid a {
  padding: 10px 6px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  text-align: center; font-size: 0.82rem; font-weight: 500; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.mobile-lang-grid a:hover, .mobile-lang-grid a:active { border-color: var(--color-accent); color: var(--color-accent); transform: translateY(-1px); }
.mobile-lang-grid a[aria-current="true"] { background: var(--color-accent); border-color: var(--color-accent); color: #fff; font-weight: 700; }

/* Backdrop behind the open mobile nav */
.mobile-nav-backdrop {
  position: fixed; inset: 0; top: 70px; background: rgba(15,23,42,0.35);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease; z-index: 90;
}
.mobile-nav-backdrop.is-open { opacity: 1; pointer-events: auto; }
.site-header.is-scrolled .mobile-nav-backdrop { top: 58px; }
/* JS sets body.style.top to the negative scroll offset alongside this class
   (see main.js lockBodyScroll) — fixed positioning avoids the iOS Safari bug
   where `overflow: hidden` on <body> breaks a `position: sticky` header. */
body.nav-open { position: fixed; left: 0; right: 0; width: 100%; }

/* Language switcher (desktop dropdown) */
.lang-switcher { position: relative; display: block; }
.lang-switcher-toggle { display: flex; align-items: center; gap: 6px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 8px 12px; cursor: pointer; color: var(--color-ink); font-size: 0.9rem; font-weight: 500; transition: background-color 0.2s ease, border-color 0.2s ease; }
.lang-switcher-toggle:hover { background: var(--color-accent-soft); border-color: var(--color-accent); }
.lang-switcher-toggle svg { width: 18px; height: 18px; color: var(--color-accent); transition: transform 0.3s ease; }
.lang-switcher-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.lang-switcher-menu {
  display: grid; position: absolute; right: 0; top: calc(100% + 6px); background: var(--color-surface);
  border: 1px solid var(--color-border); border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: var(--space-2); min-width: 160px; max-height: 320px; overflow-y: auto; z-index: 50;
  grid-template-columns: 1fr 1fr; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.lang-switcher-menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0) scale(1); }
.lang-switcher-menu a { display: block; padding: 8px 10px; border-radius: var(--radius-sm); font-size: 0.85rem; color: var(--color-ink-soft); min-height: 36px; transition: background-color 0.15s ease, color 0.15s ease; }
.lang-switcher-menu a:hover { background: var(--color-bg); color: var(--color-ink); }
.lang-switcher-menu a[aria-current="true"] { background: var(--color-accent-soft); color: var(--color-accent); font-weight: 700; }

/* Header "Categories" quick-access dropdown. The chevron lives inside the
   link itself (not a separate <button>) so it shares the link's exact font
   metrics/line-height and can never throw off the nav row's height or width —
   a standalone <button> doesn't inherit font sizing by default and was
   pushing the row height/width just enough to break onto two lines. Opens on
   hover/focus (CSS only); the link itself still navigates normally on click. */
.nav-dropdown { position: relative; }
.nav-dropdown-link { display: inline-flex !important; align-items: center; gap: 4px; }
.nav-dropdown-chevron { width: 13px; height: 13px; flex-shrink: 0; transition: transform 0.25s ease; }
.nav-dropdown:hover .nav-dropdown-chevron, .nav-dropdown:focus-within .nav-dropdown-chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: grid; position: absolute; left: 0; top: 100%; margin-top: 14px; background: var(--color-surface);
  border: 1px solid var(--color-border); border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: var(--space-2); min-width: 300px; max-height: 360px; overflow-y: auto; z-index: 50;
  grid-template-columns: 1fr 1fr; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
/* Invisible bridge so the mouse can travel from the link down to the menu
   (which sits margin-top:14px below it) without the gap registering as
   "left the dropdown" and closing it early. */
.nav-dropdown::after {
  content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 14px;
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.nav-dropdown-menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0) scale(1); }
.nav-dropdown-menu a { display: block; padding: 8px 10px; border-radius: var(--radius-sm); font-size: 0.85rem; color: var(--color-ink-soft); transition: background-color 0.15s ease, color 0.15s ease; }
.nav-dropdown-menu a:hover { background: var(--color-bg); color: var(--color-accent); }

/* Promo strip — running tender/export value props, below the header */
.promo-strip {
  background: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary) 55%, var(--color-primary-dark));
  color: #fff; overflow: hidden; position: relative;
}
.promo-strip::before, .promo-strip::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 48px; z-index: 2; pointer-events: none;
}
.promo-strip::before { left: 0; background: linear-gradient(to right, var(--color-primary-dark), rgba(30,58,138,0)); }
.promo-strip::after { right: 0; background: linear-gradient(to left, var(--color-primary-dark), rgba(30,58,138,0)); }
.promo-track {
  display: flex; align-items: center; gap: var(--space-7); width: max-content;
  padding: 9px 0; animation: promoScroll 40s linear infinite;
}
.promo-strip:hover .promo-track, .promo-strip:focus-within .promo-track { animation-play-state: paused; }
.promo-item {
  display: inline-flex; align-items: center; gap: 7px; font-size: 0.82rem; font-weight: 600;
  white-space: nowrap; letter-spacing: 0.01em;
}
.promo-item svg { width: 15px; height: 15px; color: var(--color-cn-gold); flex-shrink: 0; }
@keyframes promoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 600px) {
  .promo-track { gap: var(--space-5); animation-duration: 28s; }
  .promo-item { font-size: 0.76rem; }
  .promo-strip::before, .promo-strip::after { width: 28px; }
}

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2); padding: 12px 24px; border-radius: var(--radius-sm); font-weight: 600; cursor: pointer; transition: all var(--transition-fast); text-align: center; white-space: nowrap; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
/* WhatsApp's own brand green, kept distinct from the button's blue fill/text
   so the icon itself stays instantly recognizable as WhatsApp. */
.icon-whatsapp { color: #25D366; }
.btn-primary { background: var(--color-primary); color: #fff; border: 1px solid var(--color-primary); }
.btn-primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border: 1px solid var(--color-border); color: var(--color-ink); }
.btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); background: var(--color-accent-soft); }
.btn-sm { padding: 8px 16px; font-size: 0.875rem; }
.btn-block { width: 100%; display: flex; }

/* ==========================================================================
   Hero v2 — split layout: copy lives in its own solid panel, the animated
   China-export map lives in its own zone. They never share the same pixels,
   so text and animation can never visually collide, by construction. */
.hero-v2 {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 44%) 1fr;
  min-height: 620px;
  overflow: hidden;
  background: var(--color-primary-dark);
}
.hero-copy-panel {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: var(--space-8) var(--space-7);
  background: linear-gradient(155deg, #0f2247 0%, #16305e 60%, #1c3a70 100%);
}
.hero-copy-panel::after {
  /* soft seam so the panel doesn't end on a hard vertical line */
  content: "";
  position: absolute;
  top: 0; right: -80px; bottom: 0; width: 80px;
  background: linear-gradient(to right, #1c3a70 0%, rgba(28,58,112,0) 100%);
  pointer-events: none;
}
.copy-inner { max-width: 440px; }
.copy-inner .origin-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(222,41,16,0.18); border: 1px solid rgba(255,222,0,0.5);
  color: #fff; padding: 6px 14px; border-radius: 99px;
  font-size: 0.8rem; font-weight: 600; margin-bottom: var(--space-4);
}
.copy-inner .kicker {
  color: var(--color-cn-gold); font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: var(--space-2);
}
.copy-inner h1 {
  color: #fff; font-size: clamp(2rem, 2.6vw + 1rem, 2.75rem);
  line-height: 1.15; margin-bottom: var(--space-4);
}
.copy-inner .lede {
  color: #cbd5e1; font-size: 1.05rem; margin-bottom: var(--space-5);
}
/* The hero panel is its own solid dark background, already high-contrast —
   the global light-halo text-shadow below (for text over busy cinematic
   photo backgrounds) would just blur its white/gold text with a
   light-on-light glow, so it's switched off for every text node in here. */
.hero-copy-panel h1, .hero-copy-panel p {
  text-shadow: none;
}
.hero-stat-row {
  display: flex; gap: var(--space-6); margin-bottom: var(--space-6);
  padding-top: var(--space-5); border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-row .stat strong { display: block; color: #fff; font-size: 1.6rem; line-height: 1.1; }
.hero-stat-row .stat span { color: #94a3b8; font-size: 0.82rem; }
.hero-badges { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-bottom: var(--space-5); }
.badge {
  display: inline-flex; align-items: center; gap: var(--space-1);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
  color: #e2e8f0; padding: 6px 14px; border-radius: 99px; font-size: 0.85rem; font-weight: 500;
}
.badge svg { width: 16px; height: 16px; color: var(--color-cn-gold); }
.hero-cta { display: flex; gap: var(--space-3); flex-wrap: wrap; }
/* Scoped to the dark hero panel specifically — .hero-cta is also reused as a
   plain centered button row on light content sections (About/Contact), where
   forcing white text/borders would make the outline button unreadable. */
.hero-copy-panel .btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; }
.hero-copy-panel .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.button-row { display: flex; gap: var(--space-3); flex-wrap: wrap; justify-content: center; }
.button-row .btn-outline { background: var(--color-surface); border-color: var(--color-primary); color: var(--color-primary); }
.button-row .btn-outline:hover { background: var(--color-accent-soft); border-color: var(--color-primary); color: var(--color-primary); }

.page-hero { padding: var(--space-6) 0; background: var(--color-surface); border-bottom: 1px solid var(--color-border); }

/* Category page — full-width context photo strip covering the top of the
   page head, with breadcrumb/H1 laid over a dark scrim so they stay legible
   regardless of the photo underneath. */
.category-hero-strip { position: relative; overflow: hidden; min-height: 260px; display: flex; align-items: flex-end; }
.category-hero-strip-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.category-hero-strip-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.25) 0%, rgba(15,23,42,0.55) 60%, rgba(15,23,42,0.85) 100%);
}
.category-hero-strip-content { position: relative; z-index: 1; padding: var(--space-6) var(--space-5) var(--space-5); width: 100%; }
.category-hero-strip-content h1 { color: #fff; margin-bottom: 4px; }
.category-hero-strip-content .breadcrumb { color: rgba(255,255,255,0.75); }
.category-hero-strip-content .breadcrumb a { color: #fff; }
.category-hero-strip-content .breadcrumb li + li::before { color: rgba(255,255,255,0.4); }
.category-hero-strip-content .last-updated { color: rgba(255,255,255,0.8); }
.category-hero-strip-credit { font-size: 0.72rem; color: rgba(255,255,255,0.65); margin: var(--space-2) 0 0; }
.category-hero-strip-credit a { color: rgba(255,255,255,0.85); }
@media (max-width: 600px) { .category-hero-strip { min-height: 200px; } }

/* Breadcrumb */
.breadcrumb { display: flex; gap: var(--space-2); list-style: none; font-size: 0.875rem; color: var(--color-ink-soft); margin-bottom: var(--space-4); flex-wrap: wrap; }
.breadcrumb li { display: flex; align-items: center; gap: var(--space-2); }
.breadcrumb li + li::before { content: '/'; color: var(--color-border); }
.breadcrumb a { color: var(--color-accent); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }

/* Trust Strip */
.trust-strip { display: flex; justify-content: space-between; padding: var(--space-5) 0; border-bottom: 1px solid var(--color-border); flex-wrap: wrap; gap: var(--space-4); }
.trust-strip .item { display: flex; align-items: center; gap: var(--space-2); font-weight: 500; font-size: 0.95rem; color: var(--color-primary); }
.trust-strip svg { width: 20px; height: 20px; color: var(--color-accent); }

/* Grids & Cards */
.bento-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: var(--space-5); }
.category-card {
  --card-accent: var(--cat-color, var(--color-accent));
  position: relative;
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 0; display: flex; flex-direction: column; overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 8px 16px -8px rgba(15,23,42,0.12), 0 20px 32px -16px rgba(15,23,42,0.10);
}
.category-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 1;
  background: var(--card-accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.category-card:hover::before, .category-card:focus-visible::before { transform: scaleX(1); }
.category-card:hover, .category-card:focus-visible {
  box-shadow: 0 4px 10px -4px rgba(15,23,42,0.10), 0 12px 20px -12px rgba(15,23,42,0.14);
  border-color: var(--card-accent);
}
.category-card:hover h3, .category-card:focus-visible h3 { color: var(--card-accent); }
.category-card:hover .cta, .category-card:focus-visible .cta { color: var(--card-accent); }
.icon-wrap {
  width: 48px; height: 48px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-4);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.icon-wrap svg { width: 24px; height: 24px; }
.category-card-media { display: block; width: 100%; aspect-ratio: 16 / 10; background: color-mix(in srgb, var(--card-accent) 10%, var(--color-surface)); overflow: hidden; flex-shrink: 0; }
.category-card-media picture, .category-card-media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.category-card:hover .category-card-media img, .category-card:focus-visible .category-card-media img { transform: scale(1.06); }
.category-card-media--fallback { display: flex; align-items: center; justify-content: center; }
.category-card-media--fallback svg { width: 40px; height: 40px; }
.category-card-body { padding: var(--space-5); display: flex; flex-direction: column; flex: 1; }
.category-card h3 { margin-bottom: var(--space-1); transition: color 0.2s ease; }
.category-card .count { font-size: 0.875rem; color: var(--color-ink-soft); margin-bottom: var(--space-3); display: block; }
.category-card .cta { margin-top: auto; padding-top: var(--space-4); color: var(--color-accent); font-weight: 600; font-size: 0.95rem; display: inline-flex; align-items: center; transition: color 0.2s ease, transform 0.2s ease; }
.category-card:hover .cta, .category-card:focus-visible .cta { transform: translateX(3px); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--space-5); }
.product-card {
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 8px 16px -8px rgba(15,23,42,0.12), 0 20px 32px -16px rgba(15,23,42,0.10);
}
.product-card:hover {
  box-shadow: 0 4px 10px -4px rgba(15,23,42,0.10), 0 12px 20px -12px rgba(37,99,235,0.14);
  border-color: var(--color-accent);
}
.product-card .thumb { width: 100%; aspect-ratio: 4/3; object-fit: contain; background: var(--color-bg); display: flex; align-items: center; justify-content: center; }
.product-card .thumb svg { width: 48px; height: 48px; }
.product-card .body { padding: var(--space-4); display: flex; flex-direction: column; flex-grow: 1; }
.product-card .key-metric { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-accent); margin-bottom: var(--space-2); font-weight: 600; display: block; }
.product-card h3 { font-size: 1.125rem; margin-bottom: var(--space-3); flex-grow: 1; }
.product-card .view { margin-top: auto; font-size: 0.9rem; font-weight: 600; color: var(--color-primary); }

/* Homepage — "who we serve" audience cards */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); margin-top: var(--space-6); }
.audience-card {
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: var(--space-5); transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.audience-card:hover { border-color: var(--color-accent); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.audience-card h3 { margin-bottom: var(--space-2); }
.audience-card p { margin-bottom: 0; font-size: 0.92rem; }

/* Homepage — four core-expertise pillars */
.expertise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.expertise-card {
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: var(--space-5); text-align: left;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.expertise-card:hover { border-color: var(--color-primary); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.expertise-card .icon-wrap { background: var(--color-accent-soft); color: var(--color-primary); }
.expertise-card h3 { font-size: 1.05rem; margin-bottom: var(--space-1); }
.expertise-card p { margin-bottom: 0; font-size: 0.88rem; color: var(--color-ink-soft); }
@media (max-width: 900px) { .expertise-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .expertise-grid { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .audience-grid { grid-template-columns: 1fr; } }

/* Scroll-reveal utility — progressive enhancement, content is visible without JS.
   main.js adds .reveal-init (the hidden starting state) only once it confirms
   IntersectionObserver support, then adds .is-visible when the element scrolls
   into view. Elements never depend on JS to become visible. */
.reveal-init { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-init.is-visible { opacity: 1; transform: translateY(0); }

/* Step timeline (Shipping page — "how an export order works") */
.step-timeline { list-style: none; padding: 0; margin: 0; position: relative; display: flex; flex-direction: column; gap: var(--space-6); }
.step-timeline::before {
  content: ""; position: absolute; left: 19px; top: 8px; bottom: 8px; width: 2px;
  background: var(--color-border);
}
.step-timeline-item { position: relative; padding-left: 56px; }
.step-timeline-item h3 { margin-bottom: 4px; }
.step-timeline-item p { margin-bottom: 0; }
.step-num {
  position: absolute; left: 0; top: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--color-primary); color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; box-shadow: 0 0 0 4px var(--color-surface), 0 2px 6px rgba(0,0,0,0.15); z-index: 1;
}

/* Tender portal box (category + country pages) */
.tender-portal-box { background: var(--color-accent-soft); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: var(--space-4); margin-top: var(--space-2); }
.tender-portal-box h4 { margin-bottom: var(--space-2); font-size: 1rem; }
.tender-portal-note { font-size: 0.85rem; color: var(--color-ink-soft); margin-bottom: var(--space-3); }
.tender-portal-disclaimer { font-size: 0.78rem; color: var(--color-ink-soft); margin: var(--space-3) 0 0; }
.tender-portal-box--unverified { background: var(--color-bg); border-style: dashed; }
.tender-portal-box--unverified p { margin-bottom: 0; font-size: 0.92rem; }
.feature-list li a { color: var(--color-accent); font-weight: 600; }
.feature-list li a:hover { text-decoration: underline; }

/* Category page — sourcing guide / tender-supply section */
.sourcing-grid { display: grid; grid-template-columns: 2fr 1fr; gap: var(--space-7); align-items: start; }
@media (max-width: 900px) { .sourcing-grid { grid-template-columns: 1fr; } }

/* Product Page Layout */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: start; }
.product-media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-border); background: var(--color-surface); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-3); }
.quick-facts { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-4); }
.chip { padding: 4px 12px; background: var(--color-bg); border: 1px solid var(--color-border); border-radius: 99px; font-size: 0.85rem; font-weight: 500; color: var(--color-ink-soft); }
.feature-list { list-style: none; margin-bottom: var(--space-5); }
.feature-list li { display: flex; align-items: flex-start; gap: var(--space-3); margin-bottom: var(--space-3); }
.feature-list svg { width: 20px; height: 20px; color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }

/* Accordion */
.accordion-group { border: 1px solid var(--color-border); border-radius: var(--radius-md); background: var(--color-surface); overflow: hidden; box-shadow: var(--shadow-sm); }
.accordion-item { border-bottom: 1px solid var(--color-border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger { width: 100%; text-align: left; padding: var(--space-4); background: none; border: none; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 1.05rem; color: var(--color-primary); cursor: pointer; }
.accordion-trigger svg { width: 20px; height: 20px; transition: transform var(--transition-fast); color: var(--color-ink-soft); }
.accordion-panel { display: none; padding: 0 var(--space-4) var(--space-4); color: var(--color-ink-soft); }
.accordion-trigger[aria-expanded="true"] + .accordion-panel { display: block; }
.accordion-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.accordion-trigger:focus-visible { outline: 2px solid var(--color-accent); outline-offset: -2px; }

/* Tables */
.table-scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; text-align: left; background: var(--color-surface); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); }
th, td { padding: var(--space-3) var(--space-4); border-bottom: 1px solid var(--color-border); }
th { background: var(--color-bg); font-weight: 600; color: var(--color-primary); font-size: 0.95rem; }
td { font-size: 0.95rem; }
tr:last-child td { border-bottom: none; }
.compare a { color: var(--color-accent); font-weight: 500; }
.compare a:hover { text-decoration: underline; }

/* Forms */
.form-field { margin-bottom: var(--space-4); }
.form-field label { display: block; font-weight: 500; font-size: 0.9rem; margin-bottom: var(--space-1); color: var(--color-primary); }
input[type="text"], input[type="email"], input[type="search"], textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); font-size: 1rem; color: var(--color-ink); background: var(--color-surface); transition: border-color var(--transition-fast), box-shadow var(--transition-fast); }
input:focus, textarea:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px var(--color-accent-soft); }
textarea { min-height: 120px; resize: vertical; }

/* Pill List */
.pill-list { display: flex; flex-wrap: wrap; gap: var(--space-3); list-style: none; justify-content: center; }
.pill-list a { display: inline-block; padding: 8px 16px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 99px; font-weight: 500; font-size: 0.9rem; }
.pill-list a:hover { border-color: var(--color-accent); color: var(--color-accent); background: var(--color-accent-soft); }

/* Footer */
.site-footer { background: var(--color-primary-dark); padding: var(--space-8) 0 var(--space-4); color: #fff; margin-top: var(--space-8); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: var(--space-6); margin-bottom: var(--space-6); }
.footer-grid h4 { color: #fff; font-size: 1.1rem; margin-bottom: var(--space-4); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: var(--space-2); }
.footer-links a { color: #9fadbc; transition: color var(--transition-fast); font-size: 0.95rem; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { padding-top: var(--space-4); border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; font-size: 0.875rem; color: #9fadbc; flex-wrap: wrap; gap: var(--space-3); }
.footer-bg-credit { margin-top: var(--space-2); font-size: 0.72rem; color: #6b7a8d; }

/* Footer columns — plain on desktop, collapsible accordion on mobile so the
   footer doesn't dominate small screens (reuses the site's accordion JS). */
.footer-accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-2);
  background: none; border: none; padding: 0; margin: 0 0 var(--space-4); cursor: default;
  color: #fff; font-size: 1.1rem; font-weight: 700; text-align: left; font-family: inherit;
}
.footer-accordion-trigger svg { width: 20px; height: 20px; color: #9fadbc; flex-shrink: 0; display: none; transition: transform 0.25s ease; }
.footer-accordion-panel { display: block; }
@media (max-width: 900px) {
  .footer-accordion-trigger { cursor: pointer; padding-bottom: var(--space-3); border-bottom: 1px solid rgba(255,255,255,0.14); margin-bottom: 0; }
  .footer-accordion-trigger svg { display: block; }
  .footer-accordion-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
  .footer-accordion-panel { display: none; padding: var(--space-3) 0 0; }
  .footer-accordion-trigger[aria-expanded="true"] + .footer-accordion-panel { display: block; }
  .footer-accordion-item { border-bottom: 1px solid rgba(255,255,255,0.08); padding: var(--space-4) 0; }
  .footer-brand { padding-bottom: var(--space-4); }
}

/* Chat widget */
.chat-widget { position: fixed; right: 20px; bottom: 88px; z-index: 150; }
.chat-fab {
  width: 56px; height: 56px; border-radius: 50%; background: var(--color-primary); color: #fff;
  display: flex; align-items: center; justify-content: center; border: none; cursor: pointer;
  box-shadow: var(--shadow-lg); transition: transform 0.2s ease, background-color 0.2s ease;
}
.chat-fab:hover { background: var(--color-primary-dark); transform: scale(1.06); }
.chat-fab:active { transform: scale(0.96); }
.chat-fab svg { width: 26px; height: 26px; }
.chat-widget.is-open .chat-fab svg { display: none; }
.chat-fab .chat-fab-close { display: none; width: 24px; height: 24px; }
.chat-widget.is-open .chat-fab .chat-fab-close { display: block; }

.chat-panel {
  position: absolute; bottom: 68px; right: 0; width: 370px; max-width: calc(100vw - 32px);
  height: 520px; max-height: 70vh; background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden;
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(14px) scale(0.97); pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.chat-widget.is-open .chat-panel { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.chat-header { background: var(--color-primary); color: #fff; padding: var(--space-3) var(--space-4); font-weight: 700; flex-shrink: 0; display: flex; align-items: center; gap: 10px; }
.chat-header-icon { width: 22px; height: 22px; flex-shrink: 0; }

.chat-messages { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: var(--space-4); display: flex; flex-direction: column; gap: var(--space-3); }
.chat-msg { max-width: 88%; padding: 10px 14px; border-radius: 14px; font-size: 0.88rem; line-height: 1.5; }
.chat-msg.user { align-self: flex-end; background: var(--color-primary); color: #fff; border-bottom-right-radius: 4px; }
.chat-msg.assistant { align-self: flex-start; background: var(--color-bg); color: var(--color-ink); border: 1px solid var(--color-border); border-bottom-left-radius: 4px; }
.chat-msg.assistant.is-thinking { color: var(--color-ink-soft); font-style: italic; }

.chat-results { align-self: flex-start; max-width: 88%; display: flex; flex-direction: column; gap: 6px; }
.chat-results-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-ink-soft); font-weight: 700; margin-bottom: 2px; }
.chat-result-link {
  display: block; font-size: 0.82rem; font-weight: 600; padding: 8px 10px; border-radius: var(--radius-sm);
  background: var(--color-accent-soft); color: var(--color-accent); transition: background-color 0.15s ease;
}
.chat-result-link:hover { background: var(--color-primary); color: #fff; }

.chat-form { display: flex; gap: 8px; padding: var(--space-3); border-top: 1px solid var(--color-border); flex-shrink: 0; }
.chat-form input {
  flex: 1; padding: 10px 12px; border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  font-size: 0.88rem; color: var(--color-ink); background: var(--color-surface);
}
.chat-form input:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px var(--color-accent-soft); }
.chat-form button {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: var(--radius-sm); border: none; background: var(--color-primary);
  color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background-color 0.15s ease;
}
.chat-form button:hover { background: var(--color-primary-dark); }
.chat-form button:disabled { opacity: 0.5; cursor: default; }
.chat-form button svg { width: 18px; height: 18px; }

@media (max-width: 600px) {
  .chat-widget { right: 14px; bottom: 78px; }
  .chat-panel { width: calc(100vw - 28px); height: 65vh; bottom: 64px; }
}

/* Enquiry Bar */
.enquiry-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--color-primary); color: #fff; padding: var(--space-3) var(--space-5); display: flex; justify-content: space-between; align-items: center; z-index: 100; flex-wrap: wrap; gap: var(--space-3); box-shadow: 0 -4px 10px rgba(0,0,0,0.1); }
.enquiry-bar span { font-weight: 600; }
.enquiry-bar .actions { display: flex; gap: var(--space-3); }
.enquiry-bar .btn-outline { border-color: rgba(255,255,255,0.3); color: #fff; }
.enquiry-bar .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* Responsive */
@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .nav-toggle { display: block; min-width: 44px; min-height: 44px; }
  .lang-switcher { display: none; }
  .hero-v2 { grid-template-columns: 1fr; min-height: 0; }
  .hero-map-zone { height: 260px; order: -1; }
  .hero-copy-panel::after { display: none; }
}
@media (max-width: 600px) {
  .header-inner { padding: var(--space-2) var(--space-4); min-height: 62px; }
  .site-header.is-scrolled .header-inner { min-height: 54px; }
  .brand-logo { height: 40px; width: 40px; }
  .site-header.is-scrolled .brand-logo { height: 34px; width: 34px; }
  .brand { font-size: 1.02rem; }
  .mobile-nav-backdrop { top: 62px; }
  .site-header.is-scrolled .mobile-nav-backdrop { top: 54px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: column; }
  .hero-stat-row { gap: var(--space-5); }
  .trust-strip { flex-direction: column; align-items: flex-start; }
  /* Single compact row on mobile instead of label-on-its-own-row + full-width
     stacked buttons — that used to take up ~120px of a small viewport. */
  .enquiry-bar { flex-wrap: nowrap; gap: var(--space-2); padding: 10px var(--space-4); padding-bottom: calc(10px + env(safe-area-inset-bottom)); }
  /* Not display:none: the label text stays in the DOM/accessibility tree
     (screen readers, and any raw-content parity check) even though it's
     visually collapsed to save space on small screens — see .sr-only. */
  .enquiry-bar span { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
  .enquiry-bar .actions { width: 100%; }
  .enquiry-bar .btn { flex-grow: 1; padding: 10px 12px; font-size: 0.85rem; }
}
@media (max-width: 360px) {
  /* Shrink instead of hiding — the brand name should stay visible on every
     phone width; only the logo and gap tighten to make room. */
  .brand-logo { height: 34px; width: 34px; }
  .brand { font-size: 0.88rem; gap: 7px; }
}

/* Fallback for JS accordion state */
.accordion-panel.is-open { display: block; }

/* --- Hero v2: the animated China globe zone ---
   Was a static map image + CSS/SVG-positioned "hub" and "destination" dots
   simulating flight routes — those dots needed a hand-tuned percentage
   position to land on China, which drifted out of alignment whenever the
   container's aspect ratio changed (no max-width on this hero). Replaced
   with a pre-made animated GIF (a rotating globe with China labelled/
   highlighted directly in the source animation), which sidesteps the
   alignment problem entirely — there's no separate marker to misposition. */
.hero-map-zone {
  position: relative;
  overflow: hidden;
  background: #e5e9f0;
}
.hero-map-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 50%;
}
.hero-map-fade {
  /* soft fade into the copy panel's seam, and a light vignette at the
     outer edge — no dark block anywhere, the map stays bright throughout */
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,23,42,0.16) 0%, rgba(15,23,42,0) 18%, rgba(15,23,42,0) 82%, rgba(15,23,42,0.10) 100%);
}

/* --- Cinematic Animated Backgrounds --- */
.cinematic-bg-container {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
body > .cinematic-bg-container {
  position: fixed;
}
.cinematic-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
  animation: cinematicPan 60s linear infinite alternate;
}
.cinematic-bg-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  /* Semi-transparent radial gradient to keep text readable in the center while edges are vibrant */
  background: radial-gradient(circle at center, rgba(249, 250, 251, 0.85) 0%, rgba(249, 250, 251, 0.4) 100%);
}

/* Ensure text on top of cinematic background remains readable */
main h1, main h2, main p, .page-header p {
  text-shadow: 0 1px 3px rgba(255,255,255,0.8);
}

@keyframes cinematicPan {
  0% { transform: scale(1.1) translate(0, 0); }
  100% { transform: scale(1.1) translate(-2%, 2%); }
}

.btn-glow {
  box-shadow: 0 0 0 0 rgba(255,222,0,0.5);
  animation: pulseGlow 2.4s ease-out infinite;
}
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(255,222,0,0.45); }
  70% { box-shadow: 0 0 0 14px rgba(255,222,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,222,0,0); }
}

/* --- Reduced motion: keep the site fully usable/legible, drop the motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .category-card, .product-card { transform: none !important; }
  .category-card:hover, .product-card:hover { transform: translateY(-2px) !important; }
  .cinematic-bg-img { animation: none !important; transform: scale(1) !important; }
  .promo-track { animation: none !important; flex-wrap: wrap; width: auto; row-gap: 8px; padding: 10px var(--space-5); }
  .promo-item:nth-child(n+9) { display: none; }
  .promo-strip::before, .promo-strip::after { display: none; }
}
