/* Base layer: reset, typography, layout primitives, core components.

   Every directional property here is logical (margin-inline-*, inset-inline-*,
   text-align: start/end). A physical `left`/`right` in this file is a bug —
   it will look correct in Hebrew and break in English, or the reverse. */

/* ── Reset ─────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 600;
  line-height: var(--lh-tight);
  color: var(--ink);
}

h1 { font-size: var(--t-h1); }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); line-height: var(--lh-snug); }

p { margin: 0 0 var(--s-4); }
p:last-child { margin-bottom: 0; }

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color var(--dur-fast) var(--ease-out);
}
a:hover { color: var(--brand-hover); }

img, picture, svg, video { max-width: 100%; display: block; }
img { height: auto; }

ul, ol { margin: 0 0 var(--s-4); padding-inline-start: var(--s-5); }

button, input, select, textarea { font: inherit; color: inherit; }

/* Prices, SKUs, quantities and the spec table. Without tabular figures the
   columns jitter as digits change width. */
.num, .price, td.num, .spec-table td { font-variant-numeric: tabular-nums; }

/* ── Focus: one rule, everywhere ───────────────────────────────────── */

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

/* ── Motion ────────────────────────────────────────────────────────── */

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

/* ── Layout ────────────────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s-4);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--s-6); }
}

.stack > * + * { margin-block-start: var(--s-4); }

.section { padding-block: var(--s-12); }
@media (min-width: 768px) {
  .section { padding-block: var(--s-16); }
}

.section__head {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  align-items: baseline;
  justify-content: space-between;
  margin-block-end: var(--s-6);
}

/* Long-form copy stays readable on wide screens. */
.prose { max-width: 65ch; }
.prose h2 { margin-block: var(--s-8) var(--s-3); }
.prose h3 { margin-block: var(--s-6) var(--s-2); }

/* ── Skip link ─────────────────────────────────────────────────────── */

.skip-link {
  position: absolute;
  inset-block-start: -100%;
  inset-inline-start: var(--s-4);
  z-index: calc(var(--z-header) + 1);
  padding: var(--s-3) var(--s-4);
  background: var(--surface);
  border: 2px solid var(--brand);
  border-radius: var(--r-md);
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  inset-block-start: var(--s-3);
}

/* ── Header ────────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: var(--z-header);
  background: var(--surface);
  border-block-end: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  min-height: var(--header-h);
}

.site-header__brand {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.site-nav {
  display: none;
  gap: var(--s-5);
  margin-inline-start: var(--s-6);
}
@media (min-width: 900px) {
  .site-nav { display: flex; }
}

.site-nav__link {
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 500;
  padding-block: var(--s-2);
  border-block-end: 2px solid transparent;
}
.site-nav__link:hover { color: var(--brand); }
.site-nav__link[aria-current="page"] {
  color: var(--brand);
  border-block-end-color: var(--brand);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  margin-inline-start: auto;
}

/* ── Buttons ───────────────────────────────────────────────────────── */

.btn {
  --btn-bg: var(--surface);
  --btn-fg: var(--ink);
  --btn-border: var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 44px;
  padding-inline: var(--s-5);
  border: 1px solid var(--btn-border);
  border-radius: var(--r-md);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
}

/* 48px on touch — comfortably past the 44px minimum with a glove on. */
@media (max-width: 767px) {
  .btn { min-height: 48px; }
}

.btn--primary {
  --btn-bg: var(--accent);
  --btn-fg: var(--on-accent);
  --btn-border: var(--accent);
}
.btn--primary:hover { --btn-bg: var(--accent-hover); --btn-border: var(--accent-hover); }
.btn--primary:active { --btn-bg: var(--accent-active); }

.btn--brand {
  --btn-bg: var(--brand);
  --btn-fg: var(--on-brand);
  --btn-border: var(--brand);
}
.btn--brand:hover { --btn-bg: var(--brand-hover); --btn-border: var(--brand-hover); }

.btn--secondary:hover { --btn-bg: var(--canvas-2); }

.btn--ghost { --btn-border: transparent; }
.btn--ghost:hover { --btn-bg: var(--canvas-2); }

.btn--danger { --btn-fg: var(--danger); --btn-border: var(--danger); }
.btn--danger:hover { --btn-bg: var(--danger-tint); }

.btn[disabled],
.btn[aria-disabled="true"] {
  opacity: .45;
  cursor: not-allowed;
  pointer-events: none;
}

/* The label is replaced by a spinner at the button's measured width, so a
   submitting form never reflows the page around it. */
.btn[data-loading="true"] { color: transparent; position: relative; }
.btn[data-loading="true"]::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid currentcolor;
  border-block-start-color: transparent;
  border-radius: var(--r-full);
  color: var(--btn-fg);
  animation: spin .7s linear infinite;
}

@keyframes spin { to { transform: rotate(1turn); } }

/* ── Cards ─────────────────────────────────────────────────────────── */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--e-1);
  /* No translateY on hover: it nudges neighbouring cards and reads as
     jitter when a trackpad drifts across a grid. */
  transition:
    box-shadow var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-out);
}
.card:hover { box-shadow: var(--e-2); border-color: var(--line-strong); }

.card__body { padding: var(--s-5); }

/* ── Forms ─────────────────────────────────────────────────────────── */

.field { margin-block-end: var(--s-4); }

.field__label {
  display: block;
  margin-block-end: var(--s-2);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--ink-2);
}
.field__label .req { color: var(--danger); margin-inline-start: 2px; }

.input,
.select,
.textarea {
  width: 100%;
  min-height: 44px;
  padding: var(--s-2) var(--s-3);
  /* 16px exactly — anything smaller makes iOS Safari zoom on focus. */
  font-size: var(--t-body);
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  transition:
    border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
}
.textarea { min-height: 120px; padding-block: var(--s-3); resize: vertical; }

.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgb(31 95 209 / .15);
}

.field--error .input,
.field--error .select,
.field--error .textarea { border-color: var(--danger); }

.field__hint { margin-block-start: var(--s-2); font-size: var(--t-sm); color: var(--muted); }
.field__error {
  margin-block-start: var(--s-2);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--danger);
}

/* ── Badges ────────────────────────────────────────────────────────── */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  padding: var(--s-1) var(--s-3);
  border-radius: var(--r-full);
  font-size: var(--t-xs);
  font-weight: 600;
  line-height: 1.4;
}
.badge--success { background: var(--success-tint); color: var(--success-ink); }
.badge--danger  { background: var(--danger-tint);  color: var(--danger); }
.badge--accent  { background: var(--accent-tint);  color: var(--accent-ink); }
.badge--brand   { background: var(--brand-tint);   color: var(--brand-active); }
.badge--warn    { background: var(--warn-tint);    color: var(--warn); }

/* ── Price ─────────────────────────────────────────────────────────── */

.price { font-family: var(--font-num); font-weight: 600; color: var(--accent-ink); }
.price--lg { font-size: var(--t-h2); }
.price__was {
  margin-inline-start: var(--s-2);
  color: var(--muted);
  font-weight: 400;
  text-decoration: line-through;
}
.price__vat { font-size: var(--t-sm); font-weight: 400; color: var(--muted); }

/* ── Colour swatch ─────────────────────────────────────────────────── */

/* The disc's colours arrive as custom properties set on the element by a
   nonce'd <style> block, never as an inline style attribute — CSP forbids
   the latter and would silently drop it. */
.swatch {
  --swatch-a: var(--canvas-2);
  --swatch-b: var(--swatch-a);
  position: relative;
  inline-size: 32px;
  block-size: 32px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--swatch-a) 0 50%, var(--swatch-b) 50% 100%);
  /* Inset ring so white and transparent discs remain visible on --surface. */
  box-shadow: inset 0 0 0 1px rgb(0 0 0 / .12);
  cursor: pointer;
}

/* Checkerboard reads through a translucent filament colour. */
.swatch--translucent::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background-image:
    linear-gradient(45deg, var(--canvas-2) 25%, transparent 25% 75%, var(--canvas-2) 75%),
    linear-gradient(45deg, var(--canvas-2) 25%, transparent 25% 75%, var(--canvas-2) 75%);
  background-size: 8px 8px;
  background-position: 0 0, 4px 4px;
}

.swatch--glow { box-shadow: inset 0 0 0 1px rgb(0 0 0 / .12), 0 0 0 3px rgb(163 230 53 / .35); }

.swatch[aria-checked="true"] {
  box-shadow: inset 0 0 0 1px rgb(0 0 0 / .12), 0 0 0 2px var(--surface), 0 0 0 4px var(--ink);
}

/* Out-of-stock: dimmed AND hatched AND labelled. Never colour alone, and
   never merely dimmed — on the current site half the catalogue is out of
   stock and still looks buyable. */
.swatch--oos {
  opacity: .45;
  cursor: not-allowed;
  background-image:
    repeating-linear-gradient(45deg, rgb(0 0 0 / .35) 0 2px, transparent 2px 6px),
    linear-gradient(135deg, var(--swatch-a) 0 50%, var(--swatch-b) 50% 100%);
}

/* ── Utilities ─────────────────────────────────────────────────────── */

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.text-muted { color: var(--muted); }
.text-center { text-align: center; }

/* ── Empty state ───────────────────────────────────────────────────── */

.empty {
  padding: var(--s-12) var(--s-4);
  text-align: center;
  color: var(--muted);
}
.empty__title { color: var(--ink); margin-block-end: var(--s-2); }

/* ── Footer ────────────────────────────────────────────────────────── */

.site-footer {
  margin-block-start: var(--s-16);
  padding-block: var(--s-10);
  background: var(--surface);
  border-block-start: 1px solid var(--line);
  font-size: var(--t-sm);
}
.site-footer__grid {
  display: grid;
  gap: var(--s-8);
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.site-footer__list { list-style: none; padding: 0; margin: 0; }
.site-footer__list li + li { margin-block-start: var(--s-2); }
.site-footer__list a { color: var(--muted); text-decoration: none; }
.site-footer__list a:hover { color: var(--brand); }
.site-footer__legal {
  margin-block-start: var(--s-8);
  padding-block-start: var(--s-5);
  border-block-start: 1px solid var(--line);
  color: var(--muted);
}

/* ── Floating WhatsApp ─────────────────────────────────────────────── */

/* The shop already runs its customer service through WhatsApp, so this is
   the honest channel rather than a chat widget nobody staffs. */
.wa-fab {
  position: fixed;
  inset-block-end: var(--s-5);
  inset-inline-end: var(--s-5);
  z-index: var(--z-toast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 52px;
  block-size: 52px;
  border-radius: var(--r-full);
  background: #25D366;
  color: #fff;
  box-shadow: var(--e-3);
  transition: transform var(--dur) var(--ease-out);
}
.wa-fab:hover { transform: scale(1.06); color: #fff; }

/* ── Hero ──────────────────────────────────────────────────────────── */

.hero {
  background:
    radial-gradient(120% 100% at 100% 0%, var(--accent-tint) 0%, transparent 55%),
    radial-gradient(90% 90% at 0% 0%, var(--brand-tint) 0%, transparent 50%),
    var(--surface);
  border-block-end: 1px solid var(--line);
}

.hero__inner { padding-block: var(--s-12); }
@media (min-width: 768px) {
  .hero__inner { padding-block: var(--s-20); }
}

.hero__copy { max-width: 46ch; }

.hero__title {
  font-size: var(--t-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-block-end: var(--s-4);
}

.hero__subtitle {
  font-size: var(--t-body-lg);
  color: var(--muted);
  margin-block-end: var(--s-6);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); }

/* ── Material tiles ────────────────────────────────────────────────── */

.material-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-4);
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.material-tile {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  padding: var(--s-5);
  text-decoration: none;
  color: var(--ink);
}

.material-tile__code {
  font-family: var(--font-head);
  font-size: var(--t-h3);
  font-weight: 600;
}
.material-tile__count { font-size: var(--t-sm); }

/* ── Trust strip ───────────────────────────────────────────────────── */

.trust { background: var(--surface); border-block: 1px solid var(--line); }

.trust__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-6);
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.trust__item h3 { font-size: var(--t-body-lg); margin-block-end: var(--s-2); }
.trust__item p { font-size: var(--t-sm); margin: 0; }

/* ── Drawer ────────────────────────────────────────────────────────── */

/* Scrollbar-gap compensation stops the page behind the scrim shifting
   sideways the moment the drawer opens. */
body.is-drawer-open {
  overflow: hidden;
  padding-inline-end: var(--scrollbar-gap, 0);
}

.drawer {
  position: fixed;
  inset-block: 0;
  inset-inline-start: 0;
  z-index: var(--z-drawer);
  inline-size: min(420px, 100vw);
  background: var(--surface);
  box-shadow: var(--e-4);
  display: flex;
  flex-direction: column;
}

/* One rule for both directions: --dir is 1 in LTR and -1 in RTL, so the
   drawer always slides in from the inline-start edge. */
.drawer[hidden] { display: none; }

.drawer__scrim {
  position: fixed;
  inset: 0;
  z-index: var(--z-scrim);
  background: rgb(14 17 22 / .45);
}

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-5);
  border-block-end: 1px solid var(--line);
}

.drawer__body { flex: 1; overflow-y: auto; padding: var(--s-5); }
.drawer__foot { padding: var(--s-5); border-block-start: 1px solid var(--line); }

/* ── Toasts ────────────────────────────────────────────────────────── */

.toast-host {
  position: fixed;
  inset-block-end: var(--s-5);
  inset-inline-start: var(--s-5);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  pointer-events: none;
}

.toast {
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-md);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--e-3);
  font-size: var(--t-sm);
  animation: toast-in var(--dur) var(--ease-out);
}
.toast--success { background: var(--success-ink); }
.toast--error   { background: var(--danger); }

@keyframes toast-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

/* ── Product grid ──────────────────────────────────────────────────── */

.product-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-5);
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.p-card { display: flex; flex-direction: column; overflow: hidden; }
.p-card__link { text-decoration: none; color: inherit; display: block; }

.p-card__media {
  position: relative;
  aspect-ratio: 1;
  background: var(--canvas-2);
  overflow: hidden;
}
.p-card__media img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
/* Contained by overflow:hidden, so the card's own box never moves. */
.p-card:hover .p-card__media img { transform: scale(1.04); }

.p-card__placeholder { inline-size: 100%; block-size: 100%; background: var(--canvas-2); }

.p-card__badge {
  position: absolute;
  inset-block-start: var(--s-3);
  inset-inline-start: var(--s-3);
}

.p-card__body { padding: var(--s-4); }
.p-card__title {
  font-size: var(--t-body);
  font-weight: 600;
  margin-block-end: var(--s-2);
  /* Two lines then ellipsis, so a long name can't stretch one card taller
     than its row-mates. */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-card__price { margin: 0; }

/* Out of stock: dimmed AND hatched AND badged. On the current site half the
   catalogue is unavailable and looks perfectly buyable in the grid. */
.p-card--oos .p-card__media img { opacity: .5; filter: grayscale(.4); }
.p-card--oos .p-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, rgb(14 17 22 / .06) 0 6px, transparent 6px 14px);
}

.p-card__swatches {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-2);
  margin: 0;
  padding: 0 var(--s-4) var(--s-4);
}
.p-card__more { font-size: var(--t-xs); color: var(--muted); }

.swatch--sm { inline-size: 18px; block-size: 18px; cursor: default; }
.swatch--lg { inline-size: 40px; block-size: 40px; border: 0; padding: 0; }
.swatch--xl { inline-size: 64px; block-size: 64px; }

/* ── Catalog layout ────────────────────────────────────────────────── */

.catalog { display: grid; gap: var(--s-8); }
@media (min-width: 1024px) {
  .catalog { grid-template-columns: 250px 1fr; align-items: start; }
}

.filters {
  display: grid;
  gap: var(--s-4);
  padding: var(--s-5);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
@media (min-width: 1024px) {
  .filters { position: sticky; inset-block-start: calc(var(--header-h) + var(--s-4)); }
}

.filters__group { border-block-end: 1px solid var(--line); padding-block-end: var(--s-3); }
.filters__legend { font-weight: 600; cursor: pointer; padding-block: var(--s-1); }
.filters__list { list-style: none; margin: var(--s-3) 0 0; padding: 0; display: grid; gap: var(--s-1); }

.filters__opt {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-1) 0;
  font-size: var(--t-sm);
  cursor: pointer;
  min-block-size: 32px;
}
.filters__count { margin-inline-start: auto; color: var(--muted); font-size: var(--t-xs); }
.filters__toggle { font-weight: 500; }

.filters__row { display: flex; align-items: center; gap: var(--s-2); }

.filters__swatches {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin: var(--s-3) 0 0;
  padding: 0;
}
.filters__swatch { display: inline-flex; cursor: pointer; }
/* The checkbox is visually hidden but still focusable, so the ring has to
   render on the swatch it controls. */
.filters__swatch input:focus-visible + .swatch {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
.filters__swatch input:checked + .swatch {
  box-shadow: inset 0 0 0 1px rgb(0 0 0 / .12), 0 0 0 2px var(--surface), 0 0 0 4px var(--ink);
}

.pagination { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-block-start: var(--s-8); }
.pagination__link {
  min-inline-size: 40px;
  min-block-size: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  text-decoration: none;
  color: var(--ink);
}
.pagination__link.is-current { background: var(--brand); border-color: var(--brand); color: var(--on-brand); }

/* ── Product detail ────────────────────────────────────────────────── */

.pdp { display: grid; gap: var(--s-8); }
@media (min-width: 900px) {
  .pdp { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; }
  .pdp__specs { grid-column: 1 / -1; }
}

.pdp__media {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 1;
}
.pdp__image { inline-size: 100%; block-size: 100%; object-fit: cover; }

.pdp__title { margin-block-end: var(--s-3); }
.pdp__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: var(--s-2); }
.pdp__stock { margin-block: var(--s-3); }
.pdp__section-title { font-size: var(--t-body-lg); margin-block-end: var(--s-3); }

.swatch-grid { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.pdp__color-name { margin-block-start: var(--s-3); font-weight: 600; }

.pdp__buy { display: flex; gap: var(--s-3); margin-block: var(--s-6); flex-wrap: wrap; }
.qty__input { inline-size: 88px; text-align: center; }
.pdp__add { flex: 1; min-inline-size: 180px; }

.pdp__notify { padding: var(--s-4); background: var(--canvas); border-radius: var(--r-lg); }
.pdp__desc { margin-block-start: var(--s-6); }

.spec-table { inline-size: 100%; border-collapse: collapse; margin-block-end: var(--s-6); }
.spec-table th,
.spec-table td { padding: var(--s-3); text-align: start; border-block-end: 1px solid var(--line); }
.spec-table th { inline-size: 45%; font-weight: 500; color: var(--muted); }
.pdp__spec-group { font-size: var(--t-body); margin-block: var(--s-5) var(--s-2); }

/* ── Colour landing ────────────────────────────────────────────────── */

.color-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-4);
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
}
.color-tile {
  display: grid;
  justify-items: center;
  gap: var(--s-3);
  padding: var(--s-5);
  text-decoration: none;
  color: var(--ink);
  text-align: center;
}
.color-tile__label { font-size: var(--t-sm); font-weight: 500; }
