/* ═══════════════════════════════════════════════════════════════════════════
   RefurbLaptops.ae

   Hand-written. No Tailwind, no build step — this file is the design system.
   Edit it directly and upload; there is nothing to compile.

   Accessibility rules that are NOT negotiable:
     - --emerald is never used for text (2.3:1 on white — fails AA). Dots and icons only.
     - --silver is never used for text. Secondary text is --slate (4.55:1+).
     - The focus ring is 3px and always visible. Never remove it.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --navy: #0F172A;
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --emerald: #10B981;
  --emerald-deep: #047857;
  --silver: #CBD5E1;
  --slate: #64748B;
  --mist: #F8FAFC;
  --white: #FFFFFF;

  --line: rgba(203, 213, 225, .6);
  --line-soft: rgba(203, 213, 225, .5);

  --font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --r-btn: 8px;
  --r-input: 12px;
  --r-card: 16px;
  --r-img: 18px;

  --shadow-soft: 0 10px 30px rgba(15, 23, 42, .08);
  --shadow-lift: 0 16px 40px rgba(15, 23, 42, .12);

  --shell: 1200px;
}

/* ── Fonts ────────────────────────────────────────────────────────────────
   Loaded via <link> in inc/header.php.

   TO SELF-HOST LATER (worth doing — removes a third-party request, stops every
   visitor's IP going to Google, and cuts ~100ms off first paint):
     1. Download the woff2 files from fontsource.org (Manrope variable,
        JetBrains Mono 400 + 500)
     2. Drop them in /assets/fonts/
     3. Uncomment the @font-face block below and delete the <link> in header.php

   @font-face {
     font-family: "Manrope";
     src: url("/assets/fonts/manrope-variable.woff2") format("woff2-variations");
     font-weight: 200 800;
     font-display: swap;
   }
   @font-face {
     font-family: "JetBrains Mono";
     src: url("/assets/fonts/jetbrains-mono-400.woff2") format("woff2");
     font-weight: 400;
     font-display: swap;
   }
   @font-face {
     font-family: "JetBrains Mono";
     src: url("/assets/fonts/jetbrains-mono-500.woff2") format("woff2");
     font-weight: 500;
     font-display: swap;
   }
*/

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* The mega menu's hidden panels (visibility:hidden, not display:none) still occupy
     their full desktop-width layout box. That's fine on desktop but causes a phantom
     horizontal scrollbar on mobile. Clipping it here is the safe fix — it changes
     nothing visible, it only stops the document from scrolling sideways. */
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }
address { font-style: normal; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
::selection { background: var(--blue); color: #fff; }

/* ── Layout ─────────────────────────────────────────────────────────────── */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 1024px) { .shell { padding-inline: 32px; } }

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 100;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--r-btn);
}

/* ── Type ───────────────────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--slate);
}

.h1 {
  font-size: clamp(2.25rem, 5.2vw, 4rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.03em;
}
.h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.h3 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -.02em;
}
.lede {
  font-size: 18px;
  line-height: 1.625;
  color: var(--slate);
}
.muted { color: var(--slate); }
.mono { font-family: var(--mono); }
.num { font-variant-numeric: tabular-nums; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding-inline: 24px;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: var(--r-btn);
  font-size: 15px;
  font-weight: 700;
  border: 1px solid transparent;
  /* Scoped deliberately: transitioning `all` animates outline-width, which makes the
     focus ring fade in for keyboard users. Focus must be instant. */
  transition-property: color, background-color, border-color, box-shadow, transform;
  transition-duration: .2s;
}
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow-soft); }

.btn--ghost { background: #fff; color: var(--navy); border-color: var(--silver); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }

.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--mist); }

.btn--sm { height: 40px; padding-inline: 16px; font-size: 14px; }
.btn--md { height: 44px; padding-inline: 16px; font-size: 14px; }
.btn--lg { height: 56px; font-size: 16px; }
.btn--block { width: 100%; }

/* ── The spec plate — the page's signature device ───────────────────────────
   Modelled on the regulatory plate on the underside of a business laptop:
   mono type, tabular figures, hairline rules, data stated without adjectives.
   It carries the battery and SSD numbers, because published numbers are the
   entire thesis of this brand. */
.plate {
  border: 1px solid rgba(203, 213, 225, .7);
  border-radius: var(--r-card);
  background: #fff;
  font-family: var(--mono);
  font-size: 13px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.plate__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  padding: 14px 20px;
  border-bottom: 1px solid rgba(203, 213, 225, .7);
}
.plate__head p {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .7);
}
.plate__pass {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
}
.plate__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line-soft);
}
.plate__row:last-of-type { border-bottom: 0; }
.plate__key {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--slate);
}
.plate__val {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.plate__val span { font-size: 11px; font-weight: 400; color: var(--slate); margin-left: 6px; }
.plate__foot {
  border-top: 1px solid rgba(203, 213, 225, .7);
  background: var(--mist);
  padding: 14px 20px;
  font-size: 11px;
  line-height: 1.6;
  color: var(--slate);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  flex-shrink: 0;
}

/* ── Header ─────────────────────────────────────────────────────────────── */
.hdr {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.hdr__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.025em;
}
.logo img { height: 30px; width: auto; }
.logo .ae { color: var(--blue); }

.nav { display: none; align-items: center; gap: 2px; flex-wrap: nowrap; min-width: 0; }
@media (min-width: 1024px) { .nav { display: flex; } }

.nav__link {
  padding-inline: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  white-space: nowrap;
  transition: color .2s;
}
.nav__link:hover { color: var(--navy); }

/* Mega menu — CSS only. No JavaScript island, no hydration. */
.mega { position: relative; }
.mega__trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 72px;
  padding-inline: 10px;
  font-size: 14px;
  white-space: nowrap;
  font-weight: 500;
  color: var(--slate);
  transition: color .2s;
}
.mega:hover .mega__trigger,
.mega:focus-within .mega__trigger { color: var(--navy); }
.mega__trigger svg { transition: transform .2s; }
.mega:hover .mega__trigger svg,
.mega:focus-within .mega__trigger svg { transform: rotate(180deg); }

.mega__panel {
  position: absolute;
  top: 72px;
  left: 50%;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  transition: opacity .15s, visibility .15s;
}
.mega:hover .mega__panel,
.mega:focus-within .mega__panel { visibility: visible; opacity: 1; }

.mega__inner {
  background: #fff;
  border: 1px solid rgba(203, 213, 225, .7);
  border-top: 0;
  border-radius: 0 0 var(--r-card) var(--r-card);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.mega--wide .mega__panel { width: min(92vw, 940px); }
.mega--narrow .mega__panel { width: 520px; }

.mega__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(203, 213, 225, .4);
}
.mega__col { background: #fff; padding: 24px; }
.mega__col ul { margin-top: 16px; display: grid; gap: 2px; }
.mega__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 8px;
  margin-inline: -8px;
  border-radius: 6px;
  transition: background .2s;
}
.mega__item:hover { background: var(--mist); }
.mega__item span:first-child { font-size: 14px; font-weight: 500; }
.mega__item span:last-child { font-family: var(--mono); font-size: 10px; color: var(--slate); }

.mega__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  background: var(--mist);
  padding: 16px 24px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--slate);
}
.mega__foot a { font-family: var(--font); font-size: 13px; font-weight: 700; color: var(--blue); }
.mega__foot a:hover { text-decoration: underline; }

.mega__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 16px; }
.mega__card { padding: 12px; border-radius: 6px; transition: background .2s; }
.mega__card:hover { background: var(--mist); }
.mega__card p:first-child { font-size: 14px; font-weight: 600; }
.mega__card p:last-child { font-size: 12px; color: var(--slate); margin-top: 2px; }

/* Mobile menu — <details>, zero JS */
.burger { display: block; }
@media (min-width: 1024px) { .burger { display: none; } }
.burger summary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--silver);
  border-radius: var(--r-btn);
  cursor: pointer;
  list-style: none;
}
.burger summary::-webkit-details-marker { display: none; }
.burger__panel {
  position: fixed;
  left: 0;
  right: 0;
  top: 72px;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  background: #fff;
  border-bottom: 1px solid var(--silver);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}
.burger__group { margin-bottom: 24px; }
.burger__group ul { margin-top: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.burger__panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}
.burger__panel a:hover { background: var(--mist); }

/* ── Sections ───────────────────────────────────────────────────────────── */
.sec { padding-block: 80px; }
.sec--sm { padding-block: 56px; }
.sec--mist { background: var(--mist); }
.sec--navy { background: var(--navy); color: #fff; }
.bt { border-top: 1px solid var(--line); }
.bb { border-bottom: 1px solid var(--line); }
.by { border-block: 1px solid var(--line); }

.hero {
  display: grid;
  gap: 56px;
  align-items: center;
  padding-block: 56px;
}
@media (min-width: 1024px) {
  .hero { grid-template-columns: 1.05fr .95fr; padding-block: 80px; }
}

.sec__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

/* ── Stats ──────────────────────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(203, 213, 225, .5);
  border: 1px solid rgba(203, 213, 225, .7);
  border-radius: var(--r-card);
  overflow: hidden;
  max-width: 32rem;
  margin-top: 40px;
}
.stats > div { background: #fff; padding: 16px; }
.stats dd b {
  display: block;
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.stats dd span { display: block; margin-top: 4px; font-size: 12px; line-height: 1.3; color: var(--slate); }

/* ── Trust bar ──────────────────────────────────────────────────────────── */
.trustbar { display: grid; }
@media (min-width: 640px) { .trustbar { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trustbar { grid-template-columns: repeat(4, 1fr); } }
.trustbar li { padding-block: 24px; border-bottom: 1px solid var(--line); }
@media (min-width: 640px) {
  .trustbar li { padding-inline: 28px; border-bottom: 0; border-left: 1px solid var(--line); }
  .trustbar li:first-child { border-left: 0; padding-left: 0; }
}
.trustbar b { display: block; font-size: 15px; }
.trustbar span { display: block; margin-top: 4px; font-size: 14px; color: var(--slate); }

/* ── Product grid + card ────────────────────────────────────────────────── */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(203, 213, 225, .7);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); border-color: var(--silver); }

.card__media { position: relative; display: block; background: var(--mist); overflow: hidden; }
.card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .3s; }
.card:hover .card__media img { transform: scale(1.02); }

.card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 23, 42, .9);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 4px 10px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.card__body { display: flex; flex-direction: column; flex: 1; padding: 20px; }
.card__title { margin-top: 6px; font-size: 17px; font-weight: 700; line-height: 1.35; }
.card__title a:hover { color: var(--blue); }
.card__cpu { margin-top: 4px; font-size: 14px; color: var(--slate); }

.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.chips li {
  border: 1px solid rgba(203, 213, 225, .8);
  border-radius: 6px;
  padding: 4px 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--slate);
}

.card__foot { margin-top: auto; padding-top: 20px; }
.card__price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
}
.price {
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}
.price small { font-size: 15px; font-weight: 700; color: var(--slate); }
.price--lg { font-size: 40px; }
.price--lg small { font-size: 20px; }

.vs-new { margin-top: 6px; font-family: var(--mono); font-size: 11px; color: var(--slate); }

.stock {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  color: var(--emerald-deep);
}
.stock--out { color: var(--slate); }

.card__cta { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 16px; }

/* ── Browse / collections ───────────────────────────────────────────────── */
.browse { display: grid; gap: 40px; margin-top: 48px; }
@media (min-width: 1024px) { .browse { grid-template-columns: repeat(4, 1fr); } }
.browse h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.browse ul { margin-top: 16px; display: grid; gap: 8px; }
.tile {
  display: block;
  background: #fff;
  border: 1px solid rgba(203, 213, 225, .7);
  border-radius: var(--r-btn);
  padding: 12px 16px;
  transition: border-color .2s, box-shadow .2s;
}
.tile:hover { border-color: var(--blue); box-shadow: var(--shadow-soft); }
.tile--row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.tile b { font-size: 15px; font-weight: 600; }
.tile em { font-family: var(--mono); font-style: normal; font-size: 11px; color: var(--slate); }
.tile span { display: block; margin-top: 2px; font-size: 12px; color: var(--slate); }

/* ── Process ────────────────────────────────────────────────────────────── */
.steps {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, .1);
  border-radius: var(--r-card);
  overflow: hidden;
  margin-top: 56px;
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li { background: var(--navy); padding: 32px; }
.steps__n { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: rgba(255, 255, 255, .4); }
.steps h3 { margin-top: 20px; font-size: 22px; font-weight: 700; letter-spacing: 0; text-transform: none; }
.steps p { margin-top: 12px; font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, .6); }

.pullquote {
  margin-top: 48px;
  max-width: 42rem;
  border-left: 2px solid var(--emerald);
  padding-left: 24px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.375;
}

/* ── Tables ─────────────────────────────────────────────────────────────── */
.tbl {
  border: 1px solid rgba(203, 213, 225, .7);
  border-radius: var(--r-card);
  overflow: hidden;
}
.tbl table { font-size: 14px; text-align: left; }
.tbl thead tr { background: var(--mist); border-bottom: 1px solid rgba(203, 213, 225, .7); }
.tbl th[scope="col"] {
  padding: 14px 20px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--slate);
}
.tbl tbody tr { border-bottom: 1px solid var(--line-soft); }
.tbl tbody tr:last-child { border-bottom: 0; }
.tbl td, .tbl th[scope="row"] { padding: 20px; vertical-align: top; }
.tbl th[scope="row"] { font-size: 15px; font-weight: 700; }
.tbl td { color: var(--slate); }
.tbl .is-ours { background: rgba(16, 185, 129, .04); }
.tbl .is-ours th[scope="row"] { font-weight: 800; color: var(--navy); }
.tbl__note {
  border-top: 1px solid var(--line);
  background: var(--mist);
  padding: 14px 20px;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.6;
  color: var(--slate);
}

/* Spec table (product page) */
.specs th[scope="row"] {
  width: 42%;
  background: var(--mist);
  padding: 14px 20px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--slate);
}
.specs td { padding: 14px 20px; font-weight: 500; color: var(--navy); }

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq { margin-top: 40px; border-block: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: 0; }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--blue); }
.faq summary svg { flex-shrink: 0; color: var(--slate); transition: transform .2s; }
.faq details[open] summary svg { transform: rotate(45deg); }
.faq p { max-width: 48rem; padding-bottom: 24px; font-size: 16px; line-height: 1.625; color: var(--slate); }

/* ── CTA panels ─────────────────────────────────────────────────────────── */
.panel {
  background: #fff;
  border: 1px solid rgba(203, 213, 225, .7);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-soft);
  padding: 40px;
}
@media (min-width: 1024px) { .panel { padding: 56px; } }

.panel--split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .panel--split { grid-template-columns: 1.4fr 1fr; } }

.panel--navy {
  background: var(--navy);
  color: #fff;
  border: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
}
.panel--navy p { color: rgba(255, 255, 255, .6); margin-top: 8px; font-size: 16px; }

.tiers { display: grid; gap: 1px; background: rgba(203, 213, 225, .6); border-radius: var(--r-card); overflow: hidden; }
.tiers li { background: var(--mist); padding: 20px 24px; }
.tiers b { font-family: var(--mono); font-size: 13px; font-weight: 500; }
.tiers span { display: block; margin-top: 4px; font-size: 14px; color: var(--slate); }

/* ── Industries ─────────────────────────────────────────────────────────── */
.inds { display: grid; gap: 16px; margin-top: 40px; }
@media (min-width: 640px) { .inds { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .inds { grid-template-columns: repeat(3, 1fr); } }
.inds a {
  display: block;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(203, 213, 225, .7);
  border-radius: var(--r-card);
  padding: 24px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.inds a:hover { transform: translateY(-2px); border-color: var(--blue); box-shadow: var(--shadow-soft); }
.inds h3 { font-size: 17px; font-weight: 700; }
.inds p { margin-top: 6px; font-size: 14px; color: var(--slate); }

/* ── Product page ───────────────────────────────────────────────────────── */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-block: 14px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--slate);
}
.crumbs a:hover { color: var(--blue); }
.crumbs .sep { color: var(--silver); }
.crumbs [aria-current] { color: var(--navy); }

.pdp { display: grid; gap: 48px; padding-block: 40px; }
@media (min-width: 1024px) { .pdp { grid-template-columns: 1.1fr .9fr; gap: 64px; padding-block: 56px; } }

.gallery__main {
  border: 1px solid rgba(203, 213, 225, .7);
  border-radius: var(--r-img);
  overflow: hidden;
  background: var(--mist);
}
.gallery__main img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--slate);
}
.gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 12px; }
.gallery__thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(203, 213, 225, .7);
  border-radius: 6px;
}
.gallery__note { margin-top: 16px; font-family: var(--mono); font-size: 11px; line-height: 1.6; color: var(--slate); }

.pdp__title { margin-top: 12px; font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; }
.pdp__spec { margin-top: 8px; font-size: 16px; color: var(--slate); }
.pdp__pricing { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 8px 20px; margin-top: 28px; }
.pdp__cta { display: grid; gap: 12px; margin-top: 28px; }
.pdp__nocheckout { margin-top: 12px; text-align: center; font-family: var(--mono); font-size: 11px; color: var(--slate); }

.trustgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(203, 213, 225, .5);
  border: 1px solid rgba(203, 213, 225, .7);
  border-radius: var(--r-card);
  overflow: hidden;
  margin-top: 32px;
}
.trustgrid li { background: #fff; padding: 14px 16px; }
.trustgrid b { display: block; font-size: 13px; font-weight: 700; line-height: 1.3; }
.trustgrid span { display: block; margin-top: 2px; font-family: var(--mono); font-size: 10px; color: var(--slate); }

.suited { display: grid; gap: 16px; margin-top: 32px; }
.suited li { border: 1px solid rgba(203, 213, 225, .7); border-radius: var(--r-card); padding: 24px; }
.suited h3 { font-size: 16px; font-weight: 700; }
.suited p { margin-top: 8px; font-size: 15px; line-height: 1.6; color: var(--slate); }

.askbox { background: var(--navy); color: #fff; border-radius: var(--r-card); padding: 32px; margin-top: 32px; }
.askbox h3 { font-size: 18px; font-weight: 700; }
.askbox p { margin-top: 8px; font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, .6); }

/* Sticky mobile buy bar */
.buybar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--silver);
  padding: 12px 16px;
}
.buybar__in { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.buybar__in .btn { flex: 1; }
.buybar__spacer { height: 80px; }
@media (min-width: 1024px) { .buybar, .buybar__spacer { display: none; } }

/* ── Floating WhatsApp — a plain link, not a 200KB chat SDK ─────────────── */
.wa-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--emerald-deep);
  box-shadow: var(--shadow-lift);
  transition: transform .2s;
}
.wa-fab:hover { transform: scale(1.05); }
@media (min-width: 1024px) { .wa-fab { right: 32px; bottom: 32px; } }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.ftr { margin-top: 96px; border-top: 1px solid var(--line); background: var(--mist); }
.ftr__cols { display: grid; gap: 40px; padding-block: 64px; }
@media (min-width: 768px) { .ftr__cols { grid-template-columns: 2fr 1fr 1fr 1.4fr; } }
.ftr h2 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.ftr ul { margin-top: 16px; display: grid; gap: 10px; }
.ftr a { font-size: 14px; color: var(--slate); transition: color .2s; }
.ftr a:hover { color: var(--blue); }
.ftr__blurb { margin-top: 20px; max-width: 20rem; font-size: 14px; line-height: 1.6; color: var(--slate); }
.ftr__bar { border-top: 1px solid var(--line); }
.ftr__bar div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-block: 24px;
  font-size: 12px;
  color: var(--slate);
}
@media (min-width: 640px) { .ftr__bar div { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ── Utilities ──────────────────────────────────────────────────────────── */
.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;
}
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 20px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }
.row { display: flex; flex-wrap: wrap; gap: 12px; }
.max-lg { max-width: 32rem; }
.max-xl { max-width: 36rem; }
.max-2xl { max-width: 42rem; }
.max-3xl { max-width: 48rem; }

.split { display: grid; gap: 56px; }
@media (min-width: 1024px) {
  .split--value { grid-template-columns: .85fr 1.15fr; }
  .split--specs { grid-template-columns: 1fr 1fr; gap: 64px; }
  .split--grade { grid-template-columns: .9fr 1.1fr; }
}

.rise { opacity: 0; transform: translateY(8px); animation: rise .45s cubic-bezier(.16, 1, .3, 1) forwards; }
.rise--2 { animation-delay: .08s; }
@keyframes rise { to { opacity: 1; transform: none; } }

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