/* Nathan's Auto — modern · simple · effective */
:root {
  /* Idaho night: black · silver · white · flag blue */
  --bg: #07090d;
  --surface: #0e1219;
  --card: #131822;
  --line: rgba(192,200,212,0.14);
  --text: #f8fafc;
  --muted: #94a3b8;
  --silver: #c0c8d4;
  --silver-bright: #e8edf4;
  --blue: #2563eb;
  --blue-bright: #3b82f6;
  --blue-deep: #1e3a8a;
  --blue-dim: rgba(37,99,235,0.14);
  --amber: var(--blue-bright); /* legacy alias → blue */
  --amber-dim: var(--blue-dim);
  --venmo: #008CFF;
  --ok: #34d399;
  --danger: #f87171;
  --radius: 16px;
  --radius-sm: 12px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --display: "Bebas Neue", Impact, sans-serif;
  --max: 1040px;
  --shadow: 0 28px 56px rgba(0,0,0,0.45);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(900px 420px at 15% -5%, rgba(37,99,235,0.16), transparent 55%),
    radial-gradient(700px 380px at 100% 0%, rgba(148,163,184,0.08), transparent 50%),
    linear-gradient(180deg, #0b1018 0%, var(--bg) 45%, #05070a 100%);
  min-height: 100dvh;
  line-height: 1.55;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }

.wrap {
  width: min(var(--max), calc(100% - 1.5rem));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
a { color: var(--blue-bright); text-decoration: none; }
a:hover { color: var(--silver-bright); }
img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: var(--display);
  letter-spacing: 0.03em;
  line-height: 0.98;
  margin: 0 0 0.45em;
  font-weight: 400;
}
h1 { font-size: clamp(2.6rem, 8vw, 4.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.35rem); }
h3 { font-size: 1.35rem; letter-spacing: 0.05em; font-family: var(--font); font-weight: 650; }
.muted { color: var(--muted); }
.mt { margin-top: 1.15rem; }
.center { text-align: center; }

/* —— Header —— */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,12,16,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 1rem;
}
.brand {
  display: flex; align-items: center; gap: 0.7rem; color: var(--text);
}
.brand:hover { color: var(--text); }
.brand-logo {
  width: 40px; height: 40px; border-radius: 11px;
  box-shadow: 0 6px 18px rgba(37,99,235,0.3);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 1rem; font-weight: 700; }
.brand-text small { color: var(--muted); font-size: 0.72rem; font-weight: 500; }

.site-nav {
  display: flex; align-items: center; gap: 0.15rem 1.1rem;
}
.site-nav a {
  color: var(--muted); font-weight: 550; font-size: 0.93rem;
  padding: 0.4rem 0;
}
.site-nav a:hover, .site-nav a.active { color: var(--text); }
.site-nav a.active { box-shadow: inset 0 -2px 0 var(--blue-bright); }
.nav-cta {
  margin-left: 0.35rem !important;
  box-shadow: none !important;
}

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--line);
  width: 46px; height: 46px; border-radius: 12px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; cursor: pointer; padding: 0;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px;
  transition: 0.2s;
}
.nav-backdrop {
  position: fixed; inset: 0; z-index: 45; background: rgba(0,0,0,0.55);
}
.nav-backdrop[hidden] { display: none !important; }

/* —— Buttons —— */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  border: 1px solid transparent; border-radius: 999px;
  padding: 0.8rem 1.25rem; font-weight: 650; font-size: 0.94rem;
  cursor: pointer; transition: 0.18s ease; font-family: inherit;
  text-decoration: none; min-height: 46px; line-height: 1.2;
}
.btn-sm { padding: 0.55rem 0.95rem; font-size: 0.86rem; min-height: 40px; }
.btn-lg { padding: 0.95rem 1.5rem; font-size: 1rem; }
.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(37,99,235,0.35);
}
.btn-primary:hover { filter: brightness(1.08); color: #fff !important; }
.btn-ghost {
  background: transparent; border-color: var(--line); color: var(--text) !important;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.03); }
.btn-venmo {
  background: linear-gradient(135deg, #008CFF, #0066cc);
  color: #fff !important;
}
.btn-venmo:hover { filter: brightness(1.08); color: #fff !important; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.65rem; }

/* —— Layout blocks —— */
.hero { padding: 3.5rem 0 2.5rem; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2rem; align-items: center;
}
.eyebrow {
  display: inline-block;
  color: var(--blue-bright); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 0.72rem; margin-bottom: 0.85rem;
}
.lead {
  font-size: 1.08rem; color: var(--muted); max-width: 34rem; margin: 0 0 1.5rem;
}
.help { font-size: 0.85rem; color: var(--muted); margin-top: 0.4rem; }

.panel-card, .form-card, .side-card, .hero-card, .card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
}
.hero-card { box-shadow: var(--shadow); }
.card { transition: 0.2s ease; }
.card:hover { border-color: rgba(148,163,184,0.35); transform: translateY(-2px); }

.badge {
  display: inline-block; font-size: 0.7rem; font-weight: 750;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.28rem 0.55rem; border-radius: 999px;
  background: var(--blue-dim); color: #93c5fd;
  border: 1px solid rgba(59,130,246,0.3);
  margin-bottom: 0.65rem;
}

.card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.card h3 { margin-bottom: 0.4rem; }
.card p { margin: 0 0 1rem; color: var(--muted); font-size: 0.95rem; }

.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; margin-top: 1rem; }
.stat {
  background: rgba(0,0,0,0.28); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 0.85rem;
}
.stat strong {
  display: block; font-family: var(--display); font-size: 1.55rem;
  color: var(--blue-bright); letter-spacing: 0.04em;
}
.stat span { color: var(--muted); font-size: 0.8rem; }

section { padding: 2.75rem 0; }
.section-head { margin-bottom: 1.35rem; }
.section-head p { color: var(--muted); margin: 0.35rem 0 0; max-width: 32rem; }

.page-hero { padding: 2.5rem 0 1rem; }
.page-hero p { color: var(--muted); max-width: 38rem; font-size: 1.05rem; }

.cta-band {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 1.15rem; padding: 1.5rem 1.6rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(59,130,246,0.3);
  background:
    radial-gradient(500px 160px at 0% 0%, rgba(37,99,235,0.18), transparent 60%),
    linear-gradient(135deg, #101522 0%, #0b0f18 100%);
}

/* —— Forms —— */
.form-shell {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1.25rem; align-items: start;
}
label {
  display: block; font-size: 0.84rem; font-weight: 650; color: #c5cdd8;
  margin: 0.85rem 0 0.35rem;
}
label:first-child, .form-card > label:first-of-type { margin-top: 0; }
.opt { font-weight: 500; color: var(--muted); font-size: 0.78rem; }
input, select, textarea {
  width: 100%; border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.35); color: var(--text);
  padding: 0.8rem 0.9rem; font: inherit; font-size: 16px;
  min-height: 48px; outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none; appearance: none;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%238b95a5' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.9rem center;
  padding-right: 2.2rem;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: rgba(59,130,246,0.55);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem; }
.form-actions { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 0.65rem; }

.field-error {
  border-color: rgba(248,113,113,0.55) !important;
  box-shadow: 0 0 0 3px rgba(248,113,113,0.12) !important;
}

/* Booking steps */
.stepper {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.4rem; margin-bottom: 1.35rem;
}
.step-tab {
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.7rem 0.4rem; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: rgba(0,0,0,0.25);
  color: var(--muted); font: inherit; font-weight: 650; font-size: 0.85rem;
  cursor: pointer; min-height: 48px;
}
.step-tab span {
  width: 1.4rem; height: 1.4rem; border-radius: 50%;
  display: grid; place-items: center; font-size: 0.75rem;
  background: rgba(255,255,255,0.06);
}
.step-tab.active {
  border-color: rgba(59,130,246,0.45);
  background: var(--blue-dim); color: var(--text);
}
.step-tab.active span { background: var(--blue-bright); color: #fff; font-weight: 800; }
.step-tab.done { color: #86efac; border-color: rgba(52,211,153,0.3); }
.step-panel { display: none; }
.step-panel.active { display: block; animation: fadeIn 0.22s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: none; }
}
.step-title { margin: 0 0 0.2rem; font-size: 1.2rem; }
.step-help { margin: 0 0 1rem; }
.step-actions {
  display: flex; flex-wrap: wrap; gap: 0.65rem;
  margin-top: 1.35rem; padding-top: 1rem; border-top: 1px solid var(--line);
}
.linkish {
  background: none; border: 0; color: var(--blue-bright); font: inherit;
  cursor: pointer; padding: 0; text-decoration: underline;
}
.callout-note {
  margin-top: 1rem; padding: 0.85rem 1rem; border-radius: var(--radius-sm);
  border: 1px solid rgba(59,130,246,0.3); background: var(--blue-dim);
}
.book-layout {
  display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 1.25rem; align-items: start;
}
.book-steps { padding-left: 1.1rem; margin: 0 0 1rem; color: var(--muted); }
.book-steps li { margin: 0.4rem 0; }
.book-steps strong { color: var(--text); }
.sticky-aside { position: sticky; top: 88px; }
.success-card { text-align: center; padding: 2rem 1.4rem; max-width: 520px; margin: 0 auto; }
.success-icon {
  width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.5rem; font-weight: 700;
  background: rgba(52,211,153,0.15); color: #86efac; border: 1px solid rgba(52,211,153,0.3);
}

/* Tables */
.table-wrap {
  overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius);
  -webkit-overflow-scrolling: touch;
}
table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
th, td { padding: 0.85rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
th { color: var(--muted); font-weight: 650; background: rgba(255,255,255,0.02); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; }
tr:last-child td { border-bottom: 0; }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.85rem; }

/* Alerts */
.alert {
  margin: 1rem 0 0; padding: 0.9rem 1rem; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: rgba(255,255,255,0.03);
}
.alert-success { border-color: rgba(52,211,153,0.3); background: rgba(52,211,153,0.08); color: #86efac; }
.alert-error { border-color: rgba(248,113,113,0.35); background: rgba(248,113,113,0.08); color: #fca5a5; }
.alert-info { border-color: rgba(0,140,255,0.3); background: rgba(0,140,255,0.08); color: #93c5fd; }

/* Feature strip */
.feature-band {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(37,99,235,0.1), transparent 55%);
  padding: 2rem 0;
}
.logo-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  padding: 0.5rem 0.9rem; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.03);
  font-weight: 600; font-size: 0.86rem; color: var(--muted);
}

/* Pay tiles */
.pay-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 0.65rem; }
.pay-tile {
  text-align: center; padding: 1rem 0.6rem; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: rgba(255,255,255,0.02);
  cursor: pointer; font: inherit; color: inherit; transition: 0.15s;
}
.pay-tile:hover, .pay-tile.active {
  border-color: var(--venmo); background: rgba(0,140,255,0.1);
}
.pay-tile strong { display: block; font-family: var(--display); font-size: 1.7rem; color: var(--silver-bright); }

/* Footer */
.site-footer {
  margin-top: 2rem; border-top: 1px solid var(--line);
  background: #080a0e; padding: 2.5rem 0 6rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.75rem;
}
.footer-brand { margin-bottom: 0.85rem; }
.site-footer h4 {
  font-family: var(--font); font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: #a8b2c0; margin: 0 0 0.65rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 0.4rem 0; color: var(--muted); font-size: 0.92rem; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.footer-links.hours li { display: flex; justify-content: space-between; gap: 1rem; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-top: 1.75rem; padding-top: 1.1rem; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 0.85rem;
}
.footer-bottom a { color: var(--muted); }

.mobile-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  gap: 0.45rem; padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(10,12,16,0.94); border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.mobile-cta .btn { flex: 1; min-height: 46px; font-size: 0.85rem; padding: 0.6rem 0.4rem; }

.phone-short { display: none; }
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 1.25rem; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.how-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.25rem;
}
.how-card .num {
  font-family: var(--display); font-size: 1.8rem; color: var(--blue-bright);
  letter-spacing: 0.04em; line-height: 1; margin-bottom: 0.45rem;
}
.icon {
  width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  margin-bottom: 0.85rem; background: var(--blue-dim); font-size: 1.15rem;
}
.timeline { list-style: none; padding: 0; margin: 0; }
.timeline li {
  position: relative; padding: 0 0 1.1rem 1.15rem;
  border-left: 2px solid rgba(59,130,246,0.4);
}
.timeline li::before {
  content: ""; position: absolute; left: -5px; top: 4px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--blue-bright);
}
.timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }

.status {
  display: inline-block; padding: 0.2rem 0.5rem; border-radius: 999px;
  font-size: 0.72rem; font-weight: 750; text-transform: uppercase; letter-spacing: 0.04em;
}
.status-new, .status-draft, .status-reported { background: var(--blue-dim); color: #93c5fd; }
.status-sent, .status-in_progress, .status-scheduled { background: rgba(0,140,255,0.12); color: #7dc4ff; }
.status-done, .status-paid, .status-received { background: rgba(52,211,153,0.12); color: #86efac; }
.status-cancelled, .status-failed { background: rgba(248,113,113,0.12); color: #fca5a5; }

.noise, .top-bar { display: none; } /* simplify: hide noise + top bar for cleaner look */

/* —— Mobile —— */
@media (max-width: 900px) {
  .hero { padding: 2rem 0 1.5rem; }
  .hero-grid, .form-shell, .book-layout, .footer-grid, .card-grid, .how-grid, .split {
    grid-template-columns: 1fr;
  }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none; position: fixed;
    left: 0.75rem; right: 0.75rem;
    top: calc(72px + env(safe-area-inset-top, 0px));
    flex-direction: column; align-items: stretch; gap: 0.2rem;
    background: #12161e; border: 1px solid var(--line); border-radius: 16px;
    padding: 0.6rem; box-shadow: var(--shadow); z-index: 55;
    max-height: min(70vh, 480px); overflow-y: auto;
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    padding: 0.85rem 1rem; min-height: 48px; border-radius: 10px;
    display: flex; align-items: center;
  }
  .site-nav a.active { box-shadow: none; background: var(--blue-dim); }
  .site-nav .nav-cta { justify-content: center; margin: 0.35rem 0 0 !important; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-cta { display: flex; }
  .site-footer { padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px)); }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .sticky-aside { position: static; }
  .step-actions { flex-direction: column; }
  .step-actions .btn { width: 100%; }
  .btn-row .btn { flex: 1 1 auto; }
  .brand-text small { display: none; }
  section { padding: 2rem 0; }
}

@media (max-width: 480px) {
  .phone-full { display: none; }
  .phone-short { display: inline; }
  .stat-grid { gap: 0.5rem; }
  .cta-band { padding: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .step-panel { animation: none; }
  .card:hover { transform: none; }
}


/* —— Idaho palette accents —— */
.badge.silver {
  background: rgba(192,200,212,0.12);
  color: var(--silver-bright);
  border-color: rgba(192,200,212,0.28);
}
.hero-card {
  border-color: rgba(148,163,184,0.18);
  background:
    linear-gradient(160deg, rgba(37,99,235,0.1) 0%, transparent 42%),
    var(--card);
}
.site-header {
  border-bottom-color: rgba(148,163,184,0.12);
}
.btn-ghost {
  border-color: rgba(148,163,184,0.22);
}
.brand-text small { color: #93c5fd; }

/* —— Store (trucks & parts) —— */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.15rem;
}
.store-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, transform 0.15s;
}
.store-card:hover {
  border-color: rgba(59, 130, 246, 0.35);
  transform: translateY(-2px);
}
.store-card.is-sold { opacity: 0.82; }
.store-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: #0a0e14;
  overflow: hidden;
}
.store-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.store-ribbon {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(10, 14, 20, 0.82);
  border: 1px solid var(--line);
  color: var(--silver-bright);
}
.store-ribbon.sold { background: rgba(248, 113, 113, 0.2); color: #fca5a5; border-color: rgba(248, 113, 113, 0.35); }
.store-ribbon.pending { background: rgba(251, 191, 36, 0.15); color: #fcd34d; border-color: rgba(251, 191, 36, 0.35); }
.store-ribbon.feat { background: var(--blue-dim); color: #93c5fd; border-color: rgba(59, 130, 246, 0.4); }
.store-ribbon.cond { left: auto; right: 0.65rem; max-width: 55%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.store-no-photo {
  position: absolute;
  bottom: 0.55rem;
  right: 0.55rem;
  font-size: 0.72rem;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.55);
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
}
.store-card-body {
  padding: 0.95rem 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.25rem;
}
.store-card-body h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0;
  font-family: var(--font);
  font-weight: 650;
}
.store-card-body h3 a { color: inherit; }
.store-card-body h3 a:hover { color: var(--blue-bright); }
.store-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}
.store-specs {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.store-specs li {
  font-size: 0.78rem;
  color: var(--silver);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
}
.store-card-foot {
  margin-top: auto;
  padding-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.store-price { color: var(--silver-bright); font-size: 1.05rem; }
.store-price-lg {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: 0.03em;
  margin: 0.4rem 0 0.85rem;
  color: #fff;
}
.empty-store {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px dashed rgba(148, 163, 184, 0.28);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
}
.empty-store-art { font-size: 2.5rem; margin-bottom: 0.5rem; }
.empty-store h3 { margin: 0 0 0.4rem; font-family: var(--font); font-size: 1.2rem; letter-spacing: 0; }

.store-detail {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}
.store-detail-main {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #0a0e14;
}
.store-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.65rem;
}
.store-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  background: none;
  cursor: pointer;
  width: 72px;
  height: 54px;
}
.store-thumb.active { border-color: var(--blue-bright); }
.store-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.store-detail-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.store-detail-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.store-detail-list li:last-child { border-bottom: 0; }
.store-detail-list span { color: var(--muted); }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.88rem; }

@media (max-width: 900px) {
  .store-detail { grid-template-columns: 1fr; }
}

/* Coating gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.1rem;
}
.gallery-card {
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  overflow: hidden;
}
.gallery-media {
  display: block;
  aspect-ratio: 16 / 10;
  background: #0a0e14;
  overflow: hidden;
}
.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.gallery-media:hover img { transform: scale(1.03); }
.gallery-card figcaption {
  padding: 0.75rem 0.95rem 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.9rem;
}
.gallery-card figcaption strong {
  color: var(--text);
  font-weight: 650;
}

