/* ==========================================================================
   Archangel Games — design system
   Obsidian surfaces, warm signal-light amber, cold arcane teal.
   All colour, radius, shadow and type decisions live here as tokens.
   ========================================================================== */

:root {
  --ink: #08090c;
  --obsidian: #0b0d12;
  --surface: #12151c;
  --surface-2: #171b24;
  --surface-3: #1e2431;
  --line: #262d3b;
  --line-strong: #38415440;
  --text: #eef1f6;
  --text-muted: #a3adc0;
  --text-dim: #7c869a;
  --gold: #f5b125;
  --gold-soft: #ffd479;
  --gold-ink: #1a1204;
  --teal: #3ad9c4;
  --teal-ink: #04211d;
  --danger: #ff6b5e;
  --success: #4ade80;

  --grad-hero: radial-gradient(120% 120% at 15% 0%, #1d2434 0%, #0b0d12 55%, #08090c 100%);
  --grad-gold: linear-gradient(135deg, var(--gold-soft), var(--gold));
  --grad-line: linear-gradient(90deg, transparent, var(--gold), transparent);

  --shadow-card: 0 1px 0 #ffffff08 inset, 0 18px 40px -24px #000000cc;
  --shadow-lift: 0 24px 60px -30px #000, 0 0 0 1px #f5b12533;

  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;

  --font-display: "Bricolage Grotesque", "Trebuchet MS", system-ui, sans-serif;
  --font-body: "Inter Tight", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1240px;
  --gap: clamp(1rem, 2.2vw, 1.75rem);
}

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

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

body {
  margin: 0;
  background: var(--obsidian);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-soft);
  text-decoration-color: #f5b1254d;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--gold);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.3rem);
}
h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}
p {
  margin: 0 0 1em;
  max-width: 74ch;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--gold);
  color: var(--gold-ink);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

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

/* ---------------- Top bar / header ---------------- */

.topbar {
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--text-dim);
}
.topbar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
}
.topbar strong {
  color: var(--text-muted);
  font-weight: 600;
}
.topbar a {
  color: var(--text-muted);
  text-decoration: none;
}
.topbar a:hover {
  color: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #0b0d12f2;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: var(--gap);
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  flex: 0 0 auto;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--grad-gold);
  color: var(--gold-ink);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 0 22px #f5b12545;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-sm);
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
  background: var(--surface-2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.35rem 0.35rem 0.9rem;
}
.search input {
  background: none;
  border: 0;
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  width: 12ch;
  min-width: 0;
}
.search input::placeholder {
  color: var(--text-dim);
}
.search button {
  border: 0;
  background: var(--surface-3);
  color: var(--text);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  min-height: 32px;
}
.search button:hover {
  background: var(--gold);
  color: var(--gold-ink);
}

.nav-toggle {
  display: none;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: var(--radius-sm);
  min-width: 44px;
  min-height: 44px;
  font-size: 1.1rem;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--obsidian);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem clamp(1rem, 3vw, 2rem) 1.25rem;
    gap: 0.15rem;
  }
  .site-header.open .nav {
    display: flex;
  }
  .nav a {
    padding: 0.8rem 0.6rem;
    font-size: 1rem;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }
  .search {
    display: none;
  }
}

/* ---------------- Buttons & chips ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 650;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--grad-gold);
  color: var(--gold-ink);
  box-shadow: 0 10px 30px -14px #f5b12599;
}
.btn-primary:hover {
  color: var(--gold-ink);
}
.btn-ghost {
  background: #ffffff08;
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover {
  background: var(--surface-3);
  color: var(--text);
}
.btn-teal {
  background: var(--teal);
  color: var(--teal-ink);
}
.btn-block {
  width: 100%;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  color: var(--text-muted);
  background: var(--surface);
  text-decoration: none;
}
.chip-gold {
  background: #f5b1251f;
  border-color: #f5b12559;
  color: var(--gold-soft);
}
.chip-teal {
  background: #3ad9c41c;
  border-color: #3ad9c455;
  color: var(--teal);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ---------------- Hero ---------------- */

.hero {
  background: var(--grad-hero);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -1px;
  height: 1px;
  background: var(--grad-line);
  opacity: 0.6;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2.5rem, 6vw, 5.5rem) 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 650;
  margin-bottom: 1rem;
}
.hero h1 em {
  font-style: normal;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lede {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-muted);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.6rem 0 1.4rem;
}
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  margin: 0;
}
.hero-facts div {
  min-width: 0;
}
.hero-facts dt {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}
.hero-facts dd {
  margin: 0.15rem 0 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}
.hero-art {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
.hero-art figure {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0.9rem;
  box-shadow: var(--shadow-card);
}
.hero-art figure:nth-child(odd) {
  transform: translateY(-14px);
}
.hero-art img {
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.hero-art figcaption {
  font-size: 0.76rem;
  color: var(--text-dim);
  margin-top: 0.55rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-art figure:nth-child(odd) {
    transform: none;
  }
}

/* ---------------- Sections ---------------- */

.section {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}
.section-alt {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}
.section-head p {
  color: var(--text-muted);
  margin: 0.35rem 0 0;
  max-width: 60ch;
}
.section-head h2 {
  margin: 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.trust-strip div {
  background: var(--obsidian);
  padding: 1.15rem clamp(1rem, 2vw, 1.5rem);
}
.trust-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
}
.trust-strip span {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ---------------- Product grid ---------------- */

.grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
.grid-tight {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}
.grid-wide {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: #f5b12545;
  box-shadow: var(--shadow-lift);
}
.card-media {
  position: relative;
  background: #f7f7f9;
  aspect-ratio: 1;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8%;
}
.card-flag {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: var(--gold);
  color: var(--gold-ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
}
.card-flag.teal {
  background: var(--teal);
  color: var(--teal-ink);
}
.card-body {
  padding: 0.9rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.card-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}
.card-title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.28;
  margin: 0;
}
.card-title a {
  color: var(--text);
  text-decoration: none;
}
.card-title a:hover {
  color: var(--gold-soft);
}
.card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
.price {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 700;
  color: var(--gold-soft);
}
.stock {
  font-size: 0.78rem;
  color: var(--success);
}
.stock.pre {
  color: var(--teal);
}
.stock.out {
  color: var(--text-dim);
}

.tile {
  position: relative;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 1rem;
  text-decoration: none;
  color: var(--text);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease;
}
.tile:hover {
  transform: translateY(-3px);
  border-color: #f5b12555;
  color: var(--text);
}
.tile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #ffffff06;
  border-radius: var(--radius-sm);
}
.tile-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin: 0.7rem 0 0.1rem;
  line-height: 1.25;
}
.tile-meta {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ---------------- Breadcrumbs ---------------- */

.crumbs {
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  font-size: 0.84rem;
}
.crumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0.75rem 0;
  color: var(--text-dim);
}
.crumbs a {
  color: var(--text-muted);
  text-decoration: none;
}
.crumbs a:hover {
  color: var(--gold);
}
.crumbs li + li::before {
  content: "/";
  margin-right: 0.45rem;
  color: #4a5468;
}

/* ---------------- Page header ---------------- */

.page-head {
  background: var(--grad-hero);
  border-bottom: 1px solid var(--line);
  padding: clamp(2rem, 4.5vw, 3.5rem) 0;
}
.page-head h1 {
  margin-bottom: 0.5rem;
}
.page-head p {
  color: var(--text-muted);
  margin: 0;
}
.page-head img.set-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 0.9rem;
}

/* ---------------- Product detail ---------------- */

.pdp {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.75rem, 4vw, 3rem) 0;
  align-items: start;
}
@media (max-width: 900px) {
  .pdp {
    grid-template-columns: 1fr;
  }
}
.pdp-gallery {
  position: sticky;
  top: 96px;
}
.pdp-main-img {
  background: #f7f7f9;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pdp-main-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 6%;
}
.pdp-thumbs {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.7rem;
  list-style: none;
  padding: 0;
}
.pdp-thumbs li {
  width: 76px;
  background: #f7f7f9;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.pdp-title {
  margin-bottom: 0.6rem;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}
.pdp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  font-size: 0.86rem;
  color: var(--text-muted);
  border-block: 1px solid var(--line);
  padding: 0.8rem 0;
  margin-bottom: 1.1rem;
  list-style: none;
}
.pdp-meta b {
  color: var(--text);
  font-weight: 600;
}
.buy-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2.5vw, 1.5rem);
  box-shadow: var(--shadow-card);
}
.buy-price {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.buy-price .amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--gold-soft);
  line-height: 1;
}
.buy-price small {
  color: var(--text-dim);
  font-size: 0.82rem;
}
.buy-actions {
  display: flex;
  gap: 0.7rem;
  margin: 1.1rem 0 0.9rem;
  flex-wrap: wrap;
}
.buy-actions .btn {
  flex: 1 1 160px;
}
.buy-list {
  list-style: none;
  margin: 0;
  padding: 0.9rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.buy-list b {
  color: var(--text);
  font-weight: 600;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.spec-table caption {
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
  padding-bottom: 0.6rem;
}
.spec-table th,
.spec-table td {
  text-align: left;
  padding: 0.65rem 0.8rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.spec-table th {
  color: var(--text-dim);
  font-weight: 600;
  width: 42%;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1rem, 2.5vw, 1.6rem);
}
.panel-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.panel h3 {
  margin-top: 0;
}
.panel p:last-child {
  margin-bottom: 0;
}

details.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.6rem;
}
details.faq summary {
  cursor: pointer;
  font-weight: 650;
  font-family: var(--font-display);
  list-style: none;
}
details.faq summary::-webkit-details-marker {
  display: none;
}
details.faq summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}
details.faq[open] summary::after {
  content: "–";
}
details.faq p {
  margin: 0.7rem 0 0;
  color: var(--text-muted);
}

/* ---------------- Editorial / policy pages ---------------- */

.prose {
  padding: clamp(2rem, 4vw, 3.25rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 900px) {
  .prose {
    grid-template-columns: 1fr;
  }
}
.prose-body h2 {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.prose-body h2:first-child {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}
.prose-body ul,
.prose-body ol {
  color: var(--text-muted);
  padding-left: 1.2rem;
  max-width: 74ch;
}
.prose-body li {
  margin-bottom: 0.45rem;
}
.prose-body p {
  color: var(--text-muted);
}
.prose-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}
.prose-body th,
.prose-body td {
  border: 1px solid var(--line);
  padding: 0.6rem 0.8rem;
  text-align: left;
}
.prose-body th {
  background: var(--surface-2);
}
.aside {
  position: sticky;
  top: 96px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  font-size: 0.9rem;
}
.aside h2 {
  font-size: 1.05rem;
  margin-top: 0;
}
.aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}
.aside a {
  text-decoration: none;
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font: inherit;
  padding: 0.7rem 0.85rem;
  min-height: 46px;
}
textarea {
  min-height: 140px;
  resize: vertical;
}
.field-full {
  grid-column: 1 / -1;
}
.help {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 0.3rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.badges li {
  border: 1px solid var(--line);
  background: var(--surface-2);
  border-radius: 8px;
  padding: 0.4rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

.note {
  border-left: 3px solid var(--gold);
  background: #f5b1250f;
  padding: 0.9rem 1.1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.note p:last-child {
  margin-bottom: 0;
}

/* ---------------- Cart ---------------- */

.cart-line {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.cart-line img {
  background: #f7f7f9;
  border-radius: var(--radius-sm);
  aspect-ratio: 1;
  object-fit: contain;
}
.cart-empty {
  color: var(--text-muted);
}

/* ---------------- Footer ---------------- */

.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  margin-top: clamp(2rem, 5vw, 4rem);
  font-size: 0.9rem;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(2rem, 4vw, 3.25rem) 0;
}
.footer-col h2 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-about p {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.newsletter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.newsletter input {
  flex: 1 1 180px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.1rem 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  color: var(--text-dim);
  font-size: 0.82rem;
}
.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
}
.footer-bottom a {
  color: var(--text-dim);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--gold);
}

.pager {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
  list-style: none;
  padding: 0;
}
.pager a,
.pager span {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-muted);
  padding: 0 0.75rem;
}
.pager a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.pager [aria-current="page"] {
  background: var(--gold);
  color: var(--gold-ink);
  border-color: var(--gold);
  font-weight: 700;
}

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