/* =====================================================================
   Vintage Watches Valencia · Mockup estilos
   Estética: Richard Mille style — blanco / negro / rojo motorsport
   Tipografía: Manrope sans-serif (todo) + JetBrains Mono (números)
   ===================================================================== */

:root {
  /* =========================================================
     Paleta · NEGRO dominante + CARMÍN profundo
     Tonos de carmín alternativos (cambiar --accent abajo):
       #9B1C31  · Carmín profundo equilibrado    ← actual
       #8B0000  · Dark red / sangre seca
       #960018  · Carmín Pantone clásico
       #7A1F2E  · Bordeaux / vino tinto
       #A0142F  · Carmín lipstick vivo
       #6E0F0F  · Rojo borgoña muy oscuro
     ========================================================= */

  --bg:          #0a0a0a;          /* negro profundo dominante */
  --bg-elev:    #141414;           /* superficies elevadas (cards en oscuro) */
  --bg-soft:    #1c1c1c;           /* surfaces más claras */
  --bg-dark:    #000000;           /* negro absoluto para contrastes máximos */
  --bg-light:   #ffffff;           /* blanco SOLO como acento contrastante */
  --bg-light-soft: #f5f5f5;        /* gris muy claro para secciones blancas puntuales */

  --line:        #2a2a2a;          /* bordes oscuros */
  --line-soft:   #1f1f1f;          /* bordes sutiles oscuros */
  --line-light:  #d8d8d8;          /* bordes en secciones claras */

  --text:        #f5f5f5;          /* blanco crema (texto principal en oscuro) */
  --text-muted:  #999999;          /* gris medio */
  --text-dim:    #666666;          /* gris oscuro */
  --text-on-light:#0a0a0a;         /* negro para texto sobre fondos claros */

  --accent:      #D9101C;          /* ROJO EXACTO DEL LOGO (extraído con pipeta · #FE040E~#B7161B promedio) */
  --accent-soft: #A50F18;          /* variante apagada/oscura del logo */
  --accent-bright:#EE1424;         /* variante hover más luminosa */
  /* Si prefieres más oscuro/contenido, cambiar a:
     --accent: #A50F18;  (granate del logo)
     --accent: #8B0010;  (carmín muy profundo)         */

  --danger:      #D9101C;
  --success:     #4a7c3a;
  --warning:     #b88a17;

  --header-bg:   rgba(10,10,10,.94);
  --trust-bg:    #D9101C;          /* trust bar rojo logo — diferenciación máxima */
  --badge-bg:    rgba(10,10,10,.85);

  --font-sans:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Manrope', sans-serif;
  --font-mono:    'JetBrains Mono', 'Consolas', monospace;

  --container: 1400px;
  --radius:    0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.05;
  color: var(--text);
}
h3, h4 { font-weight: 700; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.muted { color: var(--text-muted); }
.accent { color: var(--accent); }
.mono { font-family: var(--font-mono); }

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border: 1px solid var(--text);
  background: transparent;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s ease;
  border-radius: 0;
}
.btn:hover {
  background: var(--text);
  color: var(--bg);
}
.btn--filled {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--filled:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
  color: #fff;
}
.btn--ghost {
  border-color: var(--line);
  color: var(--text);
}
.btn--ghost:hover {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
}
.btn--wa {
  background: #25d366;
  color: #000;
  border-color: #25d366;
}
.btn--wa:hover {
  background: #1ebe5a;
  color: #000;
  border-color: #1ebe5a;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}
.brand-logo {
  display: block;
  height: 56px;
  width: auto;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.brand:hover .brand-logo { transform: scale(1.04); }
/* fallback texto (mantener clase brand-mark si se usa en footer) */
.brand-mark {
  width: 40px; height: 40px;
  background: var(--accent);
  display: grid; place-items: center;
  font-family: var(--font-display);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}
.nav { display: flex; gap: 40px; align-items: center; }
.nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text);
  transition: color .2s;
}
.nav a.active { color: var(--accent); }
.nav a:hover { color: var(--accent); }

/* ---------- TRUST BAR (franja negra contraste Richard Mille) ---------- */
.trust-bar {
  background: var(--trust-bg);
  padding: 12px 0;
  border-bottom: 0;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
}
.trust-bar span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-bar svg {
  width: 12px; height: 12px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
}

/* ---------- NAV: dropdown de marcas ---------- */
.nav-item { position: relative; }
.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-item > a::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  display: inline-block;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  padding: 28px 36px;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  padding: 10px 0;
  display: block;
  border-bottom: 1px solid var(--line-soft);
}
.nav-dropdown a:last-of-type { border-bottom: 0; }
.nav-dropdown a:hover { color: var(--accent); }
.nav-dropdown .all {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--text);
  border-bottom: 0 !important;
  font-size: 10px;
  letter-spacing: .26em;
  color: var(--accent);
}

/* ---------- CTA "Vender mi reloj" destacado ---------- */
.sell-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff !important;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  transition: all .25s ease;
}
.sell-cta:hover {
  background: var(--accent-bright);
  color: #fff !important;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
  color: var(--text);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('assets/hero-watch.jpg') center/cover no-repeat;
  z-index: 0;
  filter: brightness(.55) contrast(1.08);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  display: block;
  pointer-events: none;
  filter: brightness(.7) contrast(1.05);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,.85) 0%, rgba(10,10,10,.55) 45%, rgba(10,10,10,.25) 100%),
    linear-gradient(180deg, rgba(10,10,10,.35) 0%, transparent 30%, rgba(10,10,10,.85) 100%);
  z-index: 2;
}
.hero h1, .hero p, .hero .eyebrow, .hero-scroll { color: var(--text); }
.hero p.lead { color: rgba(255,255,255,.75); }
.hero-scroll { color: rgba(255,255,255,.5); }
.hero .container { position: relative; z-index: 3; }
.hero h1 {
  font-size: clamp(48px, 7vw, 104px);
  line-height: .95;
  font-weight: 800;
  letter-spacing: -.025em;
  max-width: 1000px;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  display: block;
}
.hero p.lead {
  font-size: 17px;
  max-width: 540px;
  color: var(--text-muted);
  margin-bottom: 48px;
  line-height: 1.6;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ---------- SECCIONES ---------- */
section { padding: 140px 0; }
section.tight { padding: 80px 0; }
section.dark {
  background: var(--bg-dark);
  color: var(--text);
}
section.dark h1, section.dark h2, section.dark h3 { color: var(--text); }
section.dark .eyebrow { color: var(--accent); }
section.dark p { color: rgba(255,255,255,.7); }
section.light {
  background: var(--bg-light);
  color: var(--text-on-light);
}
section.light h1, section.light h2, section.light h3 { color: var(--text-on-light); }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 72px;
  flex-wrap: wrap;
  gap: 24px;
}
.section-head h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  max-width: 800px;
  text-transform: uppercase;
  letter-spacing: -.02em;
}
.section-head h2 em { font-style: normal; color: var(--accent); }
.section-head .meta {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: .04em;
}

/* ---------- GRID DE RELOJES ---------- */
.watches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 56px 32px;
}
.watch-card { display: block; cursor: pointer; }
.watch-card .media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-elev);
  overflow: hidden;
  margin-bottom: 22px;
}
.watch-card .media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease, opacity .3s ease;
}
.watch-card:hover .media img { transform: scale(1.04); }
.watch-card .badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 12px;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.watch-card .badge.sold { background: #000; }
.watch-card .badge.reserved { background: var(--warning); color: #000; }

.watch-card .brand-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.watch-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.watch-card .ref-year {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 16px;
  letter-spacing: .02em;
}
.watch-card .price {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -.01em;
}
.watch-card .price.request {
  color: var(--text-muted);
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ---------- MARCAS · sección blanca contrastante ---------- */
.brands-strip {
  background: var(--bg-light);
  color: var(--text-on-light);
  padding: 120px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brands-strip .section-head h2 { color: var(--text-on-light); }
.brands-strip .eyebrow { color: var(--accent); }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}
.brands-grid .brand-tile {
  background: var(--bg-light);
  padding: 56px 24px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-on-light);
  transition: all .3s ease;
  cursor: pointer;
}
.brands-grid .brand-tile:hover {
  background: #0a0a0a;
  color: var(--accent);
}

/* ---------- SERVICIOS ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--bg);
  padding: 72px 44px;
  transition: background .3s ease;
}
.service-card:hover { background: var(--bg-elev); }
.service-card h3 { color: var(--text); }
.service-card .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: .04em;
  font-weight: 500;
}
.service-card h3 {
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 20px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ---------- ABOUT ---------- */
.about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-img {
  aspect-ratio: 4/5;
  background: url('assets/about-tienda.jpg') center/cover no-repeat;
}
.about h2 {
  font-size: clamp(34px, 4vw, 56px);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: -.02em;
}
.about p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.75;
}
.about .stat-row {
  display: flex;
  gap: 64px;
  margin-top: 48px;
  border-top: 1px solid var(--line);
  padding-top: 36px;
}
.about .stat .num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
  letter-spacing: -.02em;
}
.about .stat .lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- SHOWCASE · gran render del reloj signature ---------- */
.showcase {
  position: relative;
  min-height: 90vh;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.showcase__bg {
  position: absolute; inset: 0;
  background: url('assets/about-tienda.jpg') center/cover no-repeat;
  z-index: 0;
  filter: brightness(.85) contrast(1.05);
}
.showcase::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,.95) 0%, rgba(10,10,10,.4) 55%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.showcase__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 100px 0;
}
.showcase__content .eyebrow {
  color: var(--accent);
  margin-bottom: 24px;
}
.showcase__content h2 {
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: .98;
  letter-spacing: -.025em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--text);
}
.showcase__content h2 em {
  font-style: normal;
  color: var(--accent);
  display: block;
}
.showcase__content p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  margin-bottom: 36px;
  max-width: 480px;
}
.showcase__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 40px 0 44px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.showcase__feature .n {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -.02em;
}
.showcase__feature .l {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
@media (max-width: 980px) {
  .showcase__bg { filter: brightness(.5) contrast(1.05); }
  .showcase::after {
    background: linear-gradient(180deg, rgba(10,10,10,.5) 0%, rgba(10,10,10,.85) 70%);
  }
  .showcase__content { max-width: 100%; padding: 80px 0; }
  .showcase__features { grid-template-columns: 1fr; gap: 18px; }
}

/* ---------- MANOLO · el dueño / maestro relojero ---------- */
.founder {
  background: var(--bg);
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
}
.founder__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.founder__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.founder__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.founder__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(217,16,28,.12) 100%);
  pointer-events: none;
}
.founder__media-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 38%;
  aspect-ratio: 4/5;
  border: 6px solid var(--bg);
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 20px 48px rgba(0,0,0,.4);
}
.founder__media-secondary img { width: 100%; height: 100%; object-fit: cover; display: block; }

.founder__media-badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--accent);
  color: #fff;
  padding: 14px 18px;
  z-index: 3;
  text-align: left;
  box-shadow: 0 10px 24px rgba(217,16,28,.3);
}
.founder__media-badge .lbl {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .9;
  margin-bottom: 2px;
}
.founder__media-badge .val {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
}

.founder__actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.founder__quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 18px;
}

.founder__content { padding-right: 24px; }
.founder__content .eyebrow { margin-bottom: 24px; }
.founder__content h2 {
  font-size: clamp(40px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.025em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.founder__content h2 em { color: var(--accent); font-style: normal; display: block; }

.founder__quote {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--text);
  padding: 24px 0 24px 32px;
  border-left: 3px solid var(--accent);
  margin: 32px 0 28px;
  font-style: italic;
}
.founder__content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 18px;
}
.founder__signature {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.founder__signature .name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text);
}
.founder__signature .role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}

@media (max-width: 980px) {
  .founder__grid { grid-template-columns: 1fr; gap: 60px; }
  .founder__media-secondary { width: 45%; bottom: -24px; right: -16px; border-width: 4px; }
  .founder__content { padding-right: 0; }
}

/* ---------- EN LOS MEDIOS · franja de prensa ---------- */
.press-strip {
  background: var(--bg);
  padding: 64px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.press-strip__lbl {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 36px;
}
.press-strip__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px 32px;
  align-items: center;
  justify-items: center;
}
.press-strip__item {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.005em;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color .2s ease, transform .2s ease;
  cursor: default;
  text-align: center;
}
.press-strip__item:hover { color: var(--accent); transform: translateY(-2px); }
.press-strip__item.serif { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-weight: 500; font-size: 22px; }
.press-strip__item.sans-bold { letter-spacing: .04em; font-weight: 800; }
.press-strip__item.thin { font-weight: 300; letter-spacing: .04em; }

@media (max-width: 980px) {
  .press-strip__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
@media (max-width: 600px) {
  .press-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .press-strip__item { font-size: 14px; }
}

/* ---------- TESTIMONIOS ---------- */
.testimonials {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 140px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px 48px;
  margin-top: 72px;
}
.testimonial {
  border-left: 2px solid var(--accent);
  padding: 8px 0 8px 28px;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -.005em;
}
.testimonial__quote::before {
  content: '“';
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 60px;
  font-weight: 800;
  line-height: 0;
  vertical-align: -.4em;
  margin-right: 8px;
}
.testimonial__author {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.testimonial__meta {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: .04em;
}

.testimonial-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 14px;
}

/* ---------- VISITA / CTA ---------- */
.visit {
  background: var(--bg-dark);
  color: var(--text);
  text-align: center;
  border-top: 1px solid var(--line);
}
.visit h2 {
  color: #fff;
  font-size: clamp(40px, 5vw, 72px);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -.02em;
}
.visit .eyebrow { color: var(--accent); }
.visit p.lead {
  color: rgba(255,255,255,.7);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 40px;
}
.visit-info {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.visit-info .item .lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}
.visit-info .item .val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.7);
  border-top: 1px solid #1a1a1a;
  padding: 80px 0 36px;
}
.site-footer .brand { color: #fff; }
.site-footer .brand-mark { background: var(--accent); color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
.footer-grid h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-family: var(--font-sans);
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 12px; }
.footer-grid li a {
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 500;
}
.footer-grid li a:hover { color: var(--accent); }
.footer-grid p {
  color: rgba(255,255,255,.6);
  font-size: 13px;
  max-width: 340px;
  line-height: 1.75;
}
.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--accent); }

/* =====================================================================
   CATÁLOGO
   ===================================================================== */
.page-head {
  padding: 100px 0 72px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.page-head h1 {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin-bottom: 18px;
  line-height: 1;
}
.page-head p { color: var(--text-muted); max-width: 640px; font-size: 16px; line-height: 1.7; }

.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  padding: 72px 0 140px;
}
.filters h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--text);
  font-family: var(--font-sans);
}
.filter-group { margin-bottom: 44px; }
.filter-group label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 0;
  cursor: pointer;
  transition: color .2s;
}
.filter-group label:hover { color: var(--text); }
.filter-group input[type=checkbox] {
  appearance: none;
  width: 14px; height: 14px;
  border: 1.5px solid var(--text-muted);
  background: transparent;
  cursor: pointer;
  position: relative;
  border-radius: 0;
}
.filter-group input[type=checkbox]:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.filter-group input[type=checkbox]:checked::after {
  content: '';
  position: absolute;
  left: 3px; top: 0px;
  width: 4px; height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.filter-group .range { display: flex; gap: 10px; }
.filter-group input[type=number] {
  flex: 1;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  border-radius: 0;
}
.filter-group input[type=number]:focus {
  outline: none;
  border-color: var(--accent);
}
.filter-group input::placeholder { color: var(--text-dim); }

.catalog-results .toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.catalog-results .count {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.catalog-results .count b { color: var(--accent); font-weight: 800; }
.catalog-results select {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 12px 18px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
}
.catalog-results select option { background: var(--bg-elev); color: var(--text); }

/* =====================================================================
   FICHA RELOJ
   ===================================================================== */
.watch-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  padding: 64px 0 140px;
}
.gallery .main-photo {
  aspect-ratio: 1 / 1;
  background: var(--bg-elev);
  margin-bottom: 18px;
  overflow: hidden;
}
.gallery .main-photo img { width: 100%; height: 100%; object-fit: cover; }
.gallery .thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.gallery .thumb {
  aspect-ratio: 1 / 1;
  background: var(--bg-elev);
  cursor: pointer;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color .2s;
}
.gallery .thumb.active { border-color: var(--accent); }
.gallery .thumb img { width: 100%; height: 100%; object-fit: cover; }

.watch-info .brand-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.watch-info .brand-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
}
.watch-info .status-badge {
  padding: 5px 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: var(--success);
  color: #fff;
}
.watch-info h1 {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin-bottom: 12px;
  line-height: 1.05;
}
.watch-info .ref {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0;
  margin-bottom: 36px;
}
.watch-info .ref b { color: var(--text); font-weight: 700; }
.watch-info .price-block {
  padding: 32px 0;
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.watch-info .price-block .price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -.025em;
  display: block;
  line-height: 1;
}
.watch-info .price-block .vat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 10px;
}
.watch-info .actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.watch-info .actions .btn { width: 100%; justify-content: center; }

/* ---------- Bloque financiación ---------- */
.financing {
  padding: 18px 22px;
  background: var(--bg-elev);
  border-left: 3px solid var(--accent);
  margin-bottom: 32px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.financing b {
  color: var(--text);
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 18px;
}
.financing a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .14em;
}

/* ---------- Iconos de confianza ficha ---------- */
.trust-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
}
.trust-icons .item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--text-muted);
}
.trust-icons .icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--accent);
  color: var(--accent);
}
.trust-icons .icon svg {
  width: 15px; height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.trust-icons .item strong {
  display: block;
  color: var(--text);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .04em;
  margin-bottom: 2px;
  text-transform: uppercase;
}

/* ---------- Bob's twist: precio compra-venta ---------- */
.buyback-box {
  margin-top: 28px;
  padding: 26px 28px;
  background: var(--accent);
  color: #fff;
}
.buyback-box .lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
}
.buyback-box .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.buyback-box .grid > div .k {
  font-size: 10px;
  color: rgba(255,255,255,.7);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.buyback-box .grid > div .v {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
}
.buyback-box a {
  display: inline-block;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff !important;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
}

/* ---------- Specs ---------- */
.specs h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--text);
  font-family: var(--font-sans);
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--text);
}
.specs dl { display: grid; }
.specs .row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
}
.specs .row .k {
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 11px;
}
.specs .row .v {
  color: var(--text);
  text-align: right;
  font-weight: 600;
  font-family: var(--font-sans);
}

.description {
  padding: 120px 0;
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.description .container { max-width: 860px; }
.description h2 {
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin-bottom: 32px;
  line-height: 1.05;
}
.description h2 em { font-style: normal; color: var(--accent); }
.description p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.85;
}

/* =====================================================================
   ANIMACIONES Y MICROINTERACCIONES (controlled by main.js)
   ===================================================================== */

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: grid; place-items: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.is-gone { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.preloader__logo img {
  height: 80px; width: auto;
  animation: preloader-pulse 1.6s ease-in-out infinite;
}
.preloader__bar {
  width: 180px; height: 1px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
  position: relative;
}
.preloader__bar span {
  position: absolute; left: 0; top: 0;
  width: 50%; height: 100%;
  background: var(--accent);
  animation: preloader-bar 1.4s ease-in-out infinite;
}
@keyframes preloader-pulse {
  0%, 100% { opacity: .9; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}
@keyframes preloader-bar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}

/* ---------- SCROLL PROGRESS BAR ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: 0 0;
  z-index: 100;
  pointer-events: none;
  transition: transform .08s ease-out;
}

/* ---------- SCROLL REVEAL · solo elementos con .reveal o [data-reveal] explícitos ---------- */
.reveal,
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="left"].is-visible { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="right"].is-visible { transform: translateX(0); }
[data-reveal="scale"] { transform: scale(.96); }
[data-reveal="scale"].is-visible { transform: scale(1); }

/* ---------- ANIMACIONES de entrada autoejecutables (no requieren JS) ---------- */
@keyframes vwv-card-enter {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.watches-grid .watch-card,
.brands-grid .brand-tile,
.services .service-card,
.process-steps .process-step,
.testimonials-grid .testimonial,
.visit-info .item,
.trust-icons .item,
.stat {
  animation: vwv-card-enter .8s cubic-bezier(.2,.8,.2,1) both;
}
/* Stagger automático para cards del grid */
.watches-grid > *:nth-child(1) { animation-delay: 0ms; }
.watches-grid > *:nth-child(2) { animation-delay: 80ms; }
.watches-grid > *:nth-child(3) { animation-delay: 160ms; }
.watches-grid > *:nth-child(4) { animation-delay: 240ms; }
.watches-grid > *:nth-child(5) { animation-delay: 320ms; }
.watches-grid > *:nth-child(6) { animation-delay: 400ms; }
.watches-grid > *:nth-child(7) { animation-delay: 460ms; }
.watches-grid > *:nth-child(8) { animation-delay: 520ms; }
.watches-grid > *:nth-child(9) { animation-delay: 580ms; }

.brands-grid > *:nth-child(1) { animation-delay: 0ms; }
.brands-grid > *:nth-child(2) { animation-delay: 50ms; }
.brands-grid > *:nth-child(3) { animation-delay: 100ms; }
.brands-grid > *:nth-child(4) { animation-delay: 150ms; }
.brands-grid > *:nth-child(5) { animation-delay: 200ms; }
.brands-grid > *:nth-child(6) { animation-delay: 250ms; }
.brands-grid > *:nth-child(7) { animation-delay: 300ms; }
.brands-grid > *:nth-child(8) { animation-delay: 350ms; }
.brands-grid > *:nth-child(9) { animation-delay: 400ms; }
.brands-grid > *:nth-child(10) { animation-delay: 450ms; }

.services > *:nth-child(1) { animation-delay: 0ms; }
.services > *:nth-child(2) { animation-delay: 120ms; }
.services > *:nth-child(3) { animation-delay: 240ms; }
.services > *:nth-child(4) { animation-delay: 360ms; }

.process-steps > *:nth-child(1) { animation-delay: 0ms; }
.process-steps > *:nth-child(2) { animation-delay: 120ms; }
.process-steps > *:nth-child(3) { animation-delay: 240ms; }
.process-steps > *:nth-child(4) { animation-delay: 360ms; }

.testimonials-grid > *:nth-child(odd)  { animation-delay: 0ms; }
.testimonials-grid > *:nth-child(even) { animation-delay: 100ms; }

/* =====================================================================
   UX UPGRADE · componentes adicionales
   ===================================================================== */

/* ---------- SKIP TO CONTENT (accessibility) ---------- */
.skip-link {
  position: absolute;
  top: -100px; left: 0;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  z-index: 9000;
  transition: top .2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ---------- HEADER · acciones (search + wishlist + hamburger) ---------- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-action {
  width: 40px; height: 40px;
  background: transparent;
  border: 0;
  color: var(--text);
  cursor: pointer;
  display: grid; place-items: center;
  position: relative;
  transition: color .2s ease;
}
.header-action:hover { color: var(--accent); }
.header-action svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.header-action__count {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 16px; height: 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  display: grid; place-items: center;
  padding: 0 4px;
  pointer-events: none;
  transform: scale(0);
  transition: transform .25s cubic-bezier(.2,1.5,.6,1);
}
.header-action__count.is-visible { transform: scale(1); }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .25s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- MOBILE NAV OVERLAY ---------- */
.mobile-nav {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 90;
  padding: 100px 32px 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: opacity .4s cubic-bezier(.2,.8,.2,1), transform .4s cubic-bezier(.2,.8,.2,1), visibility .4s;
}
.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-nav__inner {
  max-width: 480px;
  margin: 0 auto;
}
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .4s ease, transform .4s ease, color .2s;
  transition-delay: .15s;
}
.mobile-nav.is-open a {
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav.is-open a:nth-child(2) { transition-delay: .2s; }
.mobile-nav.is-open a:nth-child(3) { transition-delay: .25s; }
.mobile-nav.is-open a:nth-child(4) { transition-delay: .3s; }
.mobile-nav.is-open a:nth-child(5) { transition-delay: .35s; }
.mobile-nav.is-open a:nth-child(6) { transition-delay: .4s; }
.mobile-nav.is-open a:nth-child(7) { transition-delay: .45s; }
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav__cta {
  margin-top: 40px;
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.mobile-nav__cta .btn { width: 100%; justify-content: center; padding: 18px; }
.mobile-nav__footer {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.mobile-nav__footer .lbl {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.mobile-nav__footer .val {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* ---------- SEARCH OVERLAY ---------- */
.search-overlay {
  position: fixed; inset: 0;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(8px);
  z-index: 220;
  padding: 100px 32px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s;
}
.search-overlay.is-open { opacity: 1; visibility: visible; }
.search-overlay__inner {
  max-width: 900px;
  margin: 0 auto;
}
.search-overlay__input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  padding: 16px 0;
  letter-spacing: -.02em;
  text-transform: none;
}
.search-overlay__input::placeholder { color: rgba(255,255,255,.3); }
.search-overlay__input:focus { outline: none; }
.search-overlay__hint {
  margin-top: 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.search-overlay__results {
  margin-top: 48px;
  display: grid;
  gap: 1px;
  background: var(--line);
  max-height: 50vh;
  overflow-y: auto;
}
.search-overlay__result {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 4px;
  background: var(--bg);
  text-decoration: none;
  color: var(--text);
  transition: background-color .2s ease;
}
.search-overlay__result:hover { background: var(--bg-elev); color: var(--accent); }
.search-overlay__result img {
  width: 70px; height: 70px;
  object-fit: cover;
  background: var(--bg-elev);
}
.search-overlay__result-info { flex: 1; min-width: 0; }
.search-overlay__result-info .brand { font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.search-overlay__result-info .name { font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
.search-overlay__result-info .ref { font-family: var(--font-mono); font-size: 11px; color: var(--text-dim); margin-top: 2px; }
.search-overlay__result-price { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--accent); }
.search-overlay__close {
  position: absolute; top: 28px; right: 28px;
  width: 48px; height: 48px;
  background: transparent;
  border: 1px solid var(--line);
  color: #fff;
  cursor: pointer;
  display: grid; place-items: center;
  transition: all .25s ease;
}
.search-overlay__close:hover { background: var(--accent); border-color: var(--accent); }
.search-overlay__close svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }

/* ---------- CHAT WIDGET ---------- */
.chat-fab {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 60px; height: 60px;
  background: var(--accent);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(217,16,28,.4);
  z-index: 90;
  transition: transform .25s cubic-bezier(.2,1.5,.6,1), background-color .25s ease;
  color: #fff;
}
.chat-fab:hover { transform: scale(1.06); background: var(--accent-bright); }
.chat-fab svg { width: 26px; height: 26px; transition: opacity .2s, transform .25s; }
.chat-fab .ic-close { position: absolute; opacity: 0; transform: rotate(-90deg) scale(.5); }
.chat-fab.is-open .ic-open { opacity: 0; transform: rotate(90deg) scale(.5); }
.chat-fab.is-open .ic-close { opacity: 1; transform: rotate(0) scale(1); }
.chat-fab__pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--accent);
  z-index: -1;
  animation: chat-pulse 2.4s ease-out infinite;
}
.chat-fab.is-open .chat-fab__pulse { animation: none; }
@keyframes chat-pulse {
  0%   { transform: scale(1); opacity: .55; }
  100% { transform: scale(1.6); opacity: 0; }
}

.chat-panel {
  position: fixed;
  bottom: 110px; right: 32px;
  width: 380px;
  max-width: calc(100vw - 24px);
  height: 580px;
  max-height: calc(100vh - 140px);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  z-index: 88;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(.98);
  transform-origin: bottom right;
  transition: opacity .3s ease, transform .35s cubic-bezier(.2,1.2,.4,1), visibility .3s;
}
.chat-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-panel__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 18px;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--line);
}
.chat-panel__id { display: flex; align-items: center; gap: 12px; }
.chat-panel__avatar {
  width: 40px; height: 40px;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
}
.chat-panel__name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.005em;
  color: var(--text);
}
.chat-panel__status {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.chat-panel__status .dot {
  width: 6px; height: 6px;
  background: #4caf50;
  border-radius: 50%;
  animation: chat-status 1.8s ease-in-out infinite;
}
@keyframes chat-status {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}
.chat-panel__close {
  width: 32px; height: 32px;
  background: transparent;
  border: 0; color: var(--text-muted);
  cursor: pointer;
  display: grid; place-items: center;
  transition: color .2s, background-color .2s;
}
.chat-panel__close:hover { color: var(--accent); background: var(--bg-soft); }
.chat-panel__close svg { width: 16px; height: 16px; }

.chat-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.chat-panel__body::-webkit-scrollbar { width: 6px; }
.chat-panel__body::-webkit-scrollbar-thumb { background: var(--line); }

.chat-msg { display: flex; max-width: 88%; }
.chat-msg--bot { align-self: flex-start; }
.chat-msg--user { align-self: flex-end; }
.chat-msg__bubble {
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .005em;
  border-radius: 0;
  word-wrap: break-word;
}
.chat-msg--bot .chat-msg__bubble {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--line);
  border-left: 2px solid var(--accent);
}
.chat-msg--user .chat-msg__bubble {
  background: var(--accent);
  color: #fff;
}
.chat-msg__bubble a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.chat-msg--user .chat-msg__bubble a {
  color: #fff;
  text-decoration-color: rgba(255,255,255,.7);
}
.chat-msg__bubble b { font-weight: 700; }

/* Typing indicator */
.chat-typing .chat-msg__bubble {
  display: flex; gap: 4px; padding: 14px 18px;
}
.chat-typing .chat-msg__bubble span {
  width: 6px; height: 6px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: chat-typing-dot 1.2s ease-in-out infinite;
}
.chat-typing .chat-msg__bubble span:nth-child(2) { animation-delay: .15s; }
.chat-typing .chat-msg__bubble span:nth-child(3) { animation-delay: .3s; }
@keyframes chat-typing-dot {
  0%, 60%, 100% { opacity: .3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

.chat-panel__suggest {
  display: flex; gap: 6px; flex-wrap: wrap;
  padding: 0 18px 12px;
}
.chat-panel__suggest button {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 8px 12px;
  cursor: pointer;
  transition: all .2s ease;
  border-radius: 0;
}
.chat-panel__suggest button:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--bg-soft);
}

.chat-panel__form {
  display: flex;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.chat-panel__form input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 16px 18px;
  outline: none;
}
.chat-panel__form input::placeholder { color: var(--text-dim); }
.chat-panel__form button {
  background: var(--accent);
  border: 0; color: #fff;
  padding: 0 18px;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background-color .2s ease;
}
.chat-panel__form button:hover { background: var(--accent-bright); }
.chat-panel__form button svg { width: 18px; height: 18px; }

.chat-panel__foot {
  padding: 10px 18px;
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
}
.chat-panel__foot a { color: var(--accent); }

/* Mover el WhatsApp float arriba cuando hay chat */
.wa-float { transition: transform .25s ease, box-shadow .25s ease, bottom .25s ease; }
:root { --chat-open: 0; }

@media (max-width: 600px) {
  .chat-fab { bottom: 90px; right: 20px; width: 54px; height: 54px; }
  .chat-fab svg { width: 22px; height: 22px; }
  .chat-panel {
    bottom: 0; right: 0; left: 0;
    width: 100%;
    height: 92vh; max-height: 92vh;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
}

/* ---------- WHATSAPP FLOATING (al lado izquierdo del chat-fab) ---------- */
.wa-float {
  position: fixed;
  bottom: 36px; right: 108px;
  width: 52px; height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  z-index: 89;
  transition: transform .25s ease, box-shadow .25s ease;
  animation: wa-pulse 2.2s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37,211,102,.55);
}
.wa-float svg { width: 24px; height: 24px; fill: #fff; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.45); }
  60% { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 14px rgba(37,211,102,0); }
}

/* ---------- STICKY BOTTOM MOBILE (call + whatsapp) ---------- */
.sticky-bottom {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  z-index: 75;
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
}
.sticky-bottom a {
  background: var(--bg);
  padding: 14px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: background-color .2s, color .2s;
}
.sticky-bottom a:hover, .sticky-bottom a:focus { background: var(--accent); color: #fff; }
.sticky-bottom a svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.sticky-bottom a.wa svg { fill: currentColor; stroke: none; }
.sticky-bottom a.wa:hover, .sticky-bottom a.wa:focus { background: #25d366; color: #fff; }

/* ---------- WATCH CARD · botones secundarios (wishlist + quick view) ---------- */
.watch-card .media-actions {
  position: absolute;
  top: 16px; right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .3s ease, transform .3s ease;
}
.watch-card:hover .media-actions { opacity: 1; transform: translateX(0); }
.watch-card .media-action {
  width: 36px; height: 36px;
  background: rgba(10,10,10,.7);
  backdrop-filter: blur(4px);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background-color .2s ease, color .2s ease;
}
.watch-card .media-action:hover { background: var(--accent); }
.watch-card .media-action svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.watch-card .media-action.is-favourite svg { fill: var(--accent); stroke: var(--accent); }
.watch-card .media-action.is-favourite { background: rgba(10,10,10,.85); }

/* ---------- STICKY CTA EN FICHA ---------- */
.watch-layout .watch-info {
  align-self: start;
  position: sticky;
  top: 130px;
}
@media (max-width: 980px) {
  .watch-layout .watch-info { position: static; }
}

/* ---------- IMAGE ZOOM EN GALERÍA ---------- */
.gallery .main-photo {
  cursor: zoom-in;
  position: relative;
  overflow: hidden;
}
.gallery .main-photo img {
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
}
.gallery .main-photo.is-zooming img {
  transform: scale(2);
}

/* ---------- FILTER CHIPS (catálogo) ---------- */
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  min-height: 0;
}
.filter-chips:empty { display: none; }
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--bg-elev);
  border: 1px solid var(--accent);
  color: var(--text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.filter-chip__remove {
  background: transparent;
  border: 0;
  color: var(--accent);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  padding: 0;
  width: 14px; height: 14px;
  display: grid; place-items: center;
}
.filter-chip__remove:hover { color: var(--text); }
.filter-chips .clear-all {
  margin-left: auto;
  background: transparent;
  border: 0;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.filter-chips .clear-all:hover { color: var(--accent); }

/* ---------- WISHLIST PAGE/MODAL (lista flotante) ---------- */
.wishlist-panel {
  position: fixed;
  top: 0; right: 0;
  width: 420px; max-width: 100vw;
  height: 100vh;
  background: var(--bg-elev);
  border-left: 1px solid var(--line);
  z-index: 195;
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 48px rgba(0,0,0,.4);
}
.wishlist-panel.is-open { transform: translateX(0); }
.wishlist-panel__head {
  padding: 28px 32px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.wishlist-panel__head h3 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.wishlist-panel__close {
  width: 36px; height: 36px;
  background: transparent;
  border: 0;
  color: var(--text);
  cursor: pointer;
  display: grid; place-items: center;
  transition: color .2s ease, background-color .2s ease;
}
.wishlist-panel__close:hover { color: var(--accent); background: var(--bg-soft); }
.wishlist-panel__close svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.wishlist-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 0;
}
.wishlist-item {
  display: flex;
  gap: 16px;
  padding: 16px 32px;
  border-bottom: 1px solid var(--line-soft);
  text-decoration: none;
  color: inherit;
  transition: background-color .2s ease;
}
.wishlist-item:hover { background: var(--bg-soft); }
.wishlist-item img {
  width: 80px; height: 80px;
  object-fit: cover;
  background: var(--bg-soft);
}
.wishlist-item__info { flex: 1; min-width: 0; }
.wishlist-item__brand { font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--text-muted); }
.wishlist-item__name { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin: 4px 0; }
.wishlist-item__price { font-family: var(--font-display); font-size: 14px; color: var(--accent); font-weight: 700; }
.wishlist-item__remove {
  background: transparent;
  border: 0;
  color: var(--text-dim);
  cursor: pointer;
  align-self: flex-start;
  padding: 4px;
  transition: color .2s ease;
}
.wishlist-item__remove:hover { color: var(--accent); }
.wishlist-empty {
  padding: 60px 32px;
  text-align: center;
  color: var(--text-muted);
}
.wishlist-empty svg { width: 48px; height: 48px; stroke: var(--text-dim); fill: none; stroke-width: 1.5; margin-bottom: 16px; }

/* ---------- NEWSLETTER (footer) ---------- */
.newsletter {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
}
.newsletter__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.newsletter h3 {
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.newsletter h3 em { font-style: normal; color: var(--accent); }
.newsletter p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}
.newsletter__form {
  display: flex;
  gap: 8px;
}
.newsletter__form input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 16px 18px;
  border-radius: 0;
}
.newsletter__form input:focus { outline: none; border-color: var(--accent); }
.newsletter__form button {
  background: var(--accent);
  color: #fff;
  border: 0;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 0 32px;
  cursor: pointer;
  transition: background-color .25s ease;
}
.newsletter__form button:hover { background: var(--accent-bright); }
@media (max-width: 980px) {
  .newsletter__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- RECENTLY VIEWED ---------- */
.recently-viewed {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.recently-viewed .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.recently-viewed:empty { display: none; }

/* ---------- INPUT VALIDATION en tiempo real ---------- */
.form-group input.is-valid,
.form-group textarea.is-valid {
  border-color: var(--success);
  background-image: linear-gradient(45deg, transparent 50%, transparent 50%);
}
.form-group input.is-valid + .form-meta,
.form-group .field-status {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-group .field-status.is-ok { color: var(--success); }
.form-group .field-status.is-error { color: var(--accent); }

/* ---------- SKELETON loader para imágenes ---------- */
.skeleton {
  background: linear-gradient(90deg, var(--bg-soft) 0%, var(--bg-elev) 50%, var(--bg-soft) 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
}
@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
img[loading="lazy"] { background: var(--bg-elev); }

/* ---------- PAGE TRANSITION ---------- */
.page-transition {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
}
.page-transition.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- QUICK VIEW MODAL ---------- */
.modal.quick-view .modal__panel {
  max-width: 920px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg);
}
.quick-view__media {
  aspect-ratio: 1 / 1;
  background: var(--bg-elev);
  overflow: hidden;
}
.quick-view__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.quick-view__info {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quick-view__brand { font-size: 10px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.quick-view__name { font-size: 28px; font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 4px; line-height: 1.1; }
.quick-view__ref { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); margin-bottom: 24px; }
.quick-view__price { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--accent); margin-bottom: 28px; }
.quick-view__actions { display: flex; gap: 10px; }
.quick-view__actions .btn { flex: 1; justify-content: center; }
@media (max-width: 760px) {
  .modal.quick-view .modal__panel { grid-template-columns: 1fr; max-height: 90vh; overflow-y: auto; }
  .quick-view__media { aspect-ratio: 16/10; }
  .quick-view__info { padding: 32px 24px; }
}

/* ---------- LAZY IMAGE fade-in ---------- */
img.lazy-loading { opacity: 0; }
img.lazy-loaded {
  opacity: 1;
  transition: opacity .5s ease;
}

@media (prefers-reduced-motion: reduce) {
  .watches-grid .watch-card,
  .brands-grid .brand-tile,
  .services .service-card,
  .process-steps .process-step,
  .testimonials-grid .testimonial,
  .visit-info .item,
  .trust-icons .item,
  .stat,
  .reveal, [data-reveal] {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- HEADER · hide on scroll down + scrolled state ---------- */
.site-header {
  transition: transform .4s cubic-bezier(.2,.8,.2,1), background-color .3s ease;
}
.site-header.is-hidden { transform: translateY(-100%); }
.site-header.is-scrolled { background: rgba(10,10,10,.98); }

/* ---------- WATCH CARD · hover sofisticado ---------- */
.watch-card {
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.watch-card .media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.55) 100%);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 1;
  pointer-events: none;
}
.watch-card .media::before {
  content: 'Ver pieza →';
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.watch-card:hover .media::after { opacity: 1; }
.watch-card:hover .media::before { opacity: 1; transform: translateY(0); }

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--accent);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s, background-color .25s ease;
  z-index: 80;
  border-radius: 0;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent-bright); }
.back-to-top svg { width: 20px; height: 20px; }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.97);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity .3s ease;
  cursor: zoom-out;
}
.lightbox.is-open { opacity: 1; }
.lightbox img {
  max-width: 92vw; max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  transform: scale(.96);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.lightbox.is-open img { transform: scale(1); }
.lightbox__close {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.1);
  color: #fff; border: 0;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background-color .2s ease;
}
.lightbox__close:hover { background: var(--accent); }
.lightbox__close svg { width: 20px; height: 20px; }

/* ---------- MODAL ---------- */
.modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.modal__panel {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  max-width: 560px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  padding: 56px 48px;
  transform: scale(.96) translateY(20px);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.modal.is-open .modal__panel { transform: scale(1) translateY(0); }
.modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: transparent;
  color: var(--text);
  border: 0;
  cursor: pointer;
  display: grid; place-items: center;
  transition: color .2s ease, background-color .2s ease;
}
.modal__close:hover { color: var(--accent); background: var(--bg-soft); }
.modal__close svg { width: 18px; height: 18px; }
.modal h3 {
  font-size: 28px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.modal .modal-sub {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}

/* ---------- FORMS ---------- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 14px 16px;
  border-radius: 0;
  transition: border-color .2s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group input.is-error,
.form-group textarea.is-error,
.form-group select.is-error {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(217,16,28,.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-actions {
  display: flex; gap: 12px;
  margin-top: 28px;
  justify-content: flex-end;
}
.form-actions .btn { width: auto; }
.form-meta {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 12px;
  line-height: 1.6;
}
.form-meta a { color: var(--accent); }

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: 100px; right: 32px;
  background: var(--bg-elev);
  border: 1px solid var(--accent);
  border-left: 3px solid var(--accent);
  color: var(--text);
  padding: 16px 22px;
  display: flex; align-items: center; gap: 14px;
  font-size: 13px;
  font-weight: 500;
  z-index: 250;
  max-width: 360px;
  transform: translateX(120%);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
}
.toast.is-visible { transform: translateX(0); }
.toast__icon {
  width: 24px; height: 24px;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.toast--error { border-color: var(--warning); border-left-color: var(--warning); }
.toast--error .toast__icon { background: var(--warning); color: #000; }

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-top: 2px solid var(--accent);
  max-width: 440px;
  z-index: 180;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), opacity .5s ease;
  box-shadow: 0 20px 48px rgba(0,0,0,.5);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner__inner { padding: 24px; }
.cookie-banner p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}
.cookie-banner p a { color: var(--accent); }
.cookie-banner__actions {
  display: flex; gap: 10px;
}
.cookie-banner__actions .btn { font-size: 10px; padding: 12px 18px; flex: 1; justify-content: center; }

/* ---------- CATALOG EMPTY STATE ---------- */
.catalog-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}
.catalog-empty p {
  font-size: 16px;
  margin-bottom: 24px;
}

/* ---------- GALLERY · main photo crossfade ---------- */
.gallery .main-photo img {
  transition: opacity .25s ease;
}

/* ---------- HERO video performance ---------- */
.hero-video { will-change: transform; }
.hero-bg { will-change: transform; }

/* =====================================================================
   PÁGINAS · vender, contacto, servicios, 404
   ===================================================================== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.split-section__media {
  background: var(--bg-elev) center/cover no-repeat;
  min-height: 50vh;
}
.split-section__content {
  padding: 100px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.split-section__content h2 {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -.02em;
}
.split-section__content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 80px 0;
}
.process-step {
  background: var(--bg);
  padding: 56px 36px;
}
.process-step__num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: .06em;
}
.process-step h3 {
  font-size: 22px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.process-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  padding: 80px 0 120px;
}
.contact-grid .form-card {
  background: var(--bg-elev);
  padding: 56px 48px;
  border: 1px solid var(--line);
}
.contact-grid .info-card h3 {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: .06em;
  font-family: var(--font-sans);
  font-weight: 700;
}
.contact-grid .info-card .item {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.contact-grid .info-card .item:last-child { border-bottom: 0; }
.contact-grid .info-card .lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.contact-grid .info-card .val {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.contact-grid .info-card .val a:hover { color: var(--accent); }

.map-embed {
  aspect-ratio: 16/9;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  overflow: hidden;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.9) invert(.92) contrast(.85); }

/* 404 */
.notfound {
  min-height: 80vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 24px;
}
.notfound h1 {
  font-size: clamp(80px, 16vw, 220px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--accent);
  margin-bottom: 24px;
}
.notfound p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 40px;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1100px) {
  .split-section__content { padding: 80px 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 980px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .header-cta .sell-cta { display: none; }
  .about, .catalog-layout, .watch-layout { grid-template-columns: 1fr; gap: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 90px 0; }
  .trust-bar .container { gap: 18px; }
  .split-section { grid-template-columns: 1fr; }
  .split-section__media { min-height: 40vh; }
  .modal__panel { padding: 40px 28px; }
  .sticky-bottom { display: grid; }
  body { padding-bottom: 70px; }
  .wa-float { display: none; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .visit-info { gap: 32px; }
  .watch-info .actions { grid-template-columns: 1fr; }
  .trust-icons { grid-template-columns: 1fr; }
  .gallery .thumbs { grid-template-columns: repeat(4, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .back-to-top { bottom: 80px; right: 16px; width: 42px; height: 42px; }
  .cookie-banner { left: 12px; right: 12px; max-width: none; bottom: 80px; }
  .toast { right: 12px; left: 12px; max-width: none; bottom: 80px; }
  .hero h1 { font-size: clamp(36px, 9.5vw, 56px); }
  .hero p.lead { font-size: 14px; margin-bottom: 32px; }
  .hero { min-height: 78vh; }
  .brand-logo { height: 40px; }
  .trust-bar span { font-size: 9px; letter-spacing: .14em; }
  .trust-bar .container { gap: 12px; }
}

/* =====================================================================
   MOBILE REFINEMENTS · audit preventivo · pantallas <600px y <400px
   ===================================================================== */
@media (max-width: 600px) {
  /* Header más compacto */
  .site-header .header-main { height: 64px; }
  .header-actions { gap: 4px; }
  .header-action { width: 38px; height: 38px; }
  .header-action svg { width: 16px; height: 16px; }
  .header-cta { gap: 6px; }
  .hamburger { width: 40px; height: 40px; }

  /* Trust bar · scroll horizontal en lugar de wrap */
  .trust-bar { padding: 8px 0; }
  .trust-bar .container {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 20px 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .trust-bar .container::-webkit-scrollbar { display: none; }
  .trust-bar span { white-space: nowrap; flex-shrink: 0; }

  /* Hero · botones en columna */
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; width: 100%; max-width: 320px; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 14px 24px; }

  /* Section paddings reducidos */
  section { padding: 70px 0; }
  .section-head { margin-bottom: 40px; gap: 16px; }
  .section-head h2 { font-size: clamp(28px, 8vw, 44px); }
  .section-head > a.btn { font-size: 10px; padding: 12px 18px; }

  /* Cards más compactas */
  .watches-grid { gap: 36px 16px; }
  .watch-card h3 { font-size: 18px; }
  .watch-card .price { font-size: 17px; }

  /* Showcase render */
  .showcase__content h2 { font-size: clamp(34px, 9.5vw, 56px); }
  .showcase__features { grid-template-columns: 1fr; gap: 14px; padding: 20px 0; }
  .showcase__feature .n { font-size: 26px; }

  /* Manolo */
  .founder { padding: 80px 0 70px; }
  .founder__media-badge { top: 12px; left: 12px; padding: 10px 14px; }
  .founder__media-badge .val { font-size: 22px; }
  .founder__media-badge .lbl { font-size: 8px; letter-spacing: .26em; }
  .founder__media-secondary { display: none; }    /* secundaria se oculta en mobile pequeño */
  .founder__content h2 { font-size: clamp(34px, 9.5vw, 52px); margin-bottom: 24px; }
  .founder__quote { font-size: 16px; padding: 16px 0 16px 20px; }
  .founder__quote cite { font-size: 10px; letter-spacing: .18em; }
  .founder__actions { gap: 8px; flex-direction: column; }
  .founder__actions .btn { width: 100%; justify-content: center; }

  /* Press strip */
  .press-strip { padding: 40px 0; }
  .press-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 18px 12px; }
  .press-strip__item { font-size: 13px !important; }

  /* About */
  .about { gap: 48px; }
  .about h2 { font-size: clamp(28px, 8vw, 42px); }
  .about .stat-row { gap: 32px; justify-content: space-between; flex-wrap: wrap; }
  .about .stat .num { font-size: 32px; }

  /* Visit / footer dark */
  .visit { padding: 70px 0; }
  .visit h2 { font-size: clamp(32px, 9vw, 52px); }
  .visit p.lead { font-size: 15px; }
  .visit-info .item .val { font-size: 16px; }

  /* Servicios cards */
  .service-card { padding: 44px 24px; }
  .service-card h3 { font-size: 22px; }

  /* Process steps (vender) */
  .process-step { padding: 40px 24px; }

  /* Testimonials */
  .testimonials { padding: 80px 0; }
  .testimonials-grid { gap: 40px 0; margin-top: 48px; }
  .testimonial { padding-left: 20px; }
  .testimonial__quote { font-size: 17px; }

  /* Newsletter */
  .newsletter { padding: 48px 0; }
  .newsletter h3 { font-size: 26px; }
  .newsletter__form { flex-direction: column; gap: 10px; }
  .newsletter__form input { padding: 14px 16px; }
  .newsletter__form button { padding: 16px; width: 100%; }

  /* Catálogo · filtros colapsados con summary/details */
  .catalog-layout { gap: 24px; padding: 32px 0 80px; }
  .filters {
    border-bottom: 1px solid var(--line);
    padding-bottom: 24px;
    margin-bottom: 8px;
  }
  .filter-group { margin-bottom: 28px; }
  .filter-group h4 { font-size: 10px; letter-spacing: .2em; padding-bottom: 12px; }
  .catalog-results .toolbar { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 32px; }
  .catalog-results select { width: 100%; }

  /* Ficha */
  .watch-layout { gap: 40px; padding: 24px 0 80px; }
  .watch-info h1 { font-size: clamp(28px, 7.5vw, 42px); }
  .watch-info .price-block .price { font-size: 36px; }
  .watch-info .price-block { padding: 24px 0; margin-bottom: 24px; }
  .buyback-box { padding: 22px 18px; }
  .buyback-box .grid { grid-template-columns: 1fr; gap: 18px; }
  .breadcrumb-mobile-hide { display: none; }

  /* Page heads */
  .page-head { padding: 60px 0 48px; }
  .page-head h1 { font-size: clamp(36px, 10vw, 58px); }
  .page-head p { font-size: 14px; }

  /* Footer */
  .site-footer { padding: 56px 0 24px; }
  .footer-grid { margin-bottom: 40px; }

  /* Modal en mobile */
  .modal__panel { padding: 36px 22px; max-height: 88vh; }
  .modal h3 { font-size: 22px; }

  /* Forms */
  .form-card { padding: 36px 22px; }
  .form-actions { flex-direction: column; gap: 8px; }
  .form-actions .btn { width: 100%; justify-content: center; }

  /* Lightbox */
  .lightbox img { max-width: 95vw; max-height: 80vh; }
  .lightbox__close { top: 16px; right: 16px; width: 40px; height: 40px; }

  /* Watch card media actions siempre visibles en mobile (no hay hover) */
  .watch-card .media-actions { opacity: 1; transform: none; top: 12px; right: 12px; }
  .watch-card .media-action { width: 32px; height: 32px; }
  .watch-card .media::after { opacity: .2; }
}

@media (max-width: 400px) {
  /* Mobile muy pequeño · iPhone SE, Galaxy Fold cerrado */
  .container { padding: 0 16px; }
  .hero h1 { font-size: clamp(28px, 8.5vw, 40px); }
  .hero .eyebrow { font-size: 10px; letter-spacing: .2em; }
  .brand-logo { height: 36px; }
  .header-action { width: 34px; height: 34px; }
  .header-actions { gap: 2px; }
  .site-header .header-main { padding: 0 16px; }
  .trust-bar span { font-size: 8.5px; }
  .section-head h2 { font-size: clamp(24px, 8vw, 36px); }
  .founder__content h2 { font-size: clamp(28px, 9vw, 44px); }
  .visit h2 { font-size: clamp(28px, 9vw, 44px); }
  .testimonial__quote { font-size: 15px; }
  .sticky-bottom a { font-size: 9px; padding: 12px 4px; letter-spacing: .08em; }
  .chat-fab { bottom: 84px; right: 14px; width: 50px; height: 50px; }
}
