/* =====================================================
   CINES SUNSTAR — components.css
   Tarjetas, botones, badges, filtros, trailer, promo,
   modales, booking (4 pasos), snacks, ticket, favoritos
   ===================================================== */

/* ── Grid de películas ── */
.movies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  @media (min-width: 480px)  { .movies-grid { gap: 1.25rem; } }
  @media (min-width: 640px)  { .movies-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 900px)  { .movies-grid { grid-template-columns: repeat(4, 1fr); } }
  
  .movies-grid--estrenos {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
  @media (max-width: 480px) {
    .movies-grid--estrenos { grid-template-columns: 1fr; }
  }
  
  /* ── Tarjeta de película ── */
  .movie-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
    display: flex;
    flex-direction: column;
  }
  .movie-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-card), 0 0 35px var(--gold-dim);
    border-color: var(--border-gold);
  }
  
  .card-poster {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: var(--bg-secondary);
  }
  .card-poster img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
  }
  .movie-card:hover .card-poster img { transform: scale(1.07); }
  
  /* Overlay hover – "Ver función" */
  .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,15,26,0.95) 0%, rgba(10,15,26,0.3) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s var(--ease-out);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    pointer-events: none;
  }
  .movie-card:hover .card-overlay { opacity: 1; }
  
  .card-overlay-btn {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bg-primary);
    background: var(--gold);
    border-radius: var(--radius-sm);
    padding: 0.5rem 1.3rem;
    text-align: center;
    align-self: flex-start;
    pointer-events: auto;
    transition: background 0.2s;
  }
  .card-overlay-btn:hover { background: var(--gold-light); }
  
  /* Badge de género */
  .card-badge {
    position: absolute;
    top: 8px; left: 8px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    z-index: 2;
  }
  .badge-terror   { background: var(--crimson-vivid); color: #fff; }
  .badge-animacion { background: #1a6b3c; color: #fff; }
  .badge-drama    { background: #1a3a6b; color: #fff; }
  .badge-scifi    { background: #4a1a6b; color: #fff; }
  .badge-default  { background: rgba(0,0,0,0.7); color: var(--gold); border: 1px solid var(--border-gold); }
  
  /* Botón de favorito */
  .fav-btn {
    position: absolute;
    top: 8px; right: 8px;
    z-index: 2;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
  }
  .fav-btn:hover { transform: scale(1.2); background: rgba(0,0,0,0.8); }
  .fav-btn.active { background: var(--crimson-vivid); }
  
  /* Info de la tarjeta */
  .card-info {
    padding: 0.9rem 0.85rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .card-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .card-genre {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--gold);
    text-transform: uppercase;
  }
  .card-duration {
    font-size: 0.8rem;
    color: var(--text-muted);
  }
  
  /* ── Tarjeta de estreno ── */
  .estreno-card {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
  }
  .estreno-card:hover { border-color: var(--border-gold); box-shadow: var(--shadow-card); }
  @media (min-width: 640px) { .estreno-card { grid-template-columns: 220px 1fr; } }
  .estrenos-list { display: flex; flex-direction: column; gap: 1.5rem; }
  
  .estreno-poster img { width: 100%; height: 100%; object-fit: cover; }
  .estreno-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .estreno-titulo {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
  }
  .estreno-meta { display: flex; gap: 1rem; flex-wrap: wrap; }
  .estreno-genero {
    font-family: var(--font-display);
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--gold);
    text-transform: uppercase;
  }
  .estreno-badge-pronto {
    font-family: var(--font-display);
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--crimson-vivid);
    border: 1px solid var(--crimson-dim);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
  }
  .estreno-sinopsis {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.7;
  }
  
  /* ── Trailer wrapper ── */
  .trailer-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
    max-width: 100%;
  }
  .trailer-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
  }
  .trailer-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
  }
  
  /* ── Tarjeta de sucursal ── */
  .sucursales-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  @media (min-width: 540px) { .sucursales-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 860px) { .sucursales-grid { grid-template-columns: repeat(3, 1fr); } }
  
  .sucursal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
  }
  .sucursal-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-card), 0 0 25px var(--gold-dim);
  }
  .sucursal-icon { font-size: 2rem; margin-bottom: 0.5rem; }
  .sucursal-nombre {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  .sucursal-ciudad {
    font-family: var(--font-display);
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--gold);
    text-transform: uppercase;
  }
  .sucursal-dir { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 0.5rem; }
  .sucursal-status {
    display: flex; align-items: center; gap: 0.4rem;
    font-family: var(--font-display);
    font-size: 0.78rem; font-weight: 600;
  }
  .status-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
  }
  .status-activo .status-dot { background: #2ecc71; }
  .status-pronto .status-dot { background: var(--gold); }
  
  /* ── Filtro de cartelera ── */
  .filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }
  .filter-select {
    appearance: none;
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 0.6rem 2.2rem 0.6rem 0.9rem;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c6a54b' stroke-width='2' fill='none' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    min-width: 150px;
  }
  .filter-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
  }
  
  /* ── Botones ── */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    padding: 0.7rem 1.8rem;
    cursor: pointer;
    transition: all 0.25s var(--ease-out);
    border: none;
    white-space: nowrap;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-primary);
    box-shadow: 0 4px 15px var(--gold-dim);
  }
  .btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--gold-dim);
  }
  .btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--border-gold);
  }
  .btn-outline:hover {
    background: var(--gold-dim);
    color: var(--gold-light);
  }
  .btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
  }
  .btn-ghost:hover { color: #fff; border-color: var(--text-muted); }
  
  /* ── Banner promo ── */
  .promo-banner {
    background: linear-gradient(135deg, var(--crimson), #5a0015);
    border: 1px solid rgba(181,0,46,0.5);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin: 2.5rem 0;
  }
  .promo-icon { font-size: 2.6rem; }
  .promo-content { flex: 1; }
  .promo-tag {
    font-family: var(--font-display);
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
  }
  .promo-title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.7rem);
    color: #fff;
    margin-bottom: 0.25rem;
  }
  .promo-desc { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
  .btn-promo {
    background: #fff;
    color: var(--crimson);
    font-family: var(--font-display);
    font-size: 0.85rem; font-weight: 700;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.2s;
  }
  .btn-promo:hover { transform: scale(1.05); }

  /* Golden promo variant — La Paz Cinema */
  .promo-banner--gold {
    background: linear-gradient(135deg, rgba(198,165,75,0.14) 0%, rgba(219,191,105,0.06) 100%);
    border: 1px solid var(--border-gold);
    box-shadow: 0 0 40px rgba(198,165,75,0.08), inset 0 1px 0 rgba(198,165,75,0.12);
  }
  .promo-tag--gold {
    color: var(--gold);
  }
  .promo-banner--gold .promo-title { color: var(--gold-light); }
  .promo-banner--gold .promo-desc  { color: var(--text-secondary); }
  .btn-promo--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-primary);
    font-weight: 800;
    box-shadow: 0 4px 18px rgba(198,165,75,0.35);
  }
  .btn-promo--gold:hover {
    box-shadow: 0 6px 24px rgba(198,165,75,0.5);
  }

  /* Dock CTA icon color (SVG on gold bg) */
  .dock-link--cta .dock-icon-cta {
    color: var(--bg-primary);
  }

  /* ─── Cinematic promo banner ─── */
  .promo-banner--cinematic {
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 168px;
    background: var(--bg-card) !important;
    border: 1px solid var(--border-gold);
    box-shadow: 0 0 60px rgba(198,165,75,0.12), inset 0 1px 0 rgba(198,165,75,0.15) !important;
  }
  @media (min-width: 768px) {
    .promo-banner--cinematic { min-height: 300px; }
  }
  @media (min-width: 1024px) {
    .promo-banner--cinematic { min-height: 360px; }
  }

  /* Imagen con Ken Burns */
  .promo-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }
  .promo-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.45) saturate(1.2);
    animation: kenBurns 16s ease-in-out infinite alternate;
    will-change: transform;
  }
  @keyframes kenBurns {
    from { transform: scale(1) translateX(0); }
    to   { transform: scale(1.1) translateX(-2.5%); }
  }

  /* Overlay degradado lateral */
  .promo-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      108deg,
      rgba(6,10,18,0.92) 0%,
      rgba(6,10,18,0.72) 48%,
      rgba(198,165,75,0.2) 100%
    );
  }

  /* Badge flotante con glow pulsante */
  .promo-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 4;
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg-primary);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 0.28rem 0.78rem;
    border-radius: 20px;
    animation: badgeGlow 2.5s ease-in-out infinite;
  }
  @keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 8px rgba(198,165,75,0.45); }
    50%       { box-shadow: 0 0 20px rgba(198,165,75,0.9), 0 0 40px rgba(198,165,75,0.3); }
  }

  /* Destellos flotantes */
  .promo-sparkles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
  }
  .sparkle {
    position: absolute;
    color: var(--gold);
    opacity: 0;
    animation: twinkle 3s ease-in-out infinite;
  }
  .sparkle-1 { top: 20%; right: 22%; font-size: 0.85rem; animation-delay: 0s; }
  .sparkle-2 { top: 62%; right: 14%; font-size: 0.55rem; animation-delay: 1.1s; }
  .sparkle-3 { top: 40%; right: 33%; font-size: 0.65rem; animation-delay: 0.55s; }
  @keyframes twinkle {
    0%, 100% { opacity: 0; transform: scale(0.4) rotate(0deg); }
    50%       { opacity: 1; transform: scale(1) rotate(18deg); }
  }

  /* Contenido interno */
  .promo-inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 2rem 2rem 2.2rem;
    width: 100%;
    min-height: inherit;
  }
  @media (min-width: 768px) {
    .promo-inner { padding: 2.5rem 3rem 2.8rem; align-items: flex-end; }
  }
  @media (min-width: 1024px) {
    .promo-inner { padding: 3rem 3.5rem 3.5rem; }
  }
  .promo-banner--cinematic .promo-content { flex: 1; min-width: 0; }
  .promo-banner--cinematic .promo-title {
    color: #fff;
    text-shadow: 0 2px 18px rgba(0,0,0,0.9);
  }
  .promo-title-sub {
    color: var(--gold-light);
    display: inline;
  }

  /* CTA con shimmer interno */
  .btn-promo--gold {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  .btn-promo--gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    transform: translateX(-100%);
    animation: shimmerCta 2.8s ease-in-out infinite;
  }
  @keyframes shimmerCta {
    0%        { transform: translateX(-100%); }
    55%, 100% { transform: translateX(160%); }
  }
  .btn-arrow {
    display: inline-block;
    transition: transform 0.25s var(--ease-out);
  }
  .btn-promo--gold:hover .btn-arrow { transform: translateX(5px); }

  @media (max-width: 540px) {
    .promo-inner { padding: 1.5rem 1.25rem; gap: 1rem; }
    .promo-sparkles { display: none; }
  }

  /* ── Horarios ── */
  .horarios-sucursal {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .horarios-sucursal:hover { border-color: var(--border-gold); box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
  .horarios-sucursal-name {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 600;
    display: flex; align-items: center; gap: 0.5rem;
    margin-bottom: 0.8rem;
  }
  .horarios-sucursal-link {
    font-family: var(--font-display);
    font-size: 0.75rem; font-weight: 600;
    color: var(--gold);
    margin-left: auto;
  }
  .horarios-list { display: flex; flex-wrap: wrap; gap: 0.4rem; }
  .horario-pill {
    font-family: var(--font-display);
    font-size: 0.78rem; font-weight: 600;
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-sm);
    background: var(--gold-dim);
    color: var(--gold-light);
    border: 1px solid var(--border-gold);
  }
  
  /* ── Sucursal detail: cartelera ── */
  .sucursal-pelicula-item {
    display: flex; gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .sucursal-pelicula-item:hover { border-color: var(--border-gold); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
  .sp-poster { width: 65px; height: 95px; border-radius: 4px; overflow: hidden; flex-shrink: 0; }
  .sp-poster img { width: 100%; height: 100%; object-fit: cover; }
  .sp-info { flex: 1; }
  .sp-title { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.3rem; }
  .sp-genre {
    font-family: var(--font-display);
    font-size: 0.72rem; font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
  }
  .sp-horarios { display: flex; flex-wrap: wrap; gap: 0.3rem; }
  
  .horario-chip {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: var(--gold-dim);
    color: var(--gold-light);
    border: 1px solid var(--border-gold);
    white-space: nowrap;
  }
  
  /* ── Horario chip variants ── */
  .horario-chip--3d {
    background: rgba(192,132,252,0.12);
    color: #c084fc;
    border-color: rgba(192,132,252,0.35);
  }
  .horario-chip--subt {
    background: rgba(123,227,200,0.1);
    color: #7be3c8;
    border-color: rgba(123,227,200,0.3);
  }
  .horario-chip--cast {
    background: var(--gold-dim);
    color: var(--gold-light);
    border-color: var(--border-gold);
  }

  /* ── Tag TEA ── */
  .tag-tea {
    font-family: var(--font-display);
    font-size: 0.72rem; font-weight: 600;
    color: #7be3c8;
    background: rgba(123,227,200,0.12);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(123,227,200,0.3);
  }
  
  /* ── Toast ── */
  .toast {
    position: fixed;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%) translateY(120%) scale(0.8);
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 0.9rem 1.5rem;
    font-family: var(--font-display);
    font-weight: 500;
    z-index: 9000;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
    box-shadow: var(--shadow-up);
  }
  .toast.show {
    transform: translateX(-50%) translateY(0) scale(1);
  }
  
  /* ══════════════════════════════════════════
     MODALES
  ══════════════════════════════════════════ */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
  }
  .modal-overlay[aria-hidden="false"] {
    opacity: 1; visibility: visible;
  }
  .modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 440px;
    width: 90%;
    text-align: center;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  }
  .modal-close {
    position: absolute;
    top: 0.5rem; right: 1rem;
    font-size: 1.8rem;
    color: var(--text-muted);
    background: none;
    cursor: pointer;
    z-index: 5;
  }
  .modal-close:hover { color: #fff; }
  .modal-booking {
    max-width: 780px;
    padding: 1.8rem;
  }
  
  /* Indicador de pasos */
  .step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
  }
  .step-dot {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    border: 2px solid var(--border-subtle);
    transition: all 0.3s;
  }
  .step-dot.active {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
    box-shadow: 0 0 10px var(--gold-dim);
  }
  .step-dot.completed {
    background: var(--gold-dim);
    color: var(--gold);
    border-color: var(--gold);
  }
  .step-line {
    width: 30px; height: 2px;
    background: var(--border-subtle);
    transition: background 0.3s;
  }
  .step-dot.completed + .step-line,
  .step-dot.active + .step-line {
    background: var(--gold);
  }
  
  /* Paso 1 */
  .booking-step { animation: fadeInView 0.35s var(--ease-out); }
  .step-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0.8rem 0;
  }
  .step-row label {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--text-muted);
    min-width: 80px;
  }
  .step-row select {
    flex: 1;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 0.5rem 2rem 0.5rem 0.8rem;
    font-family: var(--font-body);
    font-weight: 500;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c6a54b' stroke-width='2' fill='none' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
  }
  
  /* ── Booking selects ── */
  .booking-selects {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  @media (min-width: 480px) {
    .booking-selects { grid-template-columns: repeat(3, 1fr); }
  }
  .booking-select-group { display: flex; flex-direction: column; gap: 0.35rem; }
  .bs-label {
    font-family: var(--font-display);
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--text-muted);
  }
  .bs-select {
    background: var(--bg-secondary);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.88rem;
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23c6a54b'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .bs-select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
  .bs-select option { background: var(--bg-secondary); }

  /* ── Cinema screen ── */
  .cinema-screen-wrap {
    perspective: 600px;
    text-align: center;
    margin-bottom: 1.25rem;
  }
  .cinema-screen-bar {
    background: linear-gradient(to right, transparent 5%, rgba(255,255,255,0.85) 50%, transparent 95%);
    height: 5px;
    width: 70%;
    max-width: 300px;
    margin: 0 auto;
    transform: rotateX(-35deg);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255,255,255,0.3), 0 0 70px rgba(255,255,255,0.08);
  }
  .cinema-screen-label {
    font-family: var(--font-display);
    font-size: 0.6rem; letter-spacing: 0.22em; font-weight: 600;
    color: var(--text-muted);
    margin-top: 0.45rem;
  }
  
  .booking-screen-container {
    perspective: 500px;
    text-align: center;
    margin-bottom: 2rem;
  }
  .booking-screen {
    background: #fff;
    height: 50px;
    width: 75%;
    max-width: 300px;
    margin: 0 auto;
    transform: rotateX(-45deg);
    box-shadow: 0 3px 20px rgba(255,255,255,0.5);
  }
  .booking-screen-container p { margin-top: 0.5rem; font-size: 0.75rem; color: var(--text-muted); }
  
  /* ── Seat grid (cinematic) ── */
  .booking-seat-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 1rem;
    overflow-x: auto;
    padding: 0.25rem 0;
  }
  .seat-col-numbers {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-left: 0;
  }
  .seat-col-numbers span {
    width: 24px;
    font-size: 0.58rem;
    color: var(--text-muted);
    text-align: center;
    font-family: var(--font-display);
    font-weight: 600;
  }
  .seat-col-numbers span:first-child { width: 20px; }
  .booking-row {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .row-label {
    font-family: var(--font-display);
    font-size: 0.62rem; font-weight: 700;
    color: var(--text-muted);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
  }
  .booking-row--economy .row-label  { color: #94a3b8; }
  .booking-row--standard .row-label { color: var(--gold); }
  .booking-row--premium .row-label  { color: #c084fc; }
  .seat-aisle { width: 10px; flex-shrink: 0; }

  .booking-seat {
    width: 24px; height: 18px;
    border-radius: 4px 4px 1px 1px;
    cursor: pointer;
    transition: background-color 0.15s, transform 0.15s, box-shadow 0.15s;
    flex-shrink: 0;
    position: relative;
  }
  .booking-seat.occupied { cursor: not-allowed; opacity: 0.55; }

  /* Economy (rows A-B) */
  .seat--economy { background-color: #374151; border: 1px solid #4b5563; }
  .seat--economy:hover:not(.occupied) { background-color: #6b7280; transform: translateY(-2px) scale(1.15); }
  .seat--economy.selected { background-color: #94a3b8; border-color: #cbd5e1; box-shadow: 0 0 8px rgba(148,163,184,0.6); transform: translateY(-2px); }
  .seat--economy.occupied { background-color: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.2); }

  /* Standard (rows C-F) */
  .seat--standard { background-color: #3d2e08; border: 1px solid #6b4f12; }
  .seat--standard:hover:not(.occupied) { background-color: var(--gold-dim); transform: translateY(-2px) scale(1.15); }
  .seat--standard.selected { background-color: var(--gold); border-color: var(--gold-light); box-shadow: 0 0 10px var(--gold-dim); transform: translateY(-2px); }
  .seat--standard.occupied { background-color: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.2); }

  /* Premium (rows G-H) */
  .seat--premium { background-color: #2e1a4a; border: 1px solid #6b21a8; }
  .seat--premium:hover:not(.occupied) { background-color: rgba(192,132,252,0.3); transform: translateY(-2px) scale(1.15); }
  .seat--premium.selected { background-color: #c084fc; border-color: #e9d5ff; box-shadow: 0 0 10px rgba(192,132,252,0.6); transform: translateY(-2px); }
  .seat--premium.occupied { background-color: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.2); }

  /* ── Seat legend ── */
  .seat-legend {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 0.6rem 1.1rem;
    margin-bottom: 0.85rem;
  }
  .sl-item {
    display: flex; align-items: center; gap: 0.3rem;
    font-size: 0.72rem; color: var(--text-muted);
    font-family: var(--font-display);
  }
  .sl-dot {
    width: 16px; height: 12px;
    border-radius: 3px 3px 1px 1px;
    flex-shrink: 0;
  }
  .sl-economy  { background: #374151; border: 1px solid #4b5563; }
  .sl-standard { background: #3d2e08; border: 1px solid #6b4f12; }
  .sl-premium  { background: #2e1a4a; border: 1px solid #6b21a8; }
  .sl-occupied { background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.25); }
  .sl-selected { background: var(--gold); border: 1px solid var(--gold-light); }

  /* ── Booking price summary ── */
  .booking-price-summary {
    background: var(--bg-secondary);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 0.85rem 1.1rem;
    margin-bottom: 0.85rem;
    text-align: center;
    min-height: 48px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .bps-placeholder { color: var(--text-muted); font-size: 0.85rem; margin: 0; }
  .bps-breakdown {
    display: flex; flex-direction: column; gap: 0.22rem;
    margin-bottom: 0.55rem;
  }
  .bps-line {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.85rem; color: var(--text-secondary);
  }
  .bps-type {
    font-family: var(--font-display);
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em;
    padding: 0.1rem 0.45rem; border-radius: 3px;
  }
  .bps-type--front   { background: rgba(148,163,184,0.15); color: #94a3b8; }
  .bps-type--centro  { background: var(--gold-glow); color: var(--gold); border: 1px solid var(--border-gold); }
  .bps-type--premium { background: rgba(192,132,252,0.12); color: #c084fc; border: 1px solid rgba(192,132,252,0.3); }
  .bps-total {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 800;
    color: var(--text-primary);
    border-top: 1px solid var(--border-subtle);
    padding-top: 0.45rem;
    margin-top: 0.25rem;
  }
  .bps-total strong { color: var(--gold-light); }

  .urgency-msg {
    text-align: center;
    color: var(--crimson-vivid);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    animation: pulse 1.5s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
  }

  /* ── Clickable horario chips ── */
  .horario-chip--btn {
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
    background: none;
    font-family: inherit;
  }
  .horario-chip--btn:hover {
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    filter: brightness(1.18);
  }
  .horario-chip--btn:active { transform: scale(0.95); }

  /* ── Clickable horario pills (movie detail) ── */
  .horario-pill--btn {
    cursor: pointer;
    background: none;
    font-family: inherit;
    transition: transform 0.15s, opacity 0.15s, box-shadow 0.15s;
  }
  .horario-pill--btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
  .horario-pill--btn:active { transform: scale(0.95); }
  
  /* Snacks */
  .snacks-cart {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
  }
  .snack-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 135px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
  }
  .snack-item:hover { border-color: var(--border-gold); transform: translateY(-3px); }
  .snack-item img {
    width: 60px; height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-gold);
  }
  .snack-price { font-weight: 700; color: var(--gold); }
  .snack-item button {
    background: var(--gold-dim);
    color: #fff;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    width: 34px; height: 34px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .snack-item button:hover { background: var(--gold); color: var(--bg-primary); }
  
  .passenger-fields { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.5rem; }
  .passenger-field-row {
    display: flex; align-items: center; gap: 1rem;
    background: var(--bg-secondary); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm); padding: 0.6rem 1rem; flex-wrap: wrap;
  }
  .seat-label { font-family: var(--font-display); font-weight: 600; color: var(--gold); min-width: 80px; }
  .passenger-name-input {
    flex: 1;
    background: var(--bg-primary); border: 1px solid var(--border-gold);
    border-radius: 4px; padding: 0.5rem 0.8rem;
    color: var(--text-primary); font-family: var(--font-body);
  }
  .passenger-name-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold-glow); }
  
  .whatsapp-field { margin: 1rem 0 1.5rem; display: flex; flex-direction: column; gap: 0.4rem; }
  .whatsapp-field label { font-weight: 500; color: var(--text-muted); }
  .whatsapp-field input {
    background: var(--bg-secondary); border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm); padding: 0.7rem;
    color: var(--text-primary); font-family: var(--font-body);
  }
  
  /* Pago */
  .payment-form { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
  .payment-form input {
    background: var(--bg-secondary); border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm); padding: 0.7rem;
    color: var(--text-primary); font-family: var(--font-body);
  }
  
  /* Ticket */
  .ticket-card {
    background: var(--bg-secondary); border: 1px solid var(--border-gold);
    border-radius: var(--radius-md); overflow: hidden; margin: 1rem 0;
  }
  .ticket-header {
    background: linear-gradient(135deg, var(--gold-dim), transparent);
    padding: 1rem 1.5rem; display: flex; align-items: center;
    justify-content: space-between; border-bottom: 1px solid var(--border-gold);
    font-weight: 600;
  }
  .ticket-body { padding: 1.5rem; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }
  .ticket-body strong { color: var(--text-primary); }
  .ticket-total {
    font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
    color: var(--gold); text-align: right; margin-top: 1rem;
  }
  .ticket-footer {
    background: var(--bg-primary); padding: 0.8rem 1.5rem;
    font-size: 0.75rem; color: var(--text-muted); text-align: center;
    border-top: 1px solid var(--border-subtle);
  }
  .fidelity-msg { color: var(--gold); text-align: center; margin: 1rem 0; }
  .booking-actions { display: flex; justify-content: space-between; margin-top: 1.5rem; gap: 1rem; }
  .booking-actions .btn { flex: 1; justify-content: center; }
  
  @media (max-width: 500px) {
    .booking-seat { width: 19px; height: 14px; }
    .booking-row { gap: 3px; }
    .seat-col-numbers span { width: 19px; }
    .seat-aisle { width: 7px; }
    .passenger-field-row { flex-direction: column; align-items: flex-start; }
  }

  /* ── Comprar entradas CTA in movie detail ── */
  .btn-comprar-peli {
    align-self: flex-start;
    font-size: 0.95rem;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.03em;
  }

  /* ══════════════════════════════════════════════════
     BOOKING MODAL — cinematic entrance
  ══════════════════════════════════════════════════ */
  #booking-modal {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  #booking-modal[aria-hidden="false"] .modal-booking {
    animation: bookingReveal 0.5s var(--ease-out) 0.08s both;
  }
  @keyframes bookingReveal {
    from { transform: translateY(50px) scale(0.96); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 1; }
  }

  /* ══════════════════════════════════════════════════
     GLOBAL SEARCH OVERLAY
  ══════════════════════════════════════════════════ */
  .search-overlay {
    position: fixed;
    inset: 0;
    z-index: 4000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    display: flex;
    flex-direction: column;
    background: rgba(6, 10, 18, 0.97);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
  }
  .search-overlay[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
  }

  .search-overlay-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: env(safe-area-inset-top, 0);
  }

  /* ── Search header bar ── */
  .search-header-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--border-subtle);
    flex-shrink: 0;
  }

  .search-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(255,255,255,0.07);
    border: 1.5px solid var(--border-gold);
    border-radius: 16px;
    padding: 0 1rem;
    height: 50px;
    transition: border-color 0.2s, box-shadow 0.2s;
    min-width: 0;
  }
  .search-input-wrapper:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow), 0 4px 20px rgba(198,165,75,0.1);
  }

  .search-svg-icon {
    color: var(--text-muted);
    flex-shrink: 0;
  }

  #global-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    min-width: 0;
  }
  #global-search-input::placeholder { color: var(--text-muted); font-weight: 400; }

  .search-clear-btn {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: var(--text-muted);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    border: none;
    transition: background 0.2s, color 0.2s;
  }
  .search-clear-btn:hover { background: rgba(255,255,255,0.28); color: #fff; }

  .search-cancel-btn {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gold);
    cursor: pointer;
    white-space: nowrap;
    background: none;
    border: none;
    padding: 0.5rem 0;
    flex-shrink: 0;
    transition: color 0.2s;
  }
  .search-cancel-btn:hover { color: var(--gold-light); }

  /* ── Results container ── */
  .search-results-container {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 1rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 80px));
  }

  .search-section { margin-bottom: 2rem; }

  .search-section-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
    padding-left: 0.25rem;
  }

  /* Trending quick grid */
  .search-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }
  @media (max-width: 380px) { .search-quick-grid { grid-template-columns: repeat(3, 1fr); } }

  .search-quick-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    cursor: pointer;
    transition: transform 0.2s;
    -webkit-tap-highlight-color: transparent;
  }
  .search-quick-item:active { transform: scale(0.95); }
  .search-quick-item img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
  }
  .search-quick-title {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
  }

  /* Genre tags */
  .search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .search-tag {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.02em;
    -webkit-tap-highlight-color: transparent;
  }
  .search-tag:hover, .search-tag:active {
    background: var(--gold-dim);
    color: var(--gold-light);
    border-color: var(--gold);
  }

  /* Result list items */
  .search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0.65rem;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 0.2rem;
    transition: background 0.15s;
    -webkit-tap-highlight-color: transparent;
  }
  .search-result-item:hover { background: rgba(255,255,255,0.05); }
  .search-result-item:active { background: rgba(255,255,255,0.08); }

  .search-result-poster {
    width: 44px; height: 64px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
  }
  .search-result-poster img { width: 100%; height: 100%; object-fit: cover; }

  .search-preventa-tag {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: var(--crimson-vivid);
    color: #fff;
    font-size: 0.5rem;
    font-weight: 700;
    text-align: center;
    padding: 1px 0;
    font-family: var(--font-display);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .search-result-branch-icon {
    width: 44px; height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  .search-result-info { flex: 1; min-width: 0; }

  .search-result-title {
    font-family: var(--font-display);
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .search-result-meta {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.1rem;
  }
  .search-result-dur { font-size: 0.76rem; color: var(--text-muted); }

  .search-result-chev {
    font-size: 1.3rem;
    color: var(--text-muted);
    flex-shrink: 0;
    line-height: 1;
  }

  /* Highlight */
  .search-hl {
    background: transparent;
    color: var(--gold);
    font-weight: 700;
  }

  /* Empty state */
  .search-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    gap: 0.75rem;
  }
  .search-empty-icon { font-size: 3rem; }
  .search-empty-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
  }
  .search-empty-sub {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .search-empty-sub strong { color: var(--text-primary); }