/* MundoPickup - Buscador + Sitio estático
   - Paletas seleccionables + Día/Noche (theme.js)
   - Estilo principal: fondo blanco, cabecera azul, footer negro
*/
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');



/* -------- Reset / Base -------- */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height:1.45;
}
img{ max-width:100%; height:auto; }
a{ color: inherit; }

.hidden{ display:none !important; }
.sr-only{ position:absolute; left:-10000px; top:auto; width:1px; height:1px; overflow:hidden; }

:root{
  --font-body: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

  --container: 1180px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 14px 40px rgba(2,6,23,.10);
  --shadow-soft: 0 10px 25px rgba(2,6,23,.08);

  --focus: 0 0 0 4px rgba(59,130,246,.18);

  --on-primary: #ffffff;
  --on-accent: #ffffff;
}

/* -------- Mode (Día/Noche) -------- */
html{ color-scheme: light; }
html[data-mode="light"]{
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --text: #0b1220;
  --muted: #475569;
  --muted-2: #64748b;
  --border: rgba(15,23,42,.14);
  --border-strong: rgba(15,23,42,.22);

  --footer-bg: #0b0b0b;
  --footer-text: rgba(255,255,255,.86);
  --footer-muted: rgba(255,255,255,.65);
}

html[data-mode="dark"]{
  color-scheme: dark;
  --bg: #0b1220;
  --bg-soft: #0d1628;
  --surface: #0f1b30;
  --surface-2: #12223b;
  --text: #e5e7eb;
  --muted: rgba(229,231,235,.78);
  --muted-2: rgba(229,231,235,.62);
  --border: rgba(255,255,255,.14);
  --border-strong: rgba(255,255,255,.22);

  --footer-bg: #05070c;
  --footer-text: rgba(255,255,255,.86);
  --footer-muted: rgba(255,255,255,.62);
}

/* -------- Paletas -------- */
html[data-palette="mp"]{
  /* Cabecera azul como el sitio */
  --primary: #0b4ea2;
  --primary-2: #083f86;
  --accent: #ff7a00;
  --accent-2: #16a34a;
}

html[data-palette="ocean"]{
  --primary: #0284c7;
  --primary-2: #0369a1;
  --accent: #22c55e;
  --accent-2: #f97316;
}

html[data-palette="sunset"]{
  --primary: #f97316;
  --primary-2: #ea580c;
  --accent: #8b5cf6;
  --accent-2: #0ea5e9;
}

html[data-palette="forest"]{
  --primary: #15803d;
  --primary-2: #166534;
  --accent: #0ea5e9;
  --accent-2: #f97316;
}

html[data-palette="grape"]{
  --primary: #7c3aed;
  --primary-2: #6d28d9;
  --accent: #06b6d4;
  --accent-2: #f97316;
}

html[data-palette="mono"]{
  --primary: #111827;
  --primary-2: #0b1220;
  --accent: #2563eb;
  --accent-2: #f97316;
}

/* -------- Layout helpers -------- */
.container{ width:min(var(--container), calc(100% - 32px)); margin:0 auto; }
.small-muted{ color: var(--muted-2); font-size: 12.5px; }
.code{ font-family: var(--font-mono); font-weight: 800; letter-spacing: .2px; }

/* -------- Header / Nav -------- */
.topbar{
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: var(--on-primary);
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.topbar-inner{
  width:min(var(--container), calc(100% - 28px));
  margin:0 auto;
  display:grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-items:center;
  gap: 10px 14px;
  padding: 10px 0 12px;
  position: relative;
}

.brand{ grid-column:1; grid-row:1; display:flex; align-items:center; gap:12px; min-width: 210px; }
.brand-link{ display:flex; align-items:center; gap:10px; text-decoration:none; }
.logo{ width:clamp(64px,7vw,110px); height:clamp(64px,7vw,110px); border-radius: 16px; background: rgba(255,255,255,.10); padding:6px; object-fit: contain; display:block; }
.brand-text{ display:flex; flex-direction:column; gap:2px; }
.brand-title{ font-weight: 900; letter-spacing:.2px; }
.brand-sub{ font-size:12.5px; opacity:.9; }

.nav-toggle{
  grid-column:2;
  grid-row:1;
  justify-self:end;
  display:none;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.10);
  color: var(--on-primary);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 900;
}

.nav{
  grid-column: 1 / -1;
  grid-row: 2;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  flex-wrap: wrap;
  overflow: visible;
  padding: 2px 0 0;
}

.nav a{
  text-decoration:none;
  padding: 8px 10px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
  color: rgba(255,255,255,.92);
}

.nav a:hover{ background: rgba(255,255,255,.12); }
.nav a.active{ background: rgba(255,255,255,.18); }

.top-actions{ grid-column:3; grid-row:1; justify-self:end; display:flex; align-items:center; gap:10px; }

.theme-controls{ display:flex; align-items:center; gap:8px; }
.select{
  appearance:none;
  border: 1px solid rgba(255,255,255,.30);
  background: rgba(255,255,255,.10);
  color: var(--on-primary);
  padding: 10px 34px 10px 12px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 13px;
  outline:none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,.9) 50%),
                    linear-gradient(135deg, rgba(255,255,255,.9) 50%, transparent 50%);
  background-position: calc(100% - 16px) calc(50% - 2px), calc(100% - 10px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat:no-repeat;
}
.select:focus{ box-shadow: var(--focus); }

/* -------- Buttons -------- */
.btn{
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 900;
  cursor:pointer;
  transition: transform .05s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{ border-color: var(--border-strong); }
.btn:active{ transform: translateY(1px); }
.btn:focus{ outline:none; box-shadow: var(--focus); }

.btn-ghost{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.28);
  color: var(--on-primary);
}

.btn-accent{
  background: var(--accent);
  border-color: rgba(0,0,0,.0);
  color: var(--on-accent);
}

.btn-danger{
  background: #ef4444;
  border-color: rgba(0,0,0,0);
  color:#fff;
}

.btn-sm{ padding: 6px 10px; border-radius: 10px; font-size: 12px; }

/* -------- Hero -------- */
.hero{
  background:
    radial-gradient(900px 360px at 10% 10%, color-mix(in srgb, var(--primary) 18%, transparent), transparent 60%),
    radial-gradient(700px 320px at 90% 0%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 70%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
  border-bottom: 1px solid var(--border);
}

.hero-inner{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
  padding: 28px 0 18px;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items:center;
}

.hero h1{ margin:0 0 8px; font-size: 34px; letter-spacing:-.2px; }
.hero p{ margin:0; color: var(--muted); font-weight: 600; }

.hero-badges{ margin-top:12px; display:flex; flex-wrap:wrap; gap:8px; }
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-weight: 900;
  font-size: 12px;
}
.pill-ok{ border-color: color-mix(in srgb, var(--accent-2) 55%, var(--border)); }

.hero-right{ display:flex; flex-direction:column; gap:10px; }
.brand-strip{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  padding: 10px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.brand-strip img{ height: 30px; width: 100%; object-fit: contain; }

.hero-note{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  font-weight: 900;
}
.hero-note span{ color: var(--text); }
.hero-note img{ width: 42px; height: 42px; object-fit: contain; }

/* -------- Tools / Cards -------- */
.tools{ padding: 18px 0 26px; background: var(--bg); }
.tools-inner{ width:min(var(--container), calc(100% - 32px)); margin:0 auto; }
.tools-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow:hidden;
}

.card-head{ padding: 14px 14px 10px; border-bottom: 1px solid var(--border); }
.card-head h2{ margin:0 0 6px; font-size: 18px; }

.card-body{ padding: 14px; }
.tool-row{ display:flex; gap: 10px; }
.tool-input{
  flex:1;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
  outline:none;
}
.tool-input:focus{ box-shadow: var(--focus); border-color: color-mix(in srgb, var(--primary) 60%, var(--border)); }

.muted-par{ margin:0 0 12px; color: var(--muted); font-weight: 600; }

/* VIN blocks */
.vin-vehicle{ margin-top: 12px; }
.vin-grid{ display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.vin-item{ border: 1px solid var(--border); background: var(--surface-2); padding: 10px; border-radius: 12px; }
.vin-item .k{ font-size: 12px; color: var(--muted-2); font-weight: 800; }
.vin-item .v{ font-weight: 900; }
.vin-raw{ margin-top: 10px; }
.vin-raw summary{ cursor:pointer; font-weight: 900; color: var(--primary); }
.vin-raw pre{ white-space: pre-wrap; word-break: break-word; padding: 10px; background: var(--surface-2); border-radius: 12px; border: 1px solid var(--border); }

.vin-results{ margin-top: 14px; padding: 14px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); box-shadow: var(--shadow-soft); }
.vin-results-head{ display:flex; align-items:flex-end; justify-content: space-between; gap: 10px; flex-wrap:wrap; }
.vin-results-head h2{ margin:0; font-size: 18px; }
.vin-parts-tree{ margin-top: 12px; }

.vin-details{ border:1px solid var(--border); border-radius: 12px; background: var(--surface-2); padding: 8px 10px; margin: 10px 0; }
.vin-details summary{ cursor:pointer; font-weight: 900; }
.vin-sub{ margin-top: 8px; }

.part-cards{ display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; padding: 10px 0; }

/* -------- Browser (árbol) -------- */
#browseSection{ padding: 10px 0 28px; background: var(--bg-soft); border-top: 1px solid var(--border); }

#app{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
  display:grid;
  grid-template-columns: 330px 1fr;
  gap: 14px;
  align-items:start;
}

.side{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow:hidden;
}
.side-top{ padding: 12px; border-bottom: 1px solid var(--border); }
.side-top input{
  width:100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
  outline:none;
}
.side-top input:focus{ box-shadow: var(--focus); border-color: color-mix(in srgb, var(--primary) 60%, var(--border)); }
.hint{ margin-top: 8px; font-size: 12px; color: var(--muted-2); font-weight: 700; }

.side-body{ display:grid; grid-template-columns: 46px 1fr; min-height: 520px; }

.alphabet.vertical{
  border-right: 1px solid var(--border);
  padding: 8px 6px;
  display:flex;
  flex-direction:column;
  gap: 6px;
  align-items:center;
  overflow:auto;
}

.alphabet .letter{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  cursor:pointer;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}
.alphabet .letter.active{ background: color-mix(in srgb, var(--primary) 16%, var(--surface)); border-color: color-mix(in srgb, var(--primary) 45%, var(--border)); }

.list{ padding: 10px; display:flex; flex-direction:column; gap: 8px; overflow:auto; max-height: 520px; }

.list .item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor:pointer;
  font-weight: 900;
}

.list .item:hover{ border-color: color-mix(in srgb, var(--primary) 40%, var(--border)); }
.list .item .right{ color: var(--muted-2); font-weight: 900; }

.main{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow:hidden;
}

.main-top{
  padding: 14px;
  border-bottom: 1px solid var(--border);
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 14px;
}

.breadcrumbs{ display:flex; flex-wrap:wrap; gap: 6px; }
.crumb{
  border: 1px solid var(--border);
  background: var(--surface-2);
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 900;
  cursor:pointer;
}
.crumb.active{ background: color-mix(in srgb, var(--primary) 16%, var(--surface-2)); border-color: color-mix(in srgb, var(--primary) 40%, var(--border)); }
.crumb-sep{ color: var(--muted-2); font-weight: 900; padding: 6px 0; }

.level-title{ font-size: 18px; font-weight: 950; margin-top: 8px; }
.level-note{ color: var(--muted); font-weight: 650; }

.options-panel{ padding: 14px; border-bottom: 1px solid var(--border); background: var(--surface); }
.options-search{ margin-bottom: 10px; }
.options-search input{
  width:100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
  outline:none;
}
.options-search input:focus{ box-shadow: var(--focus); border-color: color-mix(in srgb, var(--primary) 60%, var(--border)); }

.parts-panel{ padding: 14px; background: var(--surface); }
.parts-toolbar{ display:flex; gap: 10px; }
.parts-toolbar input{
  width:100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
  outline:none;
}

.parts-summary{ margin: 10px 0; color: var(--muted); font-weight: 700; }

.parts-table-wrap{ overflow:auto; border: 1px solid var(--border); border-radius: 12px; }

table{ width:100%; border-collapse: collapse; }
th,td{ padding: 10px 10px; border-bottom: 1px solid var(--border); vertical-align: top; }
th{ position: sticky; top: 0; background: var(--surface-2); text-align:left; font-size: 12px; color: var(--muted-2); font-weight: 950; }
tr:hover td{ background: color-mix(in srgb, var(--primary) 6%, transparent); }

.footer{
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--muted);
  font-weight: 650;
  display:flex;
  justify-content:space-between;
  gap: 10px;
  flex-wrap:wrap;
}

/* -------- Modal / Overlay -------- */
.overlay{
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,.55);
  backdrop-filter: blur(4px);
  z-index: 90;
}

.modal{
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: min(980px, calc(100% - 24px));
  max-height: calc(100% - 24px);
  overflow:auto;
  z-index: 95;
}

.modal-content{ background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.modal-close{
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 30px;
  cursor:pointer;
  padding: 10px 14px;
}

.modal-grid{ display:grid; grid-template-columns: 340px 1fr; }
.modal-left{ padding: 14px; border-right: 1px solid var(--border); }
.img-wrap{ border: 1px dashed var(--border-strong); border-radius: 14px; overflow:hidden; background: var(--surface-2); }
.img-wrap img{ width:100%; height: 270px; object-fit: contain; display:block; }
.img-note{ margin-top: 10px; color: var(--muted-2); font-size: 12px; font-weight: 700; }

.part-thumbs{ margin-top: 10px; display:flex; gap: 8px; flex-wrap:wrap; }
.part-thumbs button{ border: 1px solid var(--border); background: var(--surface); border-radius: 12px; padding: 0; width: 54px; height: 54px; overflow:hidden; cursor:pointer; }
.part-thumbs img{ width:100%; height:100%; object-fit: cover; display:block; }

.modal-right{ padding: 14px; }
.modal-right h2{ margin: 0 0 8px; }

.modal-meta{ display:flex; flex-wrap:wrap; gap: 8px; margin: 10px 0; }
.tag{ display:inline-flex; align-items:center; gap:6px; padding: 6px 10px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface-2); font-weight: 900; font-size: 12px; }
.tag-accent{ border-color: color-mix(in srgb, var(--primary) 40%, var(--border)); }
.tag-ok{ border-color: color-mix(in srgb, var(--accent-2) 60%, var(--border)); }

.modal-kv{ display:grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 10px 0; }

.modal-actions{ margin: 12px 0 6px; }

.modal-section{ margin-top: 16px; }
.modal-section h3{ margin: 0 0 8px; }
.text-block{ color: var(--muted); font-weight: 650; }

.vin-warning{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(239,68,68,.45);
  color: #ef4444;
  font-weight: 950;
}

.section-head{ display:flex; align-items:center; justify-content:space-between; gap: 10px; flex-wrap:wrap; }
.section-head input{
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
  outline:none;
}

.compat-wrap{ border: 1px solid var(--border); border-radius: 12px; overflow:auto; }
.compat-table th{ top: 0; }

/* -------- Drawer Cotización -------- */
.drawer{
  position: fixed;
  top: 0;
  right: 0;
  width: min(520px, calc(100% - 24px));
  height: 100%;
  background: var(--surface);
  border-left: 1px solid var(--border);
  box-shadow: -12px 0 40px rgba(2,6,23,.22);
  z-index: 96;
  display:flex;
  flex-direction:column;
}

.drawer-head{ padding: 14px; border-bottom: 1px solid var(--border); display:flex; align-items:flex-start; justify-content:space-between; gap:10px; }
.drawer-title{ font-size: 18px; font-weight: 950; }
.drawer-body{ padding: 14px; overflow:auto; flex: 1; }
.drawer-actions{ padding: 14px; border-top: 1px solid var(--border); }

.quote-table-wrap{ border: 1px solid var(--border); border-radius: 12px; overflow:auto; }

.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.form-grid label{ display:flex; flex-direction:column; gap:6px; font-weight: 900; font-size: 12px; color: var(--muted-2); }
.form-grid input{ padding: 10px 12px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); color: var(--text); font-weight: 850; outline:none; }
.form-grid input:focus{ box-shadow: var(--focus); border-color: color-mix(in srgb, var(--primary) 60%, var(--border)); }

/* -------- Help modal -------- */
.help-modal{ width: min(760px, calc(100% - 24px)); }
.help-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.help-grid label{ display:flex; flex-direction:column; gap:6px; font-weight: 900; font-size: 12px; color: var(--muted-2); }
.help-grid input, .help-grid textarea{ padding: 10px 12px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); color: var(--text); font-weight: 850; outline:none; }
.help-grid textarea{ min-height: 110px; resize: vertical; grid-column: 1 / -1; }

/* -------- Site footer -------- */
.site-footer{
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 28px 0;
  margin-top: 28px;
}

.footer-grid{ display:grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 16px; }
.site-footer h4{ margin:0 0 10px; }
.site-footer p{ margin:0; color: var(--footer-muted); font-weight: 650; }
.site-footer a{ color: var(--footer-text); text-decoration:none; }
.site-footer a:hover{ text-decoration: underline; }
.footer-links{ display:flex; flex-direction:column; gap: 8px; color: var(--footer-muted); }
.footer-bottom{ margin-top: 18px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 14px; color: var(--footer-muted); font-size: 12px; display:flex; justify-content:space-between; gap: 12px; flex-wrap:wrap; }

/* -------- Responsive -------- */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .brand-strip{ grid-template-columns: repeat(4, 1fr); }
  .tools-grid{ grid-template-columns: 1fr; }
  #app{ grid-template-columns: 1fr; }
  .side-body{ min-height: auto; }
  .list{ max-height: none; }
  .modal-grid{ grid-template-columns: 1fr; }
  .modal-left{ border-right: none; border-bottom: 1px solid var(--border); }
  .part-cards{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 900px){
  .nav-toggle{ display:inline-flex; }
  .nav{ display:none; position:absolute; left: 14px; right: 14px; top: calc(100% + 10px); background: linear-gradient(135deg, var(--primary), var(--primary-2)); border: 1px solid rgba(255,255,255,.22); border-radius: 16px; padding: 10px; flex-direction:column; align-items:flex-start; box-shadow: var(--shadow); }
  .nav.open{ display:flex; }
  .topbar{ position: sticky; }
  .topbar-inner{ position: relative; }
}

@media (max-width: 560px){
  .top-actions{ gap: 8px; flex-wrap:wrap; justify-content:flex-end; }
  .select{ width: 140px; }
  .hero h1{ font-size: 28px; }
  .tool-row{ flex-direction: column; }
  .form-grid{ grid-template-columns: 1fr; }
  .vin-grid{ grid-template-columns: 1fr; }
}

/* -------- Páginas informativas -------- */
.page{ padding: 22px 0; }
.page h1{ margin: 0 0 10px; font-size: 28px; letter-spacing: -.2px; }
.page h2{ margin: 18px 0 8px; font-size: 18px; }
.page p{ margin: 0 0 10px; color: var(--muted); font-weight: 650; }
.page .lead{ font-size: 15px; }

.grid-2{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.kpi{ display:flex; gap: 10px; align-items:flex-start; }
.kpi .icon{ width: 40px; height: 40px; border-radius: 14px; background: color-mix(in srgb, var(--primary) 16%, var(--surface)); border: 1px solid color-mix(in srgb, var(--primary) 35%, var(--border)); display:flex; align-items:center; justify-content:center; font-weight: 950; }

.gallery-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery-item{ border-radius: 14px; border: 1px solid var(--border); background: var(--surface); overflow:hidden; box-shadow: var(--shadow-soft); }
.gallery-item .ph{ height: 160px; display:flex; align-items:center; justify-content:center; background: var(--surface-2); color: var(--muted-2); font-weight: 900; }
.gallery-item .ph img{width:100%;height:100%;object-fit:cover;display:block;}
.gallery-item .cap{ padding: 10px 12px; font-weight: 900; }

.review{ padding: 14px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); box-shadow: var(--shadow-soft); }
.review .who{ font-weight: 950; }
.review .meta{ margin-top: 4px; color: var(--muted-2); font-size: 12px; font-weight: 800; }
.review .stars{ margin-top: 8px; letter-spacing: 1px; color: color-mix(in srgb, var(--accent) 70%, #facc15); font-weight: 950; }
.review p{ margin-top: 10px; margin-bottom: 0; }

.faq-item{ border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); box-shadow: var(--shadow-soft); overflow:hidden; }
.faq-item summary{ cursor:pointer; padding: 12px 14px; font-weight: 950; }
.faq-item .ans{ padding: 0 14px 14px; color: var(--muted); font-weight: 650; }

@media (max-width: 980px){
  .grid-2{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px){
  .gallery-grid{ grid-template-columns: 1fr; }
}


/* -------- Social (header/footer) -------- */
.social-mini{ display:flex; gap:8px; align-items:center; }
.social-mini a,
.social-mini .soc-btn{
  display:inline-flex;
  width:34px; height:34px;
  align-items:center; justify-content:center;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.10);
  text-decoration:none;
  color: rgba(255,255,255,.92);
}
.social-mini a:hover,
.social-mini .soc-btn:hover{ background: rgba(255,255,255,.16); }

.soc-ico{ width:18px; height:18px; display:block; fill: currentColor; }
.soc-ico-wrap{ display:inline-flex; width:18px; height:18px; }


.social-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:10px; }
.social-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration:none;
  color: var(--text);
  font-weight: 900;
}
.social-link:hover{ background: var(--surface-2); }

/* -------- Home: categorías + banners -------- */
.section-title{ margin-top: 22px; }
.section-title h2{ margin:0; font-size: 1.25rem; }
.section-title p{ margin:6px 0 0; }

.cat-grid{ display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; margin-top: 12px; }
.cat-card{
  border:1px solid var(--border);
  background: var(--surface);
  border-radius: 16px;
  padding: 12px;
  box-shadow: var(--shadow-soft);
  cursor:pointer;
  transition: transform .12s ease, background .12s ease;
}
.cat-card:hover{ transform: translateY(-1px); background: var(--surface-2); }
.cat-head{ display:flex; gap:10px; align-items:flex-start; }
.cat-ico{ width: 42px; height: 42px; border-radius: 14px; display:flex; align-items:center; justify-content:center;
  background: color-mix(in srgb, var(--primary) 16%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--primary) 35%, var(--border));
  font-size: 20px;
  flex: 0 0 auto;
}
.cat-name{ font-weight: 950; }
.cat-sub{ margin-top: 8px; display:flex; gap:6px; flex-wrap:wrap; }
.chip{
  display:inline-flex;
  align-items:center;
  padding:5px 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
}

.banner-strip{ display:flex; gap: 12px; overflow:auto; padding: 10px 2px; scroll-snap-type: x mandatory; }
.banner-strip img{
  width: 340px;
  height: 150px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  flex: 0 0 auto;
  scroll-snap-align: start;
}

/* -------- Blog -------- */
.post-grid{ display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 12px; }
.post-card{ border: 1px solid var(--border); background: var(--surface); border-radius: 16px; overflow:hidden; box-shadow: var(--shadow-soft); display:flex; flex-direction:column; }
.post-card .img{ height: 170px; background: var(--surface-2); }
.post-card .img img{ width:100%; height:100%; object-fit:cover; display:block; }
.post-card .body{ padding: 12px; display:flex; flex-direction:column; gap:8px; flex:1; }
.post-card .title{ font-weight: 950; }
.post-card .meta{ color: var(--muted); font-size: 13px; }
.post-card .excerpt{ color: var(--text); opacity: .9; font-size: 14px; }
.post-card .actions{ margin-top:auto; display:flex; gap:10px; flex-wrap:wrap; }

/* -------- Vitrina / Marcas: productos -------- */
.product-grid{ display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 12px; }
.product-card{ border:1px solid var(--border); background: var(--surface); border-radius:16px; overflow:hidden; box-shadow: var(--shadow-soft); display:flex; flex-direction:column; }
.product-card .img{ height: 170px; background: var(--surface-2); display:flex; align-items:center; justify-content:center; }
.product-card .img img{ width:100%; height:100%; object-fit:cover; display:block; }
.product-card .body{ padding:12px; display:flex; flex-direction:column; gap:8px; flex:1; }
.product-card .title{ font-weight:950; }
.product-card .meta{ color: var(--muted); font-size: 13px; }
.product-card .actions{ margin-top:auto; display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }

/* -------- Responsive extras -------- */
@media (max-width: 1050px){
  .cat-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .post-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .product-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 620px){
  .post-grid{ grid-template-columns: 1fr; }
  .product-grid{ grid-template-columns: 1fr; }
  .banner-strip img{ width: 280px; height: 130px; }
  .social-mini{ display:none; }
}


/* Chips container */
.chips{ display:flex; flex-wrap:wrap; gap:8px; }


/* -------- Embedded content (blog / gallery / referencias) -------- */
.iframe-wrap{
  width:100%;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
}
.iframe-wrap iframe{
  width:100%;
  height: 72vh;
  border:0;
  display:block;
  background: var(--surface-2);
}

details.card > summary{ list-style:none; }
details.card > summary::-webkit-details-marker{ display:none; }
details.card > summary{ cursor:pointer; user-select:none; }
details.card[open] > summary{ border-bottom: 1px solid var(--border); }


/* -------- Home: hero carousel -------- */
.hero-carousel{
  margin-top: 10px;
  height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
}
.hero-carousel-track{
  display:flex;
  height:100%;
  transition: transform .6s ease;
  will-change: transform;
}
.hero-carousel img{
  width:100%;
  height:100%;
  object-fit: cover;
  flex: 0 0 100%;
}
@media (max-width: 980px){
  .hero-carousel{ height: 150px; }
}
@media (max-width: 520px){
  .hero-carousel{ height: 130px; }
}


.footer-logo{
  margin-top: 12px;
  max-width: 260px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.35));
}

.social-link .soc-ico{ width:18px; height:18px; }


/* -------- Quick search (Año / Marca / Modelo) -------- */
.quick-search{
  max-width: 100%;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--primary) 18%, var(--border));
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--primary) 10%, var(--surface)) 0%,
    var(--surface) 55%
  );
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.quick-search::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: .95;
}
.quick-search h3{ margin: 0 0 8px; font-size: 14px; }
.quick-row{ display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)) auto; gap: 10px; align-items:end; }
.quick-row label{ display:flex; flex-direction:column; gap:6px; font-weight: 900; font-size: 12px; color: var(--muted-2); }
.quick-row select{
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 850;
  outline:none;
}
.quick-row select:focus{ box-shadow: var(--focus); border-color: color-mix(in srgb, var(--primary) 60%, var(--border)); }

.quick-results{ margin-top: 10px; }
.quick-results .card{ padding: 12px; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); box-shadow: var(--shadow-soft); }
.quick-results .card h4{ margin: 0 0 8px; }
.quick-results .pill{ font-size: 12px; }
.quick-results .grid{ display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.quick-results .item{ border: 1px solid var(--border); background: var(--surface-2); border-radius: 14px; padding: 10px; display:flex; justify-content:space-between; align-items:center; gap:10px; }
.quick-results .item strong{ font-weight: 950; }

/* Actual markup uses .qs-* (with step circles). */
.qs-row{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 160px;
  gap: 12px;
  align-items: end;
  width: 100%;
}

.qs-field{
  display:grid;
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 8px;
  align-items: center;
  font-weight: 900;
  font-size: 12px;
  color: var(--muted-2);
}

.qs-step{
  grid-column: 1;
  grid-row: 1;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: 0 10px 24px rgba(10, 32, 72, .18);
  font-size: 12px;
}

.qs-label{
  grid-column: 2;
  grid-row: 1;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.qs-field select{
  grid-column: 1 / -1;
  grid-row: 2;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 850;
  outline: none;
  padding-right: 38px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted-2) 50%),
    linear-gradient(135deg, var(--muted-2) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 13px) calc(50% - 3px);
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
}

.qs-field select:focus{
  box-shadow: var(--focus);
  border-color: color-mix(in srgb, var(--primary) 60%, var(--border));
}

.qs-field select:disabled{
  opacity: .55;
  cursor: not-allowed;
}

.qs-go{
  height: 44px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, var(--border));
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--accent) 92%, #fff 0%) 0%,
    color-mix(in srgb, var(--accent) 78%, #000 0%) 100%
  );
  color: var(--on-accent);
  font-weight: 950;
  letter-spacing: .02em;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(15, 20, 40, .16);
  transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
}

.qs-go:hover{ transform: translateY(-1px); filter: brightness(1.02); }
.qs-go:active{ transform: translateY(0); filter: brightness(.98); box-shadow: 0 8px 18px rgba(15, 20, 40, .14); }
.qs-go:focus{ outline: none; box-shadow: var(--focus), 0 12px 24px rgba(15, 20, 40, .16); }
.qs-go:disabled{ opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; filter: none; }

.qs-results{ margin-top: 14px; padding-top: 10px; border-top: 1px solid color-mix(in srgb, var(--primary) 10%, var(--border)); }
.qs-results .card{ padding: 14px; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); box-shadow: var(--shadow-soft); }
.qs-results .card h4{ margin: 0 0 8px; }
.qs-results .card + .card{ margin-top: 12px; }
.qs-results details.card summary{ cursor: pointer; display:flex; align-items:center; justify-content:space-between; gap:12px; list-style:none; }
.qs-results details.card summary::-webkit-details-marker{ display:none; }
.qs-results .grid{ display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 12px; }
.qs-results .item{ border: 1px solid var(--border); background: var(--surface-2); border-radius: 14px; padding: 12px; display:flex; justify-content:space-between; align-items:center; gap:10px; width:100%; text-align:left; cursor:pointer; transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease; }
.qs-results .item:hover{ transform: translateY(-1px); border-color: color-mix(in srgb, var(--primary) 35%, var(--border)); box-shadow: 0 10px 18px rgba(15,20,40,.08); }
.qs-results .item strong{ font-weight: 950; }
.qs-results .pill{ font-size: 12px; }

@media (max-width: 980px){
  .quick-row{ grid-template-columns: 1fr; }
  .qs-row{ grid-template-columns: 1fr; }
  .qs-go{ width: 100%; }
  .qs-results .grid{ grid-template-columns: 1fr; }
}


/* -------- VIN (decodificador) -------- */
.vin-card{
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--primary) 16%, var(--border));
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--primary) 8%, var(--surface)) 0%,
    var(--surface) 55%
  );
}
.vin-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  opacity: .95;
}
.vin-card .card-head{ padding: 14px 14px 0; }
.vin-card .card-body{ padding: 14px; padding-top: 10px; }
.vin-head h2{ font-size: 18px; }
.vin-form{ margin-top: 10px; }

.vin-status{
  margin-top: 10px;
  font-weight: 900;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px dashed color-mix(in srgb, var(--primary) 25%, var(--border));
  background: var(--surface-2);
}
.vin-status:empty{ display:none; }

.vin-vehicle{ margin-top: 12px; }
.vin-raw summary{ cursor:pointer; font-weight: 900; color: var(--primary); }


/* -------- Page hero / About images -------- */
.page-hero{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  margin-bottom: 14px;
}
.page-hero img{ width:100%; display:block; height:auto; }

.about-img{
  width:100%;
  display:block;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  margin-bottom: 12px;
}

.brand-banners{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 12px; }
.brand-banners img{
  height: 56px;
  width: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 8px;
}

@media (max-width: 560px){
  .brand-banners img{ height: 46px; }
}


/* -------- Reviews widget -------- */
.reviews-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.review-card{
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 16px;
  padding: 12px;
  box-shadow: var(--shadow-soft);
}
.review-top{ display:flex; justify-content:space-between; gap:10px; align-items:baseline; }
.review-name{ font-weight: 950; }
.review-date{ font-size: 12px; color: var(--muted-2); }
.review-stars{ margin: 6px 0 8px; letter-spacing: 1px; font-size: 14px; }
.review-text{ color: var(--text); line-height: 1.55; }
.review-source{ margin-top: 10px; font-size: 12px; color: var(--muted-2); }

@media (max-width: 760px){
  .reviews-grid{ grid-template-columns: 1fr; }
}


/* Hero: barra rápida (YMM) */
.hero-top{ grid-column: 1 / -1; }
.hero .quick-search.hero-top{ margin-top: 0; margin-bottom: 14px; }


/* Home: herramientas con una sola tarjeta */
.tools-grid.single{ grid-template-columns: 1fr; }


/* Footer: iconos sociales más visibles */
.site-footer .social-mini{ margin-top: 10px; }
.site-footer .social-mini .soc-btn{
  width:40px; height:40px;
  border-radius: 14px;
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.10);
}
.site-footer .social-mini .soc-btn:hover{ background: rgba(255,255,255,.16); }
.site-footer .soc-ico{ width:20px; height:20px; }


@media (max-width: 860px){
  .grid-2{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
}


/* Feature strip (banner de beneficios) */
.feature-strip{
  background: var(--primary);
  color: var(--on-primary);
  margin-top: 18px;
}
.feature-strip-inner{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 22px 0;
}
.feature{
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.feature-icon{
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}
.feat-ico{
  width: 42px;
  height: 42px;
  color: var(--on-primary);
}
.feature-title{
  font-weight: 850;
  margin-bottom: 4px;
}
.feature-text{
  font-size: 0.93rem;
  opacity: 0.95;
  line-height: 1.25rem;
}

@media (max-width: 980px){
  .feature-strip-inner{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .feature-strip-inner{ grid-template-columns: 1fr; }
  .feat-ico{ width: 38px; height: 38px; }
}

/* =============================
   Ajustes solicitados (Mar 2026)
   ============================= */

/* Barra de marcas: logos más grandes y visibles */
.brand-strip img{height:38px; opacity:1; filter:none}

@media (max-width: 720px){
  .brand-strip{grid-template-columns:repeat(4, 1fr)}
}
@media (max-width: 420px){
  .brand-strip{grid-template-columns:repeat(3, 1fr)}
}

/* VIN arriba del carrusel: separación */
.vin-card{margin-bottom:12px}

/* Banner (estilo "banner 1" usando fondo slide-4) */
.cta-banner{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  min-height:320px;
  padding:22px;
  color:#fff;
  background:
    radial-gradient(1200px 420px at 10% 20%, rgba(255,255,255,.10), rgba(255,255,255,0) 60%),
    linear-gradient(90deg, rgba(0,0,0,.40), rgba(0,0,0,.12) 55%, rgba(0,0,0,0) 78%),
    url('assets/site_media/slide-4.webp') center/cover no-repeat;
  box-shadow:var(--shadow-soft);
}

.cta-banner h2{margin:10px 0 10px; font-size:34px; line-height:1.06; text-transform:uppercase; color:#fff}
.cta-banner p{margin:6px 0; font-size:16px; opacity:.95; color:#fff}

.cta-pill{
  display:inline-block;
  padding:6px 12px;
  border-radius:10px;
  font-weight:800;
  font-size:13px;
  background:linear-gradient(180deg,#F7B500,#F59E0B);
  color:#111;
  letter-spacing:.2px;
}

.cta-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:18px;
  padding:12px 16px;
  border-radius:12px;
  background:#fff;
  color:#111;
  font-weight:900;
  text-decoration:none;
  width:max-content;
  box-shadow:0 10px 22px rgba(0,0,0,.18);
}
.cta-btn:hover{transform:translateY(-1px)}

@media (max-width: 520px){
  .cta-banner{min-height:240px; padding:18px}
  .cta-banner h2{font-size:28px}
}

/* =============================
   Sección "Nuestra Comunidad" (antes del footer)
   ============================= */

.community-section{padding:28px 0 34px}
.community-grid{
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:12px;
}
.community-grid a{
  display:block;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.12);
  background:var(--surface);
  box-shadow:var(--shadow-soft);
}
.community-grid a:hover{transform:translateY(-1px)}
.community-grid img{width:100%; height:140px; object-fit:cover; display:block}

@media (max-width: 980px){
  .community-grid{grid-template-columns:repeat(3, minmax(0, 1fr))}
}
@media (max-width: 620px){
  .community-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .community-grid img{height:150px}
}
@media (max-width: 420px){
  .community-grid{grid-template-columns:1fr}
  .community-grid img{height:170px}
}

/* =============================
   Carrusel "Referencia Clientes" (al final)
   ============================= */

.mini-carousel{
  position:relative;
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  background:#0b1220;
  box-shadow:var(--shadow-soft);
}

.mini-carousel .mini-carousel-track{
  display:flex;
  transition:transform .45s ease;
  width:100%;
}

.mini-carousel .mini-carousel-track img{
  width:100%;
  flex:0 0 100%;
  height:360px;
  object-fit:cover;
  display:block;
}

.mini-carousel .mini-carousel-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(0,0,0,.35);
  color:#fff;
  font-size:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.mini-carousel .mini-carousel-btn.prev{left:12px}
.mini-carousel .mini-carousel-btn.next{right:12px}

.mini-carousel .mini-carousel-dots{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:10px;
  display:flex;
  gap:8px;
}

.mini-carousel .mini-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.55);
  background:rgba(255,255,255,.25);
  cursor:pointer;
}

.mini-carousel .mini-dot.active{background:#fff}

@media (max-width: 720px){
  .mini-carousel .mini-carousel-track img{height:280px}
}


/* ===== v19 overrides ===== */
.brand-link .logo{ max-height: 118px !important; width: auto; }
.brand{ min-width: 0; }
.brand-text{ min-width: 0; }

.brand-strip{
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  gap: 14px !important;
  padding: 14px 16px !important;
  align-items:center;
}
.brand-strip img{
  height: 66px !important;
  width: 100% !important;
  object-fit: contain !important;
  object-position:center !important;
  display:block;
}
@media (max-width: 980px){ .brand-strip img{ height: 54px !important; } }
@media (max-width: 680px){ .brand-strip{ gap:10px !important; } .brand-strip img{ height:46px !important; } }
@media (max-width: 480px){ .brand-strip img{ height:40px !important; } }

/* remove old hero-note space */
.hero-right{ gap:14px; }

/* search by part name */
.search-suggest{ margin-top:8px; display:grid; gap:6px; }
.search-suggest.hidden{ display:none; }
.search-suggest .s-item{
  border:1px solid var(--border);
  background:var(--surface);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
  box-shadow:var(--shadow-soft);
}
.search-suggest .s-item:hover{ background:var(--surface-2); }
.search-suggest .s-title{ font-weight:900; }
.search-suggest .s-meta{ color:var(--muted); font-size:12px; margin-top:3px; }

/* parts table thumbs */
.parts-table-wrap table{ min-width: 1180px; }
.parts-thumb-cell{ width:74px; }
.parts-thumb{
  width:56px; height:56px; border-radius:12px; object-fit:cover; display:block;
  border:1px solid var(--border); background:var(--surface-2);
}
.parts-desc{ display:flex; align-items:center; gap:12px; }
.parts-desc-text .small-muted{ margin-top:4px; display:block; }
.clickable{ cursor:pointer; }

/* category cards with images */
.cat-ico.img{
  width: 78px; height: 78px; border-radius: 18px;
  overflow:hidden; background: var(--surface-2); border:1px solid var(--border);
  flex:0 0 auto; padding: 0;
}
.cat-ico.img img{ width:100%; height:100%; object-fit:cover; display:block; }
.cat-head{ align-items:center; }
.cat-card .meta{ color:var(--muted); font-size:13px; font-weight:700; }

/* unified footer line */
.site-footer{ padding: 22px 0 !important; }
.footer-line{
  display:grid;
  grid-template-columns: 220px 1fr 1fr 270px;
  gap:16px;
  align-items:center;
}
.footer-brand-block, .footer-banner-block, .footer-ml-link{
  display:flex; align-items:center; justify-content:center;
  min-height: 100px;
}
.footer-brand-logo{ max-width: 210px; width:100%; height:auto; display:block; }
.footer-banner-img{ width:100%; max-height:94px; object-fit:contain; display:block; }
.footer-ml-link{ text-decoration:none !important; }
.footer-ml-link:hover{ transform: translateY(-1px); }
.footer-bottom-upgraded{ margin-top:16px; justify-content:center; }
@media (max-width: 1100px){
  .footer-line{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px){
  .footer-line{ grid-template-columns: 1fr; }
  .footer-brand-block, .footer-banner-block, .footer-ml-link{ min-height: auto; }
  .footer-brand-logo{ max-width: 180px; }
}

/* product cards clickable / image fallback */
.product-card{ cursor:pointer; }
.product-card .img{ height: 190px; }
.product-card .img img{ object-fit: cover; }

/* remove old footer grid look if still present */
.footer-grid{ display:none !important; }


.hero-note{display:none !important;}


/* ===== v20 overrides ===== */
.brand-strip{
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  gap: 10px !important;
  padding: 10px 12px !important;
  align-items: center !important;
}
.brand-strip img{
  height: 86px !important;
  width: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  display:block !important;
  filter: none !important;
}
@media (max-width: 1100px){
  .brand-strip img{ height: 76px !important; }
}
@media (max-width: 820px){
  .brand-strip{ grid-template-columns: repeat(4, minmax(0,1fr)) !important; }
  .brand-strip img{ height: 64px !important; }
}
@media (max-width: 520px){
  .brand-strip{ grid-template-columns: repeat(3, minmax(0,1fr)) !important; }
  .brand-strip img{ height: 52px !important; }
}

.brand-link .logo{
  max-height: 132px !important;
  height: auto !important;
  width: auto !important;
}

.site-footer{ padding: 22px 0 14px !important; }
.footer-line{
  display:grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: center !important;
}
.footer-brand-block,
.footer-banner-block,
.footer-ml-link{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height: 132px !important;
}
.footer-brand-logo,
.footer-banner-img{
  display:block;
  width: 100%;
  max-width: 100%;
  max-height: 120px !important;
  height: auto !important;
  object-fit: contain !important;
}
.footer-brand-logo{ max-height: 126px !important; }
.footer-ml-link{ text-decoration:none !important; }
.footer-ml-link:hover{ transform: translateY(-2px); }
.footer-bottom-upgraded{
  margin-top: 14px !important;
  justify-content: center !important;
}
@media (max-width: 1050px){
  .footer-line{ grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 640px){
  .footer-line{ grid-template-columns: 1fr !important; }
  .footer-brand-block,
  .footer-banner-block,
  .footer-ml-link{ min-height: 112px !important; }
  .footer-brand-logo,
  .footer-banner-img{ max-height: 110px !important; }
}

/* category and vitrina cards */
.product-card{ cursor:pointer; }
.product-card .img{ height: 200px; }
.product-card .img img{ width:100%; height:100%; object-fit: cover; display:block; }


/* ===== v21 overrides ===== */
.brand-strip{
  grid-template-columns: repeat(7, minmax(0,1fr)) !important;
  gap: 8px !important;
  padding: 8px 10px !important;
  align-items: center !important;
}
.brand-strip img{
  height: 104px !important;
  width: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  display:block !important;
  margin: 0 auto !important;
  filter:none !important;
}
.brand-strip img[alt="Chrysler"]{
  height: 92px !important;
  transform: translateY(3px);
}
@media (max-width: 1100px){
  .brand-strip img{ height: 90px !important; }
  .brand-strip img[alt="Chrysler"]{ height: 80px !important; }
}
@media (max-width: 820px){
  .brand-strip{ grid-template-columns: repeat(4, minmax(0,1fr)) !important; }
  .brand-strip img{ height: 74px !important; }
  .brand-strip img[alt="Chrysler"]{ height: 66px !important; }
}
@media (max-width: 520px){
  .brand-strip{ grid-template-columns: repeat(3, minmax(0,1fr)) !important; }
  .brand-strip img{ height: 58px !important; }
  .brand-strip img[alt="Chrysler"]{ height: 52px !important; }
}

.brand-link .logo{ max-height: 150px !important; }

.site-footer{ padding: 20px 0 12px !important; }
.footer-line{
  display:grid !important;
  grid-template-columns: 1.05fr 1fr 1fr 1fr !important;
  gap: 16px !important;
  align-items: center !important;
  justify-items: center !important;
}
.footer-brand-block,
.footer-banner-block,
.footer-ml-link{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height: 148px !important;
  width:100%;
}
.footer-brand-logo,
.footer-banner-img{
  display:block;
  width:100%;
  max-width:100%;
  height:auto !important;
  max-height: 140px !important;
  object-fit:contain !important;
}
.footer-brand-logo{ max-height: 144px !important; }
.footer-ship-img,
.footer-pay-img,
.footer-ml-img{ max-height: 140px !important; }
@media (max-width: 1100px){
  .footer-line{ grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
}
@media (max-width: 640px){
  .footer-line{ grid-template-columns: 1fr !important; }
  .footer-brand-block,
  .footer-banner-block,
  .footer-ml-link{ min-height: 118px !important; }
  .footer-brand-logo,
  .footer-banner-img{ max-height: 118px !important; }
}

/* ===== v22 Front-end Refresh ===== */
:root{
  --font-body: "Manrope", "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
  --font-display: "Barlow Condensed", "Poppins", system-ui, sans-serif;
  --anim-smooth: cubic-bezier(.22,1,.36,1);
  --surface-glow: linear-gradient(135deg, color-mix(in srgb, var(--primary) 10%, transparent), color-mix(in srgb, var(--accent) 8%, transparent));
}

html{ scroll-behavior: smooth; }
body{
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background:
    radial-gradient(1300px 420px at 0% 0%, color-mix(in srgb, var(--primary) 10%, transparent), transparent 60%),
    radial-gradient(1000px 420px at 100% 0%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 56%),
    var(--bg);
}
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .45;
  background-image:
    linear-gradient(to right, transparent 0 95%, color-mix(in srgb, var(--primary) 8%, transparent) 95% 100%),
    linear-gradient(to bottom, transparent 0 95%, color-mix(in srgb, var(--accent) 8%, transparent) 95% 100%);
  background-size: 34px 34px;
  mask: linear-gradient(180deg, rgba(0,0,0,.20), transparent 70%);
}

h1,h2,h3,.brand-title,.drawer-title,.level-title,.card-head h2,.section-title h2,.page h1,.page h2,.cta-banner h2,.vin-results-head h2{
  font-family: var(--font-display);
  letter-spacing: .03em;
}

.topbar{
  backdrop-filter: saturate(165%) blur(16px);
  box-shadow: 0 12px 28px rgba(2,6,23,.10);
  transition: box-shadow .25s var(--anim-smooth), transform .25s var(--anim-smooth);
}
.topbar.scrolled{ box-shadow: 0 18px 44px rgba(2,6,23,.16); }
.topbar::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  opacity:.55;
}
.brand-link{ transition: transform .25s var(--anim-smooth); }
.brand-link:hover{ transform: translateY(-1px); }
.brand-link .logo{
  transition: transform .35s var(--anim-smooth), filter .35s var(--anim-smooth);
  filter: drop-shadow(0 14px 26px rgba(2,6,23,.22));
}
.brand-link:hover .logo{ transform: scale(1.03) rotate(-1deg); }
.brand-title{ font-size: clamp(1.1rem, 2vw, 1.4rem); }
.brand-sub{ letter-spacing: .03em; }

.nav a{
  position: relative;
  transition: background .22s var(--anim-smooth), color .22s var(--anim-smooth), transform .22s var(--anim-smooth);
}
.nav a::after{
  content:"";
  position:absolute;
  left:12px; right:12px; bottom:4px;
  height:2px;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(255,255,255,.15), rgba(255,255,255,.95), rgba(255,255,255,.15));
  transform: scaleX(0);
  transform-origin:center;
  transition: transform .22s var(--anim-smooth);
}
.nav a:hover{ transform: translateY(-1px); }
.nav a:hover::after,
.nav a.active::after{ transform: scaleX(1); }

.btn, .qs-go, .cta-btn, .social-link, .soc-btn, .crumb, .list .item, .chip, .pill{
  transition: transform .22s var(--anim-smooth), box-shadow .22s var(--anim-smooth), background .22s var(--anim-smooth), border-color .22s var(--anim-smooth), color .22s var(--anim-smooth);
}
.btn:hover, .qs-go:hover, .cta-btn:hover, .social-link:hover, .soc-btn:hover{ transform: translateY(-2px); }
.btn-accent, .qs-go{
  box-shadow: 0 16px 30px color-mix(in srgb, var(--accent) 25%, transparent);
}
.btn-accent:hover, .qs-go:hover{
  box-shadow: 0 22px 36px color-mix(in srgb, var(--accent) 34%, transparent);
}

.card,.side,.main,.product-card,.post-card,.gallery-item,.review,.faq-item,.cat-card,.quick-search,.vin-results,.hero-carousel,.brand-strip{
  position: relative;
  overflow: hidden;
  transition: transform .28s var(--anim-smooth), box-shadow .28s var(--anim-smooth), border-color .28s var(--anim-smooth), background .28s var(--anim-smooth);
}
.card::before,.side::before,.main::before,.product-card::before,.post-card::before,.gallery-item::before,.review::before,.faq-item::before,.cat-card::before,.quick-search::before,.vin-results::before,.hero-carousel::before,.brand-strip::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,.14), transparent 32%, transparent 68%, rgba(255,255,255,.05));
  opacity:.55;
  pointer-events:none;
}
.card:hover,.product-card:hover,.post-card:hover,.gallery-item:hover,.review:hover,.faq-item:hover,.cat-card:hover,.quick-search:hover,.vin-results:hover,.brand-strip:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(2,6,23,.14);
  border-color: color-mix(in srgb, var(--primary) 28%, var(--border));
}

.hero{
  position: relative;
  overflow: clip;
}
.hero::after{
  content:"";
  position:absolute;
  inset:auto -8% -40px auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 18%, transparent), transparent 68%);
  filter: blur(28px);
  pointer-events:none;
}
.hero-inner{ padding-top: 34px; padding-bottom: 26px; }

.info-rail{
  position: relative;
  z-index: 40;
  background: linear-gradient(90deg, color-mix(in srgb, var(--primary) 96%, #071427), color-mix(in srgb, var(--primary-2) 94%, #071427));
  border-bottom: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.08);
}
.info-rail-inner{
  display:flex;
  align-items:center;
  gap: 14px;
  min-height: 46px;
}
.info-rail-label{
  flex: 0 0 auto;
  color: #fff;
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0 12px 0 0;
  border-right: 1px solid rgba(255,255,255,.18);
}
.info-rail-marquee{
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.info-rail-track{
  display:flex;
  align-items:center;
  gap: 18px;
  min-width: max-content;
  padding: 10px 0;
  animation: mpk-rail 34s linear infinite;
}
.info-rail-item{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  color: rgba(255,255,255,.92);
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  font-weight: 800;
  white-space: nowrap;
}
.info-rail-icon{ font-size: 14px; }
@keyframes mpk-rail{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

.quick-search,
.vin-card{
  border-radius: 22px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--primary) 6%, var(--surface)) 0%, var(--surface) 100%);
  box-shadow: 0 24px 54px rgba(2,6,23,.12);
}
.qs-row{ gap: 14px; }
.qs-field{
  padding: 12px 14px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 88%, rgba(255,255,255,.45));
  border: 1px solid color-mix(in srgb, var(--primary) 14%, var(--border));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}
.qs-step{
  box-shadow: 0 10px 20px rgba(2,6,23,.14);
}
.qs-field select,
.tool-input,
.side-top input,
.parts-toolbar input,
.options-search input,
.form-grid input,
.help-grid input,
.help-grid textarea{
  transition: border-color .2s var(--anim-smooth), box-shadow .2s var(--anim-smooth), transform .2s var(--anim-smooth), background .2s var(--anim-smooth);
}
.qs-field select:hover,
.tool-input:hover,
.side-top input:hover,
.parts-toolbar input:hover,
.options-search input:hover,
.form-grid input:hover,
.help-grid input:hover,
.help-grid textarea:hover{
  border-color: color-mix(in srgb, var(--primary) 30%, var(--border));
}
.qs-go{
  min-height: 62px;
  border-radius: 18px;
  font-family: var(--font-display);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: 1rem;
}
.qs-results .card{ border-radius: 18px; }
.qs-results .item{ transition: transform .18s var(--anim-smooth), box-shadow .18s var(--anim-smooth); }
.qs-results .item:hover{ transform: translateY(-2px); box-shadow: 0 14px 24px rgba(2,6,23,.08); }

.hero-carousel{
  box-shadow: 0 26px 60px rgba(2,6,23,.18);
}
.hero-carousel img,
.banner-strip img,
.post-card .img img,
.product-card .img img,
.gallery-item .ph img,
.img-wrap img{
  transition: transform .55s var(--anim-smooth), filter .35s var(--anim-smooth);
}
.hero-carousel:hover img,
.post-card:hover .img img,
.product-card:hover .img img,
.gallery-item:hover .ph img,
.banner-strip img:hover,
.img-wrap:hover img{
  transform: scale(1.04);
}

.cta-banner{
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 52px rgba(2,6,23,.18);
}
.cta-banner::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,.12), transparent 40%, rgba(0,0,0,.15));
  pointer-events:none;
}
.cta-banner h2{ text-wrap: balance; }
.cta-pill{ box-shadow: 0 10px 18px rgba(0,0,0,.16); }

.section-title{
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 8px;
}
.section-title::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width: 86px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 10px 18px color-mix(in srgb, var(--primary) 24%, transparent);
}
.section-title p{ max-width: 72ch; }

.cat-card{
  border-radius: 20px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 92%, #fff), color-mix(in srgb, var(--surface-2) 86%, #fff));
}
.cat-card .cat-name{ font-size: 1.02rem; }
.chip{
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-2) 80%, #fff), var(--surface-2));
}

.post-card .body,
.product-card .body{ padding: 14px; }
.post-card .title,
.product-card .title{ font-size: 1.02rem; }
.post-card .actions,
.product-card .actions{ gap: 8px; }

.gallery-item,
.review,
.faq-item{
  border-radius: 18px;
}
.review .stars{ font-size: 1rem; }

.side{
  position: sticky;
  top: 104px;
}
.list .item{
  border-radius: 14px;
  background: linear-gradient(180deg, var(--surface), color-mix(in srgb, var(--surface-2) 55%, #fff));
}
.list .item:hover{ transform: translateX(2px); }
.main-top{ backdrop-filter: blur(10px); }

.footer-line{
  gap: 20px !important;
}
.footer-brand-block,
.footer-banner-block,
.footer-ml-link{
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform .22s var(--anim-smooth), border-color .22s var(--anim-smooth), background .22s var(--anim-smooth);
}
.footer-brand-block:hover,
.footer-banner-block:hover,
.footer-ml-link:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
}
.footer-bottom-upgraded{ letter-spacing: .04em; text-transform: uppercase; font-weight: 800; }

.back-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 88;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 18px 30px rgba(2,6,23,.22);
  cursor: pointer;
  display:grid;
  place-items:center;
  font-size: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .22s var(--anim-smooth), transform .22s var(--anim-smooth), visibility .22s var(--anim-smooth), box-shadow .22s var(--anim-smooth);
}
.back-top.show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-top:hover{ box-shadow: 0 22px 34px rgba(2,6,23,.30); }

.reveal-ready{
  opacity: 0;
  transform: translateY(24px) scale(.985);
  transition: opacity .6s var(--anim-smooth) var(--reveal-delay, 0ms), transform .6s var(--anim-smooth) var(--reveal-delay, 0ms);
}
.reveal-ready.reveal-in{
  opacity: 1;
  transform: translateY(0) scale(1);
}

::-webkit-scrollbar{ width: 10px; height: 10px; }
::-webkit-scrollbar-track{ background: color-mix(in srgb, var(--surface-2) 72%, transparent); }
::-webkit-scrollbar-thumb{ background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 55%, var(--surface-2)), color-mix(in srgb, var(--primary-2) 70%, var(--surface-2))); border-radius: 999px; }

@media (max-width: 1180px){
  .side{ position: static; }
}
@media (max-width: 900px){
  .info-rail-inner{ min-height: 42px; gap: 10px; }
  .info-rail-label{ font-size: .86rem; padding-right: 10px; }
  .info-rail-item{ padding: 6px 10px; font-size: 13px; }
}
@media (max-width: 720px){
  .info-rail-label{ display:none; }
  .qs-row{ grid-template-columns: 1fr; }
  .qs-go{ width: 100%; }
  .qs-field{ grid-template-columns: 24px 1fr; }
  .footer-line{ gap: 12px !important; }
}
@media (max-width: 560px){
  body::before{ opacity: .22; }
  .cta-banner{ border-radius: 22px; }
  .back-top{ right: 14px; bottom: 14px; width: 44px; height: 44px; border-radius: 14px; }
  .info-rail-track{ animation-duration: 24s; }
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal-ready{ opacity: 1 !important; transform: none !important; }
}
