/* =========================================
   DIMARS - styles.css (sin frameworks)
   Reordenado + depurado (enero 2026)
   Fuente: Montserrat
   ========================================= */

/* -------------------------------------------------
   1) Reset / Base
------------------------------------------------- */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Montserrat",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  min-height:100vh;
  display:flex;
  flex-direction:column;
  font-size:13px;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.muted{color:var(--muted)}

.container{width:96vw;margin:0 auto}
@media (min-width:1400px){.container{width:96vw}}
main.container{flex:1}

/* -------------------------------------------------
   2) UI helpers (botones / badges / cards)
------------------------------------------------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:10px 12px;border-radius:3px;
  border:1px solid var(--border);
  background:var(--card);color:var(--text);
  font-weight:800;cursor:pointer;user-select:none;
}
.btn:hover{filter:brightness(.98)}
.btn-accent{background:var(--accent);border-color:rgba(0,0,0,.08);color:#fff}

.badge{
  display:inline-flex;align-items:center;justify-content:center;
  min-width:20px;height:20px;padding:0 7px;border-radius:999px;
  background:var(--accent);color:#fff;
  font-size:12px;font-weight:900;
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}
.head{
  background:#0b0f17;color:#EEE;
  padding:14px 16px;border-radius:3px 3px 0 0;
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  font-weight:900;
}
.body{padding:16px}

/* -------------------------------------------------
   3) Topbar
------------------------------------------------- */
.topbar{background:#0b0f17;color:#EEE}
.topbar a{color:#EEE}
.topbar .row{
  display:flex;gap:12px;justify-content:space-between;align-items:center;
  padding:10px 0;font-weight:700;
}
@media (max-width:700px){
  .topbar .row{flex-direction:column;align-items:flex-start}
}

/* -------------------------------------------------
   4) Header / navegación / acciones
------------------------------------------------- */
.header{background:var(--card);border-bottom:1px solid var(--border)}
.header .row{
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  padding:14px 0;
}

/* Logo */
.logo{display:flex;align-items:center;gap:10px;font-weight:900}
.logo .mark{
  width:30%;
  height:38px;
  max-width:650px;
  min-width:150px;
  border-radius:12px;
  display:grid;
  place-items:center;
  color:#fff;
}
.logo .word{letter-spacing:.6px}

/* Menú desktop */
.nav{display:flex;gap:18px;align-items:center}
.nav a{font-weight:800;color:var(--muted)}
.nav a:hover{color:var(--text)}

/* Acciones */
.actions{display:flex;gap:10px;align-items:center}
.select{
  padding:10px 12px;border-radius:14px;border:1px solid var(--border);
  background:var(--card);color:var(--text);font-weight:800;
}
.hamburger{display:none}

/* Search pop */
.search-wrap{position:relative}
.search-pop{
  position:absolute;right:0;top:calc(100% + 10px);
  width:min(520px, 92vw);
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:12px;
  box-shadow:0 20px 55px rgba(0,0,0,.18);
  display:none;
  z-index:60;
}
.search-pop.is-open{display:block}
.search-pop form{display:flex;gap:10px;align-items:center}
.search-pop input{
  flex:1;
  padding:12px 12px;border-radius:14px;
  border:1px solid var(--border);
  background:var(--bg);
  color:var(--text);
  font-weight:700;
  outline:none;
}

/* Carrito preview */
.cart-wrap{position:relative}
.cart-pop{
  position:absolute;right:0;top:calc(100% + 10px);
  width:340px;max-width:92vw;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:12px;
  box-shadow:0 20px 55px rgba(0,0,0,.18);
  display:none;
  z-index:55;
}
.cart-pop::before{
  content:"";
  position:absolute;top:-10px;right:16px;
  border-left:10px solid transparent;
  border-right:10px solid transparent;
  border-bottom:10px solid var(--card);
}
.cart-pop::after{
  /* puente para que no se cierre al mover el mouse */
  content:"";
  position:absolute;left:0;right:0;top:-12px;height:12px;
}
.cart-pop.is-open{display:block}
.cart-pop .title{font-weight:900;margin-bottom:10px}
.mini-empty{padding:10px 2px;color:var(--muted);font-weight:800}
.mini-list{display:flex;flex-direction:column;gap:10px}
.mini-row{display:flex;gap:10px;align-items:center}
.mini-row img{
  width:48px;height:48px;border-radius:14px;object-fit:contain;
  background:var(--bg);
  border:1px solid var(--border);
}
.mini-row .name{font-weight:900;font-size:12px;line-height:1.2}
.mini-row .sku{font-size:11px;color:var(--muted);margin-top:3px}
.mini-more{margin-top:8px;color:var(--muted);font-weight:900;font-size:12px}

/* Header responsive */
@media (max-width:780px){
  .nav{display:none}
  .hamburger{display:inline-flex}
}

/* Header móvil (<= 360px): logo arriba y acciones abajo */
@media (max-width:360px){
  .header .row{
    flex-wrap:wrap !important;
    justify-content:center !important;
  }
  .header .row .logo{
    flex:0 0 100% !important;
    width:100% !important;
    justify-content:center !important;
  }
  .header .row .logo .mark{
    width:auto !important;
    min-width:0 !important;
    max-width:220px !important;
    height:34px !important;
  }
  .header .row .actions{
    flex:0 0 100% !important;
    width:100% !important;
    justify-content:space-between !important;
    gap:10px !important;
  }
  .header .row .actions .select,
  .header .row .actions select{
    flex:1 1 auto !important;
    min-width:140px !important;
  }
}

/* -------------------------------------------------
   5) Menú móvil (off-canvas)
------------------------------------------------- */
.mobile-nav{
  position:fixed;inset:0;
  background:rgba(0,0,0,.45);
  display:none;
  z-index:100;
}
.mobile-nav.is-open{display:block}
.mobile-nav .panel{
  width:min(380px, 90vw);
  height:100%;
  background:var(--card);
  border-right:1px solid var(--border);
  padding:14px;
}
.mobile-nav .head{
  display:flex;justify-content:space-between;align-items:center;
  margin-bottom:10px;
}
.mobile-nav a{
  display:block;
  padding:12px 10px;
  border-radius:14px;
  font-weight:900;
  color:var(--text);
}
.mobile-nav a:hover{background:var(--bg)}

/* -------------------------------------------------
   6) Layout principal (categorías / contenido / aside)
------------------------------------------------- */
.layout{
  display:grid;
  grid-template-columns:280px 1fr 320px;
  gap:16px;
  align-items:start;
  margin:18px 0 30px;
}
.layout > *{min-width:0}

/* Aside derecho inline (tamaños medianos) */
.aside-right-inline{display:none}
@media (max-width:1100px){
  .layout{grid-template-columns:280px 1fr}
  .layout > aside.card.aside-right{display:none}
  .aside-right-inline{display:block;margin-top:14px}
}
@media (max-width:700px){
  .aside-right-inline{display:none}
  .layout{grid-template-columns:1fr}
  .layout > aside{order:-1}
}

/* -------------------------------------------------
   7) Categorías
------------------------------------------------- */
.cat-list{
  display:flex;flex-direction:column;gap:8px;
  max-height:380px;overflow:auto;
  padding-right:6px;
  font-size:12px;
}
.cat-list a{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:3px;
  background:var(--bg);
  font-weight:800;
}
.cat-list a:hover{border-color:rgba(0,0,0,.18);background-color:#dfdfdf}
.cat-list a.is-active{border-color:var(--accent);background-color:#dfdfdf}
.cat-count{color:var(--muted);font-weight:900}
.cat-arrow{display:inline-flex;gap:4px;margin-left:10px}
.cat-arrow i{display:inline-block;width:0;height:0;border-top:5px solid transparent;border-bottom:5px solid transparent}
.cat-arrow i.r{border-left:6px solid var(--accent)}
.tagcat{margin-left:10px;font-size:12px;color:var(--accent)}

/* Móvil: categorías horizontales antes del listado */
@media (max-width:700px){
  .cat-list{
    flex-direction:row;
    overflow-x:auto;overflow-y:hidden;
    white-space:nowrap;
    max-height:none;
    padding-bottom:10px;
  }
  .cat-list a{flex:0 0 auto;border-radius:999px}
}

/* -------------------------------------------------
   8) Aside derecho (Lo más nuevo / cotizado)
------------------------------------------------- */
.side-mini{display:flex;flex-direction:column;gap:10px}
.side-mini .mini{
  display:flex;gap:10px;align-items:center;
  padding:10px;
  border:1px solid var(--border);
  border-radius:3px;
  background:var(--bg);
}
.side-mini .mini:hover{border-color:rgba(0,0,0,.20)}
html[data-theme="oscuro"] .side-mini .mini:hover{border-color:rgba(255,255,255,.18)}
.side-mini .mini img{
  width:52px;
  height:52px;
  border-radius:14px;
  object-fit:contain;
  background:var(--bg);
  border:1px solid var(--border);
}
.side-mini .title{font-weight:900;font-size:12px;line-height:1.2}
.side-mini .sku{font-size:11px;color:var(--muted);margin-top:4px}

/* -------------------------------------------------
   9) Controles de Galería (Ordenar / Mostrar / Ver como)
   - .toolbar es el bloque actual
   - .filters se deja como alias por compatibilidad
------------------------------------------------- */
.toolbar, .filters{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:nowrap;
  margin:8px 0 10px;
  justify-content:space-between;
  background-color:#dfdfdf;
  padding:8px 10px;
  border-radius:3px;
}

.toolbar .group, .filters .group{
  display:flex;align-items:center;gap:10px;
  white-space:nowrap;
}

.toolbar label, .filters label{
  display:flex;align-items:center;gap:8px;
  font-size:12px;
  font-weight:900;
  color:var(--muted);
  margin:0;
  white-space:nowrap;
}

.toolbar .select,
.filters .select,
.filters select{
  padding:7px 10px;
  height:32px;
  border-radius:3px;
  font-size:12px;
  font-weight:700;
  min-width:170px;
  border:1px solid var(--border);
  background:var(--card);
  color:var(--text);
}

.toolbar .view-toggle, .filters .view-toggle{
  display:flex;align-items:center;gap:8px;
  margin-left:auto;
}

.toolbar .icon-btn{
  width:34px;height:34px;
  border-radius:10px;
  border:1px solid var(--border);
  background:var(--card);
  color:var(--text);
  cursor:pointer;
  display:grid;
  place-items:center;
  font-size:14px;
  line-height:1;
}
.toolbar .icon-btn.is-active{
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(0,0,0,.06);
}

@media (max-width:980px){
  .toolbar, .filters{flex-wrap:wrap}
  .toolbar .view-toggle, .filters .view-toggle{margin-left:0}
}

/* -------------------------------------------------
   10) Formularios
------------------------------------------------- */
.form{display:flex;flex-direction:column;gap:12px}
.form-row{display:flex;flex-direction:column;gap:6px}
.form-row label{font-weight:900;font-size:12px;color:var(--muted)}
.form-row input,.form-row textarea{
  border:1px solid var(--border);
  border-radius:14px;
  padding:11px 12px;
  background:var(--bg);
  color:var(--text);
  font-weight:600;
  outline:none;
}
.form-row input:focus,.form-row textarea:focus{
  border-color:rgba(212,0,23,.55);
  box-shadow:0 0 0 4px rgba(212,0,23,.10)
}

/* -------------------------------------------------
   11) Productos (grid / lista)
------------------------------------------------- */
.grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}
@media (max-width:1000px){.grid{grid-template-columns:repeat(2, minmax(0, 1fr))}}
@media (max-width:650px){.grid{grid-template-columns:1fr}}

.product{
  position:relative;
  overflow:hidden;
  border-radius:3px;
  border:1px solid rgb(255 255 255 / 12%);
  background:var(--card);
}
.product .img{
  aspect-ratio:4 / 3;
  height:auto;
  overflow:hidden;
  background:var(--bg);
  display:flex;
  align-items:center;
  justify-content:center;
}
.product img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  background:var(--bg);
}
.product .meta{padding:14px 16px 16px}
.product .name{margin:6px 10px;font-size:13px;line-height:1.25;font-weight:600}
.product .sku{margin:6px 10px;font-size:11px;color:var(--muted);line-height:1.15}

/* Hover overlay con botones */
.product .overlay,
.hover-actions{
  position:absolute;inset:0;
  background:rgba(0,0,0,.42);
  opacity:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition:.18s ease;
}
.product:hover .overlay,
.product:hover .hover-actions{opacity:1}

.btn-mini{
  padding:10px 12px;
  border-radius:3px;
  border:1px solid rgba(255,255,255,.22);
  background:var(--accent);
  color:#fff;
  font-weight:900;
  font-size:12px;
}
.btn-mini.secondary{background:rgba(58,58,58,2.26)}
.btn-red{background:var(--accent);color:#fff;border:none}

/* Vista lista */
.grid.is-list{grid-template-columns:1fr}
.grid.is-list .product{display:flex;gap:12px;align-items:stretch}
.grid.is-list .product .img{width:220px;aspect-ratio:4 / 3;height:auto;flex:0 0 auto;background:var(--bg)}
@media (max-width:650px){
  .grid.is-list .product{flex-direction:column}
  .grid.is-list .product .img{width:auto;aspect-ratio:4 / 3;height:auto;background:var(--bg)}
}

/* -------------------------------------------------
   12) Paginación
------------------------------------------------- */
.pagination{
  display:flex;gap:8px;justify-content:center;align-items:center;
  margin-top:16px;flex-wrap:wrap;
}
.pbtn{
  min-width:38px;height:38px;
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:12px;
  border:1px solid var(--border);
  background:var(--card);
  font-weight:900;
}
.pbtn:hover{border-color:rgba(0,0,0,.18)}
.pbtn.is-active{
  background:var(--accent);
  color:#fff;
  border-color:rgba(0,0,0,.08);
}
.pell{color:var(--muted);font-weight:900}

/* -------------------------------------------------
   13) Modal producto
------------------------------------------------- */
.modal{
  position:fixed;inset:0;
  background:rgba(0,0,0,.55);
  display:none;
  z-index:200;
}
.modal.is-open{display:grid;place-items:center}
.modal .panel{
  width:min(980px, 94vw);
  background:var(--card);
  border:1px solid var(--border);
  border-radius:22px;
  position:relative;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}
.modal .close{
  position:absolute;right:12px;top:12px;
  width:42px;height:42px;border-radius:14px;
  border:1px solid var(--border);
  background:var(--bg);
  font-weight:900;
  cursor:pointer;
}
.modal .nav{position:absolute;inset:0;pointer-events:none}
.modal .arrow{
  pointer-events:auto;
  position:absolute;top:50%;transform:translateY(-50%);
  width:54px;height:54px;border-radius:18px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,0,0,.35);
  color:#fff;font-size:30px;font-weight:900;cursor:pointer;
}
.modal .arrow:first-child{left:12px}
.modal .arrow:last-child{right:12px}

.modal .content{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:0;
}
@media (max-width:900px){.modal .content{grid-template-columns:1fr}}
.modal .content .img{background:var(--bg)}
.modal .content .img img{width:100%;height:520px;object-fit:contain;background:var(--bg)}
@media (max-width:900px){.modal .content .img img{height:320px}}

.modal .info{padding:60px 10px 15px 10px}
.modal .info .name{font-size:18px;font-weight:900}
.modal .info .sku{margin-top:6px;color:var(--muted);font-weight:900}
.modal .info p{margin-top:10px;color:var(--muted);line-height:1.55}

/* -------------------------------------------------
   14) Footer
------------------------------------------------- */
.footer{background:#0b0f17;color:#EEE;margin-top:auto}
.footer .cols{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:18px;
  padding:22px 0;
}
@media (max-width:800px){.footer .cols{grid-template-columns:1fr}}
.footer a{color:#EEE;opacity:.9}
.footer a:hover{opacity:1}
.f-title{font-weight:900;margin-bottom:8px}
.copy{
  border-top:1px solid rgba(255,255,255,.10);
  padding:12px 0;
  opacity:.85;
  font-weight:700;
}

/* -------------------------------------------------
   15) Slider LEGACY (si algún archivo usa data-slider + slider.js)
------------------------------------------------- */
.slider{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--border);
  background:var(--card);
}
.slider .track{display:flex;transition:transform .35s ease}
.slider .slide{
  min-width:100%;
  height:360px;
  background-size:cover;
  background-position:center;
  position:relative;
}
@media (max-width:700px){.slider .slide{height:260px}}
.slider .cap{
  position:absolute;left:16px;bottom:16px;
  background:rgba(11,15,23,.78);
  color:#EEE;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  max-width:min(520px,90vw);
}
.slider .cap .t{font-weight:900;font-size:16px;margin:0}
.slider .cap .d{font-weight:700;opacity:.88;margin-top:4px}
.slider .nav{
  position:absolute;top:50%;transform:translateY(-50%);
  width:44px;height:44px;border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.35);
  color:#fff;font-size:26px;font-weight:900;cursor:pointer;z-index:2;
}
.slider .nav.prev{left:12px}
.slider .nav.next{right:12px}

/* Dots (legacy) */
.slider-dots{
  position:absolute;
  left:0;right:0;bottom:12px;
  display:flex;
  justify-content:center;
  gap:8px;
  z-index:3;
}
.slider-dots .dot{
  width:10px;height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.35);
}


/* -------------------------------------------------
   16) Home Slider (Index) - home-slider.js
   - Root: .home-slider + [data-home-slider]
   - Slide: .home-slide (JS agrega .is-active)
   - Dots: .home-dot (JS agrega .is-active)
   - Modo: root.is-fade (overlay) para permitir animación por slide
------------------------------------------------- */
.home-slider{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  background:rgba(0,0,0,.06);
  height:clamp(286px, 70vh, 640px);
  max-height:calc(100vh - var(--header-h, 0px) - 24px);
  box-shadow:0 10px 26px rgba(0,0,0,.12);
}

@media (max-width: 768px){
  .home-slider{
    height:clamp(242px, 37vh, 396px);
  }
}

.home-slider__viewport,
.home-slider__track{
  height:100%;
}

/* Siempre overlay (fade) */
.home-slider.is-fade .home-slider__track{
  position:relative;
  height:100%;
}

/* Base slide */
.home-slide{
  width:100%;
  height:100%;
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  transform:translate3d(0,0,0);
  transition:opacity .6s ease, transform .6s ease;
}

.home-slide.is-active{
  opacity:1;
  pointer-events:auto;
}

/* Animación de entrada por slide (data-anim-slide / data-anim-slider) */
.home-slide.anim-fade{ transform:translate3d(0,0,0); }
.home-slide.anim-lado{ transform:translate3d(-42px,0,0); }
.home-slide.anim-arriba{ transform:translate3d(0,42px,0); }

.home-slide.anim-lado.is-active,
.home-slide.anim-arriba.is-active{
  transform:translate3d(0,0,0);
}

/* Fondo imagen */
.home-slide__bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  filter:saturate(1.05);
}

/* Video container */
.home-video{
  position:absolute;
  inset:0;
  overflow:hidden;
}
.home-video iframe,
.home-video > div{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

/* Overlay (para legibilidad del texto) */
.home-slide__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,
    rgba(0,0,0,.50) 0%,
    rgba(0,0,0,.30) 45%,
    rgba(0,0,0,.10) 100%
  );
}

/* --- Posicionamiento del texto por tercios (izq/centro/der) --- */
.home-slide__content{
  position:absolute;
  inset:0;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  align-items:center;
  justify-items:center;
  padding:26px;
}

@media (max-width: 768px){
  .home-slide__content{ padding:18px; }
}

.home-slide__stack{
  grid-column:2;
  max-width:min(520px, 100%);
  padding:0 12px;
  text-align:center;
}

.home-slide[data-pos-texto="izq"] .home-slide__stack{ grid-column:1; }
.home-slide[data-pos-texto="centro"] .home-slide__stack{ grid-column:2; }
.home-slide[data-pos-texto="der"] .home-slide__stack{ grid-column:3; }

/* Tipografía */
.home-slide__title{
  font-size:clamp(26px, 3.1vw, 44px);
  line-height:1.08;
  font-weight:800;
  margin:0 0 10px 0;
  color:#fff;
  text-shadow:0 6px 16px rgba(0,0,0,.35);
}
.home-slide__sub{
  margin:0 0 8px 0;
  font-weight:700;
  color:rgba(255,255,255,.92);
  text-shadow:0 6px 16px rgba(0,0,0,.35);
}
.home-slide__desc{
  margin:0;
  color:rgba(255,255,255,.88);
  text-shadow:0 6px 16px rgba(0,0,0,.35);
}

/* --- Animación de entrada de textos (con delays de 0.5s) --- */
.home-slide__title,
.home-slide__sub,
.home-slide__desc{
  opacity:0;
  transform:translate3d(0, 14px, 0);
  transition:opacity .55s ease, transform .55s ease;
  will-change:opacity, transform;
}

/* Dirección por slide */
.home-slide[data-anim-texto="lado"] .home-slide__title,
.home-slide[data-anim-texto="lado"] .home-slide__sub,
.home-slide[data-anim-texto="lado"] .home-slide__desc{
  transform:translate3d(-18px, 0, 0);
}

.home-slide[data-anim-texto="arriba"] .home-slide__title,
.home-slide[data-anim-texto="arriba"] .home-slide__sub,
.home-slide[data-anim-texto="arriba"] .home-slide__desc{
  transform:translate3d(0, -18px, 0);
}

.home-slide.is-active .home-slide__title,
.home-slide.is-active .home-slide__sub,
.home-slide.is-active .home-slide__desc{
  opacity:1;
  transform:translate3d(0,0,0);
}

/* Delays: 0.5s entre cada elemento */
.home-slide.is-active .home-slide__title{ transition-delay:.15s; }
.home-slide.is-active .home-slide__sub{ transition-delay:.65s; }
.home-slide.is-active .home-slide__desc{ transition-delay:1.15s; }

/* Flechas */
.home-slider__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(0,0,0,.30);
  color:#fff;
  font-size:34px;
  line-height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:5;
  user-select:none;
}
.home-slider__nav:hover{ background:rgba(0,0,0,.45); }
.home-slider__nav.prev{ left:14px; }
.home-slider__nav.next{ right:14px; }

/* Dots */
.home-slider__dots{
  position:absolute;
  left:50%;
  bottom:12px;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:6;
}
.home-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.55);
  background:rgba(255,255,255,.25);
  cursor:pointer;
}
.home-dot.is-active{
  background:#d00000;
  border-color:#d00000;
}


/* -------------------------------------------------
   17) Misceláneos
------------------------------------------------- */
hr{
  height:1px;
  width:100%;
  background-color:#000;
  margin:20px 0;
}
.seasonal-layer{
  position:fixed;inset:0;
  pointer-events:none;
  z-index:5;
}