/* Extraído de resources/views/style.blade.php
   Notas:
   - Se mantuvieron los prefijos de proveedor donde existen (-webkit-backdrop-filter)
   - Se añadieron alternativas para Firefox en las barras de desplazamiento (scrollbar-width, scrollbar-color)
   - Todas las reglas están encapsuladas a clases existentes para evitar fugas globales
*/

/* Filtros futuristas (aplicados solo a la barra lateral de la tienda) */
:root{
  --accent: #3b82f6; /* azul */
  --accent-2: #00e5ff; /* cian */
  --panel-bg: rgba(255,255,255,0.6);
  --panel-border: rgba(0,0,0,0.08);
  --text-muted: #6b7280;
}
body.dark, body.theme-dark{
  --panel-bg: rgba(15,18,33,0.6);
  --panel-border: rgba(255,255,255,0.14);
  --text-muted: rgba(255,255,255,0.72);
}

/* Contenedor de la barra lateral */
.cz-sidebar{
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  backdrop-filter: saturate(120%) blur(10px);
  -webkit-backdrop-filter: saturate(120%) blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.18);
}
.cz-sidebar-header{ background: transparent; border-bottom: 1px solid var(--panel-border); }
.cz-sidebar-body{ padding-top: .75rem; }

/* Tarjetas de widgets */
.cz-sidebar .widget{ 
  border-bottom: 1px dashed var(--panel-border) !important; 
}
.cz-sidebar .widget-title{
  font-weight: 700;
  letter-spacing: .3px;
  margin-bottom: .5rem;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 24px rgba(0,229,255,0.15);
}

/* Campos de búsqueda y selects dentro de los filtros */
.cz-sidebar .input-group-sm .form-control,
.cz-sidebar .form-control.form-control-sm,
.cz-sidebar select.form-control-sm{
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--panel-border);
  color: inherit;
  transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
body.dark .cz-sidebar .input-group-sm .form-control,
body.theme-dark .cz-sidebar .input-group-sm .form-control,
body.dark .cz-sidebar select.form-control-sm,
body.theme-dark .cz-sidebar select.form-control-sm{
  background: rgba(255,255,255,0.06);
}
.cz-sidebar .form-control:focus{
  border-color: rgba(0,149,255,.35);
  box-shadow: 0 0 0 3px rgba(0,149,255,.18), 0 10px 20px rgba(0,0,0,0.06);
}
.cz-sidebar .input-group-text{ background: transparent; border: none; color: var(--text-muted); }

/* Casillas (custom-control de Bootstrap) */
.cz-sidebar .custom-control-label{ color: inherit; cursor: pointer; }
.cz-sidebar .custom-control-label::before{
  background: transparent;
  border: 1.5px solid var(--panel-border);
  box-shadow: inset 0 0 0 0 rgba(59,130,246,0);
}
.cz-sidebar .custom-control-input:checked ~ .custom-control-label::before{
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(59,130,246,.22);
}
.cz-sidebar .custom-control-input:focus ~ .custom-control-label::before{ box-shadow: 0 0 0 3px rgba(0,149,255,.18); }
.cz-sidebar .cz-filter-item .text-muted{ color: var(--text-muted) !important; }
/* Rango de precio (control deslizante de jQuery UI en tienda AJAX) */
.ui-slider{ background: rgba(0,0,0,.08); border: 1px solid var(--panel-border); border-radius: 999px; }
.ui-slider .ui-slider-range{ background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.ui-slider .ui-slider-handle{
  border: 2px solid white; width: 18px; height: 18px; top: -.45em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0,149,255,.35);
}

/* Botones */
.cz-sidebar .btn.btn-primary{
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
  box-shadow: 0 8px 20px rgba(0,149,255,.25);
}
.cz-sidebar .btn.btn-primary:hover{ filter: brightness(1.05); box-shadow: 0 10px 24px rgba(0,149,255,.3); }

/* Insignias/contadores */
.cz-sidebar .widget-list .font-size-xs.text-muted{
  background: rgba(0,0,0,.04);
  padding: 2px 6px; border-radius: 10px;
}
body.dark .cz-sidebar .widget-list .font-size-xs.text-muted,
body.theme-dark .cz-sidebar .widget-list .font-size-xs.text-muted{
  background: rgba(255,255,255,.08);
}
/* ============================= */
/* Hero de tienda (banner futurista) */
/* ============================= */
/* Estilos de Hero futurista */
.hero-future {
  position: relative;
  min-height: 370px;
  padding: 28px 0 16px;
  /* Fondo global aplicado en <body> para tema claro/oscuro */
  overflow: hidden;
      margin-top: -5px;
}
.flash-hero .container{ padding-top: 10px; }
/* Alturas responsivas reducidas para el hero futurista */
@media (max-width: 991.98px){
  .hero-future{ min-height: 80px; }
}
@media (max-width: 575.98px){
  .hero-future{ min-height: 30px; padding: 12px 0 8px; }
}

.hero-future .banner-heading { 
  text-shadow: 0 2px 16px rgba(0,0,0,.06); 
}


/* Clases explícitas para tema oscuro */
/* Fondo del hero en tema oscuro controlado globalmente por <body> */

body.dark .hero-future .banner-heading,
body.theme-dark .hero-future .banner-heading { 
  color: #fff; 
}

body.dark .hero-future .subtitle,
body.theme-dark .hero-future .subtitle { 
  color: rgba(255,255,255,.75); 
}

/* Sección de marquesina de logos */
#logoMarqueeSection .marquee a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  text-decoration: none;
}

#logoMarqueeSection .marquee a img {
  display: block;
  width: 90px; /* reduce icon size for a tighter carousel look */
  height: auto;
}

#logoMarqueeSection .marquee a span {
  display: block;
  margin-top: 6px;
  text-align: center;
  font-size: .95rem; /* slightly smaller label */
}

/* Estilos de tema oscuro para las etiquetas de la marquesina */
body.dark #logoMarqueeSection .marquee a span,
body.theme-dark #logoMarqueeSection .marquee a span {
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
  font-weight: 600;
}
/* Quitar máscara blanca para que se vea el fondo global en tema claro */
body:not(.dark):not(.theme-dark) #logoMarqueeSection{
  background: transparent !important;
  box-shadow: none !important;
}
/* ============================= */
.shop-hero{
  position: relative;
  /* Altura fija del hero solicitada: 220px */
  padding: 12px 0;
  height: 100px;
  color: #0f172a; /* texto predeterminado para tema claro */
   background: transparent; /* deja ver la rejilla global en tema claro */
   overflow: hidden;
 }
 .shop-hero .hero-row{ height: 100%; align-items: center; transform: translateY(16px); }
@media (min-width: 992px){ .shop-hero{ padding: 10px 0; } }
/* ============================= */
/* Product card sizing tweaks     */
/* ============================= */
/* Reduce image footprint slightly for better balance with taller hero */
.card.product-card-alt .product-thumb img.lazy{
  width: 220px; /* was 256 */
  height: 172px; /* was 200 */
  object-fit: cover;
}

/* Tighter paddings and titles */
.card.product-card-alt .card-body{ padding: .75rem .9rem; }
.card.product-card-alt .card-footer{ padding: .5rem .9rem; }
.card.product-card-alt .product-title,
.card.product-card-alt .thumb_title{ font-size: .95rem; }

/* Slightly denser grid spacing on large screens */
@media (min-width: 992px){
  .flash-sale .prod-item{ margin-bottom: .75rem; }
}

/* Further reduce image size on small screens to keep cards compact */
@media (max-width: 575.98px){
  .card.product-card-alt .product-thumb img.lazy{
    width: 200px;
    height: 154px;
  }
}
 .shop-hero::after{
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120px 120px at 20% 30%, rgba(0,229,255,.18), transparent 60%),
    radial-gradient(160px 160px at 80% 20%, rgba(124,58,237,.16), transparent 60%),
    radial-gradient(140px 140px at 70% 80%, rgba(34,211,238,.16), transparent 60%);
  pointer-events: none;
}
.shop-hero .breadcrumb{ background: transparent; margin-bottom: 0; }
.shop-hero .breadcrumb .breadcrumb-item a{ color: rgba(15,23,42,.85); }
 .shop-hero .breadcrumb .breadcrumb-item.active{ color: rgba(15,23,42,.65); }

 /* Texto de marca centrado superpuesto */
 .shop-hero .center-brand{
  position: absolute; left: 50%; top: 85%; transform: translate(-50%, -50%);
  width: 100%; pointer-events: none; z-index: 0; opacity: .98;
}
.shop-hero .text-left{ position: relative; z-index: 1; }
/* ============================= */
/* Flash Sale Hero (sin imagen)  */
/* ============================= */
.flash-hero{
  position: relative;
  height: 230px; /* exact height */
  padding: 16px 0 12px; /* compact */
  display: flex;
  align-items: center; /* vertical align */
  color: #ffffff;
  background:
    linear-gradient(to right top, #232d51, #243156, #24355b, #253961, #253d66, #263f67, #264169, #27436a, #294368, #2a4466, #2c4463, #2e4461);
  overflow: hidden;
}

/* Variantes tema oscuro */
body.dark .flash-hero,
body.theme-dark .flash-hero{
  color: rgba(255,255,255,.92);
  background:
    radial-gradient(600px 300px at 15% 10%, rgba(124,58,237,.22), transparent 60%),
    radial-gradient(700px 320px at 85% 20%, rgba(14,165,233,.22), transparent 60%),
    linear-gradient(180deg, #0b1020 0%, #0a0e1a 100%);
}

.flash-hero::after{
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120px 120px at 20% 35%, rgba(59,130,246,.12), transparent 60%),
    radial-gradient(160px 160px at 75% 25%, rgba(139,92,246,.12), transparent 60%),
    radial-gradient(140px 140px at 70% 75%, rgba(34,211,238,.10), transparent 60%);
}
body.dark .flash-hero::after,
body.theme-dark .flash-hero::after{
  background:
    radial-gradient(120px 120px at 20% 35%, rgba(59,130,246,.25), transparent 60%),
    radial-gradient(160px 160px at 75% 25%, rgba(139,92,246,.25), transparent 60%),
    radial-gradient(140px 140px at 70% 75%, rgba(34,211,238,.22), transparent 60%);
}

/* Tipografía dentro del banner */
.flash-hero .title-page{ 
  color: inherit; 
  text-shadow: 0 2px 16px rgba(0,0,0,.06); 
  margin-bottom: .5rem; 
  padding-top: 0; 
}
.flash-hero .lead{ 
  color: #fff; 
  margin-bottom: 1rem; 
}
body.dark .flash-hero .lead,
body.theme-dark .flash-hero .lead{ 
  color: rgba(255,255,255,.78); 
}

/* Contador: tarjetas con fondo sólido azul y texto negro */
.flash-hero .countdown-timer ul{ 
  padding-left: 0; 
  margin: 0 auto; 
  display: inline-flex; 
  gap: .5rem; 
}
.flash-hero .countdown-timer ul li{
  list-style: none;
  min-width: 72px; /* was 86px */
  border-radius: .5rem;
  background: #2563eb; /* azul sólido moderno */
  box-shadow: 0 1px 2px rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
}
.flash-hero .countdown-timer ul li span{ 
  display: block; 
  font-weight: 500; /* menos ancho que 700 */
  font-size: 1.5rem; 
  color:#ffffff; /* negro */
}
.flash-hero .countdown-timer ul li div{ 
  font-size: .7rem; 
  opacity: .9; 
  color: #000; /* negro */
}

/* Variantes del contador en tema oscuro */
body.dark .flash-hero .countdown-timer ul li,
body.theme-dark .flash-hero .countdown-timer ul li{
  background: #1e3a8a; /* azul más oscuro */
  box-shadow: 0 1px 2px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.08);
}
body.dark .flash-hero .countdown-timer ul li span,
body.dark .flash-hero .countdown-timer ul li div,
body.theme-dark .flash-hero .countdown-timer ul li span,
body.theme-dark .flash-hero .countdown-timer ul li div{
  color: #fff; /* blanco para contraste en modo oscuro */
}

@media (max-width: 575.98px){
  .flash-hero{ 
    height: auto; 
    min-height: 150px; 
    padding: 24px 0 18px; 
  }
  .flash-hero .countdown-timer ul{ gap: .4rem; }
  .flash-hero .countdown-timer ul li{ min-width: 64px; }
}
body.dark .shop-hero .breadcrumb .breadcrumb-item a,
body.theme-dark .shop-hero .breadcrumb .breadcrumb-item a{ color: rgba(255,255,255,.9); }
body.dark .shop-hero .breadcrumb .breadcrumb-item.active,
body.theme-dark .shop-hero .breadcrumb .breadcrumb-item.active{ color: rgba(255,255,255,.7); }



body.dark .hero-future .input-group.input-group-lg,
body.theme-dark .hero-future .input-group.input-group-lg{
  /* Contenedor más limpio: borde sutil y sin brillos */
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: none;
}

/* ícono */
.hero-future .input-group-prepend-overlay .input-group-text{
  background: transparent; border: 0; color: rgba(0,0,0,.55);
}
body.dark .hero-future .input-group-prepend-overlay .input-group-text,
body.theme-dark .hero-future .input-group-prepend-overlay .input-group-text{
  color: rgba(255,255,255,.7);
}

/* campo de texto */
.hero-future .prepended-form-control.form-control-lg{
  background: transparent;
  border: 0;
  color: inherit;
  padding-left: 2.75rem; 
}
.hero-future .prepended-form-control.form-control-lg::placeholder{
  color: rgba(0,0,0,.45);
}
body.dark .hero-future .prepended-form-control.form-control-lg::placeholder,
body.theme-dark .hero-future .prepended-form-control.form-control-lg::placeholder{ color: rgba(255,255,255,.55); }

/* Estilo del bloque de entrada en modo oscuro */
body.dark .hero-future .prepended-form-control.form-control-lg,
body.theme-dark .hero-future .prepended-form-control.form-control-lg{
   /* Fondo no negro puro, bordes suaves y sin sombra pesada */
      background: #000 !important;
    border-right: 1px solid #1b242f !important;
}

/* select de categoría */
.hero-future .home-category-select{
  background: rgba(255,255,255,0.65);
  color: inherit;
  border-left: 1px solid var(--panel-border);
  border-top: 0; border-bottom: 0; border-right: 0;
  padding: .8rem 1rem;
  min-width: 210px;
}
body.dark .hero-future .home-category-select,
body.theme-dark .hero-future .home-category-select{
  background:#000 !important;
  color: #ffffff !important;
  border-left: 1px solid #0b0c1e !important;
}

/* Reglas explícitas para tema claro en los controles del hero (por encima del tema oscuro del SO) */
body:not(.dark):not(.theme-dark) .hero-future .input-group.input-group-lg{
  background: rgba(255,255,255,0.55) !important;
  border: 1px solid var(--panel-border) !important;
}
body:not(.dark):not(.theme-dark) .hero-future .home-category-select{
  background: rgba(255,255,255,0.65) !important;
  color: inherit !important;
  border-left: 1px solid var(--panel-border) !important;
}

/* botón */
.hero-future .input-group-append .btn.btn-primary{
  min-width: 160px;
  border-radius: 10px; 
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
  box-shadow: 0 10px 24px rgba(0,149,255,.28);
  transition: transform .12s ease, box-shadow .2s ease, filter .2s ease;
}
.hero-future .input-group-append .btn.btn-primary:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 14px 30px rgba(0,149,255,.34);
}
.hero-future .input-group-append .btn.btn-primary:active{ transform: translateY(0); }

/* anillo de enfoque para todo el control cuando cualquier hijo tiene foco */
.hero-future .input-group.input-group-lg:focus-within{
  border-color: rgba(0,149,255,.35);
  box-shadow: 0 0 0 4px rgba(0,149,255,.18), 0 12px 30px rgba(0,0,0,.08);
}

/* Forzar estilo de modo claro para el contenedor del hero si el sitio está en modo claro */
body:not(.dark):not(.theme-dark) .hero-future{
  color: #0f172a !important;
}
body:not(.dark):not(.theme-dark) .hero-future .prepended-form-control.form-control-lg::placeholder{
  color: rgba(0,0,0,.45) !important;
}

/* ajustes responsivos */
@media (max-width: 991.98px){
  .hero-future .home-category-select{ min-width: 160px; }
  .hero-future .input-group-append .btn.btn-primary{ min-width: 140px; }
}
/* Encabezado para tema claro */
.banner-heading.style-font1{
/* Estilo más sobrio y moderno para fondo claro */
font-family: 'Orbitron', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif !important;
    /* PINTA INMEDIATAMENTE: evitar texto transparente en primer render */
    color: #0f172a;

    /* Glow azul */
    /* sombras simplificadas para mejorar LCP */
    text-shadow:
        0 1px 2px rgba(0,0,0,.08),
        0 4px 12px rgba(63,97,255,.20);

    /* trazo ligero únicamente para contraste */
    -webkit-text-stroke: 0.25px rgba(255,255,255,.22);
    font-weight: 900;
    text-transform: uppercase;
    /* Fallback fijo (desktop) */
    font-size: 57px;
    /* Tamaño fluido recomendado: mínimo cómodo en móvil (34px) y máximo 57px en desktop */
    font-size: clamp(34px, 5vw + 8px, 57px);
    line-height: 1.1;
        display: inline-block;
    /* evitar transformaciones costosas en el primer paint */
    transform: none;
}

/* Encabezado para tema oscuro */
body.dark .banner-heading.style-font1,
body.theme-dark .banner-heading.style-font1{
 font-family: 'Orbitron', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif !important;
 background: linear-gradient(90deg, #00e5ff 0%, #7c3aed 50%, #22d3ee 100%);
 -webkit-background-clip: text; background-clip: text; color: transparent;
 text-shadow: 0 0 14px rgba(0,229,255,.45), 0 0 24px rgba(124,58,237,.35);
}
/* ============================= */
/* Ajustes del hero específicos para móvil */
/* ============================= */
@media (max-width: 475.98px){
 /* Ocultar superposición y título de escritorio en teléfonos */
 .shop-hero{ height: 80px; padding: 6px 0; }
 .shop-hero .center-brand{ display: none; }
 .shop-hero .desktop-hero-title{ display: none !important; }

 /* Título HYDRABLACK para móvil */
 .shop-hero .mobile-hero-title{ 
   font-size: 1.5rem; /* legible en teléfonos */
   letter-spacing: .08em;
   line-height: 1.1;
   text-shadow:
     0 0 8px rgba(0,229,255,.45),
     0 0 16px rgba(124,58,237,.35);
 }
 body.dark .shop-hero .mobile-hero-title,
 body.theme-dark .shop-hero .mobile-hero-title{
   -webkit-text-stroke: 0.8px rgba(255,255,255,.12);
   text-shadow:
     0 0 10px rgba(0,229,255,.55),
     0 0 22px rgba(124,58,237,.45),
     0 3px 18px rgba(0,0,0,.55);
 }
}
/* Pequeña mejora del subtítulo */
.hero-future .subtitle{ font-family:'Orbitron', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; }
body.dark .hero-future .subtitle,
body.theme-dark .hero-future .subtitle{ font-family: 'Orbitron', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; }
/* ============================= */
/* Pie de página futurista       */
/* ============================= */
.footer-future{
 position: relative;
 background:
   radial-gradient(900px 300px at 110% -10%, rgba(0,149,255,.08), transparent),
   radial-gradient(700px 260px at -10% 10%, rgba(0,229,255,.08), transparent),
   linear-gradient(180deg, #f7f8fc 0%, #ffffff 100%);
 color: #0f172a;
}
/* Pie de página en modo claro explícito (predomina sobre la preferencia oscura del SO) */
body:not(.dark):not(.theme-dark) .footer-future{
  background:
    radial-gradient(900px 300px at 110% -10%, rgba(0,149,255,.08), transparent),
    radial-gradient(700px 260px at -10% 10%, rgba(0,229,255,.08), transparent),
    linear-gradient(180deg, #f7f8fc 0%, #ffffff 100%) !important;
  color: #0f172a !important;
}
body.dark .footer-future,
body.theme-dark .footer-future{
 /* Estilo oscuro minimalista y más limpio */
 background:
   radial-gradient(800px 300px at 120% -20%, rgba(255,255,255,.05), transparent),
   linear-gradient(180deg, #1d2332 0%, #0b0f19 100%);
 color: rgba(255,255,255,.9);
}

.footer-logo{ filter: drop-shadow(0 6px 18px rgba(0,0,0,.08)); }

.footer-stats{ display: flex; flex-wrap: wrap; gap: .75rem 1rem; }
.footer-stats .stat{ background: rgba(255,255,255,.7); border: 1px solid rgba(0,0,0,.06); padding: .4rem .6rem; border-radius: 10px; font-size: .95rem; }
.footer-stats .value{ font-weight: 800; background: linear-gradient(90deg, #3b82f6, #22d3ee); -webkit-background-clip: text; background-clip: text; color: transparent; }
body.dark .footer-stats .stat,
body.theme-dark .footer-stats .stat{ background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }

.footer-social .fs-btn{
 display: inline-flex; align-items: center; justify-content: center;
 width: 40px; height: 40px; margin-right: .5rem; border-radius: 10px;
 background: rgba(255,255,255,.75); color: #0f172a; border: 1px solid rgba(0,0,0,.06);
 transition: transform .12s ease, box-shadow .2s ease, filter .2s ease;
}
.footer-social .fs-btn:hover{ transform: translateY(-1px); filter: brightness(1.03); box-shadow: 0 10px 24px rgba(0,0,0,.12); }
body.dark .footer-social .fs-btn,
body.theme-dark .footer-social .fs-btn{
 background: transparent; color: rgba(255,255,255,.92); border-color: rgba(255,255,255,.16);
}
.footer-social .fs-btn:hover{ transform: translateY(-1px); filter: none; box-shadow: 0 6px 18px rgba(0,0,0,.25); }

.footer-widget{ padding: .25rem 0; }
.footer-widget .fw-title{
 font-weight: 800; letter-spacing: .3px; margin-bottom: .5rem;
 background: linear-gradient(90deg, #3b82f6, #22d3ee); -webkit-background-clip: text; background-clip: text; color: transparent;
}
/* Modo oscuro: título plano con subrayado sutil, sin texto en degradado */
body.dark .footer-widget .fw-title,
body.theme-dark .footer-widget .fw-title{
 background: none; -webkit-background-clip: initial; background-clip: initial; color: rgba(255,255,255,.95);
 position: relative;
}
body.dark .footer-widget .fw-title::after,
body.theme-dark .footer-widget .fw-title::after{
 content: ""; display: block; height: 2px; margin-top: 6px; width: 36px; border-radius: 2px;
 background: linear-gradient(90deg, rgba(59,130,246,.9), rgba(34,211,238,.9));
}
.fw-list{ list-style: none; padding: 0; margin: 0; }
.fw-list li{ margin: .5rem 0; line-height: 1.6; }
.fw-list a{ color: inherit; opacity: .85; text-decoration: none; transition: opacity .2s ease, text-shadow .2s ease; }
.fw-list a:hover{ opacity: 1; text-shadow: 0 0 14px rgba(34,211,238,.35); }
.fw-inline{ display: flex; flex-wrap: wrap; gap: .5rem 1rem; }

.footer-newsletter .input-group-text{ background: transparent; border: none; }
.footer-newsletter .form-control{ background: rgba(255,255,255,.85); border: 1px solid rgba(0,0,0,.08); }
body.dark .footer-newsletter .form-control,
body.theme-dark .footer-newsletter .form-control{
 background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: rgba(255,255,255,.92);
}

.footer-bottom{
 border-top: 1px solid rgba(0,0,0,.06);
 background: rgba(255,255,255,.6);
 backdrop-filter: blur(8px) saturate(120%);
 -webkit-backdrop-filter: blur(8px) saturate(120%);
 padding: 16px 0;
}
body.dark .footer-bottom,
body.theme-dark .footer-bottom{
 border-top-color: rgba(255,255,255,.12);
 background: transparent;
}
/* ========================================= */
/* Fondo de tema claro global (para todo el sitio) */
/* Coincide con el fondo de .hero-future           */
/* ========================================= */
body:not(.dark):not(.theme-dark){
 background:radial-gradient(1200px 400px at -10% -20%, rgb(255 255 255 / 8%), #ffffff00),
 radial-gradient(900px 360px at 110% 10%, rgb(255 255 255 / 8%), transparent), repeating-linear-gradient(90deg, rgb(0 0 0 / 3%) 0 1px, transparent 1px 40px),
 repeating-linear-gradient(0deg, rgba(0, 0, 0, .03) 0 1px, transparent 1px 40px), linear-gradient(180deg, #ffffff 0%, #ffffff 60%, #ffffff 100%) !important;
    background-attachment: fixed, fixed, fixed, fixed, fixed;
 background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
 background-repeat: no-repeat, no-repeat, repeat, repeat, no-repeat;
 color: #0f172a;
}
/* ========================================= */
/* Aplicar fondo de tema claro a navbar/topbar */
/* Evitar transparencia y mantener alineación  */
/* ========================================= */
body:not(.dark):not(.theme-dark) header.bg-light,
body:not(.dark):not(.theme-dark) header .topbar,
body:not(.dark):not(.theme-dark) .navbar-sticky .navbar {
  background:
    radial-gradient(1200px 400px at -10% -20%, rgb(255 255 255 / 8%), #ffffff00), 
    radial-gradient(900px 360px at 110% 10%, rgb(255 255 255 / 8%), transparent), repeating-linear-gradient(90deg, rgb(0 0 0 / 3%) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, .03) 0 1px, transparent 1px 40px), linear-gradient(180deg, #ffffff 0%, #ffffff 60%, #ffffff 100%) !important;
  background-attachment: fixed, fixed, fixed, fixed, fixed;
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
  background-repeat: no-repeat, no-repeat, repeat, repeat, no-repeat;
}
/* ========================================= */
/* Fondo de tema oscuro global (para todo el sitio)  */
/* Coincide con el fondo oscuro de .hero-future      */
/* ========================================= */
body.dark, body.theme-dark {
 background:
   radial-gradient(1000px 400px at -5% -20%, rgba(255,255,255,0.05), transparent),
   radial-gradient(900px 360px at 110% 10%, rgba(255,255,255,0.04), transparent),
   radial-gradient(60% 80% at 50% -10%, rgba(0,0,0,0.6), transparent),
   linear-gradient(90deg, rgba(180,180,180,0.08) 1px, transparent 1px),
   linear-gradient(0deg, rgba(180,180,180,0.08) 1px, transparent 1px),
   linear-gradient(180deg, #000000 0%, #0a0a0a 60%, #000000 100%);
 background-size: auto, auto, auto, 36px 36px, 36px 36px, auto;
 background-color: #010101;
 color: rgba(255,255,255,0.92);
}
/* ========================================= */
/* Banner de vendedor: SOLO tema claro y oscuro */
/* ========================================= */
.hero-vendor{ position: relative; min-height: 220px; padding: 24px 0 12px; overflow: hidden; z-index: 0; }
/* Asegura que el contenido quede encima del overlay */
.hero-vendor > *{ position: relative; z-index: 1; }

/* Tema claro (blanco) */
body:not(.dark):not(.theme-dark) .hero-vendor{
  background: linear-gradient(to right top, #0c699a, #1796ce, #2c9cc5, #00a0c5, #15bbcf)
}

/* Tema oscuro (fondo solicitado) */
body.dark .hero-vendor,
body.theme-dark .hero-vendor{
  background:
    radial-gradient(900px 320px at 110% -10%, rgb(0 0 0 / 12%), transparent),
    radial-gradient(700px 260px at -10% 10%, rgba(124, 58, 237, .12), transparent),
    linear-gradient(180deg, #000000 0%, #000000 100%) !important;
}
/* Overlay decorativo solo en modo oscuro */
body.dark .hero-vendor::after,
body.theme-dark .hero-vendor::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(120px 120px at 20% 30%, rgba(0, 229, 255, .18), transparent 60%),
    radial-gradient(160px 160px at 80% 20%, rgba(124, 58, 237, .16), transparent 60%),
    radial-gradient(140px 140px at 70% 80%, rgba(34, 211, 238, .16), transparent 60%);
  pointer-events: none;
}
/* Overlay estilo burbujas suaves (tema claro) */
body:not(.dark):not(.theme-dark) .hero-vendor::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(140px 140px at 18% 28%, rgba(91, 196, 255, 0.22), transparent 62%),
    radial-gradient(180px 180px at 82% 22%, rgba(173, 216, 255, 0.20), transparent 62%),
    radial-gradient(160px 160px at 72% 78%, rgba(135, 206, 250, 0.18), transparent 60%),
    radial-gradient(200px 200px at 40% 65%, rgba(173, 232, 244, 0.16), transparent 65%);
  background-blend-mode: lighten;
  pointer-events: none;
}

/* =============================== */
/* Boxradio (migrado)              */
/* =============================== */
#boxradio section { display: flex; flex-flow: row wrap; }
#boxradio section > div { padding: 0.5rem; }
#boxradio input[type=radio] { display: none; }
#boxradio input[type=radio]:not(:disabled) ~ label { cursor: pointer; }
#boxradio input[type=radio]:disabled ~ label {
  color: #bcc2bf;
  border-color: #bcc2bf;
  box-shadow: none;
  cursor: not-allowed;
}
#boxradio label {
  display: block;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  box-shadow: 0px 3px 10px -2px rgba(161, 170, 166, 0.5);
  position: relative;
  color: inherit;
}
body.dark #boxradio label,
body.theme-dark #boxradio label{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 1px 2px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
}
#boxradio p { font-weight: 900; width: 100%; }
#boxradio h2 { margin-top: 20px; font-size: 25px; }
@media only screen and (max-width: 700px) { #boxradio section { flex-direction: column; } }

/* Theme switcher mobile visibility */
.topbar-text.dropdown.disable-autohide { display: inline-block !important; }

/* =============================== */
/* Searchbox responsive (migrado)  */
/* =============================== */
@media (max-width: 767px) {
  .searchbox .input-group { flex-direction: column; align-items: center; }
  .searchbox .input-group > .form-control,
  .searchbox .input-group > .custom-select,
  .searchbox .input-group > .input-group-append { width: 90%; max-width: 400px; }
  .searchbox .input-group > .form-control { margin-bottom: 15px; position: relative; }
  .searchbox .input-group > .custom-select {
    margin-bottom: 15px;
    border-radius: .35rem !important;
    text-align: center;
    text-align-last: center;
  }
  .searchbox .input-group-append .btn { width: 100%; border-radius: .35rem !important; }
  .searchbox .input-group-prepend-overlay { left: auto; right: 0; }
  .searchbox .input-group > .prepended-form-control {
    padding-left: 1.125rem !important;
    padding-right: 2.75rem !important;
    border-radius: .35rem !important;
  }
}
/* =============================== */
/* Navbar brand logo sizing        */
/* Mantener proporción y limitar   */
/* =============================== */
.navbar .navbar-brand img.lazy{
  height: auto !important; /* respetar relación de aspecto */
  width: auto !important;
  max-height: 70px; /* tamaño cómodo en desktop */
}
/* pcgrande */
@media (min-width: 1200px){
  .navbar .navbar-brand img.lazy{ max-height: 54px; }
}
/* tablet */
@media (max-width: 991.98px){
  .navbar .navbar-brand img.lazy{ max-height: 70px; }
}
/*movil */
@media (max-width: 575.98px){
  .navbar .navbar-brand img.lazy{ max-height: 65px; }
}