/*HERNÁNDEZ CAR IMPORT — CATÁLOGO*/

   /*Para evitar scroll horizontal y problemas de ancho en dispositivos móviles*/
    html, body {
  max-width: 100%;
  overflow-x: clip; /* asi mejor porque no rompe sticky */
  margin: 0;
  padding: 0;
}
    
    
    :root {
      --rojo: #CC0000;
      --rojo-vivo: #E60000;
      --rojo-osc: #990000;
      --negro: #0A0A0A;
      --negro-2: #121212;
      --negro-3: #1C1C1C;
      --gris-osc: #2A2A2A;
      --gris-med: #555555;
      --gris-cla: #AAAAAA;
      --blanco: #FFFFFF;
      --crema: #F5F0EB;
      --glass: rgba(18, 18, 18, 0.85);
      --glass-red: rgba(204, 0, 0, 0.15);

      --font-display: 'Barlow Condensed', sans-serif;
      --font-body: 'Barlow', sans-serif;
      --font-mono: 'Barlow Condensed', sans-serif;

      /* Motion — una sola curva para toda la web */
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --nav-morph-duration: 560ms;
      --nav-morph-ease: cubic-bezier(0.2, 0.9, 0.2, 1);

      /* Radios */
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 12px;
      --radius-pill: 100px;

      /* Sombras — sobrias, sin glow */
      --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.25);
      --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.4);
      --shadow-lg: 0 24px 50px rgba(0, 0, 0, 0.55);
      --shadow-red: 0 8px 24px rgba(204, 0, 0, 0.25);

      /* Línea hairline tipo ingeniería */
      --line: 1px solid rgba(255, 255, 255, 0.06);
    }

    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      background: var(--negro);
      color: var(--blanco);
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
    }

    ::selection {
      background: var(--rojo);
      color: var(--blanco);
    }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: var(--negro);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--gris-med);
      border-radius: var(--radius-sm);
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--rojo);
    }

    /* ICONOS*/
    svg.icon {
      width: 24px;
      height: 24px;
      fill: currentColor;
    }

    svg.icon-sm {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    /* ANIMACIONES */
    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .jh-reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s var(--ease-out);
    }

    .jh-reveal--visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Header, Para mi del futuro: no volver a tocar; problemas ya resueltosxdd*/
    .jh-topbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding-top: 0;
      pointer-events: none;
      /* aislar su layout del resto del documento */
      contain: layout style;
      transform: translateZ(0);
      will-change: padding-top;
      transition:
        padding-top var(--nav-morph-duration) var(--nav-morph-ease),
        background 320ms ease,
        box-shadow 320ms ease;
    }

    /* scrolled: pegada al borde superior */
    .jh-topbar--scrolled {
      padding-top: 0;
    }

    .jh-topbar__container {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transform: translateZ(0);
      will-change: max-width, padding;
      transition:
        max-width var(--nav-morph-duration) var(--nav-morph-ease),
        padding var(--nav-morph-duration) var(--nav-morph-ease);
    }

    /* scrolled: la barra llega a los bordes de la ventana */
    .jh-topbar--scrolled .jh-topbar__container {
      max-width: 100%;
      padding: 0;
    }

    /* marca y hamburguesa: solo en movil */
    .jh-topbar__brand {
      display: none;
      align-items: center;
      gap: 16px;
      text-decoration: none;
      pointer-events: auto;
    }

    .jh-topbar__brand img {
      height: 44px;
      width: auto;
      object-fit: contain;
    }

    /* ── POD DE NAVEGACION (carroceria F1) ── */
    /* En el hero flota centrado; al scrollear crece a "race control bar" */
    .jh-pod {
      pointer-events: auto;
      position: relative;
      margin: 0 auto;
      display: flex;
      align-items: stretch;
      flex-grow: 0;
      padding: 8px;
      background: linear-gradient(180deg, #2e2e2e 0%, #191919 42%, #0b0b0b 100%);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 26px 16px 26px 16px;
      box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -3px 8px rgba(0, 0, 0, 0.7);
      /* capa propia: el morph no repinta el resto de la pagina */
      isolation: isolate;
      transform: translateZ(0);
      backface-visibility: hidden;
      will-change: flex-grow, padding, border-radius, box-shadow;
      transition:
        flex-grow var(--nav-morph-duration) var(--nav-morph-ease),
        padding var(--nav-morph-duration) var(--nav-morph-ease),
        border-radius var(--nav-morph-duration) var(--nav-morph-ease),
        border-color 360ms ease,
        box-shadow var(--nav-morph-duration) var(--nav-morph-ease);
    }

    /* sheen metalico superior */
    .jh-pod::before {
      content: '';
      position: absolute;
      top: 1px;
      left: 30px;
      right: 30px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
      pointer-events: none;
      transition:
        opacity 420ms ease,
        top var(--nav-morph-duration) var(--nav-morph-ease);
    }

    /* linea roja de race control (solo en la barra scrolled) */
    .jh-pod::after {
      content: '';
      position: absolute;
      top: -1px;
      left: 40px;
      right: 40px;
      height: 2px;
      border-radius: 2px;
      background: linear-gradient(90deg, transparent, var(--rojo) 18%, var(--rojo) 82%, transparent);
      opacity: 0;
      pointer-events: none;
      transition:
        opacity 420ms ease,
        top var(--nav-morph-duration) var(--nav-morph-ease);
    }

    .jh-topbar--scrolled .jh-pod {
      flex-grow: 1;
      /* padding lateral para que la punta skewada no se salga del viewport */
      padding: 5px 14px;
      border-radius: 0;
      border-top-color: transparent;
      border-left-color: transparent;
      border-right-color: transparent;
      box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.8),
        inset 0 -3px 8px rgba(0, 0, 0, 0.7);
    }

    .jh-topbar--scrolled .jh-pod::before {
      opacity: 0;
    }

    .jh-topbar--scrolled .jh-pod::after {
      opacity: 1;
      top: 0;
    }

    /* puntas tipo endplate: sobresalen del cuerpo */
    .jh-pod__tip {
      position: relative;
      width: 92px;
      margin-top: -5px;
      margin-bottom: -5px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 3px;
      background: linear-gradient(180deg, #242424, #0d0d0d);
      border: 1px solid rgba(255, 255, 255, 0.05);
      transform: skewX(-16deg);
      will-change: width, margin, gap;
      transition:
        width var(--nav-morph-duration) var(--nav-morph-ease),
        margin var(--nav-morph-duration) var(--nav-morph-ease),
        gap var(--nav-morph-duration) var(--nav-morph-ease),
        background 300ms ease;
    }

    .jh-topbar--scrolled .jh-pod__tip {
      width: 74px;
      margin-top: 0;
      margin-bottom: 0;
      gap: 0;
    }

    /* el contenido se endereza */
    .jh-pod__tip > * {
      transform: skewX(16deg);
    }

    .jh-pod__tip--brand {
      border-radius: 22px 8px 10px 18px;
      margin-right: 9px;
    }

    .jh-pod__tip--cta {
      border-radius: 10px 18px 22px 8px;
      margin-left: 9px;
      color: var(--blanco);
      text-decoration: none;
    }

    .jh-pod__tip--cta .icon {
      width: 20px;
      height: 20px;
      transition:
        width var(--nav-morph-duration) var(--nav-morph-ease),
        height var(--nav-morph-duration) var(--nav-morph-ease);
    }

    .jh-pod__tip--cta span {
      font-family: var(--font-display);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      line-height: 1;
      display: block;
      max-height: 14px;
      overflow: hidden;
      opacity: 1;
      transform: skewX(16deg) translateY(0);
      transition:
        opacity 360ms ease,
        max-height var(--nav-morph-duration) var(--nav-morph-ease),
        transform var(--nav-morph-duration) var(--nav-morph-ease);
    }

    .jh-topbar--scrolled .jh-pod__tip--cta .icon {
      width: 17px;
      height: 17px;
    }

    .jh-topbar--scrolled .jh-pod__tip--cta span {
      max-height: 0;
      opacity: 0;
      transform: skewX(16deg) translateY(-4px);
    }

    .jh-pod__tip--cta:hover {
      background: linear-gradient(180deg, #2b2b2b, #161616);
      color: var(--rojo-vivo);
    }

    .jh-pod__tip--brand img {
      height: 46px;
      width: auto;
      object-fit: contain;
      filter: drop-shadow(0 0 6px rgba(230, 0, 0, 0.35));
      transition: height var(--nav-morph-duration) var(--nav-morph-ease);
    }

    .jh-topbar--scrolled .jh-pod__tip--brand img {
      height: 34px;
    }

    /* acento rojo: arco en la nariz izquierda, filo en la cola derecha */
    /* glow con box-shadow puro (sin filter, mas barato de pintar) */
    .jh-pod__tip--brand::before,
    .jh-pod__tip--brand::after,
    .jh-pod__tip--cta::after {
      content: '';
      position: absolute;
      background: var(--rojo-vivo);
      box-shadow: 0 0 4px rgba(230, 0, 0, 0.9), 0 0 10px rgba(230, 0, 0, 0.45);
      border-radius: 2px;
      pointer-events: none;
    }

    .jh-pod__tip--brand::before {
      left: -2px;
      bottom: 6px;
      width: 2px;
      height: 42%;
    }

    .jh-pod__tip--brand::after {
      left: -2px;
      bottom: -1px;
      width: 55%;
      height: 2px;
    }

    .jh-pod__tip--cta::after {
      right: -2px;
      top: 20%;
      width: 2px;
      height: 60%;
    }

    /* panel central hundido tipo pantalla */
    .jh-pod__screen {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-grow: 0;
      padding: 5px 8px;
      background: linear-gradient(180deg, #060606, #0f0f0f);
      border-radius: 16px 10px 16px 10px;
      box-shadow:
        inset 0 2px 10px rgba(0, 0, 0, 0.85),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03);
      will-change: flex-grow, padding, border-radius;
      transition:
        flex-grow var(--nav-morph-duration) var(--nav-morph-ease),
        padding var(--nav-morph-duration) var(--nav-morph-ease),
        border-radius var(--nav-morph-duration) var(--nav-morph-ease);
    }

    .jh-topbar--scrolled .jh-pod__screen {
      flex-grow: 1;
      padding: 4px 6px;
      border-radius: 8px 6px 8px 6px;
    }

    .jh-topbar__nav {
      display: flex;
      align-items: stretch;
      list-style: none;
    }

    /* panel segmentado: separadores hairline entre teclas */
    .jh-topbar__nav li + li {
      border-left: 1px solid rgba(255, 255, 255, 0.05);
    }

    .jh-topbar__nav a {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      min-width: 92px;
      min-height: 62px;
      height: 100%;
      padding: 8px 14px 9px;
      border-radius: 8px;
      font-family: var(--font-display);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--gris-cla);
      text-decoration: none;
      transition:
        color 240ms ease,
        background 240ms ease,
        transform 240ms var(--ease-out),
        min-height var(--nav-morph-duration) var(--nav-morph-ease),
        min-width var(--nav-morph-duration) var(--nav-morph-ease),
        padding var(--nav-morph-duration) var(--nav-morph-ease),
        gap var(--nav-morph-duration) var(--nav-morph-ease);
    }

    .jh-topbar--scrolled .jh-topbar__nav a {
      min-width: 80px;
      min-height: 46px;
      padding: 5px 10px 6px;
      gap: 3px;
    }

    .jh-topbar__nav a .icon {
      width: 20px;
      height: 20px;
      max-height: 20px;
      flex-shrink: 0;
      opacity: 1;
      transform: translateY(0) scale(1);
      transition:
        width var(--nav-morph-duration) var(--nav-morph-ease),
        height var(--nav-morph-duration) var(--nav-morph-ease),
        max-height var(--nav-morph-duration) var(--nav-morph-ease),
        opacity 260ms ease,
        transform var(--nav-morph-duration) var(--nav-morph-ease);
    }

    .jh-topbar--scrolled .jh-topbar__nav a .icon {
      width: 17px;
      height: 17px;
      max-height: 17px;
    }

    .jh-topbar__nav a:hover {
      color: var(--blanco);
      background: rgba(255, 255, 255, 0.035);
      transform: translateY(-1px);
    }

    /* guion rojo bajo el label */
    .jh-topbar__nav a::after {
      content: '';
      width: 18px;
      height: 2px;
      border-radius: 2px;
      background: var(--rojo-vivo);
      transform: scaleX(0);
      transition: transform 0.3s var(--ease-out);
    }

    /* seccion activa: pestaña hundida con linea roja */
    .jh-topbar__nav a.jh-nav-current {
      color: var(--blanco);
      background: linear-gradient(180deg, #0a0a0a, #121212);
      box-shadow:
        inset 0 2px 6px rgba(0, 0, 0, 0.8),
        inset 0 -1px 0 rgba(255, 255, 255, 0.04);
      transform: none;
    }

    .jh-topbar__nav a.jh-nav-current .icon {
      width: 0;
      height: 0;
      max-height: 0;
      opacity: 0;
      transform: translateY(-4px) scale(0.86);
    }

    .jh-topbar__nav a span {
      transition:
        font-size var(--nav-morph-duration) var(--nav-morph-ease),
        letter-spacing var(--nav-morph-duration) var(--nav-morph-ease);
    }

    .jh-topbar__nav a.jh-nav-current span {
      font-size: 13px;
      letter-spacing: 2px;
    }

    .jh-topbar__nav a.jh-nav-current::after {
      transform: scaleX(1);
    }

    nav {
  position: relative;
}

    /* drawer movil: solo existe bajo 992px */
    .mobile-nav-overlay,
    .mobile-motorsport-drawer {
      display: none;
    }

    /* Menu de hamburguesa para celular (Para evitar la barra de navegacion que se muestra en la version de pc)*/
    .jh-topbar__menu-toggle {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 10px;
      min-width: 44px;
      min-height: 44px;
      z-index: 200;
    }
    .jh-topbar__menu-toggle span {
      width: 24px;
      height: 2px;
      background: var(--blanco);
      transition: all 0.3s;
    }
    .jh-topbar__menu-toggle--active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .jh-topbar__menu-toggle--active span:nth-child(2) { opacity: 0; }
    .jh-topbar__menu-toggle--active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .jh-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: var(--radius-sm);
      transition: all 0.3s var(--ease-out);
      cursor: pointer;
      border: none;
      min-height: 44px;
    }

    .jh-btn--primary {
      background: var(--rojo);
      color: var(--blanco);
      padding: 12px 28px;
      box-shadow: 0 4px 15px rgba(204, 0, 0, 0.2);
    }

    .jh-btn--primary:hover {
      background: var(--rojo-vivo);
      transform: translateY(-2px);
      box-shadow: var(--shadow-red);
    }

    .jh-stock-section,
    .jh-assurance-section,
    .jh-showcase-section,
    .jh-reviews-section,
    .jh-contact-section {
      content-visibility: auto;
      contain-intrinsic-size: 900px;
    }

    /* ─────────────────── HERO CAROUSEL ─────────────────── */
    .jh-showroom-stage {
      position: relative;
      height: 100vh;
      min-height: 700px;
      width: 100%;
      overflow: hidden;
      background: var(--negro);
    }

    .jh-showroom-stage__carousel {
      width: 100%;
      height: 100%;
      position: relative;
    }

    .jh-showroom-stage__slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1s ease-in-out, transform 8s linear;
      transform: scale(1.05);
      z-index: 1;
    }

    .jh-showroom-stage__slide--active {
      opacity: 1;
      transform: scale(1);
      z-index: 2;
    }

    .jh-showroom-stage__backdrop {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .jh-showroom-stage__gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.6) 40%, transparent 100%),
        linear-gradient(0deg, rgba(10, 10, 10, 0.8) 0%, transparent 40%);
    }

    .jh-showroom-stage__content {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      z-index: 10;
      padding: 0 40px;
      max-width: 1440px;
      margin: 0 auto;
      left: 0;
      right: 0;
    }

    .jh-showroom-stage__text {
      max-width: 650px;
    }

    .jh-showroom-stage__badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 6px 16px;
      border-radius: var(--radius-pill);
      margin-bottom: 24px;
      backdrop-filter: blur(4px);
    }

    .jh-showroom-stage__badge .jh-showroom-stage__pulse {
      width: 8px;
      height: 8px;
      background: whitesmoke;
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    .jh-showroom-stage__badge span {
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      color: var(--blanco);
    }

    .jh-showroom-stage__title {
      font-family: var(--font-display);
      font-weight: 900;
      font-size: clamp(60px, 8vw, 110px);
      line-height: 0.85;
      text-transform: uppercase;
      letter-spacing: -1px;
      color: var(--blanco);
      margin-bottom: 16px;
    }

    .jh-showroom-stage__title .jh-showroom-stage__marque {
      color:  var(--rojo-vivo);
      -webkit-text-stroke: 1.5px rgba(117, 11, 11, 0.185);
      display: flex;
      flex-direction: column;
      gap: 2px;
      font-size: 1.5rem;
      margin-bottom: 2px;
      letter-spacing: 0.3em;
    }

    .jh-showroom-stage__price {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(32px, 4vw, 48px);
      color: var(--rojo);
      margin-bottom: 30px;
      letter-spacing: 1px;
    }

    .jh-showroom-stage__tagline {
      font-family: var(--font-body);
      font-size: 16px;
      color: var(--gris-cla);
      font-weight: 300;
      letter-spacing: 1px;
      margin-bottom: 16px;
    }

    .jh-showroom-stage__counter {
      position: absolute;
      bottom: 50px;
      left: 40px;
      z-index: 10;
      font-family: var(--font-mono);
      font-size: 14px;
      color: var(--gris-cla);
      letter-spacing: 2px;
    }
    .jh-showroom-stage__counter .jh-showroom-stage__counter-current {
      color: var(--blanco);
      font-weight: 700;
    }

    .jh-showroom-stage__controls {
      position: absolute;
      bottom: 50px;
      right: 40px;
      z-index: 10;
      display: flex;
      gap: 12px;
    }

    .jh-showroom-stage__arrow {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blanco);
      cursor: pointer;
      backdrop-filter: blur(10px);
      transition: all 0.3s;
    }

    .jh-showroom-stage__arrow:hover {
      background: var(--rojo);
      border-color: var(--rojo);
    }

    #heroPrev svg {
      transform: scaleX(-1);
    }

    /* ─────────────────── CATALOG SECTION ─────────────────── */
    .jh-stock-section {
      padding: 100px 40px;
      max-width: 1440px;
      margin: 0 auto;
    }

    .jh-section-header {
      margin-bottom: 60px;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 24px;
    }

    .jh-section-header__title-wrap {
      max-width: 600px;
    }

    .jh-section-header__label {
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--rojo);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .jh-section-header__label::before {
      content: '';
      width: 30px;
      height: 2px;
      background: var(--rojo);
    }

    .jh-section-header__title {
      font-family: var(--font-display);
      font-size: clamp(40px, 5vw, 64px);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: -0.5px;
      color: var(--blanco);
      line-height: 0.9;
    }

    /* Filters */
    .jh-stock-toolbar__filters {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      background: var(--negro-2);
      padding: 8px;
      border-radius: var(--radius-md);
      border: var(--line);
    }

    .jh-filter-chip {
      background: transparent;
      border: none;
      color: var(--gris-cla);
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 12px 24px;
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      gap: 8px;
      min-height: 44px;
    }

    .jh-filter-chip .jh-filter-chip__count {
      background: rgba(255, 255, 255, 0.1);
      padding: 2px 8px;
      border-radius: 50px;
      font-size: 12px;
    }

    .jh-filter-chip:hover {
      color: var(--blanco);
      background: rgba(255, 255, 255, 0.05);
    }

    .jh-filter-chip--active {
      background: var(--rojo);
      color: var(--blanco);
    }

    .jh-filter-chip--active .jh-filter-chip__count {
      background: rgba(0, 0, 0, 0.2);
    }

    /* Grid */
    .jh-stock-toolbar {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      align-items: center;
      margin-bottom: 40px;
      padding: 0 40px;
      max-width: 1440px;
    }
    .jh-stock-toolbar__search {
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 6px;
      padding: 10px 16px;
      flex: 1;
      min-width: 200px;
      transition: border-color 0.3s;
    }
    .jh-stock-toolbar__search:focus-within {
      border-color: var(--rojo);
      box-shadow: 0 0 20px rgba(204,0,0,0.1);
    }
    .jh-stock-toolbar__search .icon {
      color: var(--gris-med);
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }
    .jh-stock-toolbar__search input {
      background: transparent;
      border: none;
      outline: none;
      color: var(--blanco);
      font-family: var(--font-body);
      font-size: 15px;
      width: 100%;
    }
    .jh-stock-toolbar__search input::placeholder {
      color: var(--gris-med);
    }
    .jh-stock-display {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 30px;
    }

    /* Card */
    .jh-unit-card {
      background: var(--negro-2);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: var(--line);
      transition: all 0.4s var(--ease-out);
      cursor: pointer;
      position: relative;
      display: flex;
      flex-direction: column;
      
    }

    .jh-unit-card:hover {
      transform: translateY(-8px);
      border-color: rgba(204, 0, 0, 0.5);
      box-shadow: var(--shadow-lg);
    }

    .jh-unit-card__media {
      position: relative;
      height: 240px;
      overflow: hidden;
      background: var(--negro-3);
    }

    .jh-unit-card__photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s var(--ease-out);
    }

    .jh-unit-card:hover .jh-unit-card__photo {
      transform: scale(1.08);
    }

    .jh-unit-card__badges {
      position: absolute;
      top: 16px;
      left: 16px;
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      z-index: 2;
    }

    .jh-badge {
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: var(--radius-sm);
      backdrop-filter: blur(4px);
    }

    .jh-badge--new {
      background: var(--rojo);
      color: var(--blanco);
    }

    .jh-badge--status {
      background: rgba(255, 255, 255, 0.9);
      color: var(--negro);
    }

    .jh-unit-card__gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 50%);
      pointer-events: none;
    }

    .jh-unit-card__body {
      padding: 24px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .jh-unit-card__marque {
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gris-cla);
      margin-bottom: 4px;
    }

    .jh-unit-card__model {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--blanco);
      line-height: 1.1;
      margin-bottom: 12px;
    }
    .jh-unit-card__trim {
      font-weight: 400;
      color: var(--gris-cla);
      font-size: 0.7em;
    }
    .jh-unit-card__tech-line {
      font-family: var(--font-mono);
      font-size: 13px;
      color: var(--gris-cla);
      letter-spacing: 0.5px;
      margin-bottom: 20px;
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }
    .jh-unit-card__separator { color: var(--gris-med); }

    .jh-unit-card__footer {
      margin-top: auto;
      padding-top: 20px;
      border-top: var(--line);
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }

    .jh-unit-card__price {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 800;
      color: var(--blanco);
      line-height: 1;
    }

    .jh-unit-card__cta {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blanco);
      transition: all 0.3s;
    }

    .jh-unit-card:hover .jh-unit-card__cta {
      background: var(--rojo);
      transform: rotate(-45deg);
    }

    .jh-stock-display__empty {
      grid-column: 1 / -1;
      text-align: center;
      padding: 80px 20px;
      background: var(--negro-2);
      border-radius: var(--radius-md);
      border: 1px dashed rgba(255, 255, 255, 0.1);
    }

    .jh-stock-display__empty svg {
      width: 48px;
      height: 48px;
      color: var(--gris-med);
      margin-bottom: 16px;
    }

    .jh-stock-display__empty p {
      font-family: var(--font-display);
      font-size: 20px;
      letter-spacing: 2px;
      color: var(--gris-cla);
      text-transform: uppercase;
    }

    /* ─────────────────── TRUST SECTION ─────────────────── */
    .jh-assurance-section {
      padding: 100px 40px;
      background: var(--negro-2);
      border-top: 1px solid rgba(255, 255, 255, 0.02);
    }

    .jh-assurance-section__inner {
      max-width: 1440px;
      margin: 0 auto;
    }

    .jh-assurance-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 60px;
    }

    .jh-assurance-card {
      background: rgba(255, 255, 255, 0.02);
      border: var(--line);
      padding: 40px;
      border-radius: var(--radius-md);
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .jh-assurance-card__step {
      font-family: var(--font-mono);
      font-size: 64px;
      font-weight: 700;
      color: rgba(255,255,255,0.04);
      position: absolute;
      top: 16px;
      right: 20px;
      line-height: 1;
    }

    .jh-assurance-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--rojo);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .jh-assurance-card:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.04);
    }

    .jh-assurance-card:hover::before {
      transform: scaleX(1);
    }

    .jh-assurance-card__icon {
      width: 60px;
      height: 60px;
      background: var(--glass-red);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--rojo);
      margin-bottom: 24px;
      border: 1px solid rgba(204, 0, 0, 0.2);
    }

    .jh-assurance-card__icon svg {
      width: 30px;
      height: 30px;
    }

    .jh-assurance-card__title {
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--blanco);
      margin-bottom: 12px;
    }

    .jh-assurance-card__desc {
      font-size: 15px;
      color: var(--gris-cla);
      line-height: 1.6;
    }

    /* ─────────────────── CONTACT & FOOTER ─────────────────── */
    .jh-contact-section {
      padding: 100px 40px;
      background: var(--negro);
      position: relative;
      overflow: hidden;
    }

    .jh-contact-section__bg {
      position: absolute;
      right: 0;
      top: 0;
      width: 50%;
      height: 100%;
      background: radial-gradient(circle at 70% 50%, rgba(204, 0, 0, 0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    .jh-contact-section__inner {
      max-width: 1440px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      position: relative;
      z-index: 2;
      align-items: stretch; 
    }

    .jh-contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      margin-top: 40px;
    }

    .jh-contact-card {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 24px;
      background: rgba(255, 255, 255, 0.02);
      border: var(--line);
      border-radius: var(--radius-md);
      text-decoration: none;
      transition: all 0.3s;
    }

    .jh-contact-card:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(204, 0, 0, 0.3);
    }

    .jh-contact-card__icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(204, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--rojo);
      flex-shrink: 0;
    }

    .jh-contact-card__label {
      font-size: 12px;
      color: var(--gris-cla);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 4px;
    }

    .jh-contact-card__value {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      color: var(--blanco);
    }

    .jh-map-embed {
      width: 100%;
      height: 100%;
      min-height: 400px;
      background: var(--negro-3);
      border-radius: var(--radius-md);
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: var(--gris-med);
      position: relative;
      overflow: hidden;
    }

    .jh-map-embed svg {
      width: 48px;
      height: 48px;
      margin-bottom: 16px;
      opacity: 0.5;
    }

    .jh-map-embed p {
      font-family: var(--font-display);
      font-size: 18px;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .jh-footer {
      background: var(--negro-2);
      border-top: 1px solid rgba(204, 0, 0, 0.2);
      padding: 40px;
      text-align: center;
    }

    .jh-footer__brand {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .jh-footer__brand svg {
      width: 32px;
      height: auto;
    }

    .jh-footer__legal {
      font-size: 13px;
      color: var(--gris-med);
      letter-spacing: 1px;
    }

    /* ─────────────────── FULL PAGE DETAIL MODAL ─────────────────── */
    .jh-vehicle-modal {
      position: fixed;
      inset: 0;
      z-index: 200;
      display: flex;
      visibility: hidden;
      opacity: 0;
      transition: all 0.4s var(--ease-out);
    }

    .jh-vehicle-modal--active {
      visibility: visible;
      opacity: 1;
    }

    .jh-vehicle-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(10px);
      touch-action: none;
    }

    .jh-vehicle-modal__panel {
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background: var(--negro);
      display: grid;
      grid-template-columns: 55% 45%;
      transform: translateX(100%);
      transition: transform 0.5s var(--ease-out);
      box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
      overscroll-behavior: contain;
      touch-action: pan-y;
    }

    .jh-vehicle-modal--active .jh-vehicle-modal__panel {
      transform: translateX(0);
    }

    .jh-vehicle-modal__close {
      position: absolute;
      top: 30px;
      right: 40px;
      z-index: 10;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blanco);
      cursor: pointer;
      backdrop-filter: blur(5px);
      transition: all 0.3s;
    }

    .jh-vehicle-modal__close:hover {
      background: var(--rojo);
      border-color: var(--rojo);
      transform: rotate(90deg);
    }

    /* Left: Gallery */
    .jh-gallery {
      position: relative;
      height: 100%;
      background: var(--negro-2);
      display: flex;
      flex-direction: column;
    }

    .jh-gallery__container {
      position: relative;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .jh-gallery__viewport {
      flex-grow: 1;
      position: relative;
      overflow: hidden;
      touch-action: pan-y;
    }

    .jh-gallery__slide {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.4s, object-fit 0.3s;
    }

    .jh-gallery__slide--active {
      opacity: 1;
    }

    .jh-gallery__nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(10, 10, 10, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: var(--blanco);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      backdrop-filter: blur(4px);
      transition: all 0.3s;
    }

    .jh-gallery__nav:hover {
      background: var(--rojo);
      border-color: var(--rojo);
    }

    .jh-gallery__nav--prev {
      left: 20px;
    }

    .jh-gallery__nav--next {
      right: 20px;
    }

    .jh-gallery__nav--prev svg {
      transform: scaleX(-1);
    }

    .jh-gallery__fit-toggle {
      position: absolute;
      top: 20px;
      left: 20px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(10, 10, 10, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: var(--blanco);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      backdrop-filter: blur(4px);
      transition: all 0.3s;
    }

    .jh-gallery__fit-toggle:hover {
      background: var(--rojo);
      border-color: var(--rojo);
    }

    .jh-gallery__thumbstrip {
      display: flex;
      gap: 12px;
      padding: 20px;
      background: var(--negro-3);
      overflow-x: auto;
      scroll-behavior: smooth;
    }

    .jh-gallery__thumb {
      width: 100px;
      height: 70px;
      border-radius: var(--radius-sm);
      overflow: hidden;
      cursor: pointer;
      border: 2px solid transparent;
      opacity: 0.6;
      transition: all 0.3s;
      flex-shrink: 0;
    }

    .jh-gallery__thumb--active {
      border-color: var(--rojo);
      opacity: 1;
    }

    .jh-gallery__thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Right: Info */
    .jh-vehicle-detail {
      padding: 60px 50px;
      overflow-y: auto;
      overflow-x: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      overscroll-behavior: contain;
    }

    .jh-vehicle-detail__header {
      margin-bottom: 40px;
    }

    .jh-vehicle-detail__marque {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--rojo);
      margin-bottom: 8px;
    }

    .jh-vehicle-detail__model {
      font-family: var(--font-display);
      font-size: clamp(40px, 5vw, 64px);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 0.9;
      color: var(--blanco);
      margin-bottom: 16px;
      letter-spacing: -0.5px;
    }

    .jh-vehicle-detail__subtitle {
      font-size: 18px;
      color: var(--gris-cla);
      margin-bottom: 24px;
    }

    .jh-vehicle-detail__price {
      font-family: var(--font-display);
      font-size: 48px;
      font-weight: 800;
      color: var(--blanco);
    }

    .jh-vehicle-detail__highlights {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .jh-vehicle-detail__highlight {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 8px 16px;
      border-radius: var(--radius-sm);
      font-size: 13px;
      color: var(--blanco);
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .jh-vehicle-detail__highlight svg {
      color: var(--rojo);
    }

    .jh-vehicle-detail__tabs {
      display: flex;
      gap: 32px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      margin-bottom: 30px;
    }

    .jh-vehicle-detail__tab {
      background: none;
      border: none;
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gris-med);
      padding: 8px 0 12px;
      cursor: pointer;
      position: relative;
      transition: color 0.3s;
    }

    .jh-vehicle-detail__tab--active {
      color: var(--blanco);
    }

    .jh-vehicle-detail__tab::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--rojo);
      transform: scaleX(0);
      transition: transform 0.3s;
    }

    .jh-vehicle-detail__tab--active::after {
      transform: scaleX(1);
    }

    .jh-vehicle-detail__tab-panel {
      display: none;
      margin-bottom: 40px;
      flex-grow: 1;
    }

    .jh-vehicle-detail__tab-panel--active {
      display: block;
      animation: fadeIn 0.4s;
    }

    .jh-specs-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .jh-specs-grid__item {
      padding: 16px;
      background: rgba(255, 255, 255, 0.02);
      border-radius: 6px;
      border: var(--line);
    }

    .jh-specs-grid__label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--gris-cla);
      margin-bottom: 6px;
    }

    .jh-specs-grid__value {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 600;
      color: var(--blanco);
    }

    .jh-vehicle-detail__description {
      font-size: 15px;
      color: var(--gris-cla);
      line-height: 1.8;
      padding: 24px;
      background: rgba(255, 255, 255, 0.02);
      border-left: 3px solid var(--rojo);
      border-radius: 0 8px 8px 0;
    }

    .jh-vehicle-detail__actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: auto;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .jh-btn--whatsapp {
      background: #25D366;
      color: #fff;
      padding: 16px;
      border-radius: var(--radius-sm);
      text-align: center;
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all 0.3s;
    }

    .jh-btn--whatsapp:hover {
      background: #1EBE5D;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    }

    .jh-btn--call {
      background: transparent;
      color: var(--blanco);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 16px;
      border-radius: var(--radius-sm);
      text-align: center;
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all 0.3s;
    }

    .jh-btn--call:hover {
      border-color: var(--blanco);
      background: rgba(255, 255, 255, 0.05);
    }

    /* Floating WA Button */
    .jh-fab-whatsapp {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 60px;
      height: 60px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
      z-index: 90;
      transition: all 0.3s;
    }

    .jh-fab-whatsapp:hover {
      transform: scale(1.1);
      background: #1EBE5D;
    }

    .jh-fab-whatsapp svg {
      width: 32px;
      height: 32px;
    }

    /* ─────────────────── DELIVERIES SECTION ─────────────────── */
    .jh-showcase-section {
      padding: 80px 0;
      background: var(--negro-2);
    }

    .jh-showcase__wrapper {
      position: relative;
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .jh-showcase__track {
      display: flex;
      width: max-content;
      animation: deliveryMarquee 25s linear infinite;
    }

    .jh-showcase__track:hover {
      animation-play-state: paused;
    }

    @keyframes deliveryMarquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .jh-showcase-card {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      aspect-ratio: 4/3;
      cursor: pointer;
      box-shadow: var(--shadow-sm);
      width: 300px;
      margin-right: 20px;
      flex-shrink: 0;
    }

    .jh-showcase-card__photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s var(--ease-out);
    }

    .jh-showcase-card:hover .jh-showcase-card__photo {
      transform: scale(1.08);
    }

    .jh-showcase-card__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 20px;
      opacity: 0;
      transition: opacity 0.4s;
    }

    .jh-showcase-card:hover .jh-showcase-card__overlay {
      opacity: 1;
    }

    .jh-showcase-card__title {
      color: var(--blanco);
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 4px;
    }

    .jh-showcase-card__subtitle {
      color: var(--gris-cla);
      font-size: 13px;
    }

    /* ─────────────────── TESTIMONIALS SECTION ─────────────────── */
    .jh-reviews-section {
      padding: 80px 0;
      background: var(--negro);
    }

    .jh-reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      padding: 0 40px;
      max-width: 1440px;
      margin: 0 auto;
    }

    .jh-review-bubble {
      background: #056162;
      border-radius: var(--radius-lg);
      border-top-left-radius: 0;
      padding: 16px;
      position: relative;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .jh-review-bubble::before {
      content: '';
      position: absolute;
      top: 0;
      left: -10px;
      width: 0;
      height: 0;
      border-right: 10px solid #056162;
      border-bottom: 10px solid transparent;
    }

    .jh-review-bubble__header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
    }

    .jh-review-bubble__avatar {
      width: 32px;
      height: 32px;
      background: #dfe5e7;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #056162;
      font-weight: bold;
      font-family: var(--font-display);
      font-size: 14px;
    }

    .jh-review-bubble__name {
      color: var(--blanco);
      font-weight: 600;
      font-size: 15px;
    }

    .jh-review-bubble__body {
      color: rgba(255, 255, 255, 0.95);
      font-size: 14.5px;
      line-height: 1.4;
      margin-bottom: 6px;
    }

    .jh-review-bubble__footer {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 4px;
    }

    .jh-review-bubble__time {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.6);
    }

    .jh-review-bubble__ticks {
      color: #53bdeb;
    }

    /* ─────────────────── RESPONSIVE ─────────────────── */
    @media (max-width: 1200px) {
      .jh-vehicle-modal__panel {
        grid-template-columns: 50% 50%;
      }
    }

    @media (max-width: 992px) {
      .jh-showroom-stage__title {
        font-size: clamp(50px, 7vw, 80px);
      }

      .jh-contact-section__inner {
        grid-template-columns: 1fr;
      }

      .jh-contact-section__bg {
        display: none;
      }

      .jh-vehicle-modal__panel {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
      }

      .jh-gallery {
        height: 55vw;
        min-height: 280px;
        max-height: 420px;
        flex-shrink: 0;
      }

      .jh-vehicle-modal__close {
        top: 16px;
        right: 16px;
        background: rgba(0, 0, 0, 0.65);
        border: 1px solid rgba(255,255,255,0.2);
      }

      .jh-vehicle-detail {
        padding: 32px 24px;
        overflow-y: visible;
      }

      /* Topbar movil: barra clasica, el pod no cabe */
      .jh-topbar {
        padding-top: 0;
        background: rgba(10, 10, 10, 0.9);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: var(--line);
      }

      /* linea roja de firma */
      .jh-topbar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--rojo);
      }

      .jh-topbar--scrolled {
        background: rgba(10, 10, 10, 0.97);
        box-shadow: var(--shadow-md);
      }

      .jh-topbar__container {
        height: 64px;
        padding: 0 0 0 16px;
        pointer-events: auto;
      }

      /* en movil la barra no cambia con el scroll */
      .jh-topbar--scrolled .jh-topbar__container {
        max-width: 100%;
        padding: 0 0 0 16px;
      }

      .jh-topbar__brand {
        display: flex;
      }

      .jh-topbar__menu-toggle {
        display: flex;
        pointer-events: auto;
      }

      /* el pod desktop no se usa en movil: lo reemplaza el drawer */
      .jh-pod {
        display: none;
      }

      /* ── DRAWER MOVIL MOTORSPORT ── */
      .mobile-nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 150;
        background: rgba(0, 0, 0, 0.55);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s;
      }

      .mobile-nav-overlay--visible {
        opacity: 1;
        visibility: visible;
      }

      /* pieza vertical tipo cockpit, entra desde la derecha */
      .mobile-motorsport-drawer {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 10px;
        bottom: 10px;
        right: 10px;
        z-index: 160;
        width: min(80vw, 340px);
        background: linear-gradient(180deg, #1e1e1e 0%, #101010 40%, #0a0a0a 100%);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 24px 16px 24px 16px;
        box-shadow:
          -18px 0 50px rgba(0, 0, 0, 0.6),
          inset 0 1px 0 rgba(255, 255, 255, 0.08);
        transform: translateX(calc(100% + 30px));
        visibility: hidden;
        transition: transform 0.45s var(--ease-out), visibility 0.45s;
        overflow: hidden;
        overscroll-behavior: contain;
      }

      .mobile-motorsport-drawer--open {
        transform: translateX(0);
        visibility: visible;
      }

      /* filo rojo del lado interno */
      .mobile-motorsport-drawer::before {
        content: '';
        position: absolute;
        left: 0;
        top: 8%;
        bottom: 8%;
        width: 2px;
        border-radius: 2px;
        background: linear-gradient(180deg, transparent, var(--rojo) 20%, var(--rojo) 80%, transparent);
        box-shadow: 0 0 4px rgba(230, 0, 0, 0.9), 0 0 12px rgba(230, 0, 0, 0.4);
        pointer-events: none;
      }

      /* cabecera de marca con textura carbono y corte diagonal */
      .mobile-drawer-brand {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px 16px 28px;
        background:
          repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0 2px, transparent 2px 7px),
          linear-gradient(180deg, #191919, #0d0d0d);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 12px));
      }

      .mobile-drawer-brand img {
        height: 56px;
        width: auto;
        object-fit: contain;
        filter: drop-shadow(0 0 6px rgba(230, 0, 0, 0.35));
      }

      .mobile-drawer-close {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px 8px 12px 8px;
        color: var(--blanco);
        cursor: pointer;
        transition: background 0.25s;
      }

      .mobile-drawer-close:active {
        background: rgba(255, 255, 255, 0.12);
      }

      /* lista segmentada */
      .mobile-drawer-list {
        list-style: none;
        flex: 1;
        overflow-y: auto;
        padding: 6px 0;
        margin: 0;
      }

      .mobile-drawer-list li + li {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
      }

      .mobile-drawer-item {
        position: relative;
        display: flex;
        align-items: center;
        gap: 16px;
        min-height: 56px;
        padding: 8px 22px;
        font-family: var(--font-display);
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--gris-cla);
        text-decoration: none;
        transition: color 0.25s, background 0.25s;
      }

      .mobile-drawer-item .icon {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
      }

      .mobile-drawer-item:active {
        background: rgba(255, 255, 255, 0.04);
      }

      /* linea roja vertical del item activo */
      .mobile-drawer-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 18%;
        bottom: 18%;
        width: 3px;
        border-radius: 2px;
        background: var(--rojo-vivo);
        box-shadow: 0 0 8px rgba(230, 0, 0, 0.6);
        transform: scaleY(0);
        transition: transform 0.3s var(--ease-out);
      }

      .mobile-drawer-item.jh-nav-current {
        color: var(--blanco);
        background: linear-gradient(90deg, rgba(230, 0, 0, 0.08), transparent 65%);
      }

      .mobile-drawer-item.jh-nav-current::before {
        transform: scaleY(1);
      }

      /* zocalo de CTAs con corte diagonal invertido */
      .mobile-drawer-cta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 26px 16px 16px;
        background: linear-gradient(180deg, #0d0d0d, #151515);
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        clip-path: polygon(0 12px, 100% 0, 100% 100%, 0 100%);
      }

      .mobile-drawer-cta a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 48px;
        border-radius: 10px 6px 10px 6px;
        font-family: var(--font-body);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-decoration: none;
      }

      .mobile-drawer-cta__call {
        color: var(--blanco);
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.04);
      }

      .mobile-drawer-cta__wa {
        color: #fff;
        background: #25D366;
      }

      section[id] {
        scroll-margin-top: 80px;
      }
    }

    @media (max-width: 768px) {
      /* Hero */
      .jh-showroom-stage {
        min-height: 100svh;
      }
      .jh-showroom-stage__content {
        padding: 0 20px 350px;
        align-items: flex-end;
        justify-content: flex-start;
      }
      .jh-showroom-stage__title {
        font-size: clamp(38px, 10vw, 64px);
        letter-spacing: -1px;
      }
      .jh-showroom-stage__price {
        font-size: clamp(26px, 7vw, 40px);
        margin-bottom: 20px;
      }
      .jh-showroom-stage__tagline {
        font-size: 13px;
      }
      .jh-showroom-stage__badge {
        margin-bottom: 16px;
      }
      .jh-showroom-stage__controls {
        bottom: 30px;
        right: 20px;
      }
      .jh-showroom-stage__counter {
        bottom: 30px;
        left: 20px;
      }
      .jh-showroom-stage__arrow {
        width: 40px;
        height: 40px;
      }

      /* Catalog */
      .jh-stock-section {
        padding: 60px 16px;
      }
      .jh-stock-toolbar {
        padding: 0;
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 24px;
      }
      .jh-stock-toolbar__search {
        min-width: unset;
        width: 100%;
      }
      .jh-stock-toolbar__filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 6px;
        gap: 8px;
      }
      .jh-stock-toolbar__filters::-webkit-scrollbar {
        display: none;
      }
      .jh-filter-chip {
        flex-shrink: 0;
        font-size: 13px;
        padding: 10px 16px;
      }
      .jh-stock-display {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .jh-unit-card__media {
        height: 200px;
      }

      /* Benefits */
      .jh-assurance-section {
        padding: 60px 16px;
      }
      .jh-assurance-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
      }

      /* Contact */
      .jh-contact-section {
        padding: 60px 16px;
      }

      /* Modal */
      .jh-specs-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      .jh-vehicle-detail__actions {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      .jh-vehicle-detail__model {
        font-size: clamp(28px, 8vw, 48px);
      }
      .jh-vehicle-detail__price {
        font-size: clamp(28px, 8vw, 40px);
      }

      /* Misc */
      .jh-showcase__wrapper {
        padding: 0 16px;
      }
      .jh-reviews-grid {
        padding: 0 16px;
        grid-template-columns: 1fr;
      }
      .jh-footer {
        padding: 32px 16px;
      }
      .jh-fab-whatsapp {
        bottom: 20px;
        right: 16px;
        width: 52px;
        height: 52px;
      }
    }

    @media (max-width: 375px) {
      .jh-showroom-stage__title {
        font-size: clamp(30px, 9vw, 48px);
      }
      .jh-filter-chip {
        font-size: 12px;
        padding: 8px 12px;
      }
    }

    /*aqui va el rollo del mapa*/
    .jh-map-embed {
    width: 100%;
    min-height: 450px; 
    height: 100%; 
    position: relative; 
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1)
}

.jh-map-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
    filter: grayscale(100%) invert(92%) contrast(83%);
}



/* HISTORIA SECTION */

/* ── Sección contenedor */
.jh-history-section {
    position: relative;
    /* 500vh = sección como para 4 caps */
    height: 500vh;
    background: var(--negro);
    margin-top: 50px;
}

/*  Stage sticky*/
.jh-hs-stage {
    position: sticky;
    top: 0;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(
        ellipse 55% 60% at 15% 50%,
        rgba(204, 0, 0, 0.07) 0%,
        transparent 70%
    );
}

/*
   COLUMNA IZQUIERDA
*/
.jh-hs-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    height: 100%;
    padding: 40px;
}

/* Wrap del model-viewer */
.jh-hs-logo-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mi logo 3D */
#logo-scroll {
  width: 100%;
  height: 42vh;
  transform-origin: center center;
  scale: var(--logo-scale, 1);
  transition: scale 0.15s ease-out;
}

/* Badge del año activo */
.jh-hs-year {
    background: var(--rojo);
    color: var(--blanco);
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    padding: 5px 20px;
    /* Forma de paralelogramo */
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: opacity 0.4s ease;
}

/* Track de progreso vertical */
.jh-hs-track {
    position: relative;
    width: 2px;
    height: 110px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.jh-hs-track__fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--rojo);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(204, 0, 0, 0.6);
    /* JS actualiza height con transition inline */
    transition: height 0.12s linear;
}

/* Nodos del timeline */
.jh-hs-track__nodes {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.jh-hs-node {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.jh-hs-node.jh-hs-node--done {
    background: var(--rojo-osc);
    border-color: var(--rojo-osc);
}

.jh-hs-node.jh-hs-node--active {
    background: var(--rojo);
    border-color: var(--rojo);
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(204, 0, 0, 0.7);
}

/* COLUMNA DERECHA */
.jh-hs-right {
    position: relative;
    height: 100%;
    padding: 40px 8% 40px 4%;
    overflow: hidden;
}

/* Cada capítulo: todos apilados y absolutos,
   solo el activo es opacity:1 y translateY(0) */
.jh-hs-chapter {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 8% 40px 4%;
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.jh-hs-chapter.jh-hs-chapter--active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Etiqueta de sección */
.jh-hs-chapter__label {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--rojo);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.jh-hs-chapter__label::before {
    content: '';
    display: inline-block;
    width: 26px;
    height: 2px;
    background: var(--rojo);
    flex-shrink: 0;
}

/* Título grande */
.jh-hs-chapter__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 900;
    line-height: 0.93;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--blanco);
    margin-bottom: 24px;
}

/* Párrafo de descripción */
.jh-hs-chapter__text {
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
    color: var(--gris-cla);
    line-height: 1.75;
    max-width: 460px;
    margin-bottom: 32px;
}

/* Tarjeta de estadística */
.jh-hs-stat {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 22px;
    border-left: 3px solid var(--rojo);
    background: rgba(204, 0, 0, 0.06);
    max-width: 360px;
}

.jh-hs-stat__num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--rojo);
    line-height: 1;
    flex-shrink: 0;
}

.jh-hs-stat__lbl {
    font-size: 0.8rem;
    color: var(--gris-cla);
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* RESPONSIVE — mobile*/
@media (max-width: 768px) {
    .jh-history-section {
        height: auto;
    }

    .jh-hs-stage {
        position: relative;
        height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .jh-hs-left {
        padding: 40px 20px;
        background: linear-gradient(to bottom, rgba(204, 0, 0, 0.05), transparent);
    }

    #logo-scroll {
        height: 35vh;
        margin-bottom: 20px;
    }

    .jh-hs-track {
        display: none;
    }

    .jh-hs-right {
        position: relative;
        height: auto;
        padding: 0;
    }

    /* mostrar todos los capítulos apilados */
    .jh-hs-chapter {
        position: relative;
        inset: auto;
        opacity: 1 !important;
        transform: none !important;
        padding: 32px 24px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        pointer-events: auto;
    }

    .jh-hs-chapter:last-child {
        border-bottom: none;
    }
}




/*Pantalla de carga prueba*/

.jh-splash-screen {
    position: fixed; 
    inset: 0;        
    background: #0A0A0A; 
    z-index: 10000;  
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s;
}

.jh-splash-screen--hidden {
    opacity: 0;
    visibility: hidden;
}

.jh-splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#loader-logo {
    width: 250px;
    height: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px); 
    will-change: transform, opacity; 
    transition: 
        opacity 1s var(--ease-out), 
        transform 1.2s var(--ease-out);
}
.jh-element-reveal {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

.jh-loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.jh-bar-fill {
    height: 100%;
    width: 0%; /* Empieza en 0 */
    background: var(--rojo);
    box-shadow: 0 0 15px var(--rojo);
    transition: width 0.3s ease;
}

.jh-loader-text {
    font-family: var(--font-display);
    color: var(--gris-cla);
    letter-spacing: 6px;
    font-size: 11px;
    text-transform: uppercase;
}
.jh-btn-enter {
    background: transparent;
    color: var(--blanco);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    box-shadow: var(--shadow-md);
    padding: 15px 40px;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0; 
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px); 
    transition: all 0.8s var(--ease-out);
}


.jh-btn-enter:hover {
    background: var(--blanco);
    color: var(--negro);
    border-color: var(--blanco);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.7; 
        transform: scale(0.95); 
    }
}

/*  el culpable era el marquee de entregas */
.jh-showcase__wrapper {
  overflow: hidden;   
}

/* Aqui arregle el overflow mobile */
.jh-topbar,
.jh-topbar__container {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  .jh-stock-toolbar__filters {
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* loader */

/* sin scroll con el loader */
html.loader-active,
body.loader-active {
  overflow: hidden;
}

/* no pasar gestos al fondo */
.jh-splash-screen {
  touch-action: none;
  overscroll-behavior: none;
}

/* fade */
.jh-loader-bar {
  transition: opacity 0.5s ease;
}

/* boton entrar */
.jh-btn-enter {
  text-transform: uppercase;
  justify-content: center;
  min-height: 48px;
}

/* fallback si falla el 3d */
.jh-model-fallback {
  display: none;
  object-fit: contain;
}
.jh-model-failed > model-viewer {
  display: none;
}
.jh-model-failed > .jh-model-fallback {
  display: block;
}
#loaderFallback {
  width: 250px;
  height: 250px;
  padding: 24px;
}
#historyFallback {
  width: 100%;
  height: 42vh;
}

/* menos movimiento */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .jh-reveal {
    transition-duration: 0.01ms;
    transform: none;
  }
  /* el pod cambia de tamano sin animar */
  .jh-topbar,
  .jh-topbar__container,
  .jh-pod,
  .jh-pod::before,
  .jh-pod::after,
  .jh-pod__tip,
  .jh-pod__screen,
  .jh-pod__tip--cta .icon,
  .jh-pod__tip--cta span,
  .jh-pod__tip--brand img,
  .jh-topbar__nav a,
  .jh-topbar__nav a .icon,
  .jh-topbar__nav a span,
  .mobile-motorsport-drawer,
  .mobile-nav-overlay,
  .mobile-drawer-item::before {
    transition-duration: 0.01ms;
  }
  .jh-topbar__nav a:hover {
    transform: none;
  }
  #loader-logo,
  .jh-btn-enter {
    transition-duration: 0.2s;
    transform: none;
  }
  .jh-splash-screen {
    transition-duration: 0.2s;
  }
}

/* logo 3d historia */

/* que no trabe el scroll en movil */
#logo-scroll {
  touch-action: pan-y;
}

/* foco y botones */

/* foco con teclado */
a:focus-visible,
button:focus-visible,
input:focus-visible,
.jh-unit-card:focus-visible,
.jh-vehicle-detail__tab:focus-visible,
.jh-gallery__thumb:focus-visible {
  outline: 2px solid var(--rojo-vivo);
  outline-offset: 3px;
}

/* foco en tarjeta */
.jh-unit-card:focus-visible {
  outline-offset: 0;
  border-color: var(--rojo);
}

/* al presionar */
.jh-btn--primary:active,
.jh-btn--whatsapp:active,
.jh-btn--call:active,
.jh-filter-chip:active,
.jh-btn-enter:active {
  transform: translateY(1px);
}

/* que no bloqueen clics */
.jh-showroom-stage__gradient,
.jh-unit-card__gradient {
  pointer-events: none;
}

/* catalogo */

/* texto sin resultados */
.jh-stock-display__empty-hint {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--gris-med);
  letter-spacing: 0.5px;
  text-transform: none;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* imagen de respaldo */
.jh-img-fallback {
  object-fit: contain !important;
  background: var(--negro-3);
  padding: 12%;
}

/* modal movil */

/* respiro abajo en movil */
@media (max-width: 992px) {
  .jh-vehicle-detail {
    padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px));
  }
}

/* detalles */

/* no tapar la seccion con el header */
section[id] {
  scroll-margin-top: 110px;
}

/* sombra sutil */
.jh-unit-card {
  box-shadow: var(--shadow-sm);
}

/* saltar al contenido */
.jh-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 300;
  background: var(--rojo);
  color: var(--blanco);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}
.jh-skip-link:focus {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .jh-showcase__track {
    animation: none;
  }
}