/* Vintage Surfwear — prototype stylesheet
   Palette from vsw-logo.svg: navy #013783, black #0a0a0a, silver #afaeaf, off-white #fdfefd */

/* self-hosted fonts (latin subsets) */
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Anton";
  src: url("/assets/fonts/anton-400-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* metric-matched fallbacks so the swap causes no layout shift */
@font-face {
  font-family: "Inter-fallback";
  src: local("Arial");
  size-adjust: 107%;
  ascent-override: 90.44%;
  descent-override: 22.52%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "Anton-fallback";
  src: local("Arial Narrow Bold"), local("Arial Narrow"), local("Arial");
  size-adjust: 61.7%;
  ascent-override: 168.8%;
  descent-override: 41.4%;
  line-gap-override: 0%;
}

:root {
  --navy: #013783;
  --navy-dark: #012a63;
  --ink: #0d0d0d;
  --silver: #afaeaf;
  --paper: #fdfefd;
  --sand: #f4f3f0;
  --line: #e3e2df;
  --red: #c0392b;
  --font-display: "Anton", "Anton-fallback", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Inter-fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h: 64px;
  --announce-h: 40px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
/* stop iOS Safari panning to off-canvas drawers / any stray overflow */
html, body { overflow-x: hidden; }
@supports (overflow-x: clip) { html, body { overflow-x: clip; } }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 16px; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

h1, h2, h3.display { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.01em; text-transform: uppercase; line-height: 1.08; }
h1 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 13px 28px;
  border: 2px solid transparent;
  transition: transform .12s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-dark); }
.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-light:hover { background: var(--sand); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.linklike { background: none; border: 0; color: var(--navy); text-decoration: underline; font-size: inherit; }

/* ---------- announcement ---------- */
.announce {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.announce strong { letter-spacing: 0.05em; }
.announce-link { color: #fff; font-weight: 700; text-underline-offset: 2px; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 18px;
  height: var(--header-h);
  padding: 0 20px;
  background: rgba(253, 254, 253, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.logo img { width: 130px; height: auto; }
.logo { flex-shrink: 0; }
.main-nav { flex: 1; align-self: stretch; }
.main-nav > ul { display: flex; gap: 4px; height: 100%; align-items: stretch; }
.main-nav > ul > li { display: flex; align-items: center; }
.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 13px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
}
/* nav items fill header height so the hover state survives the trip down to the panel */
.has-drop > a, .has-mega > a { height: 100%; }
.main-nav a:hover { color: var(--navy); }
.has-drop { position: relative; }
.drop {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .15s ease .12s, transform .15s ease .12s, visibility .15s .12s;
  padding: 8px 0;
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); transition-delay: 0s; }
.drop a { display: block; padding: 8px 18px; font-size: 0.82rem; }

/* mega menu */
.has-mega { position: static; }
.mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 40px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .15s ease .12s, transform .15s ease .12s, visibility .15s .12s;
}
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: translateY(0); transition-delay: 0s; }
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 220px;
  gap: 40px;
  padding-top: 28px;
  padding-bottom: 32px;
}
.mega-col h3 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 10px;
}
.mega-col .mega-gap { margin-top: 22px; }
.mega-col ul li { margin: 0; }
.mega-col a {
  display: block;
  padding: 5px 0;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
}
.mega-col a:hover { color: var(--navy); text-decoration: underline; }
.mega-sub a { padding-left: 14px; font-size: 0.82rem; color: #666; }
.mega-promo {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--sand);
  align-self: start;
}
.mega-promo img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .3s ease; }
.mega-promo:hover img { transform: scale(1.04); }
.mega-promo span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13,13,13,0.82);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 14px;
  line-height: 1.3;
}
.mega-promo small { font-family: var(--font-body); font-size: 0.72rem; font-weight: 500; color: #cfcfcf; text-transform: none; letter-spacing: 0; }
@media (max-width: 1100px) {
  .mega-grid { grid-template-columns: 1fr 1fr 1fr; }
  .mega-promo { display: none; }
}
.header-actions { display: flex; align-items: center; gap: 4px; }
.icon-btn {
  background: none;
  border: 0;
  padding: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
}
.icon-btn:hover { color: var(--navy); }
.menu-btn { display: none; }
.cart-btn { position: relative; }
.cart-count {
  position: absolute;
  top: 2px;
  right: 0;
  background: var(--navy);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ---------- drawers ---------- */
.drawer-scrim {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s;
  z-index: 80;
}
.drawer-scrim.open { opacity: 1; visibility: visible; }
.mobile-drawer, .cart-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  width: min(360px, 88vw);
  background: #fff;
  z-index: 90;
  visibility: hidden;
  transition: transform .25s ease, visibility 0s .25s;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-drawer { left: 0; transform: translateX(-100%); }
.cart-drawer { right: 0; transform: translateX(100%); }
.mobile-drawer.open, .cart-drawer.open { transform: translateX(0); visibility: visible; transition: transform .25s ease, visibility 0s; }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
}
.m-nav { padding: 8px 0 40px; }
.m-nav a { display: block; padding: 11px 22px; text-decoration: none; font-weight: 500; font-size: 0.95rem; }
.m-nav a:hover { background: var(--sand); color: var(--navy); }
.m-group {
  padding: 18px 22px 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
}
.cart-empty { padding: 48px 28px; text-align: center; display: flex; flex-direction: column; gap: 12px; align-items: center; color: var(--ink); }
.cart-empty svg { color: var(--silver); }
.cart-empty-title { font-family: var(--font-display); font-size: 1.3rem; text-transform: uppercase; }
.cart-empty-sub { font-size: 0.9rem; color: #555; }
.cart-empty .btn { width: 100%; }

/* ---------- search ---------- */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.55);
  z-index: 95;
  display: none;
  padding: 8vh 20px 0;
}
.search-overlay.open { display: block; }
.search-box {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.search-row { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.search-row svg { flex-shrink: 0; color: var(--silver); }
.search-row input { flex: 1; border: 0; outline: none; font-size: 1.05rem; }
.search-results { max-height: 55vh; overflow-y: auto; padding: 10px; }
.search-hint { padding: 10px; font-size: 0.85rem; color: #666; }
.search-hint button {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 4px 12px;
  margin: 2px;
  font-size: 0.8rem;
}
.search-hint button:hover { border-color: var(--navy); color: var(--navy); }
.s-result { display: flex; gap: 14px; padding: 10px; text-decoration: none; align-items: center; }
.s-result:hover { background: var(--sand); }
.s-result img { width: 56px; height: 56px; object-fit: cover; }
.s-result .sr-title { font-weight: 600; font-size: 0.9rem; }
.s-result .sr-meta { font-size: 0.8rem; color: #777; }
.s-result .sr-price { margin-left: auto; font-weight: 700; font-size: 0.9rem; white-space: nowrap; }
.s-none { padding: 24px; text-align: center; color: #666; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 78vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1,20,50,0.25) 0%, rgba(1,20,50,0.55) 70%, rgba(1,20,50,0.75) 100%);
}
.hero-inner { position: relative; z-index: 2; text-align: center; color: #fff; padding: 90px 20px; max-width: 860px; }
.hero-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #cfe0ff;
}
.hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); text-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.hero-sub { max-width: 560px; margin: 18px auto 28px; font-size: 1.05rem; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- sections ---------- */
.section { padding: 56px 0; }
.section-tint { background: var(--sand); }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 26px; }
.see-all { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none; color: var(--navy); }
.see-all:hover { text-decoration: underline; }

.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cat-tile { position: relative; display: block; overflow: hidden; aspect-ratio: 4/3; background: var(--sand); }
.cat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.cat-tile:hover img { transform: scale(1.05); }
.cat-tile span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 16px;
}

.era-band { position: relative; min-height: 420px; display: flex; align-items: center; overflow: hidden; }
.era-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.era-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(1,25,60,0.82) 0%, rgba(1,25,60,0.35) 100%); }
.era-inner { position: relative; z-index: 2; color: #fff; max-width: 560px; margin-left: max(20px, calc((100vw - 1200px) / 2 + 20px)); padding: 70px 20px; }
.era-inner h2 { margin-bottom: 14px; }
.era-inner p { margin-bottom: 22px; color: #e7eefc; }

.brand-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.brand-cloud a {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 22px;
  border: 2px solid var(--ink);
  transition: background .15s, color .15s;
}
.brand-cloud a:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.trust h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.05rem; letter-spacing: 0.04em; margin-bottom: 8px; }
.trust p { font-size: 0.92rem; color: #555; }

/* ---------- product cards ---------- */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { text-decoration: none; display: block; }
.card-media { position: relative; aspect-ratio: 1/1; background: var(--sand); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.card:hover .card-media img { transform: scale(1.04); }
.badge-sold {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
}
.badge-lg { font-size: 0.8rem; padding: 8px 16px; }
.card-info { padding: 10px 2px 0; }
.card-brand { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); }
.card-title { font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; line-height: 1.35; margin: 3px 0 6px; }
.card-meta { display: flex; justify-content: space-between; font-size: 0.85rem; }
.card-price { font-weight: 700; }
.card-size { color: #888; }

/* ---------- collection ---------- */
.collection { padding-top: 22px; padding-bottom: 60px; }
.crumbs { font-size: 0.78rem; color: #888; margin: 4px 0 18px; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: var(--silver); }
.crumbs a { color: #888; text-decoration: none; }
.crumbs a:hover { color: var(--navy); text-decoration: underline; }
.collection-head { max-width: 760px; margin-bottom: 26px; }
.collection-intro { color: #555; margin-top: 10px; }
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-end;
  padding: 14px 0 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
}
.filter-group { display: flex; flex-direction: column; gap: 3px; }
.filter-group label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #888; }
.filter-group select { border: 1px solid var(--line); background: #fff; padding: 8px 10px; font-size: 0.88rem; min-width: 130px; }
.filter-count { margin-left: auto; font-size: 0.82rem; color: #888; align-self: center; }
.no-results { padding: 40px 0; color: #666; }
.seo-note { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 22px; max-width: 760px; }
.seo-note p { font-size: 0.9rem; color: #666; }
.crosslinks { margin-top: 34px; }
.crosslinks h2 { font-size: 1rem; margin-bottom: 12px; }
.crosslink-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.crosslink-chips a {
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: #444;
}
.crosslink-chips a:hover { border-color: var(--navy); color: var(--navy); }
.search-page-form { display: flex; gap: 10px; max-width: 520px; margin-bottom: 20px; }
.search-page-form input { flex: 1; border: 1px solid var(--line); padding: 12px 14px; min-width: 0; }
.search-page-form input:focus { outline: 2px solid var(--navy); outline-offset: -1px; }

/* ---------- product page ---------- */
.product { padding-top: 22px; padding-bottom: 40px; }
.product-layout { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 44px; align-items: start; }
.product-media { position: static; }
@media (min-width: 821px) {
  .product-media { position: sticky; top: calc(var(--header-h) + 16px); }
}
.gallery-main { position: relative; background: var(--sand); }
.gallery-zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}
.gallery-zoom img { width: 100%; object-fit: contain; display: block; }
.gallery-expand-hint {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(253, 254, 253, 0.9);
  color: var(--ink);
  padding: 7px;
  border-radius: 6px;
  display: flex;
  pointer-events: none;
}
.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  background: var(--sand);
  cursor: pointer;
  opacity: 0.75;
  transition: opacity .15s, border-color .15s;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb:hover { opacity: 1; }
.thumb.is-active { border-color: var(--navy); opacity: 1; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 10, 14, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
.lb-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
}
.lb-close:hover { color: var(--silver); }
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(253, 254, 253, 0.12);
  border: 0;
  color: #fff;
  padding: 14px 10px;
  cursor: pointer;
  border-radius: 6px;
  display: flex;
}
.lb-nav:hover { background: rgba(253, 254, 253, 0.25); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: #cfcfcf;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}
.contact-address { font-style: normal; line-height: 1.7; border-left: 3px solid var(--navy); padding-left: 16px; margin: 8px 0 16px; }
.p-brand { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); text-decoration: none; }
.p-brand:hover { text-decoration: underline; }
.product-info h1 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 6px 0 12px; }
.p-price-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.p-price { font-size: 1.4rem; font-weight: 700; }
.p-sold-flag {
  background: var(--ink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
}
.p-specs { display: flex; gap: 0; border: 1px solid var(--line); margin-bottom: 20px; }
.p-specs > div { flex: 1; padding: 10px 14px; border-right: 1px solid var(--line); }
.p-specs > div:last-child { border-right: 0; }
.p-specs dt { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #888; }
.p-specs dd { font-size: 0.92rem; font-weight: 600; }
.notify-box { background: var(--sand); border: 1px solid var(--line); padding: 18px; margin-bottom: 22px; }
.notify-box p { font-size: 0.9rem; margin-bottom: 12px; }
.notify-form, .newsletter-form { display: flex; gap: 8px; }
.notify-form input, .newsletter-form input {
  flex: 1;
  border: 1px solid var(--line);
  padding: 12px 14px;
  min-width: 0;
}
.notify-form input:focus, .newsletter-form input:focus { outline: 2px solid var(--navy); outline-offset: -1px; }
.form-success { color: var(--navy); font-weight: 600; font-size: 0.92rem; margin-top: 10px; }
.form-error { color: var(--red); font-weight: 600; font-size: 0.88rem; margin-top: 10px; }
.newsletter .form-error { color: #ffd7d0; }
form[aria-busy="true"] input, form[aria-busy="true"] select, form[aria-busy="true"] textarea { opacity: 0.6; }
.btn.is-loading { opacity: 0.75; cursor: wait; position: relative; }
.btn.is-loading::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  vertical-align: -1px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: vsw-spin 0.7s linear infinite;
}
@keyframes vsw-spin { to { transform: rotate(360deg); } }
.p-desc { margin-bottom: 20px; }
.p-desc p { color: #333; }
.p-acc { border-top: 1px solid var(--line); padding: 0; }
.p-acc:last-of-type { border-bottom: 1px solid var(--line); }
.p-acc summary {
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-acc summary::-webkit-details-marker { display: none; }
.p-acc summary::after { content: "+"; font-size: 1.2rem; color: var(--silver); }
.p-acc[open] summary::after { content: "–"; }
.p-acc p { padding: 0 0 16px; font-size: 0.9rem; color: #444; }

/* ---------- info pages ---------- */
.info-page { padding-top: 22px; padding-bottom: 70px; max-width: 780px; }
.info-page h1 { margin-bottom: 22px; }
.info-page h2 { font-size: 1.25rem; margin: 30px 0 10px; }
.info-content p { margin-bottom: 14px; }
.info-content ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.info-content li { margin-bottom: 6px; }
.lede { font-size: 1.12rem; color: #333; }
.info-table { width: 100%; border-collapse: collapse; margin: 14px 0 20px; font-size: 0.92rem; }
.info-table th, .info-table td { border: 1px solid var(--line); padding: 9px 12px; text-align: left; }
.info-table th { background: var(--sand); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; }
.center { text-align: center; margin: 0 auto; }
.center .btn { margin: 6px; }

.contact-form { display: flex; flex-direction: column; gap: 12px; margin: 20px 0 26px; }
.contact-form label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #666; }
.contact-form input, .contact-form select, .contact-form textarea { border: 1px solid var(--line); padding: 11px 13px; width: 100%; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form .form-row > div { display: flex; flex-direction: column; gap: 4px; }
.contact-form .btn { align-self: flex-start; }

/* ---------- newsletter + footer ---------- */
.newsletter { background: var(--navy); color: #fff; padding: 60px 0; text-align: center; }
.newsletter h2 { margin-bottom: 10px; }
.newsletter p { max-width: 520px; margin: 0 auto 22px; color: #d6e2f8; font-size: 0.95rem; }
.newsletter-form { max-width: 440px; margin: 0 auto; }
.newsletter-form input { border: 0; }
.newsletter .btn-primary { background: var(--ink); border-color: var(--ink); }
.newsletter .btn-primary:hover { background: #000; }
.newsletter .form-success { color: #fff; }

.site-footer { background: var(--ink); color: #cfcfcf; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; padding: 54px 20px 34px; }
.logo-plate {
  display: inline-block;
  background: var(--paper);
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 14px;
}
.logo-plate img { display: block; }
.f-brand p { font-size: 0.86rem; color: #9a9a9a; max-width: 300px; }
.f-col h3 { font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.f-col ul li { margin-bottom: 8px; }
.f-col a { color: #cfcfcf; text-decoration: none; font-size: 0.88rem; }
.f-col a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 26px;
  border-top: 1px solid #262626;
  font-size: 0.78rem;
  color: #8a8a8a;
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .main-nav { display: none; }
  .menu-btn { display: inline-flex; }
  .site-header { gap: 8px; }
  .logo { margin-right: auto; }
  .product-layout { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .product-media, .product-info { min-width: 0; max-width: 100%; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; gap: 20px; }
  .era-inner { margin-left: 0; }
  .hero { min-height: 66vh; }
}
@media (max-width: 620px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .card-title { font-size: 0.82rem; }
  .cat-grid { gap: 10px; }
  .cat-tile span { font-size: 0.85rem; padding: 5px 12px; }
  .filter-bar { gap: 8px; }
  .filter-group select { min-width: 0; width: 100%; }
  .filter-group { flex: 1 1 45%; }
  .filter-count { flex-basis: 100%; margin-left: 0; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .notify-form, .newsletter-form { flex-direction: column; }
  .p-specs { flex-direction: column; }
  .p-specs > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .p-specs > div:last-child { border-bottom: 0; }
}
