
/* ====== CAROUSEL BANNERS (NO TOCAR) ====== */
.carousel{width:100%;max-width:1400px;margin:0 auto 34px;height:360px;position:relative;overflow:hidden;border-radius:20px;background:#f6f7f9}
@media (max-width:768px){.carousel{height:240px;border-radius:14px}}
@media (max-width:480px){.carousel{height:200px;border-radius:12px}}
.carousel-track{display:flex;width:100%;height:100%;transition:transform .7s ease}
.carousel-slide{min-width:100%;height:360px}
@media (max-width:768px){.carousel-slide{height:240px}}
@media (max-width:480px){.carousel-slide{height:200px}}
.carousel-slide img{width:100%;height:100%;object-fit:cover}
.carousel-btn{position:absolute;top:50%;transform:translateY(-50%);background:rgba(0,0,0,.35);color:#fff;border:none;padding:12px 16px;font-size:22px;border-radius:50%;cursor:pointer;transition:.25s;z-index:5}
.carousel-btn:hover{background:rgba(0,0,0,.55)}
@media (max-width:768px){.carousel-btn{padding:8px 10px;font-size:18px}}
@media (max-width:480px){.carousel-btn{padding:6px 8px;font-size:16px}}
.carousel-btn.prev{left:14px}
.carousel-btn.next{right:14px}
.carousel-dots{position:absolute;bottom:12px;width:100%;display:flex;justify-content:center;gap:6px;z-index:6}
.carousel-dots .dot{width:11px;height:11px;border-radius:50%;background:#ffffff66;cursor:pointer;transition:.25s}
.carousel-dots .dot.active{background:#fff;transform:scale(1.2)}
@media (max-width:768px){.carousel-dots .dot{width:9px;height:9px}.carousel-dots .dot.active{transform:scale(1.15)}}
@media (max-width:480px){.carousel-dots .dot{width:8px;height:8px}}

/* ====== CARRUSEL DE PRODUCTOS ====== */
.product-carousel-wrap{position:relative;margin-top:12px;z-index:2}
.product-carousel{display:flex;gap:18px;overflow-x:auto;padding:10px 52px 14px 10px;scroll-snap-type:x proximity;-webkit-overflow-scrolling:touch;scroll-behavior:smooth}
.product-carousel::-webkit-scrollbar{height:10px}
.product-carousel::-webkit-scrollbar-thumb{background:#d7dbea;border-radius:10px}

/* Flechas */
.pcar-btn{position:absolute;top:50%;transform:translateY(-50%);width:44px;height:44px;border-radius:50%;border:0;background:rgba(0,0,0,.35);color:#fff;font-size:22px;cursor:pointer;display:flex;align-items:center;justify-content:center;z-index:5;transition:.25s}
.pcar-btn:hover{background:rgba(0,0,0,.55)}
.pcar-btn.prev{left:6px}
.pcar-btn.next{right:6px}

/* Cards — modo “5 y medio” */
.p-card{flex:0 0 240px;scroll-snap-align:start;background:#fff;border:1px solid #e6e8ef;border-radius:12px;box-shadow:0 6px 18px rgba(15,23,42,.08);overflow:hidden;display:flex;flex-direction:column}

.badge-oferta-home{
  position:absolute;
  top:10px;
  right:10px;
  z-index:3;
  background:linear-gradient(135deg,#ef4444,#dc2626);
  color:#fff;
  padding:7px 11px;
  border-radius:999px;
  font-size:12px;
  font-weight:1000;
  letter-spacing:.02em;
  box-shadow:0 10px 22px rgba(220,38,38,.28);
}

.badge-stock-limitado-home{
  position:absolute;
  left:10px;
  bottom:10px;
  z-index:4;
  background:linear-gradient(135deg,#f97316,#ea580c);
  color:#fff;
  padding:7px 11px;
  border-radius:999px;
  font-size:11px;
  font-weight:1000;
  box-shadow:0 10px 22px rgba(249,115,22,.28);
  animation:pulseStockHome 1.8s ease-in-out infinite;
}
.badge-solo-hoy-home{
  position:absolute;
  left:10px;
  bottom:44px;
  z-index:4;
  background:linear-gradient(135deg,#dc2626,#991b1b);
  color:#fff;
  padding:7px 11px;
  border-radius:999px;
  font-size:11px;
  font-weight:1000;
  box-shadow:0 10px 22px rgba(220,38,38,.35);
  animation:blinkSoloHoy 1s infinite;
}

.badge-nuevo-home{
  position:absolute;
  left:10px;
  top:46px;
  z-index:4;

  background:linear-gradient(135deg,#06b6d4,#2563eb);
  color:#fff;

  padding:7px 11px;
  border-radius:999px;

  font-size:11px;
  font-weight:1000;

  box-shadow:0 10px 22px rgba(37,99,235,.30);

  animation:pulseNuevoHome 1.8s ease-in-out infinite;
}

@keyframes pulseNuevoHome{
  0%{transform:scale(1);}
  50%{transform:scale(1.06);}
  100%{transform:scale(1);}
}

@keyframes blinkSoloHoy{
  0%{opacity:1;}
  50%{opacity:.55;}
  100%{opacity:1;}
}

@keyframes pulseStockHome{
  0%{transform:scale(1);}
  50%{transform:scale(1.06);}
  100%{transform:scale(1);}
}
.p-card.home-destacado{border: 2px solid #5a67ff;background: linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%);box-shadow:0 20px 50px rgba(90,103,255,.25),0 0 0 4px rgba(90,103,255,.08);transform: scale(1.03);position: relative;z-index: 2;}

.p-card.home-destacado:hover{transform: scale(1.05) translateY(-6px);box-shadow:0 30px 70px rgba(90,103,255,.35),0 0 0 6px rgba(90,103,255,.12);}

.badge-destacado-home{
  position:absolute;
  top:10px;
  left:10px;
  z-index:4;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 12px;
  border-radius:999px;
  background:linear-gradient(135deg,#5a67ff,#7c86ff);
  color:#fff;
  box-shadow:0 10px 24px rgba(90,103,255,.28);
  font-weight:900;
  animation: pulseDestacado 2s infinite;
}
.badge-tiempo-home{
  position:absolute;
  top:45px;
  left:10px;
  z-index:4;
  background:linear-gradient(135deg,#ff4d4d,#ff944d);
  color:#fff;
  padding:6px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  box-shadow:0 10px 20px rgba(255,77,77,.35);
  animation: pulseTiempo 1.5s infinite;
}
.badge-urgencia-home{
  position:absolute;
  top:45px;
  left:10px;
  z-index:4;
  background:#dc2626;
  color:#fff;
  padding:6px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  box-shadow:0 10px 20px rgba(220,38,38,.35);
  animation: blinkUrgencia 1.1s infinite;
}

.badge-urgencia-home.urgente-hoy{
  background:#991b1b;
  box-shadow:0 10px 22px rgba(153,27,27,.45);
}
.precio-oferta-home{
  display:flex;
  flex-direction:column;
  gap:3px;
  margin-top:2px;
}

.precio-nuevo-home{
  display:inline-flex;
  width:max-content;
  color:#dc2626;
  font-size:22px;
  line-height:1;
  font-weight:1000;
  letter-spacing:-.02em;
}

.precio-viejo-home{
  display:inline-flex;
  width:max-content;
  color:#94a3b8;
  font-size:12px;
  font-weight:800;
  text-decoration:line-through;
}

.precio-oferta-actual{
  font-size:28px;
  font-weight:1000;
  line-height:1;
  color:#dc2626;
  letter-spacing:-0.03em;
}

/* ===== AURORA HERO — ENUNCLICK HOME V1 ===== */
body{
  background:
    radial-gradient(circle at 85% 8%, rgba(36,87,255,.08), transparent 34%),
    linear-gradient(180deg,#fcfbf8 0%,#f7f3ec 100%);
}

.aurora-hero{
  width:100%;
  padding:8px 18px 60px;
}
.aurora-hero-inner{
  max-width:1280px;
  min-height:500px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:50px;
  padding:50px;
  border:1px solid rgba(226,218,206,.9);
  border-radius:34px;
  background:
    linear-gradient(135deg,rgba(255,255,255,.94),rgba(255,255,255,.72)),
    radial-gradient(circle at 72% 18%,rgba(36,87,255,.09),transparent 30%);
  box-shadow:0 28px 80px rgba(23,32,51,.08);
  overflow:hidden;
  position:relative;
}

.aurora-label{
  display:inline-flex;
  margin-bottom:18px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid #ebe4da;
  background:#fff;
  color:#667085;
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
}

.aurora-copy h1{
  margin:0;
  max-width:620px;
  color:#172033;
  font-size:clamp(42px,6vw,76px);
  line-height:.98;
  letter-spacing:-.07em;
  font-weight:950;
}

.aurora-copy h1 span{
  display:block;
  color:#1f4fe0;
}

.aurora-copy p{
  max-width:470px;
  margin:22px 0 28px;
  color:#667085;
  font-size:19px;
  line-height:1.55;
}

.aurora-search{
  width:100%;
  max-width:560px;
  min-height:62px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:8px 8px 8px 18px;
  border:1px solid #e8dfd3;
  border-radius:999px;
  background:#fff;
  box-shadow:0 18px 46px rgba(23,32,51,.09);
}

.aurora-search input[type="search"]{
  width:100%;
  min-width:0;
  border:0;
  outline:0;
  background:transparent;
  color:#172033;
  font-size:16px;
}

.aurora-search button{
  height:46px;
  padding:0 20px;
  border:0;
  border-radius:999px;
  background:#1f4fe0;
  color:#fff;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 12px 26px rgba(31,79,224,.22);
}

.aurora-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

.aurora-btn{
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
}

.aurora-btn-primary{
  background:#172033;
  color:#fff;
}

.aurora-btn-secondary{
  background:#fff;
  color:#172033;
  border:1px solid #e8dfd3;
}

.aurora-scene{
  min-height:420px;
  position:relative;
}

.aurora-card{
  position:absolute;
  inset:54px 26px auto auto;
  width:min(360px,90%);
  height:330px;
  border-radius:32px;
  background:#fff;
  border:1px solid #ebe4da;
  box-shadow:0 30px 90px rgba(23,32,51,.13);
  overflow:hidden;
}

.aurora-card-top{
  height:170px;
  background:
    linear-gradient(135deg,rgba(31,79,224,.14),rgba(255,255,255,.2)),
    linear-gradient(180deg,#efe7dc,#fbf8f3);
}

.aurora-card-lines{
  padding:24px;
  display:grid;
  gap:12px;
}

.aurora-card-lines span{
  height:12px;
  border-radius:999px;
  background:#eee7dd;
}

.aurora-card-lines span:nth-child(1){width:80%;}
.aurora-card-lines span:nth-child(2){width:58%;}
.aurora-card-lines span:nth-child(3){width:38%;}

.aurora-floating{
  position:absolute;
  z-index:2;
  padding:12px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.84);
  border:1px solid #ebe4da;
  box-shadow:0 16px 40px rgba(23,32,51,.10);
  color:#344054;
  font-size:13px;
  font-weight:900;
  backdrop-filter:blur(10px);
}

.aurora-floating-1{top:40px;left:16px;}
.aurora-floating-2{right:0;bottom:80px;}
.aurora-floating-3{left:70px;bottom:32px;}

@media(max-width:800px){
  .aurora-hero{
    padding:18px 14px 30px;
  }

  .aurora-hero-inner{
    min-height:calc(100vh - 96px);
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:28px;
    padding:34px 22px;
    border-radius:30px;
  }

  .aurora-copy h1{
    font-size:46px;
  }

  .aurora-copy p{
    font-size:16px;
    margin:18px 0 24px;
  }

  .aurora-search{
    min-height:58px;
  }

  .aurora-search button{
    display:none;
  }

  .aurora-actions{
    display:grid;
  }

  .aurora-btn{
    width:100%;
  }

  .aurora-scene{
    width:100%;
    min-height:180px;
  }

  .aurora-card{
    inset:8px auto auto 50%;
    transform:translateX(-50%);
    width:82%;
    height:170px;
    border-radius:26px;
  }

  .aurora-card-top{
    height:88px;
  }

  .aurora-card-lines{
    padding:15px;
    gap:8px;
  }

  .aurora-card-lines span{
    height:9px;
  }

  .aurora-floating{
    font-size:11px;
    padding:9px 12px;
  }

  .aurora-floating-1{top:0;left:4px;}
  .aurora-floating-2{right:4px;bottom:20px;}
  .aurora-floating-3{left:28px;bottom:0;}
}

/* ===== AJUSTE RESPONSIVE PRODUCTOS HOME ===== */

.product-section{
  max-width:1280px;
  margin:0 auto 42px;
  padding:0 18px;
}

.product-section h2{
  margin:0 0 12px;
  color:#172033;
  font-size:26px;
  letter-spacing:-.03em;
}

.p-card{
  transition:.22s ease;
}

.p-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 36px rgba(15,23,42,.14);
}

.p-media{
  position:relative;
  height:190px;
  background:#f3f4f6;
  overflow:hidden;
}

.p-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.p-body{
  padding:14px 14px 16px;
}

.p-title{
  min-height:42px;
  margin:0 0 10px;
  color:#172033;
  font-size:15px;
  line-height:1.35;
  font-weight:900;
}

.p-price{
  min-height:34px;
  display:flex;
  align-items:flex-end;
  gap:8px;
  flex-wrap:wrap;
}

.p-price .now{
  color:#172033;
  font-size:23px;
  line-height:1;
  font-weight:1000;
  letter-spacing:-.04em;
}

.p-fav{
  position:absolute;
  top:10px;
  right:10px;
  z-index:6;
  width:36px;
  height:36px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:#172033;
  font-size:20px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(15,23,42,.16);
}

.p-fav.on{
  color:#f59e0b;
}

@media(max-width:900px){
  .product-carousel{
    padding:8px 44px 14px 4px;
  }

  .p-card{
    flex-basis:220px;
  }

  .p-media{
    height:175px;
  }
}

@media(max-width:600px){
  .product-section{
    padding:0 12px;
    margin-bottom:34px;
  }

  .product-section h2{
    font-size:22px;
  }

  .product-carousel{
    gap:12px;
    padding:8px 36px 14px 2px;
  }

  .p-card{
    flex:0 0 78vw;
    border-radius:18px;
  }

  .p-media{
    height:210px;
  }

  .p-title{
    font-size:16px;
  }

  .p-price .now,
  .precio-oferta-actual{
    font-size:26px;
  }

  .pcar-btn{
    width:34px;
    height:34px;
    font-size:16px;
  }

 }


@media(max-width:420px){
  .p-card{
    flex-basis:82vw;
  }

  .p-media{
    height:190px;
  }
}

@media(max-width:420px){
  .aurora-copy h1{
    font-size:42px;
  }
}

.precio-oferta-anterior{
  margin-left:8px;
  color:#111827;
  text-decoration:line-through;
  text-decoration-thickness:2px;
  text-decoration-color:#111827;
  font-weight:900;
  font-size:13px;
  opacity:.72;
}
@keyframes blinkUrgencia{
  0%{opacity:1;}
  50%{opacity:.65;}
  100%{opacity:1;}
}

@keyframes pulseTiempo{
  0%{transform:scale(1);}
  50%{transform:scale(1.08);}
  100%{transform:scale(1);}
}
 .p-actions{
  margin-top:16px;
}

.btn-ver-producto{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:44px;
  border-radius:14px;
  background:#2457ff;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:900;
  box-shadow:0 12px 26px rgba(36,87,255,.20);
  transition:.22s ease;
}

.btn-ver-producto:hover{
  background:#1d49d8;
  transform:translateY(-2px);
}
.p-fav.on{
  color:#f59e0b !important;
  background:#fff7cc !important;
  border:1px solid rgba(245,158,11,.35);
}
.p-fav{
  pointer-events:auto;
}

.p-card > a{
  position:relative;
}
/* ===== UI BUTTON ===== */

.ui-btn{
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:0 18px;
  border-radius:14px;
  border:1px solid transparent;
  text-decoration:none;
  font-size:14px;
  font-weight:900;
  cursor:pointer;
  transition:.22s ease;
}

.ui-btn-primary{
  background:#2457ff;
  color:#fff;
  box-shadow:0 12px 26px rgba(36,87,255,.20);
}

.ui-btn-primary:hover{
  background:#1d49d8;
  transform:translateY(-2px);
}

.ui-btn-dark{
  background:#172033;
  color:#fff;
}

.ui-btn-outline{
  background:#fff;
  color:#172033;
  border-color:#e8dfd3;
}

/* ===== HOME FILTERS / ACCESOS RAPIDOS ===== */

.home-filters-wrap{
  width:100%;
  max-width:1180px;
  margin:-6px auto 8px;
  padding:0 16px;
}
.home-filters{
  display:flex;
  gap:12px;
  overflow-x:auto;
  padding:4px 2px 12px;
  scrollbar-width:none;
}

.home-filters::-webkit-scrollbar{
  display:none;
}

.home-filter{
  flex:0 0 auto;
  min-width:104px;
  height:82px;
  border-radius:20px;
  background:#fff;
  border:1px solid #e5e7eb;
  box-shadow:0 10px 26px rgba(15,23,42,.07);
  text-decoration:none;
  color:#111827;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:7px;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.home-filter span{
  font-size:24px;
  line-height:1;
}

.home-filter b{
  font-size:13px;
  font-weight:800;
  white-space:nowrap;
}

.home-filter:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 32px rgba(15,23,42,.12);
  border-color:#d1d5db;
}

@media(max-width:700px){
  .home-filters-wrap{
    margin:-2px auto 4px;
    padding:0 12px;
  }

  .home-filters{
    gap:10px;
    padding-bottom:10px;
  }

  .home-filter{
    min-width:88px;
    height:74px;
    border-radius:18px;
  }

  .home-filter span{
    font-size:22px;
  }

  .home-filter b{
    font-size:12px;
  }
}

/* ===== PRODUCT SECTION HEADER ===== */

.product-section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:10px;
}

.product-section-head h2{
  margin:0;
}

.product-see-all{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 16px;
  border-radius:999px;
  background:#fff;
  border:1px solid #e5e7eb;
  color:#111827;
  text-decoration:none;
  font-weight:900;
  font-size:14px;
  box-shadow:0 8px 22px rgba(15,23,42,.06);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-see-all:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(15,23,42,.12);
  border-color:#d1d5db;
}

@media(max-width:700px){
  .product-section-head{
    align-items:center;
  }

  .product-section-head h2{
    font-size:22px;
    line-height:1.15;
  }

  .product-see-all{
    min-height:34px;
    padding:0 12px;
    font-size:12px;
  }
}
.product-section{
  max-width:1180px;
  margin-left:auto;
  margin-right:auto;
  padding-left:16px;
  padding-right:16px;
}

@media(max-width:700px){
  .product-section{
    padding-left:12px;
    padding-right:12px;
  }
}
.product-section{
  margin-top:22px;
}

/* ===== HERO SEARCH SUGGESTIONS ===== */

.aurora-search-icon{
  flex:0 0 auto;
}

.aurora-search-suggestions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}

.aurora-search-suggestions a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(226,232,240,.95);
  color:#111827;
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  box-shadow:0 8px 18px rgba(15,23,42,.05);
}

.aurora-search-suggestions a:hover{
  background:#fff;
  transform:translateY(-1px);
}

@media(max-width:700px){
  .aurora-search-suggestions{
    gap:7px;
    margin-top:8px;
  }

  .aurora-search-suggestions a{
    min-height:28px;
    padding:0 10px;
    font-size:12px;
  }
}

/* ===== HERO AJUSTES FINALES V1 ===== */

.aurora-hero{
  padding-top:28px !important;
  padding-bottom:28px !important;
}

.aurora-hero-inner{
  min-height:420px !important;
}

.aurora-actions{
  margin-top:26px !important;
}

.aurora-btn-secondary{
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.aurora-btn-secondary:hover{
  transform:translateY(-2px);
  background:#0a6dff !important;
  border-color:#0a6dff !important;
  color:#fff !important;
  box-shadow:0 14px 28px rgba(10,109,255,.20);
}

@media(max-width:800px){
  .aurora-hero{
    padding-top:18px !important;
    padding-bottom:18px !important;
  }

  .aurora-hero-inner{
    min-height:auto !important;
  }

  .aurora-actions{
    margin-top:20px !important;
  }
}

/*=================================================
BUSCADOR HOME
=================================================*/

.home-search{
    display:flex;
    gap:12px;
    align-items:center;
    max-width:980px;
    margin:0 auto 22px;
}

.home-search input{
    flex:1;
    height:56px;
    border:none;
    border-radius:14px;
    padding:0 18px;
    font-size:17px;
    background:#fff;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
    outline:none;
}

.home-search input:focus{
    box-shadow:0 0 0 3px rgba(37,99,235,.18);
}

.home-search button{
    height:50px;
    padding:0 24px;
    border:none;
    border-radius:14px;
    background:#2563eb;
    color:#fff;
    font-weight:700;
    cursor:pointer;
    transition:.2s;
}

.home-search button:hover{
    background:#1d4ed8;
}

@media(max-width:700px){

.home-search{
    flex-direction:column;
}

.home-search input,
.home-search button{
    width:100%;
}

}
/* =========================================================
   EXPLORADOR HOME
   ========================================================= */

.explorer-home{
  max-width:1280px;
  margin:28px auto 50px;
  padding:0 24px;
}

.explorer-title{
  text-align:center;
  margin-bottom:22px;
}

.explorer-title h2{
  margin:0;
  font-size:30px;
  line-height:1.15;
  font-weight:900;
  color:#172033;
  letter-spacing:-0.03em;
}

.explorer-title h2 span{
  color:#2457f5;
}

.explorer-title p{
  margin:8px 0 0;
  color:#667085;
  font-size:16px;
}

.explorer-grid{
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:16px;
}

.explorer-card{
  position:relative;
  min-height:220px;
  padding:24px 18px 20px;
  border:1px solid #e7eaf0;
  border-radius:22px;
  background:#fff;
  text-decoration:none;
  color:#172033;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  box-shadow:0 10px 30px rgba(16,24,40,.05);
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.explorer-card:hover{
  transform:translateY(-5px);
  border-color:#cfd8ff;
  box-shadow:0 18px 40px rgba(16,24,40,.11);
}

.explorer-icon{
  width:60px;
  height:60px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  font-size:30px;
  background:#f5f7ff;
}

.explorer-card h3{
  margin:0;
  font-size:18px;
  line-height:1.2;
  font-weight:900;
  color:#172033;
}

.explorer-card p{
  margin:12px 0 0;
  color:#667085;
  font-size:14px;
  line-height:1.5;
}

.explorer-card::after{
  content:"→";
  margin-top:auto;
  padding-top:18px;
  font-size:22px;
  font-weight:900;
  color:#2457f5;
}

/* Variaciones suaves por tarjeta */

.explorer-card:nth-child(1){
  background:linear-gradient(180deg,#ffffff,#f3f7ff);
}

.explorer-card:nth-child(2){
  background:linear-gradient(180deg,#ffffff,#fff7f1);
}

.explorer-card:nth-child(3){
  background:linear-gradient(180deg,#ffffff,#fffaf0);
}

.explorer-card:nth-child(4){
  background:linear-gradient(180deg,#ffffff,#f8f4ff);
}

.explorer-card:nth-child(5){
  background:linear-gradient(180deg,#ffffff,#f2fbf4);
}

.explorer-card:nth-child(6){
  background:linear-gradient(180deg,#ffffff,#fff4f7);
}

/* Tablet */

@media (max-width:1100px){
  .explorer-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }

  .explorer-card{
    min-height:200px;
  }
}

/* Móvil */

@media (max-width:700px){
  .explorer-home{
    margin:22px auto 28px;
    padding:0 14px;
  }

  .explorer-title{
    text-align:left;
    margin-bottom:16px;
  }

  .explorer-title h2{
    font-size:24px;
  }

  .explorer-title p{
    font-size:14px;
  }

  .explorer-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:12px;
  }

  .explorer-card{
    min-height:185px;
    padding:18px 12px 16px;
    border-radius:18px;
  }

  .explorer-icon{
    width:50px;
    height:50px;
    border-radius:15px;
    margin-bottom:14px;
    font-size:25px;
  }

  .explorer-card h3{
    font-size:16px;
  }

  .explorer-card p{
    font-size:13px;
  }
}

@media (max-width:420px){
  .explorer-grid{
    grid-template-columns:1fr;
  }

  .explorer-card{
    min-height:auto;
    align-items:flex-start;
    text-align:left;
  }

  .explorer-card::after{
    position:absolute;
    right:18px;
    bottom:18px;
    padding:0;
  }
}

html{
  scroll-behavior:smooth;
}

#explorar-home{
  scroll-margin-top:110px;
}
.explorer-card.is-disabled{
  cursor:default;
  opacity:.65;
}

.explorer-card.is-disabled:hover{
  transform:none;
  border-color:#e7eaf0;
  box-shadow:0 10px 30px rgba(16,24,40,.05);
}

.explorer-card.is-disabled::after{
  content:"Próximamente";
  font-size:12px;
  color:#98a2b3;
}

/* =========================================================
   ESTADOS VACÍOS
   ========================================================= */

.empty-state {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: 132px;
  padding: 24px 26px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 20px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.96),
      rgba(248, 250, 252, 0.94)
    );
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.empty-state-icon {
  display: grid;
  place-items: center;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 8px 20px rgba(15, 23, 42, 0.08),
    inset 0 0 0 1px rgba(15, 23, 42, 0.05);
  font-size: 27px;
  line-height: 1;
}

.empty-state-content {
  min-width: 0;
}

.empty-state-title {
  display: block;
  margin: 0;
  color: #172033;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.empty-state-message {
  margin: 7px 0 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.55;
}

/* Variante para promociones */

.empty-state-promotions {
  border-color: rgba(245, 158, 11, 0.18);
  background:
    linear-gradient(
      135deg,
      rgba(255, 251, 235, 0.96),
      rgba(255, 255, 255, 0.96)
    );
}

.empty-state-promotions .empty-state-icon {
  background: rgba(255, 247, 214, 0.96);
}

/* Móvil */

@media (max-width: 640px) {
  .empty-state {
    align-items: flex-start;
    gap: 14px;
    min-height: 0;
    padding: 19px;
    border-radius: 17px;
  }

  .empty-state-icon {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    font-size: 23px;
  }

  .empty-state-title {
    font-size: 15px;
  }

  .empty-state-message {
    margin-top: 5px;
    font-size: 13px;
  }
}