/* ============================================================
   Vardaye Industries / Amba Motorcycle Parts — public site
   Design language: precision engineering — gunmetal + forge
   copper + blueprint blue, stamped-plate type, dimension-line
   callouts, mono specs.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Work+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  /* Color tokens */
  --graphite-0: #1a1c1f;
  --graphite-1: #212327;
  --graphite-2: #292c31;
  --graphite-3: #34383e;
  --line: #3d4147;
  --paper: #eeece6;
  --paper-dim: #d9d6cc;
  --ink: #1a1c1f;
  --text-hi: #f1efe9;
  --text-mid: #c7c9cb;
  --text-mute: #8b9096;
  --copper: #c05a2c;
  --copper-hi: #e07648;
  --blue: #5b8bab;
  --blue-dim: #3f6883;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;

  /* Type */
  --f-display: 'Oswald', sans-serif;
  --f-body: 'Work Sans', sans-serif;
  --f-mono: 'IBM Plex Mono', monospace;

  --radius-s: 4px;
  --radius-m: 10px;
  --shadow-1: 0 10px 30px rgba(0,0,0,.35);
  --shadow-2: 0 4px 14px rgba(0,0,0,.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

:focus-visible {
  outline: 2px solid var(--copper-hi);
  outline-offset: 3px;
}

/* ---------- Type helpers ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  color: var(--text-hi);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: 0;
  font-weight: 600;
}
.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--copper-hi);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--copper-hi);
  display: inline-block;
}
.section-head { margin-bottom: 44px; max-width: 640px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin-top: 14px; }
.section-head p { margin-top: 14px; color: var(--text-mute); font-size: 16px; }

.mono { font-family: var(--f-mono); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: var(--radius-s);
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-copper { background: var(--copper); color: #fff; }
.btn-copper:hover { background: var(--copper-hi); }
.btn-outline { border-color: var(--line); color: var(--text-hi); }
.btn-outline:hover { border-color: var(--copper-hi); color: var(--copper-hi); }
.btn-whatsapp { background: var(--whatsapp); color: #06280f; }
.btn-whatsapp:hover { background: #2fe273; }
.btn-block { width: 100%; justify-content: center; }
.btn svg { width: 16px; height: 16px; flex: none; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 18px 0;
  background: linear-gradient(to bottom, rgba(20,21,24,.85), transparent);
  transition: background .25s ease, padding .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(24,26,29,.92);
  backdrop-filter: blur(8px);
  padding: 12px 0;
  box-shadow: 0 2px 18px rgba(0,0,0,.3);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; flex: none;
  background: #fff;
  border-radius: 9px;
  padding: 5px;
  object-fit: contain;
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-family: var(--f-display);
  color: var(--text-hi);
  font-size: 18px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.brand-text span {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  color: var(--copper-hi);
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.main-nav a:hover { color: var(--text-hi); border-color: var(--copper-hi); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--line); border-radius: var(--radius-s);
  width: 42px; height: 42px; color: var(--text-hi);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 900px) {
  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(300px, 82vw);
    background: var(--graphite-1);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 28px 28px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform .3s ease;
    box-shadow: var(--shadow-1);
  }
  .main-nav.open { transform: translateX(0); }
  .nav-toggle { display: inline-flex; }
  .header-actions .btn-whatsapp span.long { display: none; }
}

/* ============================================================
   Hero / Banner
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--graphite-0);
}
.hero-bg-track { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(17,18,20,.94) 0%, rgba(17,18,20,.82) 32%, rgba(17,18,20,.45) 62%, rgba(17,18,20,.72) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(91,139,171,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,139,171,.10) 1px, transparent 1px);
  background-size: 44px 44px;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; padding-top: 70px; }
.hero-content .eyebrow { margin-bottom: 20px; }
.hero-content h1 {
  font-size: clamp(34px, 5.4vw, 62px);
  line-height: 1.06;
  max-width: 15ch;
  text-transform: none;
}
.hero-content p.lead {
  margin-top: 22px;
  max-width: 46ch;
  color: var(--text-mid);
  font-size: 17px;
}
.hero-ctas { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.hero-callouts {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  margin-top: 46px;
}
.callout {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--f-mono); font-size: 12.5px; letter-spacing: .05em;
  color: var(--text-mid); text-transform: uppercase;
}
.callout .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--copper-hi);
  box-shadow: 0 0 0 3px rgba(224,118,72,.18);
  flex: none;
}

.hero-dots {
  position: absolute; z-index: 3; left: 50%; bottom: 128px; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.hero-dots button {
  width: 26px; height: 3px; background: rgba(255,255,255,.25); border: none; padding: 0;
  transition: background .2s;
}
.hero-dots button.active { background: var(--copper-hi); }

/* Stat plate overlapping hero bottom edge */
.stat-plate {
  position: relative;
  z-index: 4;
  margin-top: -58px;
}
.stat-plate .container { }
.stat-plate-inner {
  background: var(--graphite-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-1);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-plate-inner div {
  padding: 26px 22px;
  border-right: 1px solid var(--line);
  text-align: left;
}
.stat-plate-inner div:last-child { border-right: none; }
.stat-plate-inner strong {
  display: block;
  font-family: var(--f-display);
  font-size: 30px;
  color: var(--text-hi);
  letter-spacing: .01em;
}
.stat-plate-inner span {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-mute);
}
@media (max-width: 760px) {
  .stat-plate-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-plate-inner div:nth-child(2) { border-right: none; }
  .stat-plate-inner div { border-bottom: 1px solid var(--line); }
}

/* ---------- Authenticity ribbon ---------- */
.authentic-strip {
  background: var(--graphite-1);
  border-bottom: 1px solid var(--line);
  padding: 46px 0 40px;
  margin-top: 54px;
}
.authentic-inner {
  display: flex;
  align-items: center;
  gap: 30px;
}
.authentic-seal { width: 92px; height: 92px; flex: none; }
.authentic-text strong {
  display: block;
  font-family: var(--f-display);
  color: var(--text-hi);
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 19px;
  margin-bottom: 6px;
}
.authentic-text span { color: var(--text-mute); font-size: 14.5px; max-width: 66ch; display: block; }
.authentic-text span b { color: var(--copper-hi); font-weight: 600; }
@media (max-width: 620px) {
  .authentic-inner { flex-direction: column; text-align: center; gap: 18px; }
  .authentic-seal { width: 78px; height: 78px; }
}

/* ============================================================
   Sections generic
   ============================================================ */
section { padding: 118px 0 96px; }
.bg-alt { background: var(--graphite-1); }

/* ---------- Spotlight (animated featured product) ---------- */
.spotlight-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 860px) { .spotlight-grid { grid-template-columns: 1fr; } }

.feature-stage {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-m);
  overflow: hidden;
  background: #101112;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
}
.feature-stage img.fade {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.feature-stage img.fade.active { opacity: 1; }

.feature-callout {
  position: absolute;
  display: flex; align-items: center; gap: 9px;
  z-index: 2;
}
.fc-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--copper-hi);
  box-shadow: 0 0 0 4px rgba(224,118,72,.22);
  flex: none;
  animation: fc-pulse 2.6s ease-in-out infinite;
}
.fc-label {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .03em;
  background: rgba(20,21,24,.85);
  border: 1px solid var(--line);
  color: var(--text-hi);
  padding: 6px 11px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  animation: fc-in .7s ease forwards;
  backdrop-filter: blur(2px);
}
@keyframes fc-in { to { opacity: 1; transform: none; } }
@keyframes fc-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(224,118,72,.22); }
  50% { box-shadow: 0 0 0 8px rgba(224,118,72,.08); }
}
.stage-toggle {
  position: absolute; right: 14px; bottom: 14px; z-index: 2;
  font-size: 10.5px; letter-spacing: .05em; text-transform: uppercase;
  color: var(--text-mute);
  background: rgba(20,21,24,.7);
  border: 1px solid var(--line);
  padding: 5px 10px; border-radius: 3px;
}

.spotlight-info .product-tagline { margin: 10px 0 16px; }
.spotlight-info .desc { color: var(--text-mid); font-size: 15px; margin-bottom: 20px; }
.spotlight-info .spec-rows { border-top: 1px dashed var(--line); padding-top: 14px; gap: 9px; }
.spotlight-info .spec-row { font-size: 12.5px; }
.spotlight-info .spec-row .k { flex: 0 0 100px; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: start;
}
.about-grid p { color: var(--text-mid); font-size: 16px; margin: 0 0 16px; }
.badge-stack { display: flex; flex-direction: column; gap: 14px; }
.badge-card {
  background: var(--graphite-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 20px 22px;
  display: flex; align-items: center; gap: 16px;
}
.badge-card .ic { width: 40px; height: 40px; flex: none; color: var(--copper-hi); }
.badge-card strong { display: block; color: var(--text-hi); font-family: var(--f-display); font-size: 15px; letter-spacing: .03em; text-transform: uppercase;}
.badge-card small { color: var(--text-mute); font-family: var(--f-mono); font-size: 12px; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

/* ---------- Products ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--graphite-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .2s ease, transform .2s ease;
}
.product-card:hover { border-color: var(--copper); transform: translateY(-3px); }
.product-media { position: relative; aspect-ratio: 4/3; background: #111; overflow: hidden; cursor: pointer; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-media img { transform: scale(1.045); }
.product-code {
  position: absolute; top: 14px; left: 14px;
  background: var(--copper);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 12px; font-weight: 600; letter-spacing: .05em;
  padding: 5px 10px;
  border-radius: 3px;
}
.product-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.product-body h3 { font-size: 19px; letter-spacing: .01em; cursor: pointer; }
.product-tagline { font-style: italic; color: var(--text-mute); font-size: 13.5px; margin-top: -6px; }
.spec-rows { display: flex; flex-direction: column; gap: 6px; margin: 6px 0 4px; border-top: 1px dashed var(--line); padding-top: 12px; }
.spec-row { display: flex; gap: 10px; font-family: var(--f-mono); font-size: 12px; }
.spec-row .k { color: var(--blue); text-transform: uppercase; letter-spacing: .05em; flex: 0 0 84px; }
.spec-row .v { color: var(--text-mid); }
.product-actions { display: flex; gap: 10px; margin-top: auto; padding-top: 6px; }
.product-actions .btn { flex: 1; padding: 10px 12px; font-size: 11.5px; }
.details-link {
  display: block; text-align: center; margin-top: 10px;
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .04em;
  color: var(--blue); text-transform: uppercase;
}
.details-link:hover { color: var(--copper-hi); }

/* ---------- Why us ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: var(--graphite-2);
}
.feature-card .ic { width: 34px; height: 34px; color: var(--copper-hi); margin-bottom: 16px; }
.feature-card h4 { font-size: 15.5px; margin-bottom: 8px; }
.feature-card p { font-size: 13.5px; color: var(--text-mute); margin: 0; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.form-card {
  background: var(--graphite-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 30px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block; font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-mute); margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--graphite-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 12px 14px;
  color: var(--text-hi);
  font-family: var(--f-body);
  font-size: 14.5px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--copper-hi);
}
.field textarea { resize: vertical; min-height: 96px; }
.form-row { display: flex; gap: 14px; }
.form-row .field { flex: 1; }
.form-actions { display: flex; gap: 12px; margin-top: 6px; flex-wrap: wrap; }
.form-note { font-size: 12px; color: var(--text-mute); margin-top: 14px; }

.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-person-row { display: flex; gap: 16px; }
.contact-card {
  flex: 1;
  background: var(--graphite-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 20px;
  text-align: center;
}
.contact-card strong { display: block; color: var(--text-hi); font-family: var(--f-display); letter-spacing: .02em; text-transform: uppercase; font-size: 15px; }
.contact-card small { display: block; color: var(--text-mute); font-family: var(--f-mono); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; margin: 4px 0 10px; }
.contact-card a.phone { font-family: var(--f-mono); color: var(--copper-hi); font-size: 16px; font-weight: 600; }

.hq-card {
  background: var(--graphite-0);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 24px;
}
.hq-card strong { display: block; color: var(--text-hi); font-family: var(--f-display); font-size: 17px; text-transform: uppercase; letter-spacing: .02em; margin-bottom: 10px; }
.hq-card p { margin: 4px 0; font-size: 13.5px; color: var(--text-mid); }
.hq-card a.email { color: var(--copper-hi); font-family: var(--f-mono); }
.hq-card .map-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 14px; font-family: var(--f-mono); font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: var(--blue); }
.hq-card .map-link svg { width: 14px; height: 14px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--graphite-0); border-top: 1px solid var(--line); padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.footer-grid h5 { font-family: var(--f-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-mute); margin: 0 0 16px; }
.footer-grid p { font-size: 13.5px; color: var(--text-mute); max-width: 34ch; }
.footer-grid ul li { margin-bottom: 10px; font-size: 13.5px; }
.footer-grid ul a:hover { color: var(--copper-hi); }
.footer-bottom {
  margin-top: 50px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-family: var(--f-mono); font-size: 11.5px; color: var(--text-mute); letter-spacing: .03em;
}
.footer-bottom a { color: var(--text-mute); }
.footer-bottom a:hover { color: var(--copper-hi); }

/* ---------- Floating WhatsApp ---------- */
.fab-whatsapp {
  position: fixed; right: 22px; bottom: 22px; z-index: 600;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,.4);
}
.fab-whatsapp svg { width: 28px; height: 28px; color: #06280f; }
.fab-whatsapp::before {
  content: '';
  position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,.55);
  animation: pulse-wa 2.4s infinite;
}
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Modal (product detail) ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(12,13,15,.82);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box {
  background: var(--graphite-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  max-width: 860px; width: 100%;
  max-height: 88vh; overflow-y: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-1);
}
@media (max-width: 760px) { .modal-box { grid-template-columns: 1fr; } }
.modal-media { position: relative; background: #111; min-height: 260px; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; }
.modal-info { padding: 30px; position: relative; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--graphite-1); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--text-hi);
}
.modal-info .product-code { position: static; display: inline-block; margin-bottom: 14px; }
.modal-info h3 { font-size: 24px; margin-bottom: 6px; }
.modal-info .product-tagline { margin-bottom: 16px; }
.modal-info .desc { font-size: 14.5px; color: var(--text-mid); margin-bottom: 18px; }

/* ---------- Utility: reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Empty state ---------- */
.empty-note {
  font-family: var(--f-mono); font-size: 13px; color: var(--text-mute);
  border: 1px dashed var(--line); border-radius: var(--radius-m); padding: 30px; text-align: center;
}
