
.hls-slider {
  --hls-accent: #c68b2c;
  --hls-accent-soft: #e8dcc5;
  --hls-text: #1d1d1b;
  --hls-muted: #66615a;
  --hls-border: #e7e0d5;
  --hls-surface: #ffffff;
  --hls-gap: 26px;
  position: relative;
  width: 100%;
  margin: 0 auto;
  color: var(--hls-text);
}

.hls-slider *,
.hls-slider *::before,
.hls-slider *::after {
  box-sizing: border-box;
}

.hls-slider__top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 18px;
}

.hls-slider__controls {
  display: flex;
  gap: 10px;
}

.hls-slider__viewport {
  overflow: hidden;
}

.hls-slider__track {
  display: flex;
  gap: var(--hls-gap);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 1px 6px;
  outline: none;
}

.hls-slider__track::-webkit-scrollbar {
  display: none;
}

.hls-room-card {
  flex: 0 0 calc((100% - (var(--hls-gap) * 2)) / 3);
  min-width: 0;
  background: var(--hls-surface);
  border: 1px solid var(--hls-border);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .055);
}

.hls-room-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1.38 / 1;
  overflow: hidden;
  background: #f2eee7;
}

.hls-room-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.hls-room-card:hover .hls-room-card__media img {
  transform: scale(1.035);
}

.hls-room-card__placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  width: 100%;
  padding: 25px;
  text-align: center;
  color: #7b7469;
  font-size: 14px;
  letter-spacing: .02em;
  line-height: 1.5;
}

.hls-room-card__gallery-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  border: 0;
  background: rgba(17, 17, 17, .92);
  color: #fff;
  padding: 12px 18px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}

.hls-room-card__gallery-badge:hover {
  transform: translateY(-1px);
  background: var(--hls-accent);
  color: #111;
}

.hls-room-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 34px 34px 36px;
  min-height: 305px;
}

.hls-room-card__content h3 {
  margin: 0 0 17px;
  color: #111;
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.14;
  font-weight: 600;
}

.hls-room-card__content h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin: 15px auto 0;
  background: var(--hls-accent);
}

.hls-room-card__content p {
  margin: 0 auto;
  max-width: 43ch;
  color: var(--hls-muted);
  font-size: 15.5px;
  line-height: 1.75;
}

.hls-room-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
}

.hls-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 13px 22px;
  border: 1px solid #111;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.hls-btn:hover {
  transform: translateY(-1px);
}

.hls-btn--primary {
  background: #111;
  color: #fff !important;
}

.hls-btn--primary:hover {
  background: var(--hls-accent);
  border-color: var(--hls-accent);
  color: #111 !important;
}

.hls-btn--ghost {
  background: transparent;
  color: #111;
}

.hls-btn--ghost:hover {
  background: #111;
  color: #fff;
}

.hls-slider__arrow {
  appearance: none;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, .18);
  background: #fff;
  color: #111;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0,0,0,.07);
  transition: transform .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease, opacity .22s ease;
}

.hls-slider__arrow svg {
  display: block;
  width: 21px;
  height: 21px;
}

.hls-slider__arrow svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hls-slider__arrow:hover {
  transform: translateY(-1px);
  background: #111;
  border-color: #111;
  color: #fff;
}

.hls-slider__arrow:disabled {
  opacity: .34;
  cursor: default;
  transform: none;
  box-shadow: none;
}

.hls-slider__dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
  min-height: 14px;
}

.hls-dot {
  appearance: none;
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d2cbc0;
  cursor: pointer;
  transition: width .2s ease, background-color .2s ease;
}

.hls-dot.is-active {
  width: 24px;
  background: #111;
}

/* Lightbox premium tipo galería */
.hls-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  color: #fff;
}

.hls-lightbox.is-open {
  display: block;
}

.hls-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.97);
}

.hls-lightbox__close {
  appearance: none;
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 8;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(0,0,0,.48);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.hls-lightbox__close:hover {
  background: #fff;
  border-color: #fff;
  color: #111;
  transform: scale(1.03);
}

.hls-lightbox__top {
  position: absolute;
  inset: 16px 76px auto;
  z-index: 6;
  display: flex;
  justify-content: center;
}

.hls-lightbox__thumbs {
  display: flex;
  gap: 8px;
  max-width: min(980px, 100%);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 7px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hls-lightbox__thumbs::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.hls-thumb {
  appearance: none;
  flex: 0 0 78px;
  width: 78px;
  height: 48px;
  padding: 0;
  border: 2px solid transparent;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  opacity: .62;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}

.hls-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hls-thumb:hover,
.hls-thumb.is-active {
  opacity: 1;
  border-color: var(--hls-accent);
  transform: translateY(-1px);
}

.hls-lightbox__stage {
  position: absolute;
  inset: 88px 0 72px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hls-lightbox__figure {
  margin: 0;
  width: min(82vw, 1180px);
  height: min(calc(100vh - 195px), 760px);
  display: grid;
  place-items: center;
}

.hls-lightbox__figure img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 30px 100px rgba(0,0,0,.55);
}

.hls-lightbox__nav {
  appearance: none;
  position: absolute;
  top: 50%;
  z-index: 7;
  transform: translateY(-50%);
  width: 58px;
  height: 86px;
  border: 0;
  background: rgba(0,0,0,.34);
  color: #fff;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}

.hls-lightbox__nav span {
  display: block;
  font-size: 58px;
  line-height: 1;
  transform: translateY(-4px);
}

.hls-lightbox__nav--prev {
  left: 0;
}

.hls-lightbox__nav--next {
  right: 0;
}

.hls-lightbox__nav:hover {
  background: rgba(255,255,255,.14);
}

.hls-lightbox__nav[hidden] {
  display: none !important;
}

.hls-lightbox__footer {
  position: absolute;
  inset: auto 0 0;
  z-index: 6;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 80px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.46) 38%, rgba(0,0,0,.85) 100%);
  text-align: center;
}

.hls-lightbox__title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hls-lightbox__kicker {
  color: var(--hls-accent);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 10px;
  font-weight: 700;
}

.hls-lightbox__title-wrap strong {
  color: #fff;
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.hls-lightbox__counter {
  color: rgba(255,255,255,.72);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
}

body.hls-modal-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .hls-room-card {
    flex-basis: calc((100% - var(--hls-gap)) / 2);
  }

  .hls-room-card__content {
    min-height: 320px;
  }

  .hls-slider__arrow {
    width: 46px;
    height: 46px;
  }

  .hls-slider__arrow svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 767px) {
  .hls-slider {
    --hls-gap: 18px;
  }

  .hls-room-card {
    flex-basis: 100%;
  }

  .hls-room-card__media {
    aspect-ratio: 1.2 / 1;
  }

  .hls-room-card__content {
    padding: 28px 22px 30px;
    min-height: auto;
  }

  .hls-room-card__content h3 {
    font-size: 25px;
  }

  .hls-room-card__content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .hls-room-card__actions {
    width: 100%;
    padding-top: 24px;
  }

  .hls-btn {
    width: 100%;
  }

  .hls-slider__top {
    margin-bottom: 14px;
  }

  .hls-slider__arrow {
    width: 44px;
    height: 44px;
  }

  .hls-slider__arrow svg {
    width: 19px;
    height: 19px;
  }

  .hls-lightbox__close {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
  }

  .hls-lightbox__top {
    inset: 14px 62px auto 12px;
    justify-content: flex-start;
  }

  .hls-lightbox__thumbs {
    max-width: 100%;
  }

  .hls-thumb {
    flex-basis: 66px;
    width: 66px;
    height: 42px;
  }

  .hls-lightbox__stage {
    inset: 78px 0 88px;
  }

  .hls-lightbox__figure {
    width: calc(100vw - 28px);
    height: calc(100vh - 190px);
  }

  .hls-lightbox__nav {
    width: 44px;
    height: 72px;
  }

  .hls-lightbox__nav span {
    font-size: 46px;
  }

  .hls-lightbox__footer {
    min-height: 82px;
    gap: 8px;
    flex-direction: column;
    padding: 12px 20px 16px;
  }

  .hls-lightbox__title-wrap {
    gap: 8px;
  }

  .hls-lightbox__title-wrap strong {
    font-size: 19px;
  }
}


/* Ajuste v1.2: miniaturas limpias sin barras visibles */
.hls-lightbox__thumbs,
.hls-lightbox__thumbs * {
  scrollbar-width: none;
}

.hls-lightbox__thumbs::-webkit-scrollbar,
.hls-lightbox__thumbs *::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
