@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

:root {
  --bg: #eef0ec;
  --surface: #ffffff;
  --surface-2: #e2e6df;
  --surface-3: #d6dcd1;
  --ink: #171b1a;
  --ink-muted: #566058;
  --line: #c7cfc3;
  --accent: #d92d20;
  --accent-ink: #ffffff;
  --accent-soft: #fbe0dc;
  --info: #2f5f9e;
  --success: #227849;
  --success-soft: #dcefe1;
  --warn: #a5690a;
  --shadow: 0 12px 32px -12px rgba(23, 27, 26, 0.28);
  --radius: 3px;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #14181a;
    --surface: #1c2124;
    --surface-2: #242b2d;
    --surface-3: #2c3436;
    --ink: #eef0ec;
    --ink-muted: #a5b0aa;
    --line: #333c3e;
    --accent: #ff6a58;
    --accent-ink: #171b1a;
    --accent-soft: #3a1a15;
    --info: #7aa8e5;
    --success: #57c684;
    --success-soft: #1c3327;
    --warn: #e0ab3f;
    --shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.55);
  }
}

:root[data-theme="dark"] {
  --bg: #14181a;
  --surface: #1c2124;
  --surface-2: #242b2d;
  --surface-3: #2c3436;
  --ink: #eef0ec;
  --ink-muted: #a5b0aa;
  --line: #333c3e;
  --accent: #ff6a58;
  --accent-ink: #171b1a;
  --accent-soft: #3a1a15;
  --info: #7aa8e5;
  --success: #57c684;
  --success-soft: #1c3327;
  --warn: #e0ab3f;
  --shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }

html, body { background: var(--bg); }

/* Page-level backstop: no single element on this site is meant to be wider
   than the viewport, so if anything nested deep in the layout ever computes
   an oversized intrinsic width (long unbroken card rows, etc.), clip it here
   rather than letting it push a horizontal scrollbar onto the whole page. */
html { overflow-x: hidden; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.mono {
  font-family: ui-monospace, "SF Mono", "Cascadia Mono", Consolas, "Roboto Mono", monospace;
  font-variant-numeric: tabular-nums;
}

.shelf-label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

/* ---------- Header ---------- */
header.site {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  row-gap: 0.7rem;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.wordmark-logo { height: 28px; width: auto; display: block; }
.wordmark-suffix { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.01em; color: var(--ink); }
.tagline {
  color: var(--ink-muted);
  font-size: 0.82rem;
  display: none;
}
@media (min-width: 720px) { .tagline { display: block; } }

.search-row {
  flex: 1 1 220px;
  min-width: 0;
  max-width: 420px;
  display: flex;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
}
@media (max-width: 480px) {
  .search-row { flex-basis: 100%; max-width: 100%; }
}
.search-row input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0.6rem 0.8rem;
  font-size: 0.88rem;
  color: var(--ink);
  outline: none;
}
.search-row button {
  flex: 0 0 auto;
  border: 0;
  background: var(--surface-3);
  color: var(--ink-muted);
  padding: 0 0.9rem;
  cursor: pointer;
  font-size: 0.85rem;
}

/* ---------- Inquiry cart "how it works" banner ---------- */
/* Desktop gets one static pre-baked image; mobile gets an auto-scrolling
   card marquee (the PHP intentionally renders the 4 steps twice in a row -
   that's the standard seamless-loop marquee trick, not a bug: translating
   the track by exactly -50% of its width lands it back on an identical
   copy of the start, so the loop never visibly jumps). Only one of the two
   is ever displayed at a time, switched by the media query at the bottom. */
.inquiry-cart-banner {
  max-width: 1180px;
  margin: 0 auto 1.6rem;
  padding: 0 1.5rem;
}

.inquiry-cart-desktop-art {
  display: block;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.inquiry-cart-desktop-art img { width: 100%; height: auto; display: block; }

.inquiry-cart-mobile-slider {
  display: none;
  overflow: hidden;
  border-radius: var(--radius);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.inquiry-cart-track {
  display: flex;
  width: max-content;
  gap: 0.8rem;
  animation: inquiry-cart-scroll 18s linear infinite;
}
@keyframes inquiry-cart-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.inquiry-step-card {
  flex: 0 0 auto;
  width: 190px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.inquiry-step-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  transform: scale(1.25);
  display: block;
  background: var(--surface-2);
}
.inquiry-step-copy { padding: 0.75rem 0.85rem 0.95rem; }
.inquiry-step-copy span {
  font-family: ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.inquiry-step-copy h2 {
  font-size: 0.9rem;
  margin: 0.2rem 0 0.3rem;
  font-weight: 800;
}
.inquiry-step-copy p {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.35;
}

@media (max-width: 767px) {
  .inquiry-cart-desktop-art { display: none; }
  .inquiry-cart-mobile-slider { display: block; }
  .inquiry-cart-banner { padding: 0 1rem; }
}

/* ---------- Bin strip (brands) ---------- */
.bin-strip {
  min-width: 0;
  padding: 1.4rem 1.5rem 0.4rem;
}
.bin-strip h2 {
  font-size: 0.72rem;
  color: var(--ink-muted);
  margin: 0 0 0.7rem;
}
.bin-row {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.3rem;
}
.bin-chip {
  flex: 0 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--surface-3);
  border-radius: var(--radius);
  padding: 0.55rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
  display: inline-block;
}
.bin-chip:hover { border-top-color: var(--accent); }
.bin-chip.active {
  border-top-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

/* ---------- Brand tiles (home) ---------- */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem 2rem;
  min-width: 0;
}
.brand-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 0.8rem;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow);
  position: relative;
}
.brand-tile img { height: 40px; width: auto; object-fit: contain; }
/* Model cards use the curated vehicle image for this exact catalogue ID.
   Keep the whole vehicle visible instead of cropping it like a brand logo. */
.brand-tile .model-photo {
  width: 100%;
  height: 112px;
  object-fit: contain;
  border-radius: 8px;
  background: #f4f6f8;
}
.brand-tile .model-photo-fallback {
  width: 100%;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--ink-muted);
  background: #f4f6f8;
}
.brand-tile .model-photo-fallback .placeholder-icon { width: 38px; height: 38px; }
.brand-tile .bname { font-size: 0.84rem; font-weight: 700; }
.brand-tile-chevron {
  width: 14px;
  height: 14px;
  color: var(--ink-muted);
  transition: transform 0.2s ease, color 0.2s ease;
}
.brand-tile.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.brand-tile.active .brand-tile-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

/* ---------- Models accordion panel ---------- */
.models-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}
.models-panel.open { grid-template-rows: 1fr; }
.models-panel-inner {
  min-height: 0;
  overflow: hidden;
}
.models-panel-inner:empty { display: none; }
.models-panel:not(.open) .models-panel-inner { visibility: hidden; }
.models-panel .models-panel-inner > * {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  margin-top: 0.2rem;
}
.models-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}
.models-panel-head h3 { margin: 0; font-size: 1rem; }
.models-panel-close {
  border: 0;
  background: var(--surface);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1rem;
  color: var(--ink-muted);
  flex: 0 0 auto;
}
.models-panel-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.model-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  min-height: 48px;
}
.model-chip svg { width: 16px; height: 16px; flex: 0 0 auto; color: var(--ink-muted); transition: transform 0.15s ease, color 0.15s ease; }
.model-chip:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.model-chip:hover svg { transform: translateX(3px); color: var(--accent); }
.models-panel-viewall {
  display: inline-flex;
  font-size: 0.82rem;
  color: var(--info);
  text-decoration: none;
  font-weight: 700;
}
.models-panel-viewall:hover { text-decoration: underline; }
.models-panel-empty, .models-panel-loading {
  font-size: 0.86rem;
  color: var(--ink-muted);
  margin-bottom: 0.9rem;
}

/* ---------- Main layout ---------- */
main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.6rem 1.5rem 6rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.6rem;
}
main > * { min-width: 0; }
@media (min-width: 900px) {
  main.with-rail { grid-template-columns: 200px minmax(0, 1fr); }
}

.model-rail { display: none; }
@media (min-width: 900px) {
  .model-rail { display: block; }
}
.model-rail h3 {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 0.6rem;
}
.model-rail ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid var(--line);
  max-height: 70vh;
  overflow-y: auto;
}
.model-rail li a {
  display: block;
  padding: 0.4rem 0.8rem;
  font-size: 0.86rem;
  text-decoration: none;
  color: var(--ink-muted);
  border-left: 2px solid transparent;
  margin-left: -2px;
}
.model-rail li a:hover { color: var(--ink); }
.model-rail li.active a {
  color: var(--accent);
  border-left-color: var(--accent);
  font-weight: 700;
}

.catalogue-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.catalogue-head h1 {
  font-size: 1.5rem;
  margin: 0;
  letter-spacing: -0.01em;
}
.catalogue-head .count {
  color: var(--ink-muted);
  font-size: 0.85rem;
}
.selected-model-photo {
  display: block;
  width: min(100%, 560px);
  max-height: 230px;
  margin-top: 0.8rem;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #f4f6f8;
}

/* Illustrated EPC entry on the Toyota Taisor inventory page. */
.epc-entry {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin: 1.25rem 0 1.6rem;
  padding: 1.15rem;
  border: 1px solid color-mix(in srgb, var(--accent) 36%, var(--line));
  border-radius: 10px;
  background: linear-gradient(130deg, color-mix(in srgb, var(--accent) 8%, #fff), #fff 68%);
  box-shadow: 0 5px 18px rgba(26, 33, 42, 0.06);
}
.epc-entry-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 9px;
  color: #fff;
  background: var(--accent);
}
.epc-entry-icon svg { width: 31px; height: 31px; }
.epc-entry-copy { min-width: 0; }
.epc-kicker {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.epc-entry h2 { margin: 0; font-size: 1.08rem; }
.epc-entry p { margin: 0.35rem 0 0; color: var(--ink-muted); font-size: 0.83rem; line-height: 1.48; }
.epc-entry-button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.7rem 0.95rem;
  border-radius: 7px;
  color: #fff;
  background: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.epc-entry-button:hover { filter: brightness(0.9); transform: translateY(-1px); }
.epc-directory { margin: 1.2rem 0 1.4rem; }
.epc-directory .catalogue-head { margin-bottom: 0.7rem; }
.epc-directory-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.75rem; }
.epc-directory-card { position: relative; display: grid; gap: 0.28rem; min-height: 112px; padding: 1rem 2.8rem 1rem 1rem; color: var(--ink); text-decoration: none; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 5px 18px rgba(26, 35, 46, 0.06); }
.epc-directory-card strong { font-size: 1rem; }
.epc-directory-card small { color: var(--ink-muted); }
.epc-directory-card > span:last-child { position: absolute; right: 1rem; top: 50%; translate: 0 -50%; color: var(--red); font-size: 1.35rem; }
.epc-directory-card:hover { border-color: var(--red); transform: translateY(-1px); }
@media (max-width: 760px) { .epc-directory-grid { grid-template-columns: 1fr; } }
@media (max-width: 700px) {
  .epc-entry { grid-template-columns: 48px minmax(0, 1fr); }
  .epc-entry-icon { width: 48px; height: 48px; }
  .epc-entry-button { grid-column: 1 / -1; justify-content: center; }
}

.empty-state {
  padding: 3rem 1rem;
  text-align: center;
  color: var(--ink-muted);
}

/* ---------- Category sections (collapsible) ---------- */
.category-section {
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
.category-section + .category-section { margin-top: 1rem; }
.category-summary {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  list-style: none;
  background: var(--surface-2);
  user-select: none;
}
.category-summary::-webkit-details-marker { display: none; }
.category-summary::marker { content: ""; }
.category-summary::after {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  background: currentColor;
  color: var(--ink-muted);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat center / contain;
  transition: transform 0.2s ease;
}
.category-section[open] .category-summary::after { transform: rotate(180deg); }
.category-image {
  width: 48px;
  height: 36px;
  flex: 0 0 48px;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}
.category-name {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.category-count {
  font-size: 0.78rem;
  color: var(--ink-muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.1rem 0.55rem;
  margin-right: auto;
  margin-left: 0.2rem;
}
.category-section .part-grid { padding: 1.1rem; }

.part-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem;
  min-width: 0;
}

.part-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  position: relative;
  box-shadow: var(--shadow);
}
.part-card-link {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}
.part-thumb {
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.part-thumb img { width: 100%; height: 100%; object-fit: contain; }
.part-thumb .placeholder-icon { width: 40%; height: 40%; color: var(--ink-muted); opacity: 0.6; }
.part-tag {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  background: var(--ink);
  color: var(--bg);
  font-size: 0.68rem;
  padding: 0.18rem 0.4rem;
  border-radius: 2px;
  letter-spacing: 0.02em;
}
.part-name {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}
.part-number {
  font-size: 0.76rem;
  color: var(--info);
}
.part-fits {
  font-size: 0.78rem;
  color: var(--ink-muted);
}
.part-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.76rem;
  color: var(--ink-muted);
  border-top: 1px dashed var(--line);
  padding-top: 0.55rem;
}
.part-code { color: var(--info); }

.add-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.15rem;
}
.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.qty-stepper button {
  width: 28px;
  height: 32px;
  border: 0;
  background: var(--surface-2);
  color: var(--ink);
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
}
.qty-stepper input {
  width: 34px;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: center;
  height: 32px;
  font-family: ui-monospace, monospace;
  font-size: 0.85rem;
  color: var(--ink);
  background: var(--surface);
}
.add-btn {
  flex: 1;
  height: 32px;
  border: 0;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-transform: uppercase;
}
.add-btn:active { transform: translateY(1px); }
.add-btn.added { background: var(--success); }

.view-details-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  margin-top: 0.15rem;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
}
.view-details-btn:active { transform: translateY(1px); }

/* ---------- Cart pull-tab ---------- */
.cart-tab {
  position: fixed;
  right: 0;
  bottom: 2rem;
  z-index: 30;
  background: var(--ink);
  color: var(--bg);
  border: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  font-family: inherit;
  height: 52px;
  width: auto;
  max-width: 52px;
  padding: 0;
  border-radius: 999px 0 0 999px;
  overflow: hidden;
  transition: max-width 0.25s ease;
}
.cart-tab:hover,
.cart-tab:focus-visible,
.cart-tab:active {
  max-width: 240px;
}
.cart-tab-icon {
  position: relative;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-tab-icon svg { width: 22px; height: 22px; }
.cart-tab .label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 1.2rem;
  flex: 0 0 auto;
}
.cart-tab .badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: ui-monospace, monospace;
  font-size: 0.66rem;
  font-weight: 700;
  min-width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.2rem;
  box-shadow: 0 0 0 2px var(--ink);
}

/* ---------- Cart drawer ---------- */
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 11, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 40;
}
.scrim.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 100%);
  background: var(--surface);
  border-left: 1px solid var(--line);
  z-index: 50;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}
.drawer.open { transform: translateX(0); }

.drawer-head {
  padding: 1rem 1.3rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.drawer-head h2 { margin: 0; font-size: 1.05rem; }
.drawer-back {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  border: 0;
  background: var(--surface-2);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.85rem;
  font-family: inherit;
  padding: 0.6rem 0.95rem 0.6rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  flex: 0 0 auto;
  min-height: 44px;
}
.drawer-back svg { width: 18px; height: 18px; flex: 0 0 auto; }
.drawer-back:hover { background: var(--accent-soft); color: var(--accent); }

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.1rem 0.9rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.3rem;
}
.cart-summary-row .count { font-size: 0.82rem; color: var(--ink-muted); }
.clear-cart-btn {
  border: 0;
  background: none;
  color: var(--ink-muted);
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0.4rem;
  font-family: inherit;
}
.clear-cart-btn:hover { color: var(--accent); }

.drawer-body { flex: 1; overflow-y: auto; padding: 0.4rem 1.3rem; }

.cart-line {
  display: flex;
  gap: 0.7rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.cart-line .swatch {
  width: 46px;
  height: 46px;
  border-radius: 2px;
  background: var(--surface-2);
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cart-line .swatch img { width: 100%; height: 100%; object-fit: contain; }
.cart-line .info { flex: 1; min-width: 0; }
.cart-line .info .name { font-size: 0.86rem; font-weight: 700; }
.cart-line .info .code { font-size: 0.74rem; color: var(--info); }
.cart-line .row2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.4rem;
}
.remove-btn {
  border: 0;
  background: none;
  color: var(--ink-muted);
  font-size: 0.74rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.cart-empty {
  padding: 2.5rem 0.5rem;
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.88rem;
}
.cart-empty svg { width: 40px; height: 40px; margin-bottom: 0.7rem; opacity: 0.6; }

.drawer-foot {
  border-top: 1px solid var(--line);
  padding: 1rem 1.3rem 1.3rem;
  background: var(--surface-2);
}
.field { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 0.65rem; min-width: 0; }
.field label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
}
.field input, .field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 0.55rem 0.6rem;
  font-size: 0.86rem;
  font-family: inherit;
}
.two-col { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 0.65rem; }

.send-btn {
  width: 100%;
  border: 0;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  margin-top: 0.4rem;
}
.send-btn:disabled { opacity: 0.6; cursor: default; }
.send-note {
  font-size: 0.72rem;
  color: var(--ink-muted);
  text-align: center;
  margin-top: 0.5rem;
}
.send-error {
  font-size: 0.76rem;
  color: var(--accent);
  text-align: center;
  margin-top: 0.5rem;
  display: none;
}
.send-error.show { display: block; }

/* ---------- Product detail ---------- */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
  text-decoration: none;
  margin-bottom: 0.9rem;
}
.back-link:hover { color: var(--ink); }

.breadcrumb { font-size: 0.78rem; color: var(--ink-muted); margin-bottom: 1.3rem; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { margin: 0 0.35rem; opacity: 0.6; }

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.8rem;
}
.detail-grid > * { min-width: 0; }
@media (min-width: 820px) {
  .detail-grid { grid-template-columns: 360px minmax(0, 1fr); }
}

.gallery { display: flex; flex-direction: column; gap: 0.6rem; }
.gallery-main {
  aspect-ratio: 1 / 1;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* Below the 2-column breakpoint, break the photo out to the full device
   width (matching the live site's product pages) instead of sitting boxed
   inside the page's side padding. Uses a fixed negative margin rather than
   100vw/left:50% (that combo is unreliable on mobile browsers once the page
   has been pinch-zoomed - the layout can end up misaligned after zooming
   back out). -3rem matches the combined horizontal padding of <main> (1.5rem,
   set site-wide in header.php) and this page's own <section> (1.5rem). */
@media (max-width: 819px) {
  .gallery { margin: 0 -3rem; }
  .gallery-thumbs { padding: 0 1.5rem; }
  .gallery-main { border-left: 0; border-right: 0; border-radius: 0; aspect-ratio: auto; }
  /* Let the photo size to its own natural aspect ratio instead of a forced
     square - a square box + object-fit:contain letterboxes any photo that
     isn't itself square, showing the box's own background on the sides,
     which looked like the photo wasn't actually reaching the edges. */
  .gallery-main-frame .gallery-main img { height: auto; object-fit: unset; }
}
.gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.gallery-main:has(img) { cursor: crosshair; touch-action: pan-y; }

.gallery-main-frame { position: relative; }
.zoom-hint {
  position: absolute;
  right: 0.6rem;
  bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: color-mix(in srgb, var(--ink) 78%, transparent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.15s ease;
}
.zoom-hint svg { flex-shrink: 0; }
.gallery-main-frame:has(.zoom-lens.active) .zoom-hint { opacity: 0; }

.zoom-lens {
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(0, 0, 0, 0.15);
  background-color: var(--surface-2);
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0;
  z-index: 5;
}
.zoom-lens.active { opacity: 1; }

.expand-btn {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: color-mix(in srgb, var(--ink) 78%, transparent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 6;
  padding: 0;
}
.expand-btn:hover { background: var(--ink); }
.gallery-main:has(video) ~ .expand-btn { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2.5rem 1.2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.3); }

.gallery-main .placeholder-icon { width: 32%; height: 32%; color: var(--ink-muted); opacity: 0.6; }
.gallery-badge-row {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  right: 0.55rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.media-tag {
  background: var(--ink);
  color: var(--bg);
  font-size: 0.68rem;
  padding: 0.18rem 0.4rem;
  border-radius: 2px;
  letter-spacing: 0.02em;
}
.gif-badge {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 700;
  padding: 0.16rem 0.5rem;
  border-radius: 999px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.media-caption {
  position: absolute;
  bottom: 0.65rem;
  left: 0.65rem;
  right: 0.65rem;
  font-size: 0.72rem;
  color: var(--ink-muted);
  text-align: center;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  border-radius: var(--radius);
  padding: 0.15rem 0;
}

.gallery-thumbs { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.thumb-btn {
  width: 56px;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  padding: 0;
  color: var(--ink-muted);
  overflow: hidden;
}
.thumb-btn img { width: 100%; height: 100%; object-fit: contain; }
.thumb-btn .placeholder-icon { width: 44%; height: 44%; }
.thumb-btn.active { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); color: var(--accent); }
.thumb-btn.thumb-gif { background: var(--surface-2); }
.thumb-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thumb-play svg { width: 9px; height: 9px; }

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.7rem 0.3rem 0.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}
.brand-badge img { width: 22px; height: 22px; object-fit: contain; }
.brand-badge span { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.02em; }

.detail-info { min-width: 0; overflow-x: hidden; }
.detail-info h1 { font-size: 1.55rem; margin: 0 0 0.7rem; letter-spacing: -0.01em; text-wrap: balance; }

.fits-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.1rem; }
.fits-chip {
  font-size: 0.74rem;
  border: 1px solid var(--line);
  background: var(--surface-2);
  border-radius: 999px;
  padding: 0.22rem 0.65rem;
  color: var(--ink-muted);
}

.spec-table { width: 100%; max-width: 480px; border-collapse: collapse; font-size: 0.85rem; margin-bottom: 1.4rem; }
.spec-table tr { border-bottom: 1px dashed var(--line); }
.spec-table tr:last-child { border-bottom: 0; }
.spec-table td { padding: 0.55rem 0.2rem; }
.spec-table td:first-child { color: var(--ink-muted); width: 44%; }

.detail-add-row { max-width: 340px; }

.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.1rem 0 1rem;
  padding: 0.6rem 1.15rem;
  background: #25D366;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.wa-link:hover {
  background: #1ebe5b;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.45);
  text-decoration: none;
}
.wa-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-link-icon svg { display: block; }

.detail-secondary-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.3rem;
}
.ship-info-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 0;
  background: none;
  padding: 0;
  color: var(--info);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}
.ship-info-btn:hover { text-decoration: underline; }

.share-row { display: flex; align-items: center; gap: 0.5rem; }
.share-label { font-size: 0.78rem; color: var(--ink-muted); margin-right: 0.1rem; }
.share-row a,
.share-row button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-muted);
  cursor: pointer;
}
.share-row a:hover,
.share-row button:hover { border-color: var(--accent); color: var(--accent); }
.share-copy-btn.copied { border-color: var(--success); color: var(--success); }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1.2rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  max-width: 420px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow);
}
.modal-title { margin: 0 0 1rem; font-size: 1rem; padding-right: 1.5rem; }
.modal-box h3 { margin: 1.1rem 0 0.5rem; font-size: 0.85rem; }
.modal-box h3:first-of-type { margin-top: 0; }
.modal-box p { margin: 0 0 0.6rem; font-size: 0.82rem; line-height: 1.5; color: var(--ink-muted); }
.modal-box a { color: var(--info); }
.modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 0;
  background: var(--surface-2);
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}
.modal-close:hover { background: var(--surface-3); }

.product-details-section { margin-top: 2.6rem; padding-top: 1.7rem; border-top: 1px solid var(--line); }
.product-details-section h3 { font-size: 0.95rem; margin: 0 0 0.6rem; }
.product-details-section p { font-size: 0.85rem; line-height: 1.6; color: var(--ink-muted); margin: 0 0 0.8rem; max-width: 68ch; }
.product-details-section a { color: var(--info); }
.product-details-notice { font-weight: 700; color: var(--ink); letter-spacing: 0.01em; }
.yt-inline-frame { position: relative; width: 100%; max-width: 640px; aspect-ratio: 16 / 9; margin: 0 0 0.8rem; background: #000; border-radius: 8px; overflow: hidden; }
.yt-inline-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.related { margin-top: 2.6rem; padding-top: 1.7rem; border-top: 1px solid var(--line); }
.related h2 { font-size: 0.72rem; color: var(--ink-muted); margin: 0 0 1rem; }

.category-slider-block { margin-top: 2.6rem; padding-top: 1.7rem; border-top: 1px solid var(--line); min-width: 0; max-width: 100%; }
.category-slider-heading {
  font-size: 0.72rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.7rem;
}
.category-slider-row,
.recently-viewed-row {
  display: flex;
  gap: 0.9rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scroll-snap-type: x proximity;
}
.category-slider-row .part-card.slider-card,
.recently-viewed-row .part-card.slider-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
}
.brand-picker-section { margin-top: 2.6rem; padding-top: 1.7rem; border-top: 1px solid var(--line); min-width: 0; }
.brand-picker-row { display: flex; gap: 0.7rem; overflow-x: auto; padding-bottom: 0.4rem; }
.brand-picker-item {
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.brand-picker-item:hover { border-color: var(--accent); }
.brand-picker-item.active { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.brand-picker-item img { max-width: 100%; max-height: 100%; object-fit: contain; }

.brand-picker-models {
  display: none;
  margin-top: 0.9rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
}
.brand-picker-models.open { display: block; }
.brand-picker-models-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
}
.brand-picker-viewall { color: var(--info); font-weight: 600; text-decoration: none; white-space: nowrap; }
.brand-picker-viewall:hover { text-decoration: underline; }
.brand-picker-models-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.brand-picker-model-chip {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.78rem;
  color: var(--ink);
  text-decoration: none;
}
.brand-picker-model-chip:hover { border-color: var(--accent); color: var(--accent); }
.brand-picker-models-loading,
.brand-picker-models-empty { font-size: 0.82rem; color: var(--ink-muted); }
.brand-picker-models-empty a { color: var(--info); }

.recently-viewed-section { margin-top: 2.6rem; padding-top: 1.7rem; border-top: 1px solid var(--line); min-width: 0; }

.category-jump-row {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.3rem;
  margin: 0.8rem 0 1.2rem;
}
.category-jump-chip {
  flex: 0 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-muted);
  text-decoration: none;
  white-space: nowrap;
}
.category-jump-chip:hover { border-color: var(--accent); color: var(--accent); }
.category-jump-chip.active { background: var(--accent); border-color: var(--accent); color: #fff; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.4rem;
  transform: translate(-50%, 8px);
  background: var(--ink);
  color: var(--bg);
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: var(--shadow);
  max-width: 90vw;
  text-align: center;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--ink);
  color: var(--bg);
  padding: 2.4rem 1.5rem 0;
  margin-top: 2rem;
  font-size: 0.85rem;
}
footer.site-footer a { color: inherit; text-decoration: none; }
footer.site-footer a:hover { text-decoration: underline; }

.footer-main {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--bg) 18%, transparent);
}
@media (min-width: 640px) {
  .footer-main { grid-template-columns: 1.2fr 1fr; }
}

.footer-logo { display: inline-flex; align-items: baseline; gap: 0.15rem; font-weight: 900; font-size: 1.3rem; text-decoration: none; margin-bottom: 0.6rem; }
.footer-logo .mark { color: var(--accent); }
.footer-tagline { opacity: 0.75; margin: 0 0 1.1rem; max-width: 30ch; }

.footer-social { display: flex; gap: 0.6rem; list-style: none; padding: 0; margin: 0; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--bg) 12%, transparent);
  text-decoration: none;
}
.footer-social a:hover { background: var(--accent); }
.footer-social svg { width: 16px; height: 16px; }

.footer-contact h3 { margin: 0 0 0.7rem; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.65; }
.footer-contact p { margin: 0 0 0.6rem; line-height: 1.5; opacity: 0.9; }
.footer-muted { opacity: 0.6; font-size: 0.78rem; }

.footer-disclaimer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.2rem 0;
  font-size: 0.72rem;
  opacity: 0.55;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--bg) 12%, transparent);
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.2rem 0 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-payments { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.pay-badge {
  border: 1px solid color-mix(in srgb, var(--bg) 25%, transparent);
  border-radius: 3px;
  padding: 0.2rem 0.5rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  opacity: 0.75;
}
.footer-copy { font-size: 0.74rem; opacity: 0.65; line-height: 1.6; }
.footer-copy a { opacity: 0.9; margin: 0 0.15rem; text-decoration: underline; }
