@font-face{font-family:Inter;src:url(/assets/fonts/inter-variable.woff2) format("woff2");font-weight:100 900;font-style:normal;font-display:swap;unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}

/* ------------------------------------------------------------------
   GSM Workshop Plus — storefront styles
   Design tokens carried over from the previous Shopify Spotlight theme
   (Inter, white ground, #FCE477 accent, 1200px page, 16px card radius)
   so the site keeps its identity while shedding the theme's weight.
   ------------------------------------------------------------------ */

:root {
  --bg: #ffffff;
  --bg-2: #f3f3f3;
  --text: #121212;
  --text-muted: #6a6a6a;
  --accent: #fce477;
  --accent-strong: #f5d33d;
  --accent-text: #121212;
  --border: rgba(18, 18, 18, 0.12);
  --border-strong: rgba(18, 18, 18, 0.28);
  --sale: #b3261e;
  --success: #1c7c48;

  --page: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --radius-card: 16px;
  --radius-btn: 4px;
  --radius-pill: 40px;

  --shadow-sm: 0 1px 2px rgba(18, 18, 18, 0.06);
  --shadow-md: 0 4px 16px rgba(18, 18, 18, 0.08);
  --shadow-lg: 0 12px 32px rgba(18, 18, 18, 0.12);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --header-h: 64px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .5em; font-weight: 600; letter-spacing: -0.01em; }
h1 { font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.5rem); }
h2 { font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.9rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }

:focus-visible { outline: 3px solid var(--accent-strong); outline-offset: 2px; border-radius: 2px; }

.wrap { width: 100%; max-width: var(--page); margin-inline: auto; padding-inline: var(--gutter); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.skip-link {
  position: absolute; left: 8px; top: -48px; z-index: 200; background: var(--text);
  color: #fff; padding: 10px 16px; border-radius: var(--radius-btn); transition: top .15s;
}
.skip-link:focus { top: 8px; }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .75em 1.4em; border: 1px solid transparent; border-radius: var(--radius-btn);
  background: var(--accent); color: var(--accent-text);
  font-weight: 600; font-size: .95rem; cursor: pointer; text-align: center;
  transition: background .15s, box-shadow .15s, transform .05s;
}
.btn:hover { background: var(--accent-strong); text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn--outline { background: transparent; border-color: var(--border-strong); }
.btn--outline:hover { background: var(--bg-2); }
.btn--solid { background: var(--text); color: #fff; }
.btn--solid:hover { background: #000; }
.btn--wide { width: 100%; }
.btn--sm { padding: .5em 1em; font-size: .875rem; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .5; cursor: not-allowed; }
.btn--whatsapp { background: #25d366; color: #062e14; }
.btn--whatsapp:hover { background: #1eb959; }

/* ---------------- header ---------------- */
.header {
  position: sticky; top: 0; z-index: 100; background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.header__bar {
  display: flex; align-items: center; gap: 1rem;
  min-height: var(--header-h); padding-block: .5rem;
}
.header__logo { font-weight: 700; font-size: 1.15rem; letter-spacing: -0.02em; white-space: nowrap; }
.header__logo:hover { text-decoration: none; }
.header__logo b { background: var(--accent); padding: 0 .25em; border-radius: 3px; }
.header__nav { display: none; margin-inline-start: auto; }
.header__actions { display: flex; align-items: center; gap: .25rem; margin-inline-start: auto; }
.header__nav + .header__actions { margin-inline-start: 0; }

.nav-list { display: flex; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav-list a {
  display: block; padding: .5rem .7rem; border-radius: var(--radius-btn);
  font-size: .925rem; font-weight: 500; white-space: nowrap;
}
.nav-list a:hover, .nav-list a[aria-current] { background: var(--bg-2); text-decoration: none; }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center; position: relative;
  width: 42px; height: 42px; border: 0; background: transparent;
  border-radius: 50%; cursor: pointer;
}
.icon-btn:hover { background: var(--bg-2); }
.icon-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute; top: 4px; right: 2px; min-width: 18px; height: 18px;
  display: none; align-items: center; justify-content: center; padding: 0 4px;
  background: var(--text); color: #fff; border-radius: 9px;
  font-size: .688rem; font-weight: 700; line-height: 1;
}
.cart-count[data-count]:not([data-count="0"]) { display: flex; }

.announce {
  background: var(--text); color: #fff; text-align: center;
  font-size: .875rem; padding: .5rem 0;
}
.announce a { text-decoration: underline; }

/* header search */
.header-search { position: relative; flex: 1 1 340px; max-width: 460px; display: none; }
.header-search input {
  width: 100%; padding: .6rem 2.5rem .6rem .9rem;
  border: 1px solid var(--border-strong); border-radius: var(--radius-pill);
  background: var(--bg-2); font-size: .925rem;
}
.header-search input:focus { background: var(--bg); }
.header-search button {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border: 0; background: transparent;
  border-radius: 50%; cursor: pointer; display: grid; place-items: center;
}
.header-search svg { width: 18px; height: 18px; }
.suggest {
  position: absolute; inset-inline: 0; top: calc(100% + 6px); z-index: 120;
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow-lg); overflow: hidden; display: none;
}
.suggest[data-open="true"] { display: block; }
.suggest a {
  display: flex; gap: .75rem; align-items: center; padding: .6rem .8rem;
  border-bottom: 1px solid var(--border); font-size: .9rem;
}
.suggest a:last-child { border-bottom: 0; }
.suggest a:hover, .suggest a.is-active { background: var(--bg-2); text-decoration: none; }
.suggest img { width: 40px; height: 40px; object-fit: contain; border-radius: 6px; background: var(--bg-2); }
.suggest__price { margin-inline-start: auto; font-weight: 600; white-space: nowrap; }

/* Base: the hamburger shows on small screens. This must be declared BEFORE
   the min-width query below, or it wins on specificity ties and leaks onto
   desktop. */
.nav-toggle { display: inline-flex; }

@media (min-width: 900px) {
  .header__nav, .header-search { display: block; }
  .nav-toggle { display: none; }
}

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 150; visibility: hidden;
}
.drawer[data-open="true"] { visibility: visible; }
.drawer__scrim {
  position: absolute; inset: 0; background: rgba(18, 18, 18, .45);
  opacity: 0; transition: opacity .2s;
}
.drawer[data-open="true"] .drawer__scrim { opacity: 1; }
.drawer__panel {
  position: absolute; inset-block: 0; inset-inline-start: 0; width: min(360px, 86vw);
  background: var(--bg); box-shadow: var(--shadow-lg);
  transform: translateX(-100%); transition: transform .22s ease;
  display: flex; flex-direction: column; overflow-y: auto;
}
.drawer--right .drawer__panel {
  inset-inline-start: auto; inset-inline-end: 0; transform: translateX(100%);
  width: min(420px, 92vw);
}
.drawer[data-open="true"] .drawer__panel { transform: none; }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem var(--gutter); border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: var(--bg); z-index: 2;
}
.drawer__head h2 { margin: 0; font-size: 1.05rem; }
.drawer__body { padding: 1rem var(--gutter); flex: 1; }
.drawer__foot {
  padding: 1rem var(--gutter); border-top: 1px solid var(--border);
  position: sticky; bottom: 0; background: var(--bg);
}
.drawer-nav { list-style: none; margin: 0; padding: 0; }
.drawer-nav a {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .8rem .25rem; border-bottom: 1px solid var(--border); font-weight: 500;
}
.drawer-nav a:hover { text-decoration: none; color: var(--text-muted); }
.drawer-nav span { color: var(--text-muted); font-size: .875rem; font-variant-numeric: tabular-nums; }
.drawer-nav__label {
  margin: 1.5rem 0 .25rem; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted);
}

/* ---------------- breadcrumbs ---------------- */
.breadcrumbs { padding-block: 1rem .5rem; font-size: .85rem; color: var(--text-muted); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.breadcrumbs li + li::before { content: "/"; margin-inline-end: .35rem; opacity: .5; }
.breadcrumbs a:hover { color: var(--text); }
.breadcrumbs [aria-current] { color: var(--text); }

/* ---------------- product grid ---------------- */
.grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none; margin: 0; padding: 0;
}
@media (min-width: 700px) { .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); }

.card {
  display: flex; flex-direction: column; height: 100%;
  background: var(--bg-2); border-radius: var(--radius-card); overflow: hidden;
  transition: box-shadow .18s, transform .18s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card__media { position: relative; aspect-ratio: 1; background: #fff; overflow: hidden; }
.card__media img {
  width: 100%; height: 100%; object-fit: contain; padding: 6%;
  transition: opacity .25s;
}
.card__media img.card__img--alt { position: absolute; inset: 0; opacity: 0; }
.card:hover .card__img--alt { opacity: 1; }
.card__body { display: flex; flex-direction: column; gap: .3rem; padding: .85rem .9rem 1rem; flex: 1; }
.card__title { font-size: .925rem; font-weight: 500; line-height: 1.35; margin: 0; }
.card__title a { display: block; }
.card__title a:hover { text-decoration: none; color: var(--text-muted); }
.card__meta { font-size: .75rem; color: var(--text-muted); }
.card__price { margin-top: auto; padding-top: .4rem; font-weight: 600; font-size: .975rem; }
.card__price del { color: var(--text-muted); font-weight: 400; margin-inline-start: .4em; font-size: .875rem; }
.card__price--poa { font-size: .9rem; font-weight: 600; color: var(--success); }

.badge {
  position: absolute; z-index: 2; bottom: 8px; left: 8px;
  padding: .25em .6em; border-radius: var(--radius-btn);
  font-size: .688rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
}
.badge--sale { background: var(--sale); color: #fff; }
.badge--cond { background: rgba(18,18,18,.82); color: #fff; left: auto; right: 8px; text-transform: none; letter-spacing: 0; font-weight: 600; }

/* ---------------- sections ---------------- */
.section { padding-block: clamp(2rem, 5vw, 3.5rem); }
.section--tight { padding-block: clamp(1rem, 2vw, 1.5rem); }
.section__head {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.25rem;
}
.section__head h2, .section__head h1 { margin: 0; }
.section__intro { max-width: 68ch; color: var(--text-muted); }

.hero {
  background: linear-gradient(180deg, var(--accent) 0%, #fff2b8 100%);
  padding-block: clamp(2.5rem, 7vw, 4.5rem);
}
.hero__inner { max-width: 62ch; }
.hero h1 { margin-bottom: .5rem; }
.hero p { font-size: clamp(1rem, .95rem + .3vw, 1.15rem); margin-bottom: 1.5rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; margin-top: 2rem; }
.hero__stat strong { display: block; font-size: 1.5rem; line-height: 1.1; }
.hero__stat span { font-size: .85rem; color: rgba(18,18,18,.7); }

.cat-tiles { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(min(200px,100%), 1fr)); list-style: none; margin: 0; padding: 0; }
.cat-tile {
  display: flex; flex-direction: column; gap: .2rem; justify-content: flex-end;
  min-height: 116px; padding: 1rem; border-radius: var(--radius-card);
  background: var(--bg-2); border: 1px solid transparent;
  font-weight: 600; transition: border-color .15s, background .15s;
}
.cat-tile:hover { text-decoration: none; background: #fff; border-color: var(--border-strong); }
.cat-tile span { font-size: .8rem; font-weight: 400; color: var(--text-muted); }

/* ---------------- product page ---------------- */
.product { display: grid; gap: clamp(1.5rem, 4vw, 3rem); padding-bottom: 3rem; }
@media (min-width: 860px) { .product { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); align-items: start; } }

.gallery { position: sticky; top: calc(var(--header-h) + 16px); }
@media (max-width: 859px) { .gallery { position: static; } }
.gallery__main {
  position: relative; aspect-ratio: 1; background: var(--bg-2);
  border-radius: var(--radius-card); overflow: hidden;
}
.gallery__main img { width: 100%; height: 100%; object-fit: contain; padding: 4%; }
.gallery__thumbs {
  display: flex; gap: 8px; margin-top: 8px; padding-bottom: 4px;
  overflow-x: auto; scrollbar-width: thin; list-style: none; padding-inline: 0;
}
.gallery__thumbs button {
  flex: 0 0 auto; width: 68px; height: 68px; padding: 3px; cursor: pointer;
  background: var(--bg-2); border: 2px solid transparent; border-radius: 8px;
}
.gallery__thumbs button[aria-current="true"] { border-color: var(--text); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: contain; }

.product__title { margin-bottom: .35rem; font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem); }
.product__sub { color: var(--text-muted); font-size: .925rem; margin-bottom: 1rem; }
.product__price { display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; margin-bottom: .25rem; }
.product__price strong { font-size: 1.6rem; font-weight: 600; }
.product__price del { color: var(--text-muted); font-size: 1.05rem; }
.product__price .save {
  background: var(--sale); color: #fff; font-size: .75rem; font-weight: 700;
  padding: .2em .5em; border-radius: var(--radius-btn);
}
.product__poa { font-size: 1.25rem; font-weight: 600; color: var(--success); }
.product__vat { font-size: .8rem; color: var(--text-muted); margin-bottom: 1.25rem; }

.summary {
  background: var(--bg-2); border-inline-start: 4px solid var(--accent);
  border-radius: 0 var(--radius-btn) var(--radius-btn) 0;
  padding: .9rem 1.1rem; margin-bottom: 1.5rem; font-size: .95rem;
}

fieldset.options { border: 0; margin: 0 0 1.25rem; padding: 0; }
fieldset.options legend {
  padding: 0; margin-bottom: .5rem; font-size: .875rem; font-weight: 600;
}
fieldset.options legend span { font-weight: 400; color: var(--text-muted); }
.pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.pills input { position: absolute; opacity: 0; width: 0; height: 0; }
.pills label {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem .9rem; border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill); cursor: pointer; font-size: .9rem;
  transition: background .12s, border-color .12s;
}
.pills label:hover { background: var(--bg-2); }
.pills input:checked + label { background: var(--text); color: #fff; border-color: var(--text); }
.pills input:focus-visible + label { outline: 3px solid var(--accent-strong); outline-offset: 2px; }
.pills label small { opacity: .7; font-size: .8em; }

.qty { display: flex; align-items: center; gap: 0; border: 1px solid var(--border-strong); border-radius: var(--radius-btn); width: fit-content; }
.qty button { width: 40px; height: 44px; border: 0; background: transparent; cursor: pointer; font-size: 1.1rem; }
.qty button:hover { background: var(--bg-2); }
.qty input {
  width: 48px; height: 44px; border: 0; text-align: center; font-size: 1rem;
  -moz-appearance: textfield; background: transparent;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.buy { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.5rem; }
.buy__row { display: flex; gap: .6rem; align-items: stretch; }
.buy__row .btn { flex: 1; }

.specs { width: 100%; border-collapse: collapse; font-size: .9rem; margin-bottom: 1.5rem; }
.specs caption { text-align: left; font-weight: 600; font-size: 1rem; margin-bottom: .5rem; }
.specs th, .specs td { text-align: left; padding: .6rem .75rem; border-bottom: 1px solid var(--border); vertical-align: top; }
.specs th { width: 38%; font-weight: 500; color: var(--text-muted); }
.specs tr:last-child th, .specs tr:last-child td { border-bottom: 0; }
.model-list { display: flex; flex-wrap: wrap; gap: .35rem; }
.model-chip {
  display: inline-block; padding: .2em .55em; background: var(--bg-2);
  border-radius: var(--radius-btn); font-size: .85em; white-space: nowrap;
}

.prose { max-width: 70ch; }
.prose h2, .prose h3 { margin-top: 1.5em; }
.prose ul, .prose ol { padding-inline-start: 1.25em; }
.prose li { margin-bottom: .35em; }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 1em; }
.prose td, .prose th { border: 1px solid var(--border); padding: .5rem; text-align: left; }
.prose a { text-decoration: underline; }

.accordion { border-top: 1px solid var(--border); }
.accordion details { border-bottom: 1px solid var(--border); }
.accordion summary {
  cursor: pointer; padding: 1rem 0; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; font-size: 1.3rem; font-weight: 400; line-height: 1; }
.accordion details[open] summary::after { content: "−"; }
.accordion__body { padding-bottom: 1rem; }
.accordion__body > :last-child { margin-bottom: 0; }

/* ---------------- filters (collection pages) ---------------- */
.toolbar {
  display: flex; flex-wrap: wrap; gap: .75rem; align-items: center;
  padding-block: 1rem; border-block: 1px solid var(--border); margin-bottom: 1.5rem;
}
.toolbar__count { font-size: .875rem; color: var(--text-muted); margin-inline-end: auto; }
.filter-group { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }
.filter-group > span { font-size: .8rem; font-weight: 600; color: var(--text-muted); }
.chip {
  padding: .35rem .8rem; border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill); background: transparent; cursor: pointer;
  font-size: .85rem; white-space: nowrap;
}
.chip:hover { background: var(--bg-2); }
.chip[aria-pressed="true"] { background: var(--text); color: #fff; border-color: var(--text); }
select.sort {
  padding: .4rem .6rem; border: 1px solid var(--border-strong);
  border-radius: var(--radius-btn); background: var(--bg); font-size: .875rem;
}
.grid__item[hidden] { display: none; }
.empty-state { padding: 3rem 0; text-align: center; color: var(--text-muted); }

/* Search results arrive after a fetch; reserving height keeps the rest of the
   page from jumping when they land. */
[data-search-results]:empty { min-height: 60vh; }
[data-search-summary] { min-height: 1.6em; }

/* ---------------- pagination ---------------- */
.pagination { display: flex; justify-content: center; gap: .35rem; flex-wrap: wrap; padding-block: 2rem; }
.pagination a, .pagination span {
  min-width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  padding-inline: .6rem; border: 1px solid var(--border); border-radius: var(--radius-btn);
  font-size: .9rem;
}
.pagination a:hover { background: var(--bg-2); text-decoration: none; }
.pagination [aria-current="page"] { background: var(--text); color: #fff; border-color: var(--text); font-weight: 600; }
.pagination .ellipsis { border-color: transparent; }

/* ---------------- cart ---------------- */
.cart-lines { list-style: none; margin: 0; padding: 0; }
.cart-line {
  display: grid; grid-template-columns: 72px 1fr auto; gap: .9rem;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.cart-line__media { width: 72px; height: 72px; background: var(--bg-2); border-radius: 8px; overflow: hidden; }
.cart-line__media img { width: 100%; height: 100%; object-fit: contain; }
.cart-line__title { font-weight: 500; font-size: .925rem; line-height: 1.35; }
.cart-line__opt { font-size: .8rem; color: var(--text-muted); }
.cart-line__ctl { display: flex; align-items: center; gap: .75rem; margin-top: .5rem; }
.cart-line__remove { border: 0; background: transparent; cursor: pointer; font-size: .8rem; color: var(--text-muted); text-decoration: underline; padding: 0; }
.cart-line__remove:hover { color: var(--sale); }
.cart-line__price { text-align: right; font-weight: 600; white-space: nowrap; }
.cart-line__price small { display: block; font-weight: 400; color: var(--text-muted); font-size: .75rem; }
.cart-totals { padding-block: 1rem; }
.cart-totals__row { display: flex; justify-content: space-between; gap: 1rem; padding-block: .35rem; }
.cart-totals__row--total { font-size: 1.15rem; font-weight: 700; border-top: 1px solid var(--border); margin-top: .5rem; padding-top: .75rem; }
.cart-layout { display: grid; gap: 2rem; }
@media (min-width: 860px) { .cart-layout { grid-template-columns: minmax(0,1.5fr) minmax(0,1fr); align-items: start; } }
.cart-aside { background: var(--bg-2); border-radius: var(--radius-card); padding: 1.25rem; position: sticky; top: calc(var(--header-h) + 16px); }
.cart-note { font-size: .85rem; color: var(--text-muted); }
.order-preview {
  width: 100%; min-height: 160px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .8rem; padding: .75rem; border: 1px solid var(--border-strong);
  border-radius: var(--radius-btn); background: var(--bg); resize: vertical;
}

.toast {
  position: fixed; inset-inline: 0; bottom: 20px; z-index: 300;
  display: flex; justify-content: center; pointer-events: none;
}
.toast__inner {
  background: var(--text); color: #fff; padding: .75rem 1.25rem;
  border-radius: var(--radius-pill); font-size: .9rem; box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(12px); transition: opacity .2s, transform .2s;
}
.toast[data-show="true"] .toast__inner { opacity: 1; transform: none; }

/* ---------------- footer ---------------- */
.footer { background: var(--bg-2); margin-top: 3rem; padding-block: 3rem 1.5rem; }
.footer__cols { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(min(200px,100%), 1fr)); }
.footer h2 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: .75rem; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: .4rem; font-size: .9rem; }
.footer__brand p { font-size: .9rem; color: var(--text-muted); max-width: 34ch; }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border);
  font-size: .8rem; color: var(--text-muted);
}
.social { display: flex; gap: .5rem; }
.social a { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--bg); }
.social svg { width: 18px; height: 18px; }

/* ---------------- misc pages ---------------- */
.page-head { padding-block: 2rem 1rem; }
.page-head h1 { margin-bottom: .35rem; }
.page-head p { color: var(--text-muted); max-width: 68ch; margin: 0; }
.contact-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(240px,100%),1fr)); }
.contact-card { background: var(--bg-2); border-radius: var(--radius-card); padding: 1.25rem; }
.contact-card h2 { font-size: 1rem; text-transform: none; letter-spacing: 0; margin-bottom: .35rem; }
.notice {
  background: #fff8dd; border: 1px solid var(--accent-strong);
  border-radius: var(--radius-btn); padding: .85rem 1rem; font-size: .9rem; margin-bottom: 1.5rem;
}
