/* ==========================================================================
   JTComputers — Storefront stylesheet
   ========================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, h5, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
img, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; width: 100%; }

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { line-height: var(--lh-tight); letter-spacing: var(--tracking-tight); font-weight: var(--fw-bold); }

:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 2px;
  border-radius: var(--r-xs);
}

.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;
}

.skip-link {
  position: absolute; left: var(--sp-4); top: -60px; z-index: 200;
  background: var(--navy-800); color: var(--white);
  padding: var(--sp-3) var(--sp-5); border-radius: var(--r-md);
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: var(--sp-4); }

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-6); }
.container--narrow { max-width: var(--container-narrow); }
.stack > * + * { margin-top: var(--sp-4); }
.row { display: flex; align-items: center; gap: var(--sp-3); }
.row--between { justify-content: space-between; }
.row--wrap { flex-wrap: wrap; }
.grow { flex: 1 1 auto; min-width: 0; }
.section { padding-block: var(--sp-16); }
.section--tight { padding-block: var(--sp-10); }
.section--sunken { background: var(--white); }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--sp-6); margin-bottom: var(--sp-8); flex-wrap: wrap; }
.section-head h2 { font-size: var(--fs-2xl); }
.section-head p { color: var(--text-secondary); margin-top: var(--sp-2); font-size: var(--fs-md); }
.eyebrow {
  font-size: var(--fs-2xs); font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-caps); text-transform: uppercase;
  color: var(--blue-600); margin-bottom: var(--sp-2);
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--accent); --btn-fg: var(--white); --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: 0 var(--sp-5); height: 40px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bd); border-radius: var(--r-md);
  font-size: var(--fs-base); font-weight: var(--fw-semibold);
  white-space: nowrap; cursor: pointer;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
              transform var(--dur-fast) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn:hover { --btn-bg: var(--accent-hover); }
.btn:active { transform: translateY(1px); }
.btn[disabled] { opacity: 0.5; pointer-events: none; }
.btn svg { width: 16px; height: 16px; flex: none; }

.btn--lg { height: 48px; padding-inline: var(--sp-6); font-size: var(--fs-md); }
.btn--sm { height: 32px; padding-inline: var(--sp-3); font-size: var(--fs-sm); }
.btn--block { display: flex; width: 100%; }

.btn--secondary { --btn-bg: var(--white); --btn-fg: var(--ink-800); --btn-bd: var(--border-default); }
.btn--secondary:hover { --btn-bg: var(--ink-50); --btn-bd: var(--border-strong); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink-700); --btn-bd: transparent; }
.btn--ghost:hover { --btn-bg: var(--ink-100); }
.btn--dark { --btn-bg: var(--navy-800); --btn-fg: var(--white); }
.btn--dark:hover { --btn-bg: var(--navy-700); }
.btn--success { --btn-bg: var(--success-600); }
.btn--success:hover { --btn-bg: #096b40; }
.btn--danger { --btn-bg: var(--white); --btn-fg: var(--danger-600); --btn-bd: var(--danger-100); }
.btn--danger:hover { --btn-bg: var(--danger-100); }
.btn--onDark { --btn-bg: rgba(255,255,255,0.08); --btn-fg: var(--white); --btn-bd: rgba(255,255,255,0.28); }
.btn--onDark:hover { --btn-bg: rgba(255,255,255,0.16); }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: var(--r-md); color: var(--ink-600);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.icon-btn:hover { background: var(--ink-100); color: var(--ink-900); }
.icon-btn svg { width: 18px; height: 18px; }

.link { color: var(--text-link); font-weight: var(--fw-medium); }
.link:hover { text-decoration: underline; }

/* ---------- Forms ---------- */
.field { display: block; }
.field + .field { margin-top: var(--sp-4); }
.field > label, .label {
  display: block; font-size: var(--fs-sm); font-weight: var(--fw-semibold);
  color: var(--ink-700); margin-bottom: var(--sp-2);
}
.input, .select, .textarea {
  width: 100%; height: 42px; padding: 0 var(--sp-3);
  background: var(--white); color: var(--ink-900);
  border: 1px solid var(--border-default); border-radius: var(--r-md);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.textarea { height: auto; min-height: 96px; padding: var(--sp-3); resize: vertical; }
.input:hover, .select:hover, .textarea:hover { border-color: var(--border-strong); }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--blue-500); box-shadow: var(--sh-focus);
}
.input::placeholder { color: var(--ink-400); }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%235f7089' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 11px;
  padding-right: var(--sp-8);
}
.field-hint { font-size: var(--fs-xs); color: var(--text-muted); margin-top: var(--sp-2); }
.field-error { font-size: var(--fs-xs); color: var(--danger-600); margin-top: var(--sp-2); font-weight: var(--fw-medium); }
.input[aria-invalid="true"] { border-color: var(--danger-500); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.grid-2 .field + .field { margin-top: 0; }

.check { display: flex; align-items: flex-start; gap: var(--sp-3); cursor: pointer; font-size: var(--fs-base); color: var(--ink-700); }
.check input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--blue-600); flex: none; cursor: pointer; }

/* ---------- Badges / pills ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 2px var(--sp-2); height: 21px;
  font-size: var(--fs-2xs); font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-wide); text-transform: uppercase;
  border-radius: var(--r-xs); background: var(--ink-100); color: var(--ink-600);
}
.badge--new { background: var(--blue-100); color: var(--blue-700); }
.badge--deal { background: var(--danger-100); color: var(--danger-600); }
.badge--best { background: var(--warn-100); color: var(--warn-600); }
.badge--b2b { background: var(--cyan-100); color: #05707f; }

.stock { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; font-size: var(--fs-xs); font-weight: var(--fw-semibold); }
.stock::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; flex: none; }
.stock--in { color: var(--success-600); }
.stock--low { color: var(--warn-600); }
.stock--out { color: var(--danger-600); }
.stock--available { color: var(--blue-600, #1a6fb5); }

.status-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px var(--sp-3); border-radius: var(--r-pill);
  font-size: var(--fs-xs); font-weight: var(--fw-semibold); white-space: nowrap;
  background: var(--ink-100); color: var(--ink-700);
}
.status-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status-pill--new { background: var(--blue-100); color: var(--blue-700); }
.status-pill--processing { background: var(--warn-100); color: var(--warn-600); }
.status-pill--preparing { background: #ede9fe; color: #6d3fd4; }
.status-pill--shipped { background: var(--cyan-100); color: #05707f; }
.status-pill--delivered { background: var(--success-100); color: var(--success-600); }
.status-pill--paid { background: var(--success-100); color: var(--success-600); }

/* ---------- Cards ---------- */
.card {
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg); box-shadow: var(--sh-xs);
}
.card__head {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5); border-bottom: 1px solid var(--border-subtle);
}
.card__head h3 { font-size: var(--fs-md); font-weight: var(--fw-semibold); letter-spacing: 0; }
.card__body { padding: var(--sp-5); }

/* ==========================================================================
   Header
   ========================================================================== */
.utility-bar {
  background: var(--navy-800); color: rgba(255, 255, 255, 0.75);
  font-size: var(--fs-xs);
}
.utility-bar .container { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); height: 36px; }
.utility-bar__links { display: flex; align-items: center; gap: var(--sp-5); }
.utility-bar a { display: inline-flex; align-items: center; gap: 6px; transition: color var(--dur) var(--ease); }
.utility-bar a:hover { color: var(--white); }
.utility-bar svg { width: 13px; height: 13px; opacity: 0.8; }
.utility-bar__note { display: inline-flex; align-items: center; gap: 6px; }

.site-header { position: sticky; top: 0; z-index: var(--z-header); background: var(--white); border-bottom: 1px solid var(--border-subtle); }
.header-main .container { display: flex; align-items: center; gap: var(--sp-6); height: 76px; }

.brand { display: inline-flex; align-items: center; gap: var(--sp-3); flex: none; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-size: var(--fs-xl); font-weight: var(--fw-bold); letter-spacing: -0.03em; color: var(--navy-800); }
.brand__name em { font-style: normal; color: var(--blue-600); }
/* "Inc." rides at the end of the wordmark a size down and a shade lighter, so
   the eye still reads JT|Computers first and the legal suffix does not compete
   with it. Kept inside .brand__name so it inherits the dark/light treatment
   the footer and admin header apply to the whole lockup. */
.brand__name i {
  font-style: normal; font-weight: var(--fw-semibold);
  font-size: .62em; letter-spacing: 0;
  margin-left: .28em; opacity: .72;
  vertical-align: baseline;
}
.brand__tag { font-size: 9.5px; letter-spacing: var(--tracking-caps); text-transform: uppercase; color: var(--ink-400); font-weight: var(--fw-semibold); }

.search { position: relative; flex: 1 1 auto; max-width: 640px; }
.search__form { display: flex; align-items: center; height: 44px; background: var(--ink-50); border: 1px solid var(--border-default); border-radius: var(--r-md); transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease); }
.search__form:focus-within { background: var(--white); border-color: var(--blue-500); box-shadow: var(--sh-focus); }
.search__icon { width: 18px; height: 18px; margin-inline: var(--sp-3) var(--sp-2); color: var(--ink-400); flex: none; }
.search__input { flex: 1; height: 100%; background: none; border: 0; outline: none; font-size: var(--fs-base); min-width: 0; }
.search__submit { height: 34px; margin-right: 5px; padding-inline: var(--sp-4); background: var(--accent); color: var(--white); border-radius: var(--r-sm); font-size: var(--fs-sm); font-weight: var(--fw-semibold); transition: background var(--dur) var(--ease); }
.search__submit:hover { background: var(--accent-hover); }

.suggest {
  position: absolute; inset-inline: 0; top: calc(100% + 8px);
  background: var(--white); border: 1px solid var(--border-default);
  border-radius: var(--r-lg); box-shadow: var(--sh-lg); overflow: hidden; display: none;
}
.suggest[data-open="true"] { display: block; }
.suggest__label { padding: var(--sp-3) var(--sp-4) var(--sp-2); font-size: var(--fs-2xs); text-transform: uppercase; letter-spacing: var(--tracking-caps); color: var(--ink-400); font-weight: var(--fw-bold); }
.suggest__item { display: flex; align-items: center; gap: var(--sp-3); width: 100%; padding: var(--sp-2) var(--sp-4); text-align: left; transition: background var(--dur-fast) var(--ease); }
.suggest__item:hover, .suggest__item[data-active="true"] { background: var(--blue-50); }
.suggest__thumb { width: 42px; height: 42px; border-radius: var(--r-sm); background: var(--ink-50); flex: none; overflow: hidden; }
.suggest__name { font-size: var(--fs-sm); font-weight: var(--fw-medium); }
.suggest__meta { font-size: var(--fs-xs); color: var(--text-muted); }
.suggest__price { margin-left: auto; font-size: var(--fs-sm); font-weight: var(--fw-bold); }
.suggest__all { display: block; width: 100%; padding: var(--sp-3); text-align: center; font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--blue-600); background: var(--ink-50); border-top: 1px solid var(--border-subtle); }

/* margin-left:auto pins the cart to the right edge. The search box caps at
   640px, so without this the cart floats mid-header with dead space beside
   it instead of sitting where people look for a cart. */
.header-actions { display: flex; align-items: center; gap: var(--sp-1); flex: none; margin-left: auto; }
.header-action {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; min-width: 62px; height: 52px; border-radius: var(--r-md);
  font-size: var(--fs-2xs); font-weight: var(--fw-semibold); color: var(--ink-600);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.header-action:hover { background: var(--ink-100); color: var(--navy-800); }
.header-action svg { width: 20px; height: 20px; }
/* Wider than the icon-sized default so the two-word label stays on one line. */
.header-action--contact { min-width: 88px; }
.header-action__count {
  position: absolute; top: 4px; right: 10px;
  min-width: 17px; height: 17px; padding: 0 4px;
  display: grid; place-items: center;
  background: var(--blue-600); color: var(--white);
  border-radius: var(--r-pill); font-size: 10px; font-weight: var(--fw-bold);
  border: 2px solid var(--white);
}
.header-action__count[data-zero="true"] { display: none; }
.count-bump { animation: countBump 420ms var(--ease-out); }
@keyframes countBump { 0% { transform: scale(1); } 40% { transform: scale(1.45); } 100% { transform: scale(1); } }

.nav-bar { border-top: 1px solid var(--border-subtle); background: var(--white); }
.nav-bar .container { display: flex; align-items: center; gap: var(--sp-1); height: 46px; }
/* Below this the seven categories plus the trade note stop fitting; the
   note is the least important thing in the row, so it goes first. */
@media (max-width: 1180px) { .nav-bar__note { display: none; } }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px; height: 34px; padding-inline: var(--sp-3);
  border-radius: var(--r-sm); font-size: var(--fs-base); font-weight: var(--fw-medium); color: var(--ink-700);
  /* Category names are two and three words long; without this the preview
     chevrons are just enough extra width to wrap the bar onto two lines. */
  white-space: nowrap;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav-link:hover { background: var(--blue-50); color: var(--blue-700); }
.nav-link[aria-current="page"] { color: var(--blue-700); font-weight: var(--fw-semibold); }
.nav-link--deals { color: var(--danger-600); font-weight: var(--fw-semibold); }
.nav-link--deals:hover { background: var(--danger-100); color: var(--danger-600); }
.nav-bar__spacer { flex: 1; }
.nav-bar__note { font-size: var(--fs-xs); color: var(--text-muted); display: inline-flex; align-items: center; gap: 6px; }
.nav-bar__note svg { width: 14px; height: 14px; color: var(--success-500); }

.burger { display: none; }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: var(--z-drawer); visibility: hidden;
}
.mobile-nav[data-open="true"] { visibility: visible; }
.mobile-nav__scrim { position: absolute; inset: 0; background: rgba(6, 16, 31, 0.5); opacity: 0; transition: opacity var(--dur) var(--ease); }
.mobile-nav[data-open="true"] .mobile-nav__scrim { opacity: 1; }
.mobile-nav__panel {
  position: absolute; inset-block: 0; left: 0; width: min(340px, 88vw);
  background: var(--white); box-shadow: var(--sh-xl);
  transform: translateX(-100%); transition: transform var(--dur-slow) var(--ease-out);
  display: flex; flex-direction: column;
}
.mobile-nav[data-open="true"] .mobile-nav__panel { transform: none; }
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; padding: var(--sp-4); border-bottom: 1px solid var(--border-subtle); }
.mobile-nav__body { padding: var(--sp-3); overflow-y: auto; flex: 1; }
.mobile-nav__link { display: flex; align-items: center; justify-content: space-between; padding: var(--sp-3) var(--sp-3); border-radius: var(--r-md); font-weight: var(--fw-medium); }
.mobile-nav__link:hover { background: var(--ink-100); }
.mobile-nav__group { margin-top: var(--sp-4); padding-top: var(--sp-4); border-top: 1px solid var(--border-subtle); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; overflow: hidden; color: var(--white);
  background:
    radial-gradient(1100px 520px at 78% 12%, rgba(43, 110, 240, 0.30), transparent 62%),
    radial-gradient(760px 420px at 8% 96%, rgba(10, 165, 194, 0.20), transparent 58%),
    linear-gradient(158deg, var(--navy-900) 0%, var(--navy-700) 58%, #123055 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(900px 460px at 22% 40%, #000 0%, transparent 78%);
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--sp-10); align-items: center; padding-block: var(--sp-16); }
.hero h1 { font-size: var(--fs-5xl); letter-spacing: -0.035em; }
.hero h1 span { background: linear-gradient(94deg, #7fb2ff, #4ee0f0); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { margin-top: var(--sp-5); font-size: var(--fs-lg); line-height: 1.6; color: rgba(255,255,255,0.78); max-width: 52ch; }
.hero__cta { display: flex; gap: var(--sp-3); margin-top: var(--sp-8); flex-wrap: wrap; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: var(--sp-2); padding: 5px var(--sp-3); border-radius: var(--r-pill); background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18); font-size: var(--fs-xs); font-weight: var(--fw-semibold); letter-spacing: var(--tracking-wide); }
.hero__eyebrow svg { width: 14px; height: 14px; color: #4ee0f0; }
.hero__stats { display: flex; gap: var(--sp-8); margin-top: var(--sp-10); padding-top: var(--sp-6); border-top: 1px solid rgba(255,255,255,0.14); flex-wrap: wrap; }
.hero__stat strong { display: block; font-size: var(--fs-xl); font-weight: var(--fw-bold); }
.hero__stat span { font-size: var(--fs-xs); color: rgba(255,255,255,0.62); }

.hero__visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-xl); padding: var(--sp-5); backdrop-filter: blur(6px);
}
.hero-card__art { border-radius: var(--r-lg); background: linear-gradient(180deg, #f7fafd, #e8eef7); padding: var(--sp-4); }
.hero-card__row { display: flex; align-items: center; justify-content: space-between; margin-top: var(--sp-4); gap: var(--sp-4); }
.hero-card__name { font-weight: var(--fw-semibold); font-size: var(--fs-md); }
.hero-card__spec { font-size: var(--fs-xs); color: rgba(255,255,255,0.62); margin-top: 2px; }
.hero-card__price { font-size: var(--fs-xl); font-weight: var(--fw-bold); }
.hero-float {
  /* Sits in the padding reserved below the card, so it never covers the CTA. */
  position: absolute; right: -6px; bottom: 0;
  background: var(--white); color: var(--ink-900);
  border-radius: var(--r-lg); box-shadow: var(--sh-xl);
  padding: var(--sp-3) var(--sp-4); display: flex; align-items: center; gap: var(--sp-3);
}
.hero-float svg { width: 20px; height: 20px; color: var(--success-500); }
.hero-float strong { display: block; font-size: var(--fs-sm); }
.hero-float span { font-size: var(--fs-xs); color: var(--text-muted); }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--border-subtle); }
.trust-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); padding-block: var(--sp-6); }
.trust-item { display: flex; align-items: flex-start; gap: var(--sp-3); }
.trust-item svg { width: 22px; height: 22px; color: var(--blue-600); flex: none; margin-top: 2px; }
.trust-item strong { display: block; font-size: var(--fs-base); font-weight: var(--fw-semibold); }
.trust-item span { font-size: var(--fs-xs); color: var(--text-muted); line-height: 1.45; display: block; margin-top: 2px; }

/* ---------- Category cards ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
.cat-card {
  display: block; background: var(--white); border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg); padding: var(--sp-5); position: relative; overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); border-color: var(--blue-400); }
.cat-card__art { height: 96px; display: grid; place-items: center; margin-bottom: var(--sp-4); }
.cat-card__art svg { height: 100%; width: auto; }
.cat-card h3 { font-size: var(--fs-md); font-weight: var(--fw-semibold); letter-spacing: 0; }
.cat-card p { font-size: var(--fs-xs); color: var(--text-muted); margin-top: 3px; }
.cat-card__go { position: absolute; top: var(--sp-4); right: var(--sp-4); width: 26px; height: 26px; border-radius: 50%; background: var(--ink-100); display: grid; place-items: center; color: var(--ink-500); transition: background var(--dur) var(--ease), color var(--dur) var(--ease); }
.cat-card:hover .cat-card__go { background: var(--blue-600); color: var(--white); }
.cat-card__go svg { width: 13px; height: 13px; }

/* ---------- Product card ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
.product-grid--3 { grid-template-columns: repeat(3, 1fr); }

.p-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.p-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); border-color: var(--border-default); }
.p-card__media { position: relative; aspect-ratio: 4 / 3; background: linear-gradient(180deg, #fbfcfe, #eef2f8); padding: var(--sp-4); display: grid; place-items: center; }
.p-card__media svg { width: 100%; height: 100%; transition: transform var(--dur-slow) var(--ease-out); }
.p-card:hover .p-card__media svg { transform: scale(1.05); }
.p-card__flags { position: absolute; top: var(--sp-3); left: var(--sp-3); display: flex; flex-direction: column; gap: 5px; align-items: flex-start; z-index: 2; }
.p-card__quick {
  position: absolute; inset-inline: var(--sp-3); bottom: var(--sp-3); z-index: 2;
  height: 34px; background: rgba(13, 21, 33, 0.88); color: var(--white);
  border-radius: var(--r-sm); font-size: var(--fs-sm); font-weight: var(--fw-semibold);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  opacity: 0; transform: translateY(6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.p-card:hover .p-card__quick, .p-card__quick:focus-visible { opacity: 1; transform: none; }
.p-card__quick svg { width: 15px; height: 15px; }
.p-card__wish { position: absolute; top: var(--sp-3); right: var(--sp-3); z-index: 2; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.92); color: var(--ink-500); display: grid; place-items: center; box-shadow: var(--sh-xs); transition: color var(--dur) var(--ease), background var(--dur) var(--ease); }
.p-card__wish:hover { color: var(--danger-500); }
.p-card__wish[aria-pressed="true"] { color: var(--danger-500); }
.p-card__wish svg { width: 16px; height: 16px; }

.p-card__body { padding: var(--sp-4); display: flex; flex-direction: column; flex: 1; gap: var(--sp-2); }
.p-card__brand { font-size: var(--fs-2xs); font-weight: var(--fw-bold); letter-spacing: var(--tracking-caps); text-transform: uppercase; color: var(--ink-400); }
.p-card__name { font-size: var(--fs-base); font-weight: var(--fw-semibold); line-height: 1.35; letter-spacing: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.p-card__name a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.p-card__spec { font-size: var(--fs-xs); color: var(--text-muted); line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.p-card__foot { margin-top: auto; padding-top: var(--sp-2); }
.p-card__price-row { display: flex; align-items: baseline; gap: var(--sp-2); flex-wrap: wrap; }
.p-card__price { font-size: var(--fs-xl); font-weight: var(--fw-bold); letter-spacing: -0.02em; }
.p-card__was { font-size: var(--fs-xs); color: var(--ink-400); text-decoration: line-through; }
.p-card__save { font-size: var(--fs-2xs); font-weight: var(--fw-bold); color: var(--danger-600); }
.p-card__cta { position: relative; z-index: 2; margin-top: var(--sp-3); }

.rating { display: inline-flex; align-items: center; gap: 5px; font-size: var(--fs-xs); color: var(--text-muted); }
.rating__stars { display: inline-flex; gap: 1px; color: #f5a524; }
.rating__stars svg { width: 13px; height: 13px; }

/* ---------- Deals ---------- */
.deals { background: linear-gradient(160deg, var(--navy-900), var(--navy-700)); color: var(--white); }
.deals .section-head h2 { color: var(--white); }
.deals .section-head p { color: rgba(255,255,255,0.66); }
.deal-timer { display: inline-flex; align-items: center; gap: var(--sp-2); padding: var(--sp-2) var(--sp-3); border-radius: var(--r-md); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); font-size: var(--fs-sm); font-variant-numeric: tabular-nums; }
.deal-timer svg { width: 15px; height: 15px; color: #ffb84d; }

/* ---------- Banner CTA ---------- */
.b2b-banner {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: var(--sp-10); align-items: center;
  background: linear-gradient(120deg, #0d2242 0%, #123a6b 100%);
  border-radius: var(--r-xl); padding: var(--sp-10); color: var(--white); overflow: hidden; position: relative;
}
.b2b-banner h2 { font-size: var(--fs-3xl); }
.b2b-banner p { color: rgba(255,255,255,0.74); margin-top: var(--sp-3); font-size: var(--fs-md); }
.b2b-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3) var(--sp-5); margin-top: var(--sp-6); }
.b2b-list li { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-base); color: rgba(255,255,255,0.9); }
.b2b-list svg { width: 16px; height: 16px; color: #4ee0f0; flex: none; }
.b2b-banner__form { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--r-lg); padding: var(--sp-6); }

/* ---------- Brand rail ---------- */
/* Grid rather than space-between: a wrapped final row would otherwise spread
   three chips across the full width with huge gaps between them. */
.brand-rail { display: grid; grid-template-columns: repeat(auto-fit, minmax(124px, 1fr)); gap: var(--sp-3); }
.brand-chip {
  display: inline-flex; align-items: center; justify-content: center;
  height: 46px; padding-inline: var(--sp-5); border-radius: var(--r-md);
  background: var(--white); border: 1px solid var(--border-subtle);
  font-weight: var(--fw-bold); font-size: var(--fs-md); color: var(--ink-500);
  letter-spacing: -0.01em; transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.brand-chip:hover { color: var(--navy-800); border-color: var(--blue-400); transform: translateY(-2px); }

/* ==========================================================================
   Catalog / search results
   ========================================================================== */
.crumbs { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-xs); color: var(--text-muted); padding-block: var(--sp-4); flex-wrap: wrap; }
.crumbs a:hover { color: var(--blue-600); }
.crumbs svg { width: 12px; height: 12px; opacity: 0.6; }

.catalog { display: grid; grid-template-columns: 264px 1fr; gap: var(--sp-8); align-items: start; padding-bottom: var(--sp-16); }

.filters { position: sticky; top: calc(var(--header-h) + var(--sp-4)); background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--r-lg); overflow: hidden; }
.filters__head { display: flex; align-items: center; justify-content: space-between; padding: var(--sp-4); border-bottom: 1px solid var(--border-subtle); }
.filters__head h2 { font-size: var(--fs-md); letter-spacing: 0; }
.filter-group { border-bottom: 1px solid var(--border-subtle); }
.filter-group:last-child { border-bottom: 0; }
.filter-group__btn { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: var(--sp-3) var(--sp-4); font-size: var(--fs-base); font-weight: var(--fw-semibold); text-align: left; }
.filter-group__btn svg { width: 14px; height: 14px; color: var(--ink-400); transition: transform var(--dur) var(--ease); }
.filter-group[data-open="false"] .filter-group__btn svg { transform: rotate(-90deg); }
.filter-group__body { padding: 0 var(--sp-4) var(--sp-4); display: grid; gap: var(--sp-2); max-height: 260px; overflow-y: auto; }
.filter-group[data-open="false"] .filter-group__body { display: none; }
.filter-opt { display: flex; align-items: center; gap: var(--sp-3); font-size: var(--fs-base); color: var(--ink-700); cursor: pointer; padding: 2px 0; }
.filter-opt input { width: 16px; height: 16px; accent-color: var(--blue-600); cursor: pointer; flex: none; }
.filter-opt__count { margin-left: auto; font-size: var(--fs-xs); color: var(--ink-400); }
.filter-opt:hover { color: var(--navy-800); }

.chips { display: flex; align-items: center; gap: var(--sp-2); flex-wrap: wrap; margin-bottom: var(--sp-4); }
.chip { display: inline-flex; align-items: center; gap: 6px; height: 28px; padding-inline: var(--sp-3); background: var(--blue-50); border: 1px solid var(--blue-100); color: var(--blue-700); border-radius: var(--r-pill); font-size: var(--fs-xs); font-weight: var(--fw-semibold); }
.chip button { display: grid; place-items: center; color: inherit; opacity: 0.7; }
.chip button:hover { opacity: 1; }
.chip svg { width: 12px; height: 12px; }

.results-head { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); margin-bottom: var(--sp-5); flex-wrap: wrap; }
.results-head h1 { font-size: var(--fs-2xl); }
.results-head__sub { font-size: var(--fs-sm); color: var(--text-muted); margin-top: var(--sp-1); }
.results-tools { display: flex; align-items: center; gap: var(--sp-3); }
.view-toggle { display: flex; background: var(--ink-100); border-radius: var(--r-md); padding: 3px; gap: 2px; }
.view-toggle button { width: 32px; height: 30px; border-radius: var(--r-sm); display: grid; place-items: center; color: var(--ink-500); }
.view-toggle button[aria-pressed="true"] { background: var(--white); color: var(--navy-800); box-shadow: var(--sh-xs); }
.view-toggle svg { width: 15px; height: 15px; }

.filters-toggle { display: none; }

.empty { text-align: center; padding: var(--sp-16) var(--sp-6); background: var(--white); border: 1px dashed var(--border-default); border-radius: var(--r-lg); }
.empty svg { width: 46px; height: 46px; color: var(--ink-300); margin: 0 auto var(--sp-4); }
.empty h3 { font-size: var(--fs-lg); }
.empty p { color: var(--text-secondary); margin-top: var(--sp-2); }

/* List view */
.product-grid[data-view="list"] { grid-template-columns: 1fr; }
.product-grid[data-view="list"] .p-card { flex-direction: row; }
.product-grid[data-view="list"] .p-card__media { width: 224px; flex: none; aspect-ratio: auto; }
.product-grid[data-view="list"] .p-card__quick { display: none; }
.product-grid[data-view="list"] .p-card__body { flex-direction: row; align-items: flex-start; gap: var(--sp-6); }
.product-grid[data-view="list"] .p-card__info { flex: 1; display: flex; flex-direction: column; gap: var(--sp-2); }
.product-grid[data-view="list"] .p-card__name { -webkit-line-clamp: 2; font-size: var(--fs-md); }
.product-grid[data-view="list"] .p-card__spec { -webkit-line-clamp: 3; }
.product-grid[data-view="list"] .p-card__foot { width: 200px; flex: none; margin-top: 0; padding-top: 0; text-align: right; }
.product-grid[data-view="list"] .p-card__price-row { justify-content: flex-end; }

/* Compare bar */
.compare-bar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: var(--z-drawer);
  background: var(--navy-800); color: var(--white); box-shadow: 0 -8px 24px rgba(6,16,31,0.28);
  transform: translateY(100%); transition: transform var(--dur-slow) var(--ease-out);
}
.compare-bar[data-open="true"] { transform: none; }
/* The bar is fixed, so the page needs room or it sits on top of the footer. */
body:has(.compare-bar[data-open="true"]) { padding-bottom: 92px; }
.compare-bar .container { display: flex; align-items: center; gap: var(--sp-4); padding-block: var(--sp-3); }
.compare-slots { display: flex; gap: var(--sp-3); flex: 1; }
.compare-slot { position: relative; width: 72px; height: 60px; border-radius: var(--r-md); background: var(--white); display: grid; place-items: center; padding: 6px; }
.compare-slot--empty { background: rgba(255,255,255,0.06); border: 1px dashed rgba(255,255,255,0.3); }
.compare-slot__x { position: absolute; top: -6px; right: -6px; width: 20px; height: 20px; border-radius: 50%; background: var(--danger-500); color: var(--white); display: grid; place-items: center; }
.compare-slot__x svg { width: 11px; height: 11px; }

/* ==========================================================================
   Product detail
   ========================================================================== */
.pdp { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--sp-10); align-items: start; }
/* Grid tracks default to min-width:auto, which lets wide content push the page
   wider than the viewport. Every grid child here is allowed to shrink instead. */
.pdp > *, .catalog > *, .cart-layout > *, .checkout-layout > *, .account-layout > * { min-width: 0; }
.gallery { position: sticky; top: calc(var(--header-h) + var(--sp-4)); }
.gallery__main { position: relative; background: linear-gradient(180deg, #fbfcfe, #eaeff6); border: 1px solid var(--border-subtle); border-radius: var(--r-xl); aspect-ratio: 1 / 0.82; display: grid; place-items: center; padding: var(--sp-10); }
.gallery__main svg { width: 100%; height: 100%; }
.gallery__flags { position: absolute; top: var(--sp-4); left: var(--sp-4); display: flex; gap: 6px; }
.gallery__thumbs { display: flex; gap: var(--sp-3); margin-top: var(--sp-3); }
.gallery__thumb { width: 78px; height: 68px; border-radius: var(--r-md); border: 1px solid var(--border-default); background: var(--white); padding: 7px; display: grid; place-items: center; transition: border-color var(--dur) var(--ease); }
.gallery__thumb[aria-pressed="true"] { border-color: var(--blue-600); box-shadow: 0 0 0 1px var(--blue-600); }
.gallery__thumb svg { width: 100%; height: 100%; }

.pdp__brand { font-size: var(--fs-xs); font-weight: var(--fw-bold); letter-spacing: var(--tracking-caps); text-transform: uppercase; color: var(--blue-600); }
.pdp h1 { font-size: var(--fs-3xl); margin-top: var(--sp-2); }
.pdp__meta { display: flex; align-items: center; gap: var(--sp-4); margin-top: var(--sp-3); flex-wrap: wrap; font-size: var(--fs-xs); color: var(--text-muted); }
.pdp__sku { font-family: var(--font-mono); font-size: var(--fs-xs); }

.price-block { margin-top: var(--sp-5); padding: var(--sp-5); background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--r-lg); }
.price-block__row { display: flex; align-items: baseline; gap: var(--sp-3); flex-wrap: wrap; }
.price-block__now { font-size: var(--fs-4xl); font-weight: var(--fw-bold); letter-spacing: -0.03em; }
.price-block__was { font-size: var(--fs-md); color: var(--ink-400); text-decoration: line-through; }
.price-block__save { padding: 3px var(--sp-2); border-radius: var(--r-xs); background: var(--danger-100); color: var(--danger-600); font-size: var(--fs-xs); font-weight: var(--fw-bold); }
.price-block__tax { font-size: var(--fs-xs); color: var(--text-muted); margin-top: 4px; }
.price-block__b2b { margin-top: var(--sp-3); padding: var(--sp-3); border-radius: var(--r-md); background: var(--blue-50); border: 1px solid var(--blue-100); font-size: var(--fs-xs); color: var(--blue-700); display: flex; gap: var(--sp-2); align-items: flex-start; }
.price-block__b2b svg { width: 15px; height: 15px; flex: none; margin-top: 1px; }

.avail { display: flex; gap: var(--sp-5); margin-top: var(--sp-4); padding-top: var(--sp-4); border-top: 1px solid var(--border-subtle); flex-wrap: wrap; }
.avail__item { display: flex; align-items: flex-start; gap: var(--sp-2); font-size: var(--fs-xs); color: var(--text-secondary); }
/* Tinted chip, not a bare outline: at 15px the hexagon glyph loses its
   corners and sits beside a label looking exactly like an unselected
   radio button, which invites a click that does nothing. */
.avail__item > svg { width: 15px; height: 15px; color: var(--accent); flex: none;
  box-sizing: content-box; padding: 5px; border-radius: 8px;
  background: var(--accent-soft); }
.avail__item strong { display: block; color: var(--ink-800); font-size: var(--fs-sm); }

.buy-row { display: flex; gap: var(--sp-3); margin-top: var(--sp-4); }
.qty { display: flex; align-items: center; height: 48px; border: 1px solid var(--border-default); border-radius: var(--r-md); background: var(--white); flex: none; }
.qty button { width: 40px; height: 100%; display: grid; place-items: center; color: var(--ink-600); }
.qty button:hover { color: var(--navy-800); background: var(--ink-100); }
.qty button:first-child { border-radius: var(--r-md) 0 0 var(--r-md); }
.qty button:last-child { border-radius: 0 var(--r-md) var(--r-md) 0; }
.qty svg { width: 14px; height: 14px; }
.qty input { width: 44px; height: 100%; text-align: center; border: 0; border-inline: 1px solid var(--border-subtle); background: none; font-weight: var(--fw-semibold); outline: none; }

.pdp__secondary { display: flex; gap: var(--sp-3); margin-top: var(--sp-3); }
.pdp__secondary .btn { flex: 1; }

.spec-quick { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-1) var(--sp-5); margin-top: var(--sp-5); padding: var(--sp-4) var(--sp-5); background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--r-lg); }
.spec-quick__item { display: flex; justify-content: space-between; gap: var(--sp-3); padding-block: 6px; border-bottom: 1px solid var(--ink-100); font-size: var(--fs-sm); }
.spec-quick__item dt { color: var(--text-muted); }
.spec-quick__item dd { font-weight: var(--fw-semibold); text-align: right; }

.tabs { margin-top: var(--sp-16); }
.tabs__list { display: flex; gap: var(--sp-1); border-bottom: 1px solid var(--border-default); overflow-x: auto; }
.tabs__btn {
  padding: var(--sp-3) var(--sp-5); font-size: var(--fs-md); font-weight: var(--fw-semibold);
  color: var(--text-muted); border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.tabs__btn:hover { color: var(--ink-800); }
.tabs__btn[aria-selected="true"] { color: var(--blue-700); border-bottom-color: var(--blue-600); }
.tabs__panel { padding-top: var(--sp-8); display: none; }
.tabs__panel[data-active="true"] { display: block; animation: fadeUp var(--dur-slow) var(--ease-out); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.prose { max-width: 76ch; color: var(--text-secondary); line-height: 1.7; }
.prose p + p { margin-top: var(--sp-4); }
/* Long policy and terms pages are authored as headings and paragraphs, so the
   space above a heading is what makes them scannable. `:first-child` keeps the
   opening heading of a page from pushing itself away from the title. */
.prose h2 {
  font-size: var(--fs-xl); color: var(--text-primary);
  margin-top: var(--sp-8); margin-bottom: var(--sp-3); line-height: 1.3;
}
.prose h3 {
  font-size: var(--fs-lg); color: var(--text-primary);
  margin-top: var(--sp-6); margin-bottom: var(--sp-3);
}
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul + h2, .prose p + h2 { margin-top: var(--sp-8); }
/* Two kinds of list live in .prose: hand-written ones where each row carries a
   tick icon, and plain ones produced from page content the client types. The
   flex rule was written for the first and silently removed the bullet from the
   second, leaving editor lists as bare indented sentences. */
.prose ul { display: grid; gap: var(--sp-2); margin-top: var(--sp-4);
  padding-left: 1.3em; list-style: disc outside; }
.prose li { display: list-item; }
.prose li::marker { color: var(--ink-400); }
/* Icon rows opt out of the marker and lay out as flex instead. */
.prose ul:has(svg) { padding-left: 0; list-style: none; }
.prose li:has(svg) { display: flex; gap: var(--sp-3); list-style: none; }
.prose li svg { width: 17px; height: 17px; color: var(--success-500); flex: none; margin-top: 3px; }

/* A list butting straight into the paragraph that follows it reads as part of
   the last bullet. */
.prose ul + p, .prose ul + ul { margin-top: var(--sp-4); }
.prose ul + h3, .prose p + h3 { margin-top: var(--sp-6); }

.spec-table { background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--r-lg); overflow: hidden; }
.spec-table tr:nth-child(even) { background: var(--ink-50); }
.spec-table th, .spec-table td { padding: var(--sp-3) var(--sp-5); text-align: left; font-size: var(--fs-base); }
.spec-table th { width: 260px; color: var(--text-muted); font-weight: var(--fw-medium); }
.spec-table td { font-weight: var(--fw-medium); }

.reviews { display: grid; grid-template-columns: 280px 1fr; gap: var(--sp-10); }
.review-summary { text-align: center; padding: var(--sp-6); background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--r-lg); }
.review-summary__score { font-size: var(--fs-4xl); font-weight: var(--fw-bold); }
.review-bar { display: flex; align-items: center; gap: var(--sp-3); font-size: var(--fs-xs); color: var(--text-muted); margin-top: var(--sp-2); }
.review-bar__track { flex: 1; height: 6px; background: var(--ink-100); border-radius: var(--r-pill); overflow: hidden; }
.review-bar__fill { height: 100%; background: #f5a524; border-radius: var(--r-pill); }
.review { padding: var(--sp-5) 0; border-bottom: 1px solid var(--border-subtle); }
.review__head { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-2); }
.review__avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--blue-100); color: var(--blue-700); display: grid; place-items: center; font-size: var(--fs-xs); font-weight: var(--fw-bold); }
.review__name { font-size: var(--fs-base); font-weight: var(--fw-semibold); }
.review__date { font-size: var(--fs-xs); color: var(--text-muted); }
.review__verified { font-size: var(--fs-2xs); color: var(--success-600); font-weight: var(--fw-semibold); display: inline-flex; align-items: center; gap: 3px; }
.review__verified svg { width: 12px; height: 12px; }

/* ==========================================================================
   Compare table
   ========================================================================== */
.compare-wrap { overflow-x: auto; background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--r-lg); }
/* Fixed layout keeps every product column the same width, so the headers and
   Add to Cart buttons line up instead of sizing to their longest product name. */
.compare-table { min-width: 760px; table-layout: fixed; }
.compare-table thead th:not(:first-child) { width: 26%; }
.compare-table th, .compare-table td { padding: var(--sp-4); border-bottom: 1px solid var(--border-subtle); text-align: left; vertical-align: top; font-size: var(--fs-base); }
.compare-table thead th { position: sticky; top: 0; background: var(--white); z-index: 2; }
.compare-table tbody th { width: 190px; color: var(--text-muted); font-weight: var(--fw-medium); background: var(--ink-50); }
.compare-table td { font-weight: var(--fw-medium); }
.compare-head__art { height: 92px; display: grid; place-items: center; margin-bottom: var(--sp-3); }
.compare-head__art svg { height: 100%; }
.compare-best { display: inline-flex; align-items: center; gap: 4px; font-size: var(--fs-2xs); font-weight: var(--fw-bold); color: var(--success-600); text-transform: uppercase; letter-spacing: var(--tracking-wide); }
.compare-best svg { width: 12px; height: 12px; }

/* ==========================================================================
   Cart
   ========================================================================== */
.cart-layout { display: grid; grid-template-columns: 1fr 372px; gap: var(--sp-8); align-items: start; }
.cart-line { display: grid; grid-template-columns: 108px 1fr auto; gap: var(--sp-4); padding: var(--sp-5); border-bottom: 1px solid var(--border-subtle); }
.cart-line:last-child { border-bottom: 0; }
.cart-line__media { background: var(--ink-50); border-radius: var(--r-md); padding: var(--sp-2); display: grid; place-items: center; border: 1px solid var(--border-subtle); }
.cart-line__name { font-size: var(--fs-md); font-weight: var(--fw-semibold); }
.cart-line__name:hover { color: var(--blue-600); }
.cart-line__meta { font-size: var(--fs-xs); color: var(--text-muted); margin-top: 3px; }
.cart-line__actions { display: flex; align-items: center; gap: var(--sp-4); margin-top: var(--sp-3); }
.cart-line__right { text-align: right; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; }
.cart-line__total { font-size: var(--fs-lg); font-weight: var(--fw-bold); }
.cart-line__each { font-size: var(--fs-xs); color: var(--text-muted); }
.qty--sm { height: 34px; }
.qty--sm button { width: 30px; }
.qty--sm input { width: 38px; font-size: var(--fs-sm); }
.text-btn { font-size: var(--fs-xs); color: var(--text-muted); font-weight: var(--fw-medium); display: inline-flex; align-items: center; gap: 4px; }
.text-btn:hover { color: var(--danger-600); }
.text-btn svg { width: 13px; height: 13px; }

.summary { position: sticky; top: calc(var(--header-h) + var(--sp-4)); }
.summary__row { display: flex; justify-content: space-between; gap: var(--sp-4); padding-block: var(--sp-2); font-size: var(--fs-base); color: var(--text-secondary); }
.summary__row strong { color: var(--text-primary); font-weight: var(--fw-semibold); }
.summary__total { display: flex; justify-content: space-between; align-items: baseline; margin-top: var(--sp-3); padding-top: var(--sp-4); border-top: 1px solid var(--border-default); }
.summary__total span { font-size: var(--fs-md); font-weight: var(--fw-semibold); }
.summary__total strong { font-size: var(--fs-2xl); font-weight: var(--fw-bold); letter-spacing: -0.02em; }
.summary__secure { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: var(--sp-4); font-size: var(--fs-xs); color: var(--text-muted); }
.summary__secure svg { width: 14px; height: 14px; color: var(--success-500); }
.pay-marks { display: flex; align-items: center; justify-content: center; gap: var(--sp-2); margin-top: var(--sp-3); }
.pay-mark { height: 24px; padding-inline: var(--sp-2); border: 1px solid var(--border-default); border-radius: var(--r-xs); display: grid; place-items: center; font-size: 9px; font-weight: var(--fw-bold); color: var(--ink-500); letter-spacing: var(--tracking-wide); background: var(--white); }

.addon-row { display: flex; align-items: center; gap: var(--sp-3); padding: var(--sp-3); border: 1px solid var(--border-subtle); border-radius: var(--r-md); }
.addon-row + .addon-row { margin-top: var(--sp-2); }
.addon-row__art { width: 48px; height: 48px; background: var(--ink-50); border-radius: var(--r-sm); padding: 4px; flex: none; }
.addon-row__name { font-size: var(--fs-sm); font-weight: var(--fw-semibold); }
.addon-row__price { font-size: var(--fs-sm); color: var(--text-muted); }

/* Cart drawer */
.drawer { position: fixed; inset: 0; z-index: var(--z-drawer); visibility: hidden; }
.drawer[data-open="true"] { visibility: visible; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(6,16,31,0.45); opacity: 0; transition: opacity var(--dur) var(--ease); }
.drawer[data-open="true"] .drawer__scrim { opacity: 1; }
.drawer__panel {
  position: absolute; inset-block: 0; right: 0; width: min(430px, 94vw);
  background: var(--bg-page); box-shadow: var(--sh-xl); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform var(--dur-slow) var(--ease-out);
}
.drawer[data-open="true"] .drawer__panel { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: var(--sp-4) var(--sp-5); background: var(--white); border-bottom: 1px solid var(--border-subtle); }
.drawer__head h2 { font-size: var(--fs-lg); }
.drawer__body { flex: 1; overflow-y: auto; padding: var(--sp-4); }
.drawer__foot { padding: var(--sp-5); background: var(--white); border-top: 1px solid var(--border-subtle); }
.drawer-line { display: grid; grid-template-columns: 64px 1fr; gap: var(--sp-3); padding: var(--sp-3); background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--r-md); }
.drawer-line + .drawer-line { margin-top: var(--sp-2); }
.drawer-line__media { background: var(--ink-50); border-radius: var(--r-sm); padding: 5px; display: grid; place-items: center; }
.drawer-line__name { font-size: var(--fs-sm); font-weight: var(--fw-semibold); line-height: 1.35; }
.drawer-line__row { display: flex; align-items: center; justify-content: space-between; margin-top: var(--sp-2); }

/* ==========================================================================
   Checkout
   ========================================================================== */
.checkout-header { background: var(--white); border-bottom: 1px solid var(--border-subtle); }
.checkout-header .container { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: var(--sp-6); }
.checkout-secure { display: inline-flex; align-items: center; gap: 6px; font-size: var(--fs-xs); color: var(--success-600); font-weight: var(--fw-semibold); }
.checkout-secure svg { width: 15px; height: 15px; }

.steps { display: flex; align-items: center; gap: var(--sp-2); margin-block: var(--sp-8); }
.step { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-sm); color: var(--text-muted); font-weight: var(--fw-medium); }
.step__num { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--ink-150); color: var(--ink-500); font-size: var(--fs-xs); font-weight: var(--fw-bold); flex: none; transition: background var(--dur) var(--ease), color var(--dur) var(--ease); }
.step[data-state="active"] { color: var(--navy-800); font-weight: var(--fw-semibold); }
.step[data-state="active"] .step__num { background: var(--blue-600); color: var(--white); }
.step[data-state="done"] { color: var(--success-600); }
.step[data-state="done"] .step__num { background: var(--success-500); color: var(--white); }
.step__line { flex: 1; height: 1px; background: var(--border-default); min-width: 14px; }
.step__num svg { width: 13px; height: 13px; }

.checkout-layout { display: grid; grid-template-columns: 1fr 372px; gap: var(--sp-8); align-items: start; padding-bottom: var(--sp-16); }
.pay-option { display: flex; align-items: center; gap: var(--sp-3); padding: var(--sp-4); border: 1px solid var(--border-default); border-radius: var(--r-md); cursor: pointer; transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease); }
.pay-option + .pay-option { margin-top: var(--sp-3); }
.pay-option:hover { border-color: var(--blue-400); }
.pay-option input { accent-color: var(--blue-600); width: 17px; height: 17px; }
.pay-option[data-selected="true"] { border-color: var(--blue-600); background: var(--blue-50); }
.pay-option__label { display: block; font-weight: var(--fw-semibold); font-size: var(--fs-base); }
.pay-option__desc { display: block; font-size: var(--fs-xs); color: var(--text-muted); margin-top: 2px; }
.pay-fields { margin-top: var(--sp-4); padding: var(--sp-4); background: var(--ink-50); border: 1px dashed var(--border-default); border-radius: var(--r-md); }

.demo-note {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4); border-radius: var(--r-md);
  background: var(--warn-100); border: 1px solid #f5dcae; color: #7a4d00;
  font-size: var(--fs-xs); line-height: 1.5;
}
.demo-note svg { width: 16px; height: 16px; flex: none; margin-top: 1px; }
.demo-note strong { font-weight: var(--fw-bold); }

.review-block { padding: var(--sp-4); border: 1px solid var(--border-subtle); border-radius: var(--r-md); }
.review-block + .review-block { margin-top: var(--sp-3); }
.review-block__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sp-2); }
.review-block__head h4 { font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: var(--tracking-caps); color: var(--text-muted); font-weight: var(--fw-bold); }
.review-block p { font-size: var(--fs-base); line-height: 1.55; }

/* ==========================================================================
   Confirmation / tracking
   ========================================================================== */
.confirm-hero { text-align: center; padding-block: var(--sp-16) var(--sp-10); }
.confirm-check {
  width: 74px; height: 74px; margin: 0 auto var(--sp-5); border-radius: 50%;
  background: var(--success-100); color: var(--success-600); display: grid; place-items: center;
  animation: pop 520ms var(--ease-out);
}
.confirm-check svg { width: 36px; height: 36px; }
@keyframes pop { 0% { transform: scale(0.4); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
.confirm-hero h1 { font-size: var(--fs-4xl); }
.confirm-hero p { color: var(--text-secondary); font-size: var(--fs-lg); margin-top: var(--sp-3); }
.order-num { display: inline-flex; align-items: center; gap: var(--sp-2); margin-top: var(--sp-5); padding: var(--sp-3) var(--sp-5); background: var(--white); border: 1px solid var(--border-default); border-radius: var(--r-md); font-family: var(--font-mono); font-size: var(--fs-lg); font-weight: var(--fw-bold); }

.timeline { display: grid; gap: 0; }
.tl-step { display: grid; grid-template-columns: 32px 1fr; gap: var(--sp-4); position: relative; padding-bottom: var(--sp-6); }
.tl-step:last-child { padding-bottom: 0; }
.tl-step::before { content: ""; position: absolute; left: 15px; top: 26px; bottom: 0; width: 2px; background: var(--border-default); }
.tl-step:last-child::before { display: none; }
.tl-step__dot { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--white); border: 2px solid var(--border-default); color: var(--ink-300); z-index: 1; }
.tl-step__dot svg { width: 15px; height: 15px; }
.tl-step__title { font-size: var(--fs-md); font-weight: var(--fw-semibold); color: var(--ink-400); }
.tl-step__meta { font-size: var(--fs-xs); color: var(--text-muted); margin-top: 2px; }
.tl-step[data-state="done"] .tl-step__dot { background: var(--success-500); border-color: var(--success-500); color: var(--white); }
.tl-step[data-state="done"]::before { background: var(--success-500); }
.tl-step[data-state="done"] .tl-step__title { color: var(--text-primary); }
.tl-step[data-state="current"] .tl-step__dot { background: var(--blue-600); border-color: var(--blue-600); color: var(--white); box-shadow: 0 0 0 5px var(--blue-100); animation: pulseDot 2.2s var(--ease) infinite; }
.tl-step[data-state="current"] .tl-step__title { color: var(--blue-700); font-weight: var(--fw-bold); }
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 5px var(--blue-100); } 50% { box-shadow: 0 0 0 9px rgba(43,110,240,0.10); } }

/* ==========================================================================
   Account
   ========================================================================== */
.account-layout { display: grid; grid-template-columns: 248px 1fr; gap: var(--sp-8); align-items: start; padding-bottom: var(--sp-16); }
.account-nav { background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--r-lg); padding: var(--sp-3); position: sticky; top: calc(var(--header-h) + var(--sp-4)); }
.account-nav__link { display: flex; align-items: center; gap: var(--sp-3); padding: var(--sp-3); border-radius: var(--r-md); font-size: var(--fs-base); font-weight: var(--fw-medium); color: var(--ink-700); transition: background var(--dur) var(--ease), color var(--dur) var(--ease); }
.account-nav__link:hover { background: var(--ink-100); }
.account-nav__link[aria-current="page"] { background: var(--blue-50); color: var(--blue-700); font-weight: var(--fw-semibold); }
.account-nav__link svg { width: 17px; height: 17px; }
.account-user { display: flex; align-items: center; gap: var(--sp-3); padding: var(--sp-3); margin-bottom: var(--sp-2); border-bottom: 1px solid var(--border-subtle); }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy-700); color: var(--white); display: grid; place-items: center; font-weight: var(--fw-bold); font-size: var(--fs-sm); flex: none; }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
.stat { background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--r-lg); padding: var(--sp-4) var(--sp-5); }
.stat__label { font-size: var(--fs-xs); color: var(--text-muted); font-weight: var(--fw-medium); }
.stat__value { font-size: var(--fs-2xl); font-weight: var(--fw-bold); letter-spacing: -0.02em; margin-top: 4px; }
.stat__delta { font-size: var(--fs-xs); font-weight: var(--fw-semibold); display: inline-flex; align-items: center; gap: 3px; margin-top: 4px; }
.stat__delta--up { color: var(--success-600); }
.stat__delta--down { color: var(--danger-600); }
.stat__delta svg { width: 12px; height: 12px; }

.order-row { display: flex; align-items: center; gap: var(--sp-4); padding: var(--sp-4) var(--sp-5); border-bottom: 1px solid var(--border-subtle); }
.order-row:last-child { border-bottom: 0; }
.order-row__id { font-family: var(--font-mono); font-size: var(--fs-sm); font-weight: var(--fw-bold); }
.order-row__date { font-size: var(--fs-xs); color: var(--text-muted); }
.order-row__thumbs { display: flex; gap: 6px; }
.order-row__thumb { width: 44px; height: 40px; background: var(--ink-50); border: 1px solid var(--border-subtle); border-radius: var(--r-sm); padding: 4px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.62); margin-top: auto; }
.footer-top { padding-block: var(--sp-16) var(--sp-10); display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: var(--sp-8); }
.footer-col h4 { font-size: var(--fs-sm); color: var(--white); text-transform: uppercase; letter-spacing: var(--tracking-caps); margin-bottom: var(--sp-4); font-weight: var(--fw-bold); }
.footer-col li + li { margin-top: var(--sp-2); }
.footer-col a { font-size: var(--fs-base); transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-brand p { font-size: var(--fs-base); line-height: 1.65; margin-top: var(--sp-4); max-width: 34ch; }
.footer-contact { margin-top: var(--sp-4); display: grid; gap: var(--sp-2); font-size: var(--fs-sm); }
.footer-contact div { display: flex; align-items: center; gap: var(--sp-2); }
.footer-contact svg { width: 15px; height: 15px; opacity: 0.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: var(--sp-5); display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); flex-wrap: wrap; font-size: var(--fs-xs); }
.footer-newsletter { display: flex; gap: var(--sp-2); margin-top: var(--sp-4); }
.footer-newsletter .input { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.18); color: var(--white); }
.footer-newsletter .input::placeholder { color: rgba(255,255,255,0.42); }

/* ==========================================================================
   Toast
   ========================================================================== */
.toast-stack { position: fixed; right: var(--sp-5); bottom: var(--sp-5); z-index: var(--z-toast); display: flex; flex-direction: column; gap: var(--sp-3); pointer-events: none; }
.toast {
  display: flex; align-items: flex-start; gap: var(--sp-3); width: min(370px, calc(100vw - 40px));
  padding: var(--sp-4); background: var(--white); border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--blue-600); border-radius: var(--r-md); box-shadow: var(--sh-lg);
  pointer-events: auto; animation: toastIn var(--dur-slow) var(--ease-out);
}
.toast[data-leaving="true"] { animation: toastOut var(--dur) var(--ease) forwards; }
@keyframes toastIn { from { opacity: 0; transform: translateX(24px) scale(0.98); } to { opacity: 1; transform: none; } }
@keyframes toastOut { to { opacity: 0; transform: translateX(24px); } }
.toast--success { border-left-color: var(--success-500); }
.toast--warn { border-left-color: var(--warn-500); }
.toast__icon { width: 20px; height: 20px; flex: none; color: var(--blue-600); }
.toast--success .toast__icon { color: var(--success-500); }
.toast--warn .toast__icon { color: var(--warn-500); }
.toast__title { font-size: var(--fs-base); font-weight: var(--fw-semibold); }
.toast__msg { font-size: var(--fs-xs); color: var(--text-secondary); margin-top: 2px; line-height: 1.45; }
.toast__close { color: var(--ink-400); flex: none; }
.toast__close svg { width: 14px; height: 14px; }
.toast__art { width: 44px; height: 44px; background: var(--ink-50); border-radius: var(--r-sm); padding: 4px; flex: none; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: var(--z-modal); display: none; place-items: center; padding: var(--sp-5); }
.modal[data-open="true"] { display: grid; }
.modal__scrim { position: absolute; inset: 0; background: rgba(6,16,31,0.55); }
.modal__panel { position: relative; width: min(880px, 100%); max-height: 88vh; overflow-y: auto; background: var(--white); border-radius: var(--r-xl); box-shadow: var(--sh-xl); animation: modalIn var(--dur-slow) var(--ease-out); }
@keyframes modalIn { from { opacity: 0; transform: translateY(14px) scale(0.985); } to { opacity: 1; transform: none; } }
.modal__close { position: absolute; top: var(--sp-4); right: var(--sp-4); z-index: 2; }

/* ---------- Page shell ---------- */
.page { min-height: 100vh; display: flex; flex-direction: column; }
.page > main { flex: 1; }
.page-head { background: var(--white); border-bottom: 1px solid var(--border-subtle); padding-block: var(--sp-8); }
.page-head h1 { font-size: var(--fs-3xl); }
.page-head p { color: var(--text-secondary); margin-top: var(--sp-2); }

/* ---------- Demo ribbon ---------- */
.demo-ribbon {
  background: linear-gradient(90deg, #0d2242, #1b3f73);
  color: rgba(255,255,255,0.9); font-size: var(--fs-2xs); text-align: center;
  padding: 5px var(--sp-4); letter-spacing: var(--tracking-wide);
}
.demo-ribbon strong { color: #7fd8e8; }
.demo-ribbon a { text-decoration: underline; text-underline-offset: 2px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1180px) {
  .hero .container { grid-template-columns: 1fr; padding-block: var(--sp-16); }
  .hero__visual { max-width: 520px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 1024px) {
  :root { --header-h: 76px; }
  .header-main .container { height: 64px; gap: var(--sp-4); }
  .nav-bar, .utility-bar { display: none; }
  .burger { display: inline-flex; }
  .search { order: 3; flex-basis: 100%; max-width: none; margin-bottom: var(--sp-3); }
  .header-main .container { flex-wrap: wrap; height: auto; padding-top: var(--sp-3); }
  .catalog { grid-template-columns: 1fr; }
  .filters { position: static; display: none; }
  .filters[data-open="true"] { display: block; }
  .filters-toggle { display: inline-flex; }
  .pdp { grid-template-columns: 1fr; gap: var(--sp-8); }
  .gallery { position: static; }
  .cart-layout, .checkout-layout, .account-layout { grid-template-columns: 1fr; }
  .summary, .account-nav { position: static; }
  .b2b-banner { grid-template-columns: 1fr; padding: var(--sp-6); }
  .reviews { grid-template-columns: 1fr; gap: var(--sp-6); }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .trust-strip .container { grid-template-columns: 1fr 1fr; }
  .account-nav { display: flex; overflow-x: auto; gap: var(--sp-2); }
  .account-nav__link { white-space: nowrap; }
  .account-user { display: none; }
}

@media (max-width: 720px) {
  .container { padding-inline: var(--sp-4); }
  .section { padding-block: var(--sp-10); }
  .hero h1 { font-size: var(--fs-3xl); }
  .hero p { font-size: var(--fs-md); }
  .hero__stats { gap: var(--sp-5); }
  .product-grid, .product-grid--3 { grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .p-card__body { padding: var(--sp-3); }
  .p-card__price { font-size: var(--fs-lg); }
  .p-card__quick { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .footer-brand { grid-column: 1 / -1; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .trust-strip .container { grid-template-columns: 1fr; gap: var(--sp-4); }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2 .field + .field { margin-top: var(--sp-4); }
  .spec-quick { grid-template-columns: 1fr; }
  .confirm-hero h1 { font-size: var(--fs-2xl); }
  .price-block__now { font-size: var(--fs-3xl); }
  .buy-row { flex-wrap: wrap; }
  .buy-row .btn { flex: 1 1 100%; }
  .pdp__secondary { display: grid; grid-template-columns: 1fr 1fr; }
  .pdp__secondary .btn:first-child { grid-column: 1 / -1; }
  .avail { gap: var(--sp-3); }
  .cart-line { grid-template-columns: 76px 1fr; }
  .cart-line__right { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
  .steps { overflow-x: auto; padding-bottom: var(--sp-2); }
  .step span:not(.step__num) { display: none; }
  .step[data-state="active"] span:not(.step__num) { display: inline; }
  .product-grid[data-view="list"] .p-card { flex-direction: column; }
  .product-grid[data-view="list"] .p-card__media { width: auto; }
  .product-grid[data-view="list"] .p-card__body { flex-direction: column; }
  .product-grid[data-view="list"] .p-card__foot { width: auto; text-align: left; }
  .product-grid[data-view="list"] .p-card__price-row { justify-content: flex-start; }
  .toast-stack { right: var(--sp-3); left: var(--sp-3); bottom: var(--sp-3); }
  .compare-bar .container { flex-wrap: wrap; }
}

@media print {
  .site-header, .site-footer, .toast-stack, .compare-bar, .demo-ribbon, .no-print { display: none !important; }
  body { background: #fff; }
}

/* ---------------------------------------------------------------- typeahead */
/* Extends the mockup's .suggest styles for the live search dropdown. */
.suggest { max-height: min(70vh, 520px); overflow-y: auto; z-index: var(--z-header); }
.suggest__item { text-decoration: none; color: inherit; }
.suggest__name { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.suggest__meta { display: block; font-family: var(--font-mono); }
.suggest__badge {
  display: inline-block; margin-right: 6px; padding: 1px 6px; border-radius: var(--r-pill);
  background: var(--brand-50); color: var(--brand-700);
  font-size: 9.5px; font-weight: var(--fw-bold); letter-spacing: var(--tracking-wide);
  text-transform: uppercase; vertical-align: 1px;
}
.suggest__stock { margin-left: auto; flex: none; font-size: var(--fs-xs); }
.suggest__empty { padding: var(--sp-5) var(--sp-4) var(--sp-3); text-align: center; }
.suggest__empty strong { display: block; font-size: var(--fs-base); }
.suggest__empty span {
  display: block; margin-top: 4px; margin-bottom: var(--sp-3);
  font-size: var(--fs-xs); color: var(--text-secondary);
}
.suggest__all { text-decoration: none; }
@media (max-width: 720px) {
  .suggest__stock { display: none; }
}
