/* =================================================================
   ASM STORE — custom.css
   Paleta: Negro / Gris / Blanco  ·  Rojo #e8e8e8 como único acento
   Tipografía: Barlow Condensed (display) + Barlow (body)
   Fuente canónica de estilos para index.html y dorman.html
================================================================= */

/* -----------------------------------------------------------------
   1. CSS VARIABLES
----------------------------------------------------------------- */
:root {
  /* Paleta de color */
  --black:          #0c0c0c;
  --dark:           #141414;
  --dark-2:         #1c1c1c;
  --g900:           #222222;
  --g800:           #2e2e2e;
  --g700:           #3a3a3a;
  --g600:           #555555;
  --g400:           #888888;
  --g200:           #c8c8c8;
  --g100:           #e8e8e8;
  --white:          #f5f5f5;
  --pure-white:     #ffffff;
  --accent:         #696565;
  --accent-light:   #696565;
  --accent-dim:     rgba(186, 181, 181, 1);
  --accent-border:  rgba(186, 181, 181, 1);

  /* WhatsApp */
  --wa:             #25D366;
  --wa-dk:          #128C7E;

  /* Tipografía */
  --fd:             'Barlow Condensed', sans-serif;
  --fb:             'Barlow', sans-serif;

  /* Radios */
  --rsm:            5px;
  --rmd:            10px;
  --rlg:            18px;

  /* Transición estándar */
  --tr:             0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -----------------------------------------------------------------
   2. RESET GLOBAL
----------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html  { scroll-behavior: smooth; }
body  {
  background: var(--black);
  color: var(--white);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a   { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul  { list-style: none; }

/* -----------------------------------------------------------------
   3. LAYOUT HELPERS
----------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* -----------------------------------------------------------------
   4. LOADER
----------------------------------------------------------------- */
#loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-ring {
  width: 48px;
  height: 48px;
  border: 2px solid var(--g800);
  border-top-color: var(--g200);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* -----------------------------------------------------------------
   5. FLOATING WHATSAPP
----------------------------------------------------------------- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  transition: transform var(--tr), box-shadow var(--tr);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.wa-float svg  { width: 28px; height: 28px; fill: #fff; }
.wa-float-label {
  position: absolute;
  right: 64px;
  background: var(--dark-2);
  color: var(--white);
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--rsm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr);
  border: 1px solid rgba(255,255,255,0.1);
}
.wa-float:hover .wa-float-label { opacity: 1; }

/* -----------------------------------------------------------------
   6. NAVBAR
----------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  background: rgba(12,12,12,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background var(--tr);
}
.navbar.scrolled { background: rgba(12,12,12,0.98); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.nav-logo       { display: flex; align-items: center; gap: 10px; }
.nav-logo img   { height: 34px; width: auto; }
.nav-logo-text  {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--white);
  display: none;
}

/* Nav links */
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--g400);
  padding: 7px 13px;
  border-radius: var(--rsm);
  transition: color var(--tr), background var(--tr);
  position: relative;
}
.nav-links a:hover       { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-links a.active      { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 13px; right: 13px;
  height: 2px;
  background: rgba(255,255,255,0.35);
  border-radius: 2px;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--rmd);
  min-width: 180px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--tr), transform var(--tr), visibility var(--tr);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--g400);
  border-radius: var(--rsm);
  transition: color var(--tr), background var(--tr);
}
.nav-dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-dropdown-menu a.hi    { color: var(--white); font-weight: 700; }

/* CTA button */
.nav-cta a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  color: var(--black) !important;
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: var(--rsm);
  transition: background var(--tr), transform var(--tr);
}
.nav-cta a:hover     { background: var(--g200); transform: translateY(-1px); }
.nav-cta a svg       { width: 15px; height: 15px; fill: var(--black); }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--white);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: transform var(--tr), opacity var(--tr);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 799;
  padding: 20px 24px 28px;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform var(--tr), opacity var(--tr);
}
.nav-mobile.open       { transform: translateY(0); opacity: 1; }
.nav-mobile a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--g400);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: color var(--tr);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover      { color: var(--white); }
.nav-mobile a.wa-link    { color: var(--wa); }

/* -----------------------------------------------------------------
   7. HERO SLIDER
----------------------------------------------------------------- */
.hero {
  min-height: 78vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 68px;
}
.slider-track { position: absolute; inset: 0; transition: opacity 0.9s ease; }
.slider-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42);
}
.slider-track.active     { opacity: 1; z-index: 1; }
.slider-track:not(.active) { opacity: 0; z-index: 0; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(105deg, rgba(12,12,12,0.78) 0%, rgba(12,12,12,0.30) 60%, transparent 100%);
}

/* Arrow buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background var(--tr), transform 0.3s ease;
}
.slider-btn:hover      { background: rgba(255,255,255,0.22); transform: translateY(-50%) scale(1.08); }
.slider-btn svg        { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }
.slider-btn-prev       { left: 28px; }
.slider-btn-next       { right: 28px; }

/* Dot navigation */
.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  border: none;
  transition: background var(--tr), transform var(--tr);
}
.slider-dot.active { background: var(--white); transform: scale(1.35); }

/* Hero content */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 760px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--g200);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
  animation: fadeUp 0.6s ease both;
}
.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0.5;
  animation: pdot 1.8s ease infinite;
}
@keyframes pdot { 0%,100%{opacity:.5;transform:scale(1)} 50%{opacity:.15;transform:scale(.65)} }
.hero h1 {
  font-family: var(--fd);
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
  animation: fadeUp 0.6s 0.12s ease both;
}
.hero h1 .outline { -webkit-text-stroke: 2px rgba(255,255,255,0.5); color: transparent; }
.hero-sub {
  font-size: 17px;
  color: var(--g200);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 30px;
  animation: fadeUp 0.6s 0.25s ease both;
}
.hero-brands {
  font-weight: 800;
  color: var(--pure-white);
  letter-spacing: 0.04em;
  text-shadow: 0 0 24px rgba(255,255,255,0.35);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.38s ease both;
}
.hero-stats {
  position: relative;
  z-index: 5;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.18);
  animation: fadeUp 0.6s 0.5s ease both;
}
.stat-num     { font-family: var(--fd); font-size: 44px; font-weight: 900; color: var(--pure-white); line-height: 1; text-shadow: 0 2px 16px rgba(255,255,255,0.15); }
.stat-num span { color: var(--g400); }
.stat-lbl     { font-size: 13px; color: var(--g400); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 6px; font-weight: 600; }
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }

/* -----------------------------------------------------------------
   8. BUTTONS
----------------------------------------------------------------- */
/* White (hero / light-bg primary) */
.btn-w {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  color: var(--black);
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: var(--rsm);
  border: none;
  cursor: pointer;
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.btn-w:hover { background: var(--g200); color: var(--black); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(0,0,0,0.4); }
.btn-w svg   { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }

/* Ghost (transparent, dark bg) */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--white);
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: var(--rsm);
  border: 1px solid rgba(255,255,255,0.28);
  cursor: pointer;
  transition: background var(--tr), border-color var(--tr), transform var(--tr);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }
.btn-ghost svg   { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }

/* Black (CTA on light sections) */
.btn-blk {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--black);
  color: var(--white);
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: var(--rsm);
  border: none;
  cursor: pointer;
  transition: background var(--tr), transform var(--tr);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.btn-blk:hover { background: var(--g900); transform: translateY(-2px); }
.btn-blk svg   { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }

/* Red accent button */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--accent);
  color: #fff;
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: var(--rsm);
  border: none;
  cursor: pointer;
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
  box-shadow: 0 4px 20px rgba(232,38,26,0.3);
}
.btn-red:hover { background: var(--accent-light); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 28px rgba(232,38,26,0.4); }
.btn-red svg   { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }

/* -----------------------------------------------------------------
   9. SECTION BASE
----------------------------------------------------------------- */
section { padding: 100px 0; }
.sec-lbl {
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sec-lbl.dk { color: var(--g400); }
.sec-lbl.lt { color: var(--g600); }
.sec-ttl {
  font-family: var(--fd);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 18px;
}
.sec-ttl.dk      { color: var(--white); }
.sec-ttl.dk .dim { color: var(--g700); }
.sec-ttl.lt      { color: var(--g900); }
.sec-ttl.lt .dim { color: var(--g400); }
.sec-body {
  font-size: 16px;
  max-width: 580px;
  line-height: 1.7;
}
.sec-body.dk { color: var(--g400); }
.sec-body.lt { color: var(--g600); }

/* -----------------------------------------------------------------
   10. TICKER
----------------------------------------------------------------- */
.ticker {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  white-space: nowrap;
  padding: 11px 0;
}
.ticker-inner {
  display: inline-flex;
  animation: tick 28s linear infinite;
}
.ticker-item {
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g600);
  padding: 0 32px;
}
.ticker-item::after { content: '·'; margin-left: 32px; opacity: 0.35; }
@keyframes tick { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* -----------------------------------------------------------------
   11. ECOMMERCE BANNER
----------------------------------------------------------------- */
.ecom {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding: 0;
  overflow: hidden;
  position: relative;
}

/* Subtle radial glow behind the left title — pure white, no red */
.ecom::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 68%);
  pointer-events: none;
}

.ecom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

/* LEFT PANEL */
.ecom-l {
  padding: 72px 64px 72px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.10);
  position: relative;
}

/* RIGHT PANEL */
.ecom-r {
  padding: 72px 0 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255,255,255,0.02);
}

/* Wrapper constrains card width — prevents ugly stretching */
.ecom-r-inner {
  width: 100%;
  max-width: 460px;
}

.ecom-r-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--g200);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  width: fit-content;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.04);
}

/* Big title */
.ecom-l h2 {
  font-family: var(--fd);
  font-size: clamp(40px, 4.5vw, 54px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 20px;
  color: var(--white);
  letter-spacing: -0.01em;
}
/* "en construcción" — contrasted dim line */
.ecom-l h2 span {
  color: var(--g400);
  display: block;
  font-size: 0.78em;
  letter-spacing: 0.01em;
}

.ecom-l p {
  font-size: 15px;
  color: var(--g400);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 400px;
}

/* Progress bar — thicker, brighter */
.prog-wrap       { margin-bottom: 4px; }
.prog-lbl        { display: flex; justify-content: space-between; font-size: 11px; color: var(--g400); margin-bottom: 10px; letter-spacing: 0.06em; }
.prog-lbl-pct    { color: var(--white); font-weight: 700; font-family: var(--fd); font-size: 13px; }
.prog-bg {
  height: 5px;
  background: var(--g800);
  border-radius: 3px;
  overflow: hidden;
}
.prog-fill {
  height: 100%;
  width: 72%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--g600) 0%, var(--white) 100%);
  position: relative;
}
/* Glowing tip on the progress bar */
.prog-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 8px 3px rgba(255,255,255,0.55);
}

/* Contact cards */
.cc-cards { display: flex; flex-direction: column; gap: 10px; width: 100%; }

.cc {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--rmd);
  padding: 18px 22px;
  color: var(--white);
  transition: border-color var(--tr), background var(--tr), transform var(--tr), box-shadow var(--tr);
}
.cc:hover {
  border-color: rgba(255,255,255,0.30);
  background: rgba(255,255,255,0.08);
  transform: translateX(5px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

/* Icon box — brighter on hover via parent */
.cc-ico {
  width: 42px;
  height: 42px;
  border-radius: var(--rsm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background var(--tr), border-color var(--tr);
}
.cc:hover .cc-ico {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.28);
}
.cc-ico svg  { width: 18px; height: 18px; fill: var(--g200); }

.cc-body     { flex: 1; }
.cc-lbl      { font-size: 10px; color: var(--g600); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 3px; }
.cc-val      { font-family: var(--fd); font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: 0.02em; }
.cc-val-sm   { font-family: var(--fd); font-size: 13px; font-weight: 700; color: var(--white); }

/* Arrow indicator */
.cc-arr {
  color: var(--g700);
  font-size: 20px;
  transition: transform var(--tr), color var(--tr);
}
.cc:hover .cc-arr { transform: translateX(5px); color: var(--white); }

/* -----------------------------------------------------------------
   12. NOSOTROS (fondo claro)
----------------------------------------------------------------- */
.nosotros   { background: var(--g100); }
.nos-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.nos-img    { position: relative; border-radius: var(--rlg); overflow: hidden; }
.nos-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: brightness(0.88) saturate(0.8);
}
.nos-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--rlg);
  border: 1px solid rgba(0,0,0,0.08);
  pointer-events: none;
}
.img-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: var(--black);
  color: var(--white);
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px 15px;
  border-radius: var(--rsm);
}
.nos-feats   { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
.feat        { display: flex; gap: 14px; align-items: flex-start; }
.feat-ico    { width: 38px; height: 38px; background: rgba(0,0,0,0.07); border-radius: var(--rsm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feat-ico svg { width: 17px; height: 17px; fill: var(--g900); }
.feat-ttl    { font-weight: 700; color: var(--g900); margin-bottom: 2px; font-size: 15px; }
.feat-desc   { font-size: 14px; color: var(--g600); line-height: 1.55; }

/* -----------------------------------------------------------------
   13. MARCAS (fondo oscuro)
----------------------------------------------------------------- */
.marcas {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marcas-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 16px;
}
.marcas-hdr-desc { color: var(--g400); max-width: 340px; font-size: 15px; line-height: 1.6; }
.marcas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--rmd);
  overflow: hidden;
}
.mcard         { background: var(--dark-2); aspect-ratio: 4/3; overflow: hidden; position: relative; }
.mcard img     { width: 100%; height: 100%; object-fit: cover; transition: filter var(--tr), transform 0.45s ease; }
.mcard:hover img { filter: brightness(0.75) saturate(0.5); transform: scale(1.06); }
.mlbl          { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 18px; background: linear-gradient(transparent 40%, rgba(0,0,0,0.75)); }
.mlbl span     { font-family: var(--fd); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--white); }

/* WhatsApp variants — verde con suficiente contraste para no perderse */
.cc-wa {
  border-color: rgba(37,211,102,0.75);
  background: rgba(37,211,102,0.22);
}
.cc-wa:hover {
  border-color: rgba(37,211,102,0.95);
  background: rgba(37,211,102,0.30);
  transform: translateX(5px);
}
.cc-wa .cc-lbl { color: rgba(255,255,255,0.65); }
.cc-wa .cc-val { color: var(--white); }
.cc-wa .cc-arr { color: rgba(255,255,255,0.5); }
.cc-wa:hover .cc-arr { color: var(--white); }
.cc-ico-wa {
  background: rgba(37,211,102,0.30) !important;
  border-color: rgba(37,211,102,0.55) !important;
}
.cc-ico-wa svg { fill: var(--wa) !important; }

/* iitem link style */
.iitem-link {
  display: flex;
  text-decoration: none;
  cursor: pointer;
  transition: border-color var(--tr), background var(--tr), transform var(--tr);
}
.iitem-link:hover {
  border-color: rgba(255,255,255,0.22) !important;
  background: rgba(255,255,255,0.08) !important;
  transform: translateX(4px);
}
.iitem-wa {
  border-color: rgba(37,211,102,0.75) !important;
  background: rgba(37,211,102,0.22) !important;
}
.iitem-wa:hover {
  border-color: rgba(37,211,102,0.95) !important;
  background: rgba(37,211,102,0.30) !important;
}
.ii-ico-wa {
  background: rgba(37,211,102,0.30) !important;
}
.ii-ico-wa svg { fill: var(--wa) !important; }

/* cdl WhatsApp variant — verde con suficiente contraste */
.cdl-wa {
  border-color: rgba(37,211,102,0.75) !important;
  background: rgba(37,211,102,0.22) !important;
}
.cdl-wa:hover {
  border-color: rgba(37,211,102,0.95) !important;
  background: rgba(37,211,102,0.30) !important;
}
.cdl-wa .cdl-tp { color: rgba(255,255,255,0.65) !important; }
.cdl-wa .cdl-vl { color: var(--white) !important; }
.cdl-ico-wa {
  background: rgba(37,211,102,0.30) !important;
  border-color: rgba(37,211,102,0.55) !important;
}
.cdl-ico-wa svg { fill: var(--wa) !important; }

/* -----------------------------------------------------------------
   14. PRODUCT CARDS  (shared by index .pcard & dorman .prd)
   White/light background variant — used in BOTH pages
----------------------------------------------------------------- */

/* --- index: product grid section --- */
.productos   { background: var(--pure-white); }
.prod-hdr    { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.prod-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.prod-cta    { text-align: center; margin-top: 48px; }
.prod-cta-note { color: var(--g600); margin-bottom: 20px; font-size: 15px; }

.pcard {
  background: var(--g100);
  border: 1.5px solid var(--g200);
  border-radius: var(--rmd);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
}
.pcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.pcard:hover             { border-color: var(--g400); box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-4px); }
.pcard:hover::before     { transform: scaleX(1); }

/* Special Dorman card (dark) */
.pcard.dorman            { background: var(--black); border-color: rgba(255,255,255,0.12); grid-column: 1 / -1; display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.pcard.dorman::before    { background: var(--white); }
.pcard.dorman:hover      { border-color: rgba(255,255,255,0.3); box-shadow: 0 8px 32px rgba(0,0,0,0.35); }
.pcard.dorman-inner      { flex: 1; min-width: 240px; }

/* Icons, titles, descriptions */
.p-ico     { width: 46px; height: 46px; background: rgba(0,0,0,0.08); border-radius: var(--rsm); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.p-ico svg { width: 22px; height: 22px; fill: var(--g900); }
.pcard.dorman .p-ico     { background: rgba(255,255,255,0.08); }
.pcard.dorman .p-ico svg { fill: var(--white); }
.p-ttl     { font-family: var(--fd); font-size: 19px; font-weight: 800; text-transform: uppercase; color: var(--g900); margin-bottom: 10px; }
.p-desc    { font-size: 14px; color: var(--g600); line-height: 1.6; }
.pcard.dorman .p-ttl { color: var(--white); }
.pcard.dorman .p-desc { color: var(--g400); }

/* --- dorman.html: product grid --- */
/* Reuses .prd-grid, .prd, .prd-img, .prd-info from original.
   Override here to match white-card style from index. */
#pageContent            { background: var(--pure-white); }

.prd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.prd {
  background: var(--g100);
  border: 1.5px solid var(--g200);
  border-radius: var(--rmd);
  overflow: hidden;
  position: relative;
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
}
.prd::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.prd:hover             { border-color: var(--g400); box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-4px); }
.prd:hover::before     { transform: scaleX(1); }
.prd-img               { overflow: hidden; background: var(--g200); }
.prd-img img           { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: brightness(0.95) saturate(0.85); transition: transform 0.4s ease, filter 0.4s ease; }
.prd:hover .prd-img img { transform: scale(1.04); filter: brightness(1) saturate(1); }
.prd-info              { padding: 18px 20px 22px; }
.prd-info h3           { font-family: var(--fd); font-size: 16px; font-weight: 800; text-transform: uppercase; color: var(--g900); margin-bottom: 6px; }
.prd-info h3 a         { color: var(--g900); transition: color var(--tr); }
.prd-info h3 a:hover   { color: var(--accent); }
.price                 { font-size: 13px; color: var(--g600); }

/* -----------------------------------------------------------------
   15. CONTACTO (dark section)
----------------------------------------------------------------- */
.contacto   { background: var(--dark-2); border-top: 1px solid rgba(255,255,255,0.06); }
.cto-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.info-items { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }
.iitem      { display: flex; gap: 14px; align-items: flex-start; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--rmd); padding: 18px 20px; transition: border-color var(--tr), background var(--tr); }
.iitem:hover { border-color: rgba(255,255,255,0.14); background: rgba(255,255,255,0.06); }
.ii-ico      { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: var(--rsm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ii-ico svg  { width: 17px; height: 17px; fill: var(--g400); }
.ii-lbl      { font-size: 10px; color: var(--g600); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
.ii-val      { font-weight: 600; color: var(--white); font-size: 15px; }
.ii-val-sm   { font-weight: 600; color: var(--white); font-size: 13px; }

/* Call panel */
.cpanel     { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--rlg); padding: 40px; }
.cpanel h3  { font-family: var(--fd); font-size: 26px; font-weight: 800; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.cpanel p   { font-size: 14px; color: var(--g600); line-height: 1.6; margin-bottom: 28px; }
.cdlinks    { display: flex; flex-direction: column; gap: 12px; }
.cdl        { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--rmd); padding: 16px 18px; color: var(--white); transition: background var(--tr), border-color var(--tr), transform var(--tr); }
.cdl:hover  { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); transform: translateX(4px); }
.cdl-ico    { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: var(--rsm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cdl-ico svg { width: 17px; height: 17px; fill: var(--g400); }
.cdl-tp     { font-size: 10px; color: var(--g600); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px; }
.cdl-vl     { font-family: var(--fd); font-size: 17px; font-weight: 700; color: var(--white); }
.cdl-vl-sm  { font-family: var(--fd); font-size: 14px; font-weight: 700; color: var(--white); }
.cdl-ar     { margin-left: auto; color: var(--g700); font-size: 18px; transition: transform var(--tr), color var(--tr); }
.cdl:hover .cdl-ar { transform: translateX(4px); color: var(--white); }

/* -----------------------------------------------------------------
   16. MAP
----------------------------------------------------------------- */
.map-sec         { padding: 0; }
.map-sec iframe  { width: 100%; height: 300px; display: block; border: none; filter: invert(90%) hue-rotate(180deg) brightness(0.85) saturate(0.6); }

/* -----------------------------------------------------------------
   17. FOOTER
----------------------------------------------------------------- */
footer    { background: var(--black); border-top: 1px solid rgba(255,255,255,0.07); padding: 52px 0 32px; }
.ft-grid  { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.ft-brand p { font-size: 14px; color: var(--g600); line-height: 1.7; margin-top: 14px; max-width: 300px; }
.ft-logo    { height: 32px; width: auto; opacity: 0.75; }
.ft-social  { display: flex; gap: 10px; margin-top: 20px; }
.soc-btn    { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--rsm); display: flex; align-items: center; justify-content: center; color: var(--g600); transition: border-color var(--tr), color var(--tr); }
.soc-btn:hover { border-color: var(--g400); color: var(--white); }
.soc-btn svg   { width: 15px; height: 15px; fill: currentColor; }
.ft-col h4     { font-family: var(--fd); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 16px; }
.ft-col ul     { display: flex; flex-direction: column; gap: 9px; }
.ft-col li a   { font-size: 14px; color: var(--g600); transition: color var(--tr); }
.ft-col li a:hover { color: var(--white); }
.ft-col-note   { font-size: 13px; color: var(--g700); }
.ft-bot        { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.ft-bot p      { font-size: 12px; color: var(--g600); }

/* -----------------------------------------------------------------
   18. DORMAN — PAGE TITLE & SIDEBAR & PAGINATION
----------------------------------------------------------------- */
#pageTitle {
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding: 36px 0 32px;
  margin-top: 68px;
}
#pageTitle h1 {
  font-family: var(--fd);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* Breadcrumb — visible, horizontal pill strip */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 5px 14px;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--g400);
}
.breadcrumb li + li::before {
  content: '/';
  margin: 0 8px;
  color: var(--g700);
  font-weight: 400;
}
/* All items (links and plain text) same base style */
.breadcrumb a {
  color: var(--g400);
  transition: color var(--tr);
}
.breadcrumb a:hover { color: var(--white); }
/* Last crumb = current page — highlighted */
.breadcrumb li:last-child,
.breadcrumb li:last-child a {
  color: var(--white);
  font-weight: 700;
}

/* Dorman layout */
.dorman-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; padding: 48px 0 72px; }

/* Sidebar */
.column-filters-inside { position: sticky; top: 88px; }
.side-block            { margin-bottom: 36px; }
.side-block h3 {
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--g400);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--g200);
}
.category-list         { display: flex; flex-direction: column; gap: 2px; }
.category-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: var(--rsm);
  font-size: 14px;
  color: var(--g700);
  transition: background var(--tr), color var(--tr);
}
.category-list li a:hover { background: var(--g100); color: var(--g900); }
.category-list li.active > a,
.category-list li a.active { background: var(--black); color: var(--white); font-weight: 700; }
.category-list li a span   { font-size: 11px; color: var(--g400); }
.category-list li.active a span { color: var(--g600); }

/* Brand thumbnails in sidebar */
.prd-sm       { margin-bottom: 10px; }
.prd-sm-img   { border-radius: var(--rsm); overflow: hidden; }
.prd-sm-img img { width: 100%; aspect-ratio: 16/6; object-fit: contain; background: var(--g100); padding: 6px; filter: grayscale(0.2); transition: filter var(--tr), transform 0.3s ease; }
.prd-sm-img img:hover { filter: grayscale(0); transform: scale(1.03); }

/* Filters row + pagination */
.filters-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--g200);
}
.simple-pagination     { display: flex; align-items: center; gap: 4px; }
.simple-pagination span { font-size: 12px; color: var(--g600); margin-right: 6px; }
.simple-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--rsm);
  font-size: 13px;
  font-weight: 600;
  color: var(--g600);
  border: 1px solid var(--g200);
  transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.simple-pagination a:hover  { background: var(--g100); color: var(--g900); border-color: var(--g400); }
.simple-pagination a.active { background: var(--black); color: var(--white); border-color: var(--black); }

/* Bottom pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 36px;
  list-style: none;
}
.pagination li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--rsm);
  font-size: 13px;
  font-weight: 600;
  color: var(--g600);
  border: 1px solid var(--g200);
  transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.pagination li a:hover  { background: var(--g100); color: var(--g900); border-color: var(--g400); }
.pagination li.active a { background: var(--black); color: var(--white); border-color: var(--black); }

/* -----------------------------------------------------------------
   19. SCROLL REVEAL
----------------------------------------------------------------- */
.reveal         { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

/* -----------------------------------------------------------------
   21. WHATSAPP CTA BAND (dorman)
----------------------------------------------------------------- */
.wa-cta-band {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
/* Subtle radial glow — green tint, very low opacity */
.wa-cta-band::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(37,211,102,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.wa-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.wa-cta-left {}

.wa-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wa);
  margin-bottom: 16px;
}
.wa-cta-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--wa);
  border-radius: 50%;
  animation: pdot 1.8s ease infinite;
}

.wa-cta-left h2 {
  font-family: var(--fd);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.wa-cta-left h2 span { color: var(--g400); }

.wa-cta-left p {
  font-size: 15px;
  color: var(--g400);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 0;
}

/* Highlights / trust signals */
.wa-cta-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.wa-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--g200);
  letter-spacing: 0.04em;
}
.wa-cta-badge svg {
  width: 13px; height: 13px;
  fill: var(--wa);
  flex-shrink: 0;
}

/* Right side — CTA buttons stack */
.wa-cta-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}

/* Primary WhatsApp button */
.btn-wa-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  background: var(--wa);
  color: #fff;
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--rsm);
  border: none;
  cursor: pointer;
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
  box-shadow: 0 4px 24px rgba(37,211,102,0.30);
  white-space: nowrap;
}
.btn-wa-primary:hover {
  background: var(--wa-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.40);
}
.btn-wa-primary svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }

/* Secondary phone button */
.btn-wa-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: transparent;
  color: var(--g200);
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--rsm);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: background var(--tr), border-color var(--tr), color var(--tr), transform var(--tr);
  white-space: nowrap;
}
.btn-wa-secondary:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-wa-secondary svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

.wa-cta-note {
  font-size: 11px;
  color: var(--g600);
  text-align: center;
  letter-spacing: 0.04em;
}

@media (max-width: 860px) {
  .wa-cta-inner { grid-template-columns: 1fr; gap: 36px; }
  .wa-cta-right { min-width: unset; }
}

/* -----------------------------------------------------------------
   22. RESPONSIVE
----------------------------------------------------------------- */
@media (max-width: 900px) {
  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-toggle           { display: block; }
  .nav-mobile           { display: block; }
  /* Ecommerce */
  .ecom-inner { grid-template-columns: 1fr; }
  .ecom-l     { padding: 56px 0 36px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); }
  .ecom-r     { padding: 36px 0 56px; background: none; }
  .ecom-r-inner { max-width: 100%; }
  /* Product grids */
  .prod-grid  { grid-template-columns: repeat(2, 1fr); }
  .prd-grid   { grid-template-columns: repeat(2, 1fr); }
  /* Dorman layout */
  .dorman-layout { grid-template-columns: 1fr; }
  .column-filters-inside { position: static; }
}

@media (max-width: 860px) {
  .nos-grid  { grid-template-columns: 1fr; gap: 48px; }
  .cto-grid  { grid-template-columns: 1fr; gap: 52px; }
}

@media (max-width: 768px) {
  section             { padding: 72px 0; }
  .marcas-grid        { grid-template-columns: repeat(2, 1fr); }
  .ft-grid            { grid-template-columns: 1fr; gap: 32px; }
  .slider-btn-prev    { left: 14px; }
  .slider-btn-next    { right: 14px; }
  /* En móvil los botones absolutos se ocultan — se usan los inline */
  .slider-btn         { display: none; }
  /* Los botones inline móvil se muestran */
  .slider-arrows-mob  { display: flex; }
  /* Ocultar stats en móvil para evitar líneas vacías */
  .hero-stats         { display: none; }
}

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

@media (max-width: 480px) {
  .container    { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
}

/* -----------------------------------------------------------------
   23. SLIDER ARROWS MÓVIL (inline, debajo de hero-actions)
----------------------------------------------------------------- */
/* Por defecto ocultos en desktop */
.slider-arrows-mob {
  display: none;
  gap: 12px;
  margin-top: 20px;
}
.slider-btn-mob {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background var(--tr);
}
.slider-btn-mob:hover { background: rgba(255,255,255,0.22); }
.slider-btn-mob svg   { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }
