/* Ademaq — catálogo digital
   Paleta tomada del sitio real: el logo trae fondo negro sólido (#000) y el
   naranja de marca es #FBAC33; el naranja de enlaces del sitio es #DE901B. */

:root {
  --accent: #FBAC33;
  --accent-deep: #DE901B;
  --ink: #101010;
  --black: #000000;
  --muted: #6b6b70;
  --line: #e6e6e8;
  --bg: #ffffff;
  --bg-soft: #f7f7f8;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(0,0,0,.05), 0 8px 24px rgba(0,0,0,.06);
  --maxw: 1180px;
}

* { box-sizing: border-box; }

/* Cualquier regla propia de `display` (.btn, .preview…) le gana al
   `display:none` que el navegador aplica a [hidden], y el elemento sigue
   viéndose. Esto lo deja zanjado para toda la página. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { line-height: 1.15; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--accent-deep);
  margin-bottom: 12px;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: #1a1200; }
.btn-accent:hover { background: var(--accent-deep); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); }
.btn-sm { padding: 10px 20px; font-size: .875rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
/* El logo trae fondo negro incrustado, así que la barra debe ser negra
   para que se vea como una sola pieza y no como un recuadro flotante. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  border-bottom: 1px solid #1c1c1c;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 76px;
}
.brand img { height: 46px; width: auto; }
.main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: .92rem;
  font-weight: 500;
}
.main-nav a { color: #d8d8da; transition: color .15s ease; }
.main-nav a:hover { color: var(--accent); }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 40px;
  background: none;
  border: 0;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(1000px 500px at 78% 12%, #1d1a14 0%, #0a0a0a 55%, #000 100%);
  color: #fff;
  padding: 88px 0 96px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin-bottom: 20px; }
.hero .lead { color: #b9b9bd; font-size: 1.06rem; max-width: 54ch; }
.hero .lead strong { color: var(--accent); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-stats {
  display: flex;
  gap: 44px;
  margin: 44px 0 0;
  padding-top: 28px;
  border-top: 1px solid #212121;
}
.hero-stats div { margin: 0; }
.hero-stats dt { font-size: 1.85rem; font-weight: 700; color: var(--accent); letter-spacing: -.02em; }
.hero-stats dd {
  margin: 2px 0 0;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #85858a;
}
.hero-art svg { width: 100%; height: auto; }

/* ---------- Franja ---------- */
.strip { background: var(--accent); color: #17120a; }
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 14px 24px;
  font-size: .88rem;
  font-weight: 500;
  text-align: center;
}
.strip .dot { opacity: .5; }

/* ---------- Secciones ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-soft); border-block: 1px solid var(--line); }
.section-dark { background: #0b0b0b; color: #fff; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.section-sub { color: var(--muted); margin-top: 12px; }
.section-dark .section-sub { color: #9a9a9f; }

/* ---------- Grilla de categorías ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(228px, 1fr));
  gap: 16px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.cat-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.cat-card svg { width: 32px; height: 32px; flex: none; }
.cat-card h3 { font-size: 1rem; font-weight: 650; letter-spacing: -.01em; }
.cat-card .cat-count { font-size: .82rem; color: var(--muted); }
.cat-card .cat-go {
  margin-top: auto;
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent-deep);
}

/* ---------- Estado de sincronización ---------- */
.freshness {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--muted);
}
.freshness:empty { display: none; }
.freshness::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex: none;
  background: currentColor;
}
.freshness.live { color: #1f8a4c; }
.freshness.stale { color: #a6791c; }

/* ---------- Barra de filtros ---------- */
.toolbar { margin-bottom: 28px; }
.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 20px;
  max-width: 520px;
  color: var(--muted);
}
.search-box:focus-within { border-color: var(--accent); }
.search-box input {
  border: 0;
  outline: none;
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  width: 100%;
  background: transparent;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.chip {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: .85rem;
  font-weight: 500;
  color: #3c3c40;
  cursor: pointer;
  font-family: inherit;
  transition: all .15s ease;
  white-space: nowrap;
}
.chip:hover { border-color: #b5b5ba; }
.chip[aria-selected="true"] {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}
.chip .n { opacity: .55; margin-left: 6px; font-variant-numeric: tabular-nums; }

/* ---------- Grilla de productos ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}
.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.card:hover { border-color: #c9c9cf; box-shadow: var(--shadow); transform: translateY(-2px); }
.card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #fff;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}
.card-media img { max-height: 100%; width: auto; object-fit: contain; }
.card-media .ph {
  color: #c9c9cf;
  font-size: .8rem;
  text-align: center;
}
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.badge-sale { background: var(--accent); color: #17120a; }
.badge-out { background: #ececef; color: #6b6b70; right: 10px; left: auto; }
.card-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-cat {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  font-weight: 600;
}
.card-name {
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
}
.card-sku { font-size: .72rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.card-price { margin-top: auto; padding-top: 6px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price-now { font-size: 1.08rem; font-weight: 700; letter-spacing: -.01em; }
.price-was { font-size: .82rem; color: var(--muted); text-decoration: line-through; }
.card-actions { display: flex; gap: 8px; margin-top: 10px; }
.card-actions .mini {
  flex: 1;
  padding: 9px 10px;
  border-radius: 9px;
  font-size: .8rem;
  white-space: nowrap;
  font-weight: 600;
  text-align: center;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: all .15s ease;
}
.card-actions .mini.primary { background: var(--accent); border-color: var(--accent); color: #17120a; }
.card-actions .mini.primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.card-actions .mini:hover { border-color: var(--ink); }

.empty { text-align: center; color: var(--muted); padding: 48px 0; }
.more-wrap { display: flex; justify-content: center; margin-top: 36px; }

/* ---------- Propuesta de valor ---------- */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.value {
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.value svg { width: 34px; height: 34px; margin-bottom: 16px; }
.value h3 { font-size: 1.06rem; margin-bottom: 8px; }
.value p { color: var(--muted); font-size: .93rem; }

/* ---------- Reseñas ---------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 18px;
}
.review {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.stars { color: var(--accent); font-size: 1.02rem; letter-spacing: 2px; line-height: 1; }
.stars .off { color: #dcdce0; }
.review blockquote {
  margin: 0;
  font-size: .93rem;
  color: #3a3a3e;
  line-height: 1.62;
}
.review blockquote::before { content: "“"; }
.review blockquote::after { content: "”"; }
.review footer {
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-name { font-size: .88rem; font-weight: 650; }
.review-role { font-size: .78rem; color: var(--muted); }

/* ---------- Pasos y errores del formulario ---------- */
.form-step {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #52525a;
  margin-top: 4px;
}
.form-step:not(:first-child) { margin-top: 14px; padding-top: 18px; border-top: 1px solid var(--line); }
.step-n {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #17120a;
  font-size: .74rem;
  flex: none;
}
.err { font-size: .76rem; color: #c53f3f; font-weight: 500; }

.preview-clear {
  margin-left: auto;
  align-self: flex-start;
  width: 30px;
  height: 30px;
  flex: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 50%;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
}
.preview-clear:hover { border-color: var(--ink); color: var(--ink); }
.preview.flash { animation: flash .9s ease; }
@keyframes flash {
  0%, 100% { border-color: var(--line); background: var(--bg-soft); }
  30%      { border-color: var(--accent); background: #fff6e8; }
}
@media (prefers-reduced-motion: reduce) {
  .preview.flash { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Barra fija en móvil ---------- */
/* Oculta por defecto: solo existe bajo 760px y una vez pasado el hero. */
.mobile-bar { display: none; }

/* ---------- Formulario ---------- */
.form-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.form-intro h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 16px; }
.form-intro > p { color: #a5a5aa; }
.contact-list { list-style: none; padding: 0; margin: 34px 0 0; display: grid; gap: 20px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; font-size: .92rem; color: #cfcfd3; }
.contact-list svg { width: 20px; height: 20px; flex: none; margin-top: 3px; }
.contact-list a { color: #fff; border-bottom: 1px solid rgba(251,172,51,.4); }
.contact-list a:hover { color: var(--accent); }

.lead-form {
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; }
.field label span[aria-hidden] { color: var(--accent-deep); }
.field .opt { font-weight: 400; color: var(--muted); }
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: .93rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  outline: none;
  width: 100%;
  transition: border-color .15s ease;
}
.field select {
  appearance: none;
  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 d='M1 1l5 5 5-5' stroke='%236b6b70' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  /* Los nombres de producto son largos: sin esto el texto se mete debajo
     de la flecha en vez de cortarse con puntos suspensivos. */
  padding-right: 42px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field input:disabled, .field select:disabled { background: #f4f4f5; color: #9a9aa0; cursor: not-allowed; }
.field textarea { resize: vertical; min-height: 84px; }
.field .invalid { border-color: #d94f4f; }

.preview {
  grid-column: 1 / -1;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
}
.preview img { width: 62px; height: 62px; object-fit: contain; flex: none; background: #fff; border-radius: 8px; }
.preview-name { font-size: .85rem; font-weight: 600; line-height: 1.3; }
.preview-price { font-size: .9rem; font-weight: 700; margin-top: 4px; }
.preview-price .was { font-weight: 400; font-size: .78rem; color: var(--muted); text-decoration: line-through; margin-left: 8px; }

.lead-form .btn { grid-column: 1 / -1; margin-top: 4px; }
.form-note { grid-column: 1 / -1; font-size: .76rem; color: var(--muted); text-align: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: #a8a8ad; padding: 64px 0 28px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand img { height: 44px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; max-width: 34ch; }
.footer-col h4 {
  color: #fff;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 14px;
}
.footer-col p { font-size: .9rem; margin-bottom: 8px; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid #1c1c1c;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .78rem;
  color: #6e6e73;
}

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.22);
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.06); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { max-width: 360px; }
  .form-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .wrap { padding: 0 18px; }
  html { scroll-padding-top: 118px; }
  /* Deja aire para la barra fija inferior. */
  body { padding-bottom: 76px; }

  /* --- Header más bajo: gana 14px de alto útil en cada pantalla --- */
  .header-inner { min-height: 62px; }
  .brand img { height: 38px; }
  .main-nav {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    gap: 0;
    padding: 8px 18px 18px;
    border-bottom: 1px solid #1c1c1c;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid #171717; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  /* --- Hero compacto: el dibujo costaba 314px de scroll sin aportar nada
         que el logo no diga ya, así que fuera en pantallas chicas --- */
  .hero { padding: 40px 0 44px; }
  .hero-art { display: none; }
  .hero-inner { gap: 0; }
  .hero h1 { font-size: 1.95rem; margin-bottom: 14px; }
  .hero .lead { font-size: .98rem; }
  .hero-actions { margin-top: 22px; gap: 10px; }
  .hero-actions .btn { flex: 1; padding: 14px 12px; }
  .hero-stats { gap: 14px; margin-top: 26px; padding-top: 20px; }
  .hero-stats div { flex: 1; min-width: 0; }
  .hero-stats dt { font-size: 1.4rem; }
  .hero-stats dd { font-size: .66rem; letter-spacing: .04em; line-height: 1.35; }

  /* La franja ocupaba 3 líneas; dejamos solo el diferenciador real (el
     despacho el mismo día). Showroom y asesoría se repiten más abajo. */
  .strip-inner { padding: 11px 18px; font-size: .82rem; gap: 0; }
  .strip-inner .dot, .strip-inner span:not(:first-child) { display: none; }

  .section { padding: 48px 0; }
  .section-head { margin-bottom: 26px; }

  /* --- Categorías compactas: 16 tarjetas ocupaban 2,2 pantallas --- */
  .cat-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
  .cat-card { padding: 14px 12px; gap: 8px; min-height: 108px; }
  .cat-card svg { width: 26px; height: 26px; }
  .cat-card h3 { font-size: .88rem; }
  .cat-card .cat-count { font-size: .74rem; }
  .cat-card .cat-go { display: none; }

  /* --- Filtros: eran 14 filas apiladas (580px). Ahora una sola fila
         deslizable y pegada bajo el header mientras se navega. --- */
  .toolbar { margin-bottom: 18px; }
  .search-box { padding: 11px 16px; }
  .chips {
    position: sticky;
    top: 62px;
    z-index: 20;
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 14px -18px 0;
    padding: 10px 18px;
    background: var(--bg-soft);
    box-shadow: 0 6px 10px -8px rgba(0,0,0,.25);
  }
  .chips::-webkit-scrollbar { display: none; }
  .chip {
    scroll-snap-align: start;
    flex: none;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }

  /* --- Productos: dos columnas y botones tocables --- */
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
  .card-body { padding: 12px 12px 14px; }
  .card-actions { gap: 6px; }
  .card-actions .mini { padding: 11px 4px; font-size: .76rem; min-height: 42px; display: grid; place-items: center; }

  /* --- Formulario --- */
  .lead-form { grid-template-columns: 1fr; padding: 22px 18px; gap: 14px; }
  /* 16px es el mínimo que evita que iOS haga zoom al enfocar un campo. */
  .field input, .field select, .field textarea, .search-box input { font-size: 16px; }
  .field input, .field select { padding: 13px 14px; }
  .lead-form .btn { padding: 16px 22px; }
  .form-intro > p { font-size: .95rem; }

  .review { padding: 22px 18px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  /* --- Barra fija inferior: el formulario queda a ~9 pantallas del inicio,
         esto lo deja siempre a un toque --- */
  .wa-float { display: none; }
  .mobile-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    gap: 10px;
    padding: 10px 18px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
    transform: translateY(110%);
    transition: transform .22s ease;
  }
  .mobile-bar.show { transform: translateY(0); }
  .mbar-wa {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    flex: none;
    border-radius: 12px;
    background: #25D366;
    color: #fff;
  }
  .mbar-cta {
    flex: 1;
    display: grid;
    place-items: center;
    height: 50px;
    border-radius: 12px;
    background: var(--accent);
    color: #17120a;
    font-weight: 700;
    font-size: .95rem;
  }
  .mbar-cta:active { background: var(--accent-deep); }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 1.78rem; }
  .cat-card h3 { font-size: .84rem; }
}
