/* ========== Monkey Widget – HERO (slider + thumbs) ========== */

/* Wrapper general del bloque de fotos */
.hero-wrap{
  display:block;
}

/* Contenedor del slide principal */
.hero-slider{
  position:relative;
  background:#000;
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 2px 8px rgba(0,0,0,.06);
}

/* Imagen principal (se pinta vía background-image inline) */
.hero-photo{
  height:380px;               /* ajustá si querés más/menos alto */
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* Flechas de navegación */
.nav{
  display: grid !important;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:36px;
  height:36px;
  border-radius:999px;
  border:none;
  background:rgba(255,255,255,.95);
  font-size:22px;
  font-weight:700;
  line-height:1;
  cursor:pointer;
  box-shadow:0 1px 2px rgba(0,0,0,.12);
  transition:transform .12s ease, box-shadow .12s ease;
}
.nav:hover{ transform:translateY(-50%) scale(1.04); box-shadow:0 2px 6px rgba(0,0,0,.18); }
.nav:active{ transform:translateY(-50%) scale(.98); }
.nav.prev{ left:8px; }
.nav.next{ right:8px; }

/* Badge en esquina (ej: “Nos quedan 5 habitaciones”) */
.right-badge{
  position:absolute;
  bottom:12px;
  right:12px;
  background:rgba(0,0,0,.6);
  color:#fff;
  border-radius:4px;
  padding:6px 8px;
  font-size:12px;
  backdrop-filter:saturate(120%) blur(2px);
}

/* Tira de miniaturas */
.thumbs{
  display:flex;
  gap:6px;
  margin-top:8px;
  overflow-x:auto;
  padding-bottom:4px;
}
.thumbs::-webkit-scrollbar{ height:8px; }
.thumbs::-webkit-scrollbar-thumb{ background:#d1d5db; border-radius:8px; }

.thumb{
  min-width:80px;
  height:60px;
  border-radius:4px;
  border:2px solid transparent;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  cursor:pointer;
  transition:border-color .12s ease, transform .08s ease;
}
.thumb:hover{ transform:translateY(-1px); }
.thumb.active{ border-color: var(--orange, #ff7f00); }

/* Responsive */
@media (max-width: 900px){
  .hero-photo{ height:300px; }
}
@media (max-width: 520px){
  .hero-photo{ height:240px; }
}
