/* ==========================================================================
   SSi-Licencias - Estilos Base y Diseño Corporativo
   Coherente con Sorti Soluciones Informáticas
   ========================================================================== */

/* 1. Definición de Variables y Tokens de Diseño */
:root {
  color-scheme: dark;

  /* Colores Corporativos de Sorti */
  --color-base: #07111b;       /* Azul marino/pizarra muy oscuro (fondo) */
  --color-panel: #0c1824;      /* Fondo de paneles y tarjetas */
  --color-panel2: #102132;     /* Panel secundario para mayor contraste */
  --color-line: #1b3144;       /* Bordes y separadores metálicos */
  --color-text: #eaf6ff;       /* Texto principal (blanco con matiz cian) */
  --color-muted: #97adc0;      /* Texto secundario y etiquetas */
  --color-cyan: #5ee7ff;       /* Cian brillante (color primario, acento) */
  --color-cyan-dim: #22c7ee;   /* Cian secundario/medio para estados hover */
  --color-white: #ffffff;

  /* Sombras y Luces */
  --shadow-glow: 0 0 0 1px rgba(94, 231, 255, 0.12), 0 20px 60px rgba(7, 17, 27, 0.55);
  --shadow-card: 0 14px 40px rgba(0, 0, 0, 0.28);
  
  /* Fuentes */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* 2. Reset General y Estilos Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-base);
  color: var(--color-text);
  font-family: var(--font-main);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* 3. Selección y Enlaces Accesibles */
::selection {
  background-color: rgba(94, 231, 255, 0.3);
  color: var(--color-white);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background-color: var(--color-cyan);
  color: var(--color-base);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  z-index: 999;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--color-white);
}

/* Enlaces generales */
a {
  color: var(--color-cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-cyan-dim);
}

/* 4. Cabecera y Menú de Navegación */
.header-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(7, 17, 27, 0.85); /* base con opacidad */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(27, 49, 68, 0.5); /* line con opacidad */
  transition: background-color 0.3s ease, padding 0.3s ease;
  padding: 1.25rem 0;
}

/* Al hacer scroll, la cabecera es más compacta y opaca */
.header-navbar.scrolled {
  background-color: rgba(7, 17, 27, 0.95);
  padding: 0.75rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logotipo */
.logo-link {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
}

.logo-text {
  color: var(--color-cyan);
  font-size: 1.35rem;
}

.logo-subtext {
  color: var(--color-white);
  font-weight: 400;
}

/* Menú Navegación Escritorio */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--color-muted);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-cyan);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--color-cyan);
}

.nav-link:hover::after {
  width: 100%;
}

/* Botón de Contacto de Navegación */
.btn-contact-nav {
  border: 1px solid rgba(94, 231, 255, 0.3);
  background-color: rgba(94, 231, 255, 0.08);
  color: var(--color-cyan) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease !important;
}

.btn-contact-nav::after {
  display: none;
}

.btn-contact-nav:hover {
  background-color: var(--color-cyan);
  color: var(--color-base) !important;
  box-shadow: 0 0 15px rgba(94, 231, 255, 0.4);
  transform: translateY(-1px);
}

/* Hamburguesa Menú Móvil */
.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--color-line);
  color: var(--color-text);
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
}

.menu-btn:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.icon-hamburger {
  width: 24px;
  height: 24px;
}

/* 5. Menú Móvil Drawer (Lateral o Desplegable) */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 75px; /* Altura aproximada de la cabecera */
  left: 0;
  width: 100%;
  height: calc(100vh - 75px);
  background-color: var(--color-panel);
  z-index: 90;
  border-top: 1px solid var(--color-line);
  padding: 2rem 1.5rem;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  color: var(--color-muted);
  font-size: 1.15rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(27, 49, 68, 0.3);
}

.mobile-nav-link:hover {
  color: var(--color-cyan);
}

.mobile-btn-contact {
  text-align: center;
  background-color: rgba(94, 231, 255, 0.1);
  border: 1px solid var(--color-cyan);
  color: var(--color-cyan);
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 1rem;
}

.mobile-btn-contact:hover {
  background-color: var(--color-cyan);
  color: var(--color-base);
}

/* 6. Sección Hero principal */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, #0c1824 0%, #07111b 100%);
}

/* Cuadrícula tecnológica de fondo */
.tech-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(94, 231, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 231, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.65;
  pointer-events: none;
}

/* Efectos Glow Radiales */
.glow-radial {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.15;
}

.glow-left {
  width: 450px;
  height: 450px;
  background: var(--color-cyan);
  top: -10%;
  left: -10%;
}

.glow-right {
  width: 500px;
  height: 500px;
  background: var(--color-cyan-dim);
  bottom: -15%;
  right: -5%;
}

.hero-container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  text-align: center;
}

.hero-text-block {
  max-width: 800px;
  margin: 0 auto;
}

/* Insignia corporativa */
.badge-corporate {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(94, 231, 255, 0.08);
  border: 1px solid rgba(94, 231, 255, 0.25);
  color: var(--color-cyan);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-cyan);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* Título */
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.highlight-text {
  color: var(--color-cyan);
  background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-cyan-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtítulo */
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.inline-brand-link {
  font-weight: 600;
  border-bottom: 1px dashed rgba(94, 231, 255, 0.5);
  padding-bottom: 1px;
}

/* Acciones (Botones) */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-cyan);
  color: var(--color-base);
  box-shadow: 0 4px 20px rgba(94, 231, 255, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-white);
  color: var(--color-base);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
  transform: translateX(4px);
}

/* 7. Footer (Pie de página) */
.main-footer {
  margin-top: auto;
  background-color: var(--color-panel);
  border-top: 1px solid var(--color-line);
  padding: 4.5rem 0 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
  }
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo .logo-text {
  font-size: 1.6rem;
}

.footer-tagline {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-col-title {
  color: var(--color-white);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Rejilla de contacto en el footer */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tarjetas de contacto individuales */
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background-color: var(--color-panel2);
  border: 1px solid var(--color-line);
  border-radius: 12px;
  color: var(--color-text);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-card);
}

.contact-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: rgba(27, 49, 68, 0.4);
  color: var(--color-muted);
  transition: all 0.3s ease;
}

.contact-icon {
  width: 20px;
  height: 20px;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-white);
}

.contact-value {
  font-size: 0.75rem;
  color: var(--color-muted);
}

/* Estilos individuales por canal de soporte */
.whatsapp-card:hover {
  border-color: #25d366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
  transform: translateY(-2px);
}

.whatsapp-card:hover .contact-icon-wrapper {
  background-color: rgba(37, 211, 102, 0.15);
  color: #25d366;
}

.telegram-card:hover {
  border-color: #0088cc;
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.15);
  transform: translateY(-2px);
}

.telegram-card:hover .contact-icon-wrapper {
  background-color: rgba(0, 136, 204, 0.15);
  color: #0088cc;
}

.email-card:hover {
  border-color: var(--color-cyan);
  box-shadow: 0 4px 15px rgba(94, 231, 255, 0.15);
  transform: translateY(-2px);
}

.email-card:hover .contact-icon-wrapper {
  background-color: rgba(94, 231, 255, 0.15);
  color: var(--color-cyan);
}

.phone-card:hover {
  border-color: var(--color-cyan-dim);
  box-shadow: 0 4px 15px rgba(34, 199, 238, 0.15);
  transform: translateY(-2px);
}

.phone-card:hover .contact-icon-wrapper {
  background-color: rgba(34, 199, 238, 0.15);
  color: var(--color-cyan-dim);
}

/* Parte baja de Copyright */
.footer-bottom {
  margin-top: 4.5rem;
  border-top: 1px solid var(--color-line);
  padding: 1.5rem 0;
  background-color: rgba(7, 17, 27, 0.4);
}

.footer-bottom-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--color-muted);
}

@media (min-width: 600px) {
  .footer-bottom-container {
    flex-direction: row;
  }
}

.footer-brand-link {
  color: var(--color-cyan);
  font-weight: 600;
}

.footer-brand-link:hover {
  color: var(--color-cyan-dim);
  text-decoration: underline;
}

/* Formulario de Contacto Moderno */
.contact-form {
  margin-top: 2rem;
  background-color: var(--color-panel2);
  border: 1px solid var(--color-line);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.form-title {
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-label {
  color: var(--color-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input,
.form-textarea {
  background-color: rgba(7, 17, 27, 0.5); /* fondo oscuro transparente */
  border: 1px solid var(--color-line);
  color: var(--color-text);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(151, 173, 192, 0.4); /* muted transparente */
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-cyan);
  box-shadow: 0 0 10px rgba(94, 231, 255, 0.15);
  background-color: rgba(7, 17, 27, 0.8);
}

.form-textarea {
  resize: vertical;
}

.btn-form-submit {
  width: 100%;
  justify-content: center;
  background-color: var(--color-cyan);
  color: var(--color-base);
  border: none;
  border-radius: 8px;
  padding: 0.85rem;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.btn-form-submit:hover {
  background-color: var(--color-white);
  color: var(--color-base);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

/* Acciones de Navegación (Carrito + Hamburguesa) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.cart-btn {
  position: relative;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.cart-btn:hover {
  color: var(--color-cyan);
  background-color: rgba(94, 231, 255, 0.05);
  border-color: rgba(94, 231, 255, 0.1);
}

.icon-cart {
  width: 24px;
  height: 24px;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--color-cyan);
  color: var(--color-base);
  font-size: 0.7rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(94, 231, 255, 0.6);
  border: 1.5px solid var(--color-base);
}

@keyframes cart-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

.cart-btn.bounce-animation {
  animation: cart-bounce 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Secciones de Catálogo y Cuadrícula de Productos */
.catalog-section {
  padding: 5.5rem 0;
  position: relative;
}

/* Alternancia de fondos para dar dinamismo */
#catalogo {
  background-color: var(--color-base);
}

#equipos {
  background-color: var(--color-panel);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

#gadgets {
  background-color: var(--color-base);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-cyan) 0%, var(--color-cyan-dim) 100%);
  border-radius: 9999px;
}

/* Rejilla responsiva */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tarjeta de Producto Glassmorphism */
.product-card {
  background-color: var(--color-panel2);
  border: 1px solid var(--color-line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-card);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(94, 231, 255, 0.35);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), 0 0 20px rgba(94, 231, 255, 0.08);
}

/* Espacio de la Imagen */
.product-image-wrapper {
  aspect-ratio: 16 / 10;
  width: 100%;
  background-color: rgba(7, 17, 27, 0.45);
  border-bottom: 1px solid var(--color-line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: background-color 0.3s ease;
}

.product-card:hover .product-image-placeholder {
  background-color: rgba(94, 231, 255, 0.02);
}

.placeholder-icon {
  width: 44px;
  height: 44px;
  color: rgba(151, 173, 192, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .placeholder-icon {
  color: var(--color-cyan);
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(94, 231, 255, 0.45));
}

/* Detalles del Producto */
.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  color: var(--color-white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-description {
  color: var(--color-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Pie de la tarjeta */
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid rgba(27, 49, 68, 0.3);
  padding-top: 1rem;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-cyan);
  letter-spacing: -0.01em;
}

/* Botón Añadir al Carrito */
.btn-add-cart {
  background-color: rgba(94, 231, 255, 0.08);
  border: 1px solid rgba(94, 231, 255, 0.25);
  color: var(--color-cyan);
  padding: 0.5rem 1.15rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-add-cart:hover {
  background-color: var(--color-cyan);
  color: var(--color-base);
  box-shadow: 0 0 15px rgba(94, 231, 255, 0.4);
  transform: translateY(-1px);
}

.icon-basket {
  width: 14px;
  height: 14px;
}

/* Sección Configurador y Asistente de Pasos (Wizard) */
.configurador-section {
  padding: 5.5rem 0;
  background-color: var(--color-base);
  position: relative;
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: auto auto;
  gap: 3.5rem 1rem;
  position: relative;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5rem;
  padding: 1.5rem 0;
}

/* El carril continuo de la cadena de montaje (Racetrack track) */
.wizard-progress::before {
  content: '';
  position: absolute;
  top: 42px; /* Alineado verticalmente con el centro de las píldoras de la fila 1 */
  bottom: 42px; /* Alineado verticalmente con el centro de las píldoras de la fila 2 */
  left: 60px;
  right: 60px;
  border: 3px solid var(--color-line);
  border-radius: 40px;
  z-index: 1;
  pointer-events: none;
}

/* Asignación de posiciones de rejilla para simular el circuito continuo (14 pasos) */
.progress-step[data-step="1"] { grid-row: 1; grid-column: 1; }
.progress-step[data-step="2"] { grid-row: 1; grid-column: 2; }
.progress-step[data-step="3"] { grid-row: 1; grid-column: 3; }
.progress-step[data-step="4"] { grid-row: 1; grid-column: 4; }
.progress-step[data-step="5"] { grid-row: 1; grid-column: 5; }
.progress-step[data-step="6"] { grid-row: 1; grid-column: 6; }
.progress-step[data-step="7"] { grid-row: 1; grid-column: 7; }

.progress-step[data-step="8"] { grid-row: 2; grid-column: 7; }
.progress-step[data-step="9"] { grid-row: 2; grid-column: 6; }
.progress-step[data-step="10"] { grid-row: 2; grid-column: 5; }
.progress-step[data-step="11"] { grid-row: 2; grid-column: 4; }
.progress-step[data-step="12"] { grid-row: 2; grid-column: 3; }
.progress-step[data-step="13"] { grid-row: 2; grid-column: 2; }
.progress-step[data-step="14"] { grid-row: 2; grid-column: 1; }

/* Ocultar las líneas conectoras del modelo previo */
.progress-line {
  display: none;
}

.progress-step {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  outline: none;
}

.step-pill {
  background-color: var(--color-panel2);
  border: 1px solid var(--color-line);
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.55rem 1.25rem;
  border-radius: 9999px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  user-select: none;
  min-width: 90px;
}

/* Estado Activo - Azul Neón */
.progress-step.active .step-pill {
  background-color: rgba(94, 231, 255, 0.1);
  border-color: var(--color-cyan);
  color: var(--color-cyan);
  box-shadow: 0 0 15px rgba(94, 231, 255, 0.6), inset 0 0 8px rgba(94, 231, 255, 0.3);
  text-shadow: 0 0 8px rgba(94, 231, 255, 0.6);
}

/* Estado Validado - Verde Neón */
.progress-step.validated .step-pill {
  background-color: rgba(37, 211, 102, 0.1);
  border-color: #25d366;
  color: #25d366;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.5), inset 0 0 8px rgba(37, 211, 102, 0.25);
  text-shadow: 0 0 8px rgba(37, 211, 102, 0.5);
}

/* Estado Inválido / Pendiente al finalizar - Rojo Neón */
.progress-step.invalid .step-pill {
  background-color: rgba(255, 74, 74, 0.1);
  border-color: #ff4a4a;
  color: #ff4a4a;
  box-shadow: 0 0 15px rgba(255, 74, 74, 0.6), inset 0 0 8px rgba(255, 74, 74, 0.3);
  text-shadow: 0 0 8px rgba(255, 74, 74, 0.6);
}

.progress-step:hover .step-pill {
  border-color: var(--color-cyan);
  color: var(--color-cyan);
  background-color: rgba(94, 231, 255, 0.05);
}

.progress-step.active:hover .step-pill {
  background-color: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-base);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  text-shadow: none;
}

@media (max-width: 768px) {
  .wizard-progress {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 1rem;
    gap: 0.75rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .wizard-progress::before {
    display: none;
  }
  .progress-step {
    grid-row: auto !important;
    grid-column: auto !important;
    flex-shrink: 0;
  }
}

/* Layout del Configurador */
.configurador-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 992px) {
  .configurador-layout {
    grid-template-columns: 7fr 3fr;
  }
}

.configurador-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
  animation: stepFadeIn 0.4s ease-out;
}

@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-title {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.step-subtitle {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.options-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Tarjetas de Opciones */
.option-card {
  background-color: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.option-card:hover {
  border-color: rgba(94, 231, 255, 0.3);
  background-color: var(--color-panel2);
  transform: translateX(5px);
}

.option-card.active {
  border-color: var(--color-cyan);
  background-color: rgba(94, 231, 255, 0.04);
  box-shadow: 0 0 20px rgba(94, 231, 255, 0.05);
}

.option-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: rgba(27, 49, 68, 0.4);
  color: var(--color-muted);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.option-card.active .option-icon-wrapper {
  background-color: rgba(94, 231, 255, 0.15);
  color: var(--color-cyan);
}

.option-icon {
  width: 24px;
  height: 24px;
}

.option-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.option-name {
  color: var(--color-white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.option-desc {
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.option-price {
  color: var(--color-cyan);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.badge-recommended {
  background-color: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
  padding: 0.15rem 0.55rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Contenedor del Buscador de Catálogo (Fase 4) */
.search-catalog-container {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}

.search-catalog-container.show {
  max-height: 80px;
  opacity: 1;
  margin-top: 1.5rem;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 1.25rem;
  width: 20px;
  height: 20px;
  color: var(--color-muted);
  pointer-events: none;
  transition: color 0.3s ease;
}

.search-catalog-input {
  width: 100%;
  background-color: var(--color-panel2);
  border: 1px solid var(--color-line);
  color: var(--color-white);
  padding: 0.85rem 1rem 0.85rem 3rem;
  border-radius: 12px;
  font-size: 0.92rem;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  outline: none;
}

.search-catalog-input::placeholder {
  color: var(--color-muted);
  opacity: 0.8;
}

.search-catalog-input:focus {
  border-color: var(--color-cyan);
  background-color: rgba(94, 231, 255, 0.02);
  box-shadow: 0 0 15px rgba(94, 231, 255, 0.15), inset 0 0 8px rgba(94, 231, 255, 0.05);
}

.search-catalog-input:focus ~ .search-icon {
  color: var(--color-cyan);
}

/* Botones de Navegación del Asistente */
.wizard-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
  border-top: 1px solid var(--color-line);
  padding-top: 2rem;
}

.btn-prev {
  background-color: transparent;
  border: 1px solid var(--color-line);
  color: var(--color-text);
  padding: 0.75rem 2rem;
}

.btn-prev:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
}

.btn-prev:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.btn-next {
  background-color: var(--color-cyan);
  color: var(--color-base);
  padding: 0.75rem 2.25rem;
  box-shadow: 0 4px 15px rgba(94, 231, 255, 0.2);
}

.btn-next:hover {
  background-color: var(--color-white);
  color: var(--color-base);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.35);
}

/* Columna Lateral (Sidebar) de Presupuesto */
.configurador-sidebar {
  position: sticky;
  top: 95px;
}

.budget-panel {
  background-color: var(--color-panel2);
  border: 1px solid var(--color-line);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.budget-title {
  color: var(--color-white);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.budget-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.budget-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  transition: all 0.3s ease;
}

.budget-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.item-step-label {
  color: var(--color-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.item-name {
  color: var(--color-white);
  font-weight: 600;
}

.item-price {
  color: var(--color-cyan);
  font-weight: 700;
}

.budget-item.empty .item-name {
  color: rgba(151, 173, 192, 0.35);
  font-style: italic;
  font-weight: 400;
}

.budget-item.empty .item-price {
  color: rgba(151, 173, 192, 0.2);
  font-weight: 400;
}

.budget-total-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed var(--color-line);
  border-bottom: 1px dashed var(--color-line);
  padding: 1.25rem 0;
  margin-bottom: 2rem;
}

.total-label {
  color: var(--color-muted);
  font-weight: 600;
}

.total-price {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--color-cyan);
  text-shadow: 0 0 10px rgba(94, 231, 255, 0.25);
}

.btn-checkout-config {
  width: 100%;
  justify-content: center;
  background-color: var(--color-cyan);
  color: var(--color-base);
  box-shadow: 0 4px 20px rgba(94, 231, 255, 0.3);
  padding: 0.95rem;
  font-size: 0.95rem;
}

.btn-checkout-config:hover {
  background-color: var(--color-white);
  color: var(--color-base);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
}

/* 8. Adaptabilidad Responsive general (Media Queries) */
@media (max-width: 991px) {
  .nav-menu {
    display: none; /* Oculta navegación de escritorio */
  }

  .menu-btn {
    display: block; /* Muestra botón hamburguesa */
  }

  .mobile-drawer {
    display: block; /* Habilita el contenedor del drawer móvil */
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .badge-corporate {
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* 9. Estilos del Dropdown de Software Adicional, Aviso de Montaje y Botones de Catálogo Extendido */
.catalog-more-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
  width: 100%;
}

.btn-more-catalog {
  padding: 0.8rem 2.5rem;
  font-size: 0.95rem;
}

.so-dropdown-container {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 0;
  width: 100%;
}

.so-dropdown-container.show {
  max-height: 800px;
  opacity: 1;
  margin-top: 1.5rem;
}

.so-dropdown-menu {
  list-style: none;
  padding: 1.5rem;
  background: rgba(12, 24, 36, 0.7);
  border: 1px solid var(--color-line);
  border-radius: 12px;
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

.so-submenu-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-cyan);
  margin-bottom: 0.5rem;
  border-left: 3px solid var(--color-cyan);
  padding-left: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.so-submenu-title.search-title {
  margin-top: 1.25rem;
}

.so-suggestions-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.so-suggestion-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(27, 49, 68, 0.5);
  border-radius: 10px;
  gap: 1rem;
  transition: all 0.3s ease;
}

.so-suggestion-card:hover {
  border-color: rgba(94, 231, 255, 0.3);
  background: rgba(34, 199, 238, 0.02);
}

.suggestion-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.suggestion-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
}

.suggestion-desc {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.suggestion-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-cyan);
}

.btn-add-so-item, .btn-add-custom-so {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  border-radius: 6px;
  background: rgba(94, 231, 255, 0.1);
  border: 1px solid var(--color-cyan);
  color: var(--color-cyan);
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
  outline: none;
}

.btn-add-so-item:hover, .btn-add-custom-so:hover {
  background: var(--color-cyan);
  color: var(--color-base);
  box-shadow: 0 0 12px rgba(94, 231, 255, 0.4);
}

.btn-add-so-item.added {
  background: rgba(46, 213, 115, 0.15);
  border-color: #2ed573;
  color: #2ed573;
}

.btn-add-so-item.added:hover {
  background: #2ed573;
  color: var(--color-base);
  box-shadow: 0 0 12px rgba(46, 213, 115, 0.4);
}

.so-search-wrapper {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.25rem;
}

.so-search-wrapper .search-input-wrapper {
  flex-grow: 1;
}

.so-search-input {
  width: 100%;
  background: rgba(12, 24, 36, 0.6);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  padding: 0.65rem 1rem 0.65rem 2.5rem;
  color: var(--color-text);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
}

.so-search-input:focus {
  border-color: var(--color-cyan);
  box-shadow: 0 0 10px rgba(94, 231, 255, 0.3);
}

.so-selected-list-container {
  margin-top: 1rem;
  border-top: 1px solid var(--color-line);
  padding-top: 1rem;
}

.so-selected-items-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.so-selected-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(94, 231, 255, 0.15);
  border: 1px solid var(--color-cyan);
  color: var(--color-cyan);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  gap: 0.5rem;
}

.btn-remove-tag {
  background: none;
  border: none;
  color: var(--color-cyan);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: all 0.2s ease;
  outline: none;
}

.btn-remove-tag:hover {
  opacity: 1;
  color: #ff4757;
}

.montaje-disclaimer {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 1.25rem;
  text-align: center;
  line-height: 1.4;
  opacity: 0.8;
}

/* ==========================================================================
   LÃ³gica y Resumen de Compatibilidad TÃ©cnica
   ========================================================================== */

.compatibility-summary {
  background-color: var(--color-panel2);
  border: 1px solid var(--color-line);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-card);
  animation: stepFadeIn 0.3s ease-out;
}

.compatibility-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.compatibility-status-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.compatibility-status-badge.is-compatible {
  background-color: rgba(37, 211, 102, 0.1);
  border: 1px solid #25d366;
  color: #25d366;
  text-shadow: 0 0 5px rgba(37, 211, 102, 0.5);
}

.compatibility-status-badge.is-review {
  background-color: rgba(255, 185, 0, 0.1);
  border: 1px solid #ffb900;
  color: #ffb900;
  text-shadow: 0 0 5px rgba(255, 185, 0, 0.5);
}

.compatibility-status-badge.is-incompatible {
  background-color: rgba(255, 74, 74, 0.1);
  border: 1px solid #ff4a4a;
  color: #ff4a4a;
  text-shadow: 0 0 5px rgba(255, 74, 74, 0.5);
}

.compatibility-status-badge.is-pending {
  background-color: rgba(151, 173, 192, 0.1);
  border: 1px solid var(--color-muted);
  color: var(--color-muted);
}

.compatibility-summary-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed var(--color-line);
}

.compatibility-metric {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.compatibility-metric-label {
  font-size: 0.75rem;
  color: var(--color-muted);
  font-weight: 500;
}

.compatibility-metric-value {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 700;
}

.compatibility-summary-note {
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.compatibility-issues {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 200px;
  overflow-y: auto;
  margin-top: 0.75rem;
  padding-right: 0.25rem;
}

/* Scrollbar personalizado para la lista de incidencias */
.compatibility-issues::-webkit-scrollbar {
  width: 4px;
}
.compatibility-issues::-webkit-scrollbar-track {
  background: var(--color-base);
}
.compatibility-issues::-webkit-scrollbar-thumb {
  background: var(--color-line);
  border-radius: 2px;
}

.compatibility-issue {
  font-size: 0.78rem;
  line-height: 1.4;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  background-color: rgba(7, 17, 27, 0.4);
  border-left: 3px solid;
}

.compatibility-issue.type-incompatible {
  border-left-color: #ff4a4a;
  color: #ffbaba;
}

.compatibility-issue.type-review {
  border-left-color: #ffb900;
  color: #ffe699;
}

/* Efectos visuales en las Tarjetas de Opciones Seleccionadas */
.option-card.selection-compatible {
  border-color: #25d366 !important;
  background-color: rgba(37, 211, 102, 0.03) !important;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.03);
}

.option-card.selection-review {
  border-color: #ffb900 !important;
  background-color: rgba(255, 185, 0, 0.03) !important;
  box-shadow: 0 0 15px rgba(255, 185, 0, 0.03);
}

.option-card.selection-incompatible {
  border-color: #ff4a4a !important;
  background-color: rgba(255, 74, 74, 0.03) !important;
  box-shadow: 0 0 15px rgba(255, 74, 74, 0.03);
}

/* Efectos visuales en las PÃ­ldoras de Progreso Superiores */
.progress-step.state-compatible .step-pill {
  background-color: rgba(37, 211, 102, 0.08) !important;
  border-color: #25d366 !important;
  color: #25d366 !important;
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.4) !important;
  text-shadow: 0 0 6px rgba(37, 211, 102, 0.4) !important;
}

.progress-step.state-review .step-pill {
  background-color: rgba(255, 185, 0, 0.08) !important;
  border-color: #ffb900 !important;
  color: #ffb900 !important;
  box-shadow: 0 0 12px rgba(255, 185, 0, 0.4) !important;
  text-shadow: 0 0 6px rgba(255, 185, 0, 0.4) !important;
}

.progress-step.state-incompatible .step-pill {
  background-color: rgba(255, 74, 74, 0.08) !important;
  border-color: #ff4a4a !important;
  color: #ff4a4a !important;
  box-shadow: 0 0 12px rgba(255, 74, 74, 0.5) !important;
  text-shadow: 0 0 6px rgba(255, 74, 74, 0.5) !important;
}

.progress-step.state-pending .step-pill {
  background-color: var(--color-panel2) !important;
  border-color: var(--color-line) !important;
  color: var(--color-muted) !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

/* ==========================================================================
   Estilos para el Autocomplete / Dropdown del Buscador del CatÃ¡logo
   ========================================================================== */
.search-results-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  background-color: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: 10px;
  margin-top: 6px;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  display: none;
}

.search-results-dropdown.show {
  display: block;
  animation: stepFadeIn 0.2s ease-out;
}

.search-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--color-line);
  cursor: pointer;
  transition: all 0.2s ease;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background-color: rgba(94, 231, 255, 0.05);
}

.search-result-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex-grow: 1;
  padding-right: 1rem;
}

.search-result-item-name {
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.9rem;
}

.search-result-item-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--color-muted);
}

.search-result-item-price {
  color: var(--color-cyan);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.search-results-no-data {
  padding: 1rem;
  color: var(--color-muted);
  font-size: 0.85rem;
  text-align: center;
  font-style: italic;
}
