/* ===== Serasomovil extras.css v6 ===== */

/* Reveal delays */
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* Hamburger active state */
.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Navbar scrolled state */
.navbar.scrolled {
  background: rgba(4,8,15,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,212,200,0.1);
}

/* Active nav underline */
.nav-link.active::after {
  content: ''; display: block; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--neon));
  border-radius: 2px; margin-top: 3px;
}

/* Announcement sweep glow */
.announcement-bar::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0,212,200,0.06), transparent);
  animation: announceSweep 4s ease-in-out infinite;
}
@keyframes announceSweep { 0%,100%{opacity:0} 50%{opacity:1} }

/* Contact form submitted */
.contact-form.submitted #formSubmitBtn {
  background: linear-gradient(135deg, #10b981, #047857);
  box-shadow: 0 4px 18px rgba(16,185,129,0.35);
}

/* Product card loading skeleton (for future use) */
.product-card.skeleton .product-img,
.product-card.skeleton .product-info h4,
.product-card.skeleton .price-main {
  background: linear-gradient(90deg, var(--navy-lt) 25%, var(--navy-2) 50%, var(--navy-lt) 75%);
  background-size: 200% 100%;
  animation: shimmerLoad 1.5s infinite;
  border-radius: 4px; color: transparent;
}
@keyframes shimmerLoad { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* Mobile nav overlay close hint */
@media (max-width: 768px) {
  .nav-links.open { animation: navFadeIn 0.25s ease; }
  @keyframes navFadeIn { from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:translateY(0)} }
}

/* Hero grid lines overlay */
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(0,212,200,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,200,0.035) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

/* Why card colored top bar */
.why-card:nth-child(1) { --wc: #3b82f6; }
.why-card:nth-child(2) { --wc: #10b981; }
.why-card:nth-child(3) { --wc: #f59e0b; }
.why-card:nth-child(4) { --wc: #8b5cf6; }

/* Category icon custom color variables via gradient */
#cat-displays    .cat-slide-icon { --c1: #3b82f6; --c2: #1d4ed8; }
#cat-baterias    .cat-slide-icon { --c1: #10b981; --c2: #047857; }
#cat-tapas       .cat-slide-icon { --c1: #f59e0b; --c2: #b45309; }
#cat-flexores    .cat-slide-icon { --c1: #8b5cf6; --c2: #6d28d9; }
#cat-herramientas .cat-slide-icon{ --c1: #ef4444; --c2: #b91c1c; }

/* ===== MOBILE OPTIMIZATIONS v6.1 ===== */

/* Ocultar top-bar en móvil (muy pequeño para leer) */
@media (max-width: 768px) {
  .top-bar { display: none; }
  
  /* Buscador: ocultar en móvil pequeño, evitar overflow */
  .nav-search { display: none; }
  
  /* Logo más compacto */
  .logo-name { font-size: 18px; }
  .logo-icon  { width: 38px; height: 38px; }
  
  /* Botón WA en navbar: mantiene forma rectangular con texto visible */
  .btn-whatsapp { padding: 9px 14px; border-radius: var(--radius); font-size: 12px; white-space: nowrap; }
  .btn-whatsapp span { display: inline; }

  /* Carrito: siempre visible en móvil */
  .cart-btn { display: flex !important; flex-shrink: 0; width: 44px; height: 44px; }
  
  /* Touch targets mínimo 44px */
  .cat-bar-link { padding: 13px 14px; min-height: 44px; }
  .filter-btn   { padding: 10px 16px; min-height: 44px; }
  .brand-btn    { padding: 14px 18px; min-height: 52px; }
  .model-chip   { padding: 9px 16px;  min-height: 40px; }
  .btn-cotizar  { padding: 14px; font-size: 14px; min-height: 48px; }
  .btn-primary  { padding: 14px 24px; min-height: 48px; }
  .btn-secondary { padding: 13px 22px; min-height: 48px; }
  
  /* WhatsApp flotante más grande en móvil */
  .whatsapp-float { width: 64px; height: 64px; bottom: 20px; right: 16px; }
  
  /* Scroll top más lejos del WA */
  .scroll-top { bottom: 100px; right: 16px; width: 46px; height: 46px; }
  
  /* Hero padding seguro */
  .hero { padding: 90px 16px 50px; }
  
  /* Sections padding reducido en móvil */
  .categories-section,
  .brand-filter-section,
  .products-section,
  .why-section,
  .testimonials-section { padding: 50px 0; }
  .contact-section { padding: 50px 0; }
  
  /* Container padding lateral */
  .container { padding: 0 16px; }
  
  /* Form más usable en móvil */
  .contact-form-wrap { padding: 24px 16px; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 14px; font-size: 16px; /* evita zoom en iOS */ }
  
  /* Footer simplificado */
  .footer { padding: 40px 0 20px; }
  
  /* Announcement bar más alto para leer */
  .announcement-bar { font-size: 11.5px; padding: 9px 36px 9px 0; }
  
  /* Productos grid ajustado */
  .products-grid { gap: 12px; }
  .product-info { padding: 12px; }
  .price-main { font-size: 18px; }
  
  /* Categorías slider: scroll horizontal suave */
  .cat-slider {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding-bottom: 8px;
  }
  .cat-slider::-webkit-scrollbar { display: none; }
  .cat-slide {
    flex: 0 0 calc(50% - 6px);
    scroll-snap-align: start;
    min-width: 140px;
  }
  
  /* Brand filter: scroll horizontal */
  .brand-filter-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    padding-bottom: 4px;
  }
  .brand-filter-grid::-webkit-scrollbar { display: none; }
  .brand-btn { flex-shrink: 0; }
  
  /* Hero stats en 2 columnas */
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 8px; }
  .stat-divider { display: none; }
  .stat-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 10px 8px; }
  
  /* Sección "por qué" en columna */
  .why-grid { grid-template-columns: 1fr; gap: 14px; }
  .why-card { padding: 24px 18px; }
}

/* Teléfonos muy pequeños (< 380px) */
@media (max-width: 380px) {
  .cat-slide { flex: 0 0 calc(55% - 6px); }
  .hero-text h1 { font-size: 32px; }
  .hero-ctas { flex-direction: column; }
  .products-grid { grid-template-columns: 1fr; }
}

/* Tablet landscape (768–1000px): buscador visible de nuevo */
@media (min-width: 769px) and (max-width: 1000px) {
  .nav-search { display: block; max-width: 300px; }
  .btn-whatsapp span { display: inline; }
  .btn-whatsapp { padding: 8px 14px; border-radius: var(--radius); }
}

/* Reducir animaciones en modo bajo consumo / preferencia */
@media (prefers-reduced-motion: reduce) {
  .mesh-orb, .orbit-ring, .badge-dot, .wa-pulse,
  .scroll-arrow, .hero-scroll-hint, .announcement-content {
    animation: none !important;
  }
  .reveal { transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* Mejorar tap highlight en iOS */
a, button { -webkit-tap-highlight-color: rgba(0,212,200,0.15); }

/* ===== SWIPE HINT – Mobile Scroll Indicator ===== */
@media (max-width: 768px) {

  /* Wrapper con fade lateral derecho indicando más contenido */
  .cat-slider-wrap, .brand-filter-section .container {
    position: relative;
  }

  /* Sombra gradiente al lado derecho */
  .cat-slider-wrap::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 8px;
    width: 60px;
    background: linear-gradient(to right, transparent, var(--bg) 85%);
    pointer-events: none;
    z-index: 2;
    border-radius: 0 16px 16px 0;
    transition: opacity 0.4s ease;
  }
  .cat-slider-wrap.scrolled-end::after { opacity: 0; }

  /* Indicador de swipe flotante sobre el slider de categorías */
  .swipe-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    position: absolute;
    right: 12px;
    top: -28px;
    font-size: 11px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 0.04em;
    z-index: 10;
    animation: swipeHintBounce 1.8s ease-in-out 0.6s 3;
    opacity: 0;
    animation-fill-mode: both;
  }
  .swipe-hint svg {
    animation: swipeArrowSlide 1.8s ease-in-out 0.6s 3;
    animation-fill-mode: both;
  }
  @keyframes swipeHintBounce {
    0%   { opacity: 0; transform: translateX(0); }
    15%  { opacity: 1; transform: translateX(0); }
    50%  { opacity: 1; transform: translateX(-6px); }
    85%  { opacity: 1; transform: translateX(4px); }
    100% { opacity: 0; transform: translateX(0); }
  }
  @keyframes swipeArrowSlide {
    0%,100% { transform: translateX(0); }
    50%      { transform: translateX(-8px); }
  }

  /* Dots de paginación bajo el slider de categorías */
  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
  }
  .slider-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--border-dk);
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .slider-dot.active {
    background: var(--cyan);
    width: 20px;
    border-radius: 3px;
    box-shadow: 0 0 8px var(--cyan-glow);
  }

  /* Brand filter scroll hint con flecha animada */
  .brand-scroll-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 12px;
    animation: fadeHint 0.8s ease 1s both;
  }
  @keyframes fadeHint {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .brand-scroll-hint .hint-arrow {
    display: inline-flex;
    animation: hintArrowPulse 1.5s ease-in-out 1.5s 4;
    animation-fill-mode: both;
  }
  @keyframes hintArrowPulse {
    0%,100% { transform: translateX(0); opacity: 0.5; }
    50%      { transform: translateX(6px); opacity: 1; }
  }

  /* Fade derecho brand filter */
  .brand-filter-grid-wrap {
    position: relative;
  }
  .brand-filter-grid-wrap::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 50px;
    background: linear-gradient(to right, transparent, var(--navy-mid) 90%);
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.4s ease;
  }
  .brand-filter-grid-wrap.at-end::after { opacity: 0; }
}

/* Ocultar hints en desktop */
@media (min-width: 769px) {
  .swipe-hint, .slider-dots, .brand-scroll-hint, .brand-filter-grid-wrap::after { display: none !important; }
  .cat-slider-wrap::after { display: none !important; }
}

/* ===== LOGO IMAGE ===== */
.logo-icon-img {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 10px;
  overflow: hidden;
  width: 44px; height: 44px;
}
.logo-icon-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  border-radius: inherit;
}
/* Hover: ligero brillo en lugar de rotación */
.logo:hover .logo-icon-img {
  filter: drop-shadow(0 0 8px rgba(0,212,200,0.5));
}

/* ===== FIX: Evita scroll horizontal en movil que desplaza botones fixed ===== */
@media (max-width: 768px) {
  body, html {
    overflow-x: hidden !important;
    max-width: 100vw;
  }
  /* El boton WA siempre visible en viewport */
  .whatsapp-float {
    position: fixed !important;
    right: 16px !important;
    bottom: 20px !important;
    transform: translateZ(0) !important;
  }
  /* Scroll-top igualmente fijo */
  .scroll-top {
    position: fixed !important;
    right: 16px !important;
    transform: translateZ(0) !important;
  }
  /* Evita que elementos anchos causen overflow */
  .announcement-content { width: max-content; }
  .cat-bar-inner, .brand-filter-grid {
    max-width: none;
    /* El overflow-x:auto esta bien, pero el contenedor no debe crecer mas del viewport */
  }
}

/* ===== CARRITO FLOTANTE EN MÓVIL ===== */
@media (max-width: 768px) {

  /* Ocultar el botón del carrito del navbar en móvil */
  .cart-btn { display: none !important; }

  /* Crear botón flotante fijo en la esquina inferior izquierda */
  .cart-btn-float {
    display: flex !important;
    position: fixed;
    left: 16px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--cyan);
    color: var(--navy-dk);
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,212,200,0.45), 0 2px 8px rgba(0,0,0,0.4);
    z-index: 9997;
    position: fixed !important;
    transform: translateZ(0);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .cart-btn-float:active {
    transform: translateZ(0) scale(0.92);
    box-shadow: 0 2px 10px rgba(0,212,200,0.3);
  }
  .cart-btn-float .cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #f97316;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--navy-dk);
  }
}

/* En desktop el flotante no aparece */
@media (min-width: 769px) {
  .cart-btn-float { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   MEJORAS v7 — % Descuento · Stock · Quick View · Live Search ·
               Hover-reveal · Countdown · WA Quick Buy
═══════════════════════════════════════════════════════════════════ */

/* ── 1. Discount Badge ─────────────────────────────────────────── */
.discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;
  box-shadow: 0 2px 8px rgba(239,68,68,0.4);
  animation: badgePop 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes badgePop {
  from { transform: scale(0.6); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

/* ── 2. Stock Indicator ─────────────────────────────────────────── */
.stock-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: #10b981;
  margin: 6px 0 8px;
  letter-spacing: 0.01em;
}
.stock-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
  animation: stockPulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(16,185,129,0.5);
}
@keyframes stockPulse {
  0%  { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
  70% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
  100%{ box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

/* ── 3. Product Actions Wrap (hover-reveal) ─────────────────────── */
.product-actions-wrap {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  align-items: center;
}
.product-actions-wrap .btn-add-cart {
  flex: 1;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 700;
}

/* WhatsApp one-click button */
.btn-wa-quick {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #16BE45, #0fa832);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 3px 10px rgba(22,190,69,0.35);
}
.btn-wa-quick:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(22,190,69,0.5);
}
.btn-wa-quick:active { transform: scale(0.95); }

/* Hover-reveal: botones aparecen con slide-up al hacer hover en .product-card */
@media (hover: hover) {
  .product-card .product-actions-wrap {
    transform: translateY(8px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .product-card:hover .product-actions-wrap {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Quick view hint en la imagen */
.quick-view-hint {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding: 8px;
  transform: translateY(100%);
  transition: transform 0.22s ease;
  letter-spacing: 0.04em;
}
.product-card:hover .quick-view-hint { transform: translateY(0); }
.product-img { position: relative; overflow: hidden; cursor: pointer; }
.product-img:hover { filter: brightness(0.92); }

/* ── 4. Live Search Dropdown ─────────────────────────────────────── */
.nav-search { position: relative; }

.live-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: #0d1829;
  border: 1px solid rgba(0,212,200,0.2);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,212,200,0.08);
  z-index: 9999;
  overflow: hidden;
  max-height: 400px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.live-search-dropdown.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.ls-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ls-item:hover { background: rgba(0,212,200,0.07); }
.ls-img {
  width: 48px; height: 48px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.ls-img img { width: 100%; height: 100%; object-fit: cover; }
.ls-info {
  display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0;
}
.ls-brand { font-size: 10px; text-transform: uppercase; color: var(--cyan); font-weight: 700; letter-spacing: 0.06em; }
.ls-name  { font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ls-price { font-size: 12px; color: #10b981; font-weight: 700; }
.ls-add {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: none;
  background: var(--cyan);
  color: var(--navy-dk);
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: transform 0.15s;
}
.ls-add:hover { transform: scale(1.1); }
.ls-see-all {
  display: block;
  text-align: center;
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  text-decoration: none;
  background: rgba(0,212,200,0.05);
  transition: background 0.15s;
}
.ls-see-all:hover { background: rgba(0,212,200,0.12); }
.ls-no-results {
  padding: 16px 14px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}
.ls-no-results a { color: var(--cyan); text-decoration: none; }

/* ── 5. Quick View Modal ─────────────────────────────────────────── */
.quick-view-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 10000;
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s ease;
}
.quick-view-overlay.open,
#quickViewModal.open ~ .quick-view-overlay { opacity: 1; pointer-events: all; }

#quickViewOverlay.open { opacity: 1; pointer-events: all; }

.quick-view-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -48%) scale(0.94);
  width: min(900px, 95vw);
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(145deg, #0d1829, #0a111e);
  border: 1px solid rgba(0,212,200,0.18);
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(0,212,200,0.06);
  z-index: 10001;
  opacity: 0; pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s ease;
}
.quick-view-modal.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: all;
}
.qv-close {
  position: absolute; top: 16px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 22px; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, transform 0.15s;
  z-index: 2;
}
.qv-close:hover { background: rgba(239,68,68,0.2); transform: rotate(90deg); }
.qv-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 340px;
}
.qv-img-col {
  border-radius: 24px 0 0 24px;
  overflow: hidden;
  background: var(--navy);
}
.qv-img-wrap {
  width: 100%; height: 100%; min-height: 320px;
  display: flex; align-items: center; justify-content: center;
}
.qv-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.qv-emoji-fallback {
  width: 100%; height: 100%; min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  font-size: 72px;
}
.qv-info-col { padding: 32px 28px 28px; display: flex; flex-direction: column; gap: 10px; }
.qv-brand { font-size: 11px; text-transform: uppercase; color: var(--cyan); font-weight: 800; letter-spacing: 0.1em; }
.qv-name { font-size: 20px; font-weight: 800; color: var(--text); line-height: 1.25; margin: 0; }
.qv-compat { display: flex; flex-wrap: wrap; gap: 6px; }
.qv-compat span {
  background: rgba(0,212,200,0.08);
  border: 1px solid rgba(0,212,200,0.18);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 11px;
  color: var(--cyan);
  font-weight: 600;
}
.qv-stock {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; color: #10b981;
}
.qv-price-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.qv-price { font-size: 28px; font-weight: 900; color: var(--cyan); }
.qv-old-price { font-size: 16px; color: var(--text-muted); text-decoration: line-through; }
.qv-actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; padding-top: 8px; }
.btn-wa-modal {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 20px;
  border-radius: 14px;
  border: 2px solid #16BE45;
  background: transparent;
  color: #16BE45;
  font-size: 14px; font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  font-family: inherit;
}
.btn-wa-modal:hover { background: #16BE45; color: #fff; }

@media (max-width: 640px) {
  .qv-body { grid-template-columns: 1fr; }
  .qv-img-col { border-radius: 24px 24px 0 0; min-height: 220px; }
  .qv-img-wrap { min-height: 220px; }
  .qv-info-col { padding: 20px 18px 24px; }
  .qv-price { font-size: 22px; }
}

/* ── 6. Offer Countdown ──────────────────────────────────────────── */
.countdown-label {
  font-size: 12px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.countdown-units {
  display: flex; align-items: center; gap: 8px;
}
.countdown-unit {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(0,212,200,0.08);
  border: 1px solid rgba(0,212,200,0.2);
  border-radius: 10px;
  padding: 8px 14px;
  min-width: 54px;
}
.cu-num {
  font-size: 26px; font-weight: 900; color: var(--cyan);
  line-height: 1; font-variant-numeric: tabular-nums;
}
.cu-lbl { font-size: 10px; color: var(--text-muted); font-weight: 600; margin-top: 2px; }
.cu-sep { font-size: 22px; font-weight: 900; color: var(--cyan); opacity: 0.5; }
#offerCountdownWrap {
  margin: 16px 0 8px;
}
.countdown-expired {
  font-size: 14px; color: var(--text-muted); font-style: italic;
}

/* ── Announcement bar WhatsApp number update ─────────────────────── */

