/* ================================================================
   SMB Casa Blanca Home — Paleta arena / crema Caribe
   ================================================================ */

/* Desactivar scroll-anchor automático para evitar saltos de posición
   cuando el plugin SMC oculta su topbar después del load */
html { overflow-anchor: none; }

:root {
  /* Fondos claros — arena y crema cálida */
  --cbh-bg:         #faf3e8;
  --cbh-bg-warm:    #f2e8d4;
  --cbh-bg-section: #f8f1e4;

  /* Paneles/tarjetas */
  --cbh-panel:      rgba(255, 250, 242, 0.95);

  /* Bordes */
  --cbh-border:     rgba(160, 128, 75, 0.2);

  /* Texto */
  --cbh-text:       #2c1e0e;
  --cbh-muted:      #7a6248;
  --cbh-text-light: #f5ede0;   /* texto sobre fotos con overlay */

  /* Acento dorado/arena */
  --cbh-gold:       #b58a42;
  --cbh-gold-light: #d4a94e;
  --cbh-gold-dark:  #8a6428;

  /* Naturaleza */
  --cbh-sage:       #7c8c60;
  --cbh-sage-soft:  #a0a87a;

  /* Sombras */
  --cbh-shadow:     0 8px 40px rgba(60,40,10,.14);
  --cbh-shadow-sm:  0 3px 16px rgba(60,40,10,.10);

  /* Bordes redondeados */
  --cbh-radius:     16px;
  --cbh-radius-sm:  9px;
}

/* ----------------------------------------------------------------
   Reset & base
   ---------------------------------------------------------------- */
.scbh-home,
.scbh-home * {
  box-sizing: border-box;
}

.scbh-home {
  font-family: "Marcellus", Georgia, "Times New Roman", serif;
  color: var(--cbh-text);
  background: var(--cbh-bg);
  overflow-x: hidden;
  /* Rompe el contenedor del tema para ocupar ancho completo */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* ----------------------------------------------------------------
   Shared utilities
   ---------------------------------------------------------------- */
.scbh-container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

.scbh-eyebrow {
  font-family: "Inter", Arial, sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cbh-gold-dark);
  margin: 0 0 .9rem;
}

.scbh-eyebrow--light {
  color: var(--cbh-gold-light);
}

.scbh-section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 1.4rem;
  color: var(--cbh-text);
}

.scbh-section-title--light {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

/* ----------------------------------------------------------------
   Botones
   ---------------------------------------------------------------- */
.scbh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 2.2rem;
  border-radius: 4px;
  font-family: "Inter", Arial, sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .18s ease, box-shadow .18s ease, background .2s ease;
  position: relative;
  overflow: hidden;
}

.scbh-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity .18s;
}
.scbh-btn:hover::after { opacity: 1; }
.scbh-btn:active       { transform: scale(.97); }

/* Dorado (principal) */
.scbh-btn--gold {
  background: var(--cbh-gold);
  color: #fff;
  box-shadow: 0 4px 16px rgba(181,138,66,.3);
}
.scbh-btn--gold:hover {
  background: var(--cbh-gold-light);
  box-shadow: 0 8px 24px rgba(181,138,66,.45);
  transform: translateY(-2px);
}

/* Outline (secundario) */
.scbh-btn--outline {
  background: transparent;
  color: var(--cbh-gold-dark);
  border: 1.5px solid var(--cbh-gold);
}
.scbh-btn--outline:hover {
  background: rgba(181,138,66,.08);
  transform: translateY(-2px);
}

/* Outline claro (sobre fotos) */
.scbh-btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.7);
}
.scbh-btn--outline-light:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   TOPBAR
   ---------------------------------------------------------------- */
.scbh-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 0 clamp(18px, 4vw, 48px);
  min-height: 64px;
  background: rgba(250, 243, 232, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--cbh-border);
  box-shadow: 0 2px 20px rgba(60,40,10,.1);
  transition: background .25s, box-shadow .25s;
}

.scbh-topbar.is-scrolled {
  background: rgba(250, 243, 232, 0.98);
  box-shadow: 0 4px 28px rgba(60,40,10,.15);
}

.scbh-topbar__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.scbh-topbar__logo img {
  height: 38px;
  width: auto;
  filter: brightness(0);
}

.scbh-topbar__logo-text {
  font-family: "Marcellus", Georgia, serif;
  font-size: 1rem;
  color: var(--cbh-text);
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.1;
}

.scbh-topbar__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.scbh-topbar__nav a {
  font-family: "Inter", Arial, sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cbh-muted);
  transition: color .18s;
}

.scbh-topbar__nav a:hover { color: var(--cbh-gold-dark); }

.scbh-topbar__cta {
  flex-shrink: 0;
  padding: .55rem 1.5rem;
  font-size: .78rem;
}

/* Hamburger (mobile) */
.scbh-topbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  flex-shrink: 0;
}

.scbh-topbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cbh-text);
  border-radius: 2px;
  transition: transform .22s, opacity .22s;
}

.scbh-topbar__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.scbh-topbar__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.scbh-topbar__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 720px) {
  .scbh-topbar__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250,243,232,.98);
    border-bottom: 1px solid var(--cbh-border);
    flex-direction: column;
    gap: 0;
    padding: .5rem 0 1rem;
    box-shadow: 0 8px 24px rgba(60,40,10,.12);
  }

  .scbh-topbar__nav.is-open { display: flex; }

  .scbh-topbar__nav a {
    padding: .8rem clamp(18px, 4vw, 48px);
    width: 100%;
  }

  .scbh-topbar__hamburger { display: flex; }
  .scbh-topbar__cta       { display: none; }
}

/* Empuja el contenido para no quedar debajo del topbar */
.scbh-hero { padding-top: 64px; }

/* ----------------------------------------------------------------
   Placeholders cuando no hay imagen configurada
   ---------------------------------------------------------------- */
.scbh-placeholder {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #d4c0a0 0%, #b89870 50%, #8a7050 100%);
}

/* ----------------------------------------------------------------
   HERO
   ---------------------------------------------------------------- */
.scbh-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #b8a080;
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* scroll por defecto — iOS no soporta fixed */
}

.scbh-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,12,4,.62) 0%,
    rgba(20,12,4,.35) 45%,
    rgba(20,12,4,.68) 100%
  );
}

/* Logo centrado en el hero */
.scbh-hero__logo-wrap {
  position: relative;
  z-index: 2;
  padding-top: clamp(40px, 8vh, 70px);
  margin-bottom: auto;
  text-align: center;
}

.scbh-hero__logo-wrap img {
  width: clamp(140px, 28vw, 220px);
  height: auto;
  filter: drop-shadow(0 2px 14px rgba(0,0,0,.6));
}

.scbh-hero__logo-fallback {
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: #fff;
  text-align: center;
  letter-spacing: .1em;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
  margin: 0;
}

/* Contenido central del hero */
.scbh-hero__content {
  position: relative;
  z-index: 2;
  width: min(660px, 90%);
  margin-inline: auto;
  text-align: center;
  padding: 0 0 clamp(60px, 10vh, 120px);
  margin-top: auto;
}

.scbh-hero__eyebrow {
  font-family: "Inter", Arial, sans-serif;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cbh-gold-light);
  margin: 0 0 1.2rem;
}

.scbh-hero__title {
  font-size: clamp(2.6rem, 7.5vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 1.2rem;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.55);
}

.scbh-hero__title span {
  font-style: italic;
  color: var(--cbh-gold-light);
}

.scbh-hero__lead {
  font-size: clamp(.95rem, 2.2vw, 1.08rem);
  color: rgba(255,255,255,.88);
  line-height: 1.72;
  margin: 0 0 2rem;
}

.scbh-hero__lead strong { color: var(--cbh-gold-light); font-weight: 500; }

/* Indicador de scroll */
.scbh-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scbh-hero__scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  position: relative;
}

.scbh-hero__scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  animation: scbh-scroll-dot 1.6s ease-in-out infinite;
}

@keyframes scbh-scroll-dot {
  0%   { opacity: 1; top: 6px; }
  80%  { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 6px; }
}

/* ----------------------------------------------------------------
   BIENVENIDA
   ---------------------------------------------------------------- */
.scbh-welcome {
  background: var(--cbh-bg-warm);
  padding: clamp(60px, 10vw, 110px) 0;
  border-top: 1px solid var(--cbh-border);
}

.scbh-welcome__header {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: .4rem;
}

.scbh-welcome__icon {
  width: 34px;
  height: 34px;
  color: var(--cbh-gold);
  flex-shrink: 0;
}

.scbh-welcome__title {
  margin-bottom: 2.2rem;
}

.scbh-welcome__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2.4rem;
}

@media (max-width: 720px) {
  .scbh-welcome__body { grid-template-columns: 1fr; }
}

.scbh-welcome__copy p {
  font-size: clamp(.95rem, 2vw, 1.05rem);
  line-height: 1.82;
  color: var(--cbh-muted);
  margin: 0 0 1.2rem;
}

.scbh-welcome__copy strong { color: var(--cbh-text);      font-weight: 500; }
.scbh-welcome__copy em    { color: var(--cbh-gold-dark);  font-style: italic; }

.scbh-welcome__closing,
.scbh-welcome__sub {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--cbh-muted);
  max-width: 660px;
  margin: 0 0 1rem;
}

.scbh-welcome__sub {
  margin-bottom: 2rem;
}

/* Mini-galería */
.scbh-gallery {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.scbh-gallery__grid {
  display: flex;
  gap: .6rem;
}

@keyframes scbh-thumb-select {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.07); }
  70%  { transform: scale(.97); }
  100% { transform: scale(1.04); }
}

.scbh-gallery__thumb {
  flex: 1;
  aspect-ratio: 1;
  border-radius: var(--cbh-radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2.5px solid transparent;
  background: transparent !important;
  padding: 0;
  outline: none !important;
  box-shadow: none;
  transition: border-color .22s, transform .22s, box-shadow .22s;
  -webkit-tap-highlight-color: transparent;
}

.scbh-gallery__thumb:focus,
.scbh-gallery__thumb:focus-visible,
.scbh-gallery__thumb:active {
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}

.scbh-gallery__thumb:hover {
  border-color: var(--cbh-gold);
  box-shadow: 0 0 0 3px rgba(181,138,66,.25);
  transform: scale(1.03);
}

.scbh-gallery__thumb.is-active {
  border-color: var(--cbh-gold-dark);
  box-shadow: 0 0 0 4px rgba(138,100,40,.35), 0 4px 14px rgba(60,40,10,.2);
  animation: scbh-thumb-select .38s cubic-bezier(.34,1.56,.64,1) forwards;
}

@media (prefers-reduced-motion: reduce) {
  .scbh-gallery__thumb.is-active { animation: none; transform: scale(1.04); }
}

.scbh-gallery__img,
.scbh-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scbh-gallery__expand {
  border-radius: var(--cbh-radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #c8b090;
  position: relative;
  box-shadow: var(--cbh-shadow-sm);
}

.scbh-gallery__main-img {
  position: absolute;
  inset: 0;
  transition: opacity .3s ease;
}

.scbh-gallery__expand .scbh-placeholder {
  position: absolute;
  inset: 0;
}

/* ----------------------------------------------------------------
   LIFESTYLE / VIDEO
   ---------------------------------------------------------------- */
.scbh-lifestyle {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #b8a080;
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* scroll por defecto — iOS no soporta fixed */
  overflow: hidden;
}

.scbh-lifestyle__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,12,4,.42);
}

.scbh-lifestyle__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Botón de play */
.scbh-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(181,138,66,.9);
  border: none;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, background .2s;
  box-shadow: 0 0 0 14px rgba(181,138,66,.18);
}

.scbh-play-btn:hover {
  transform: scale(1.1);
  background: var(--cbh-gold-light);
}

.scbh-play-btn__icon {
  font-size: 1.5rem;
  color: #fff;
  margin-left: 4px;
}

/* ----------------------------------------------------------------
   CTA TARIFA
   ---------------------------------------------------------------- */
.scbh-rate-cta {
  background: var(--cbh-bg-section);
  padding: clamp(50px, 8vw, 88px) 0;
  border-top: 1px solid var(--cbh-border);
  border-bottom: 1px solid var(--cbh-border);
}

.scbh-rate-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.scbh-rate-cta__text .scbh-section-title {
  margin-bottom: .5rem;
}

.scbh-rate-cta__action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.scbh-rate-cta__price {
  font-size: 2rem;
  color: var(--cbh-gold-dark);
  font-weight: 400;
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: .4rem;
}

.scbh-rate-cta__desde,
.scbh-rate-cta__noche {
  font-family: "Inter", Arial, sans-serif;
  font-size: .76rem;
  color: var(--cbh-muted);
  font-weight: 400;
}

@media (max-width: 640px) {
  .scbh-rate-cta__inner  { flex-direction: column; text-align: center; }
  .scbh-rate-cta__action { align-items: center; }
}

/* ----------------------------------------------------------------
   HABITACIONES
   ---------------------------------------------------------------- */
/* ================================================================
   HABITACIONES — tarjetas con carrusel
   ================================================================ */
.scbh-rooms {
  background: var(--cbh-bg);
  padding: clamp(60px, 10vw, 110px) 0;
}

.scbh-rooms__eyebrow { margin-bottom: .5rem; }
.scbh-rooms .scbh-section-title { margin-bottom: 3rem; }

.scbh-rooms__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.8rem;
}

.scbh-room-card {
  border-radius: var(--cbh-radius);
  border: 1px solid var(--cbh-border);
  background: var(--cbh-panel);
  box-shadow: var(--cbh-shadow-sm);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .22s ease, transform .22s ease;
}

.scbh-room-card:hover {
  box-shadow: 0 20px 50px rgba(60,40,10,.18), 0 0 24px rgba(181,138,66,.12);
  transform: translateY(-3px);
}

/* --- Media / carrusel de fotos en la tarjeta --- */
.scbh-room-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cbh-bg-warm);
}

.scbh-card-carousel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity .38s ease;
  pointer-events: none;
}

.scbh-card-carousel__slide.is-active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.scbh-card-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scbh-card-carousel__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cbh-bg-warm), var(--cbh-bg-section));
}

.scbh-card-carousel__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 5px 9px;
}

.scbh-card-carousel__dots .scbh-card-carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.45);
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .22s, transform .22s, width .22s;
}

.scbh-card-carousel__dots .scbh-card-carousel__dot:hover {
  background: rgba(255,255,255,.75);
  transform: scale(1.2);
}

.scbh-card-carousel__dots .scbh-card-carousel__dot.is-active {
  background: var(--cbh-gold, #b58a42);
  width: 18px;
  border-radius: 3px;
  transform: none;
}

.scbh-room-card__badge {
  position: absolute;
  top: 11px;
  left: 11px;
  z-index: 3;
  font-family: "Inter", Arial, sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(30,15,0,.5);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  padding: .26rem .72rem;
}

/* --- Cuerpo de la tarjeta --- */
.scbh-room-card__body {
  padding: 1.3rem 1.5rem 1.5rem;
}

.scbh-room-card__name {
  font-size: 1.12rem;
  font-weight: 400;
  color: var(--cbh-text);
  margin: 0 0 .65rem;
  text-transform: capitalize;
}

.scbh-room-card__chips {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.scbh-room-card__chips span {
  font-family: "Inter", Arial, sans-serif;
  font-size: .74rem;
  color: var(--cbh-muted);
  background: var(--cbh-bg-warm);
  border: 1px solid var(--cbh-border);
  border-radius: 20px;
  padding: .24rem .72rem;
}

.scbh-room-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
}

.scbh-room-card__price {
  margin: 0;
  font-size: .97rem;
  color: var(--cbh-gold-dark);
}

.scbh-room-card__price span {
  font-family: "Inter", Arial, sans-serif;
  font-size: .74rem;
  color: var(--cbh-muted);
}

/* ================================================================
   MODAL DETALLE HABITACIÓN
   ================================================================ */
.scbh-room-modal {
  position: fixed;
  inset: 0;
  z-index: 9002;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .26s ease, visibility .26s ease;
}

.scbh-room-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.scbh-room-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,10,0,.72);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.scbh-room-modal__panel {
  position: relative;
  z-index: 2;
  background: var(--cbh-panel);
  border-radius: var(--cbh-radius);
  box-shadow: var(--cbh-shadow);
  width: min(700px, 94vw);
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: translateY(24px) scale(.97);
  transition: transform .32s cubic-bezier(.34,1.56,.64,1);
}

.scbh-room-modal.is-open .scbh-room-modal__panel {
  transform: translateY(0) scale(1);
}

.scbh-room-modal__close {
  position: absolute;
  top: 11px;
  right: 13px;
  z-index: 5;
  background: rgba(255,255,255,.85);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--cbh-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.scbh-room-modal__close:hover { background: #fff; }

.scbh-room-modal__carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--cbh-radius) 0 0 var(--cbh-radius);
  background: var(--cbh-bg-warm);
  min-height: 280px;
}

.scbh-rm-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .38s ease;
}

.scbh-rm-slide.is-active { opacity: 1; }

.scbh-rm-slide:first-child { position: relative; }

.scbh-rm-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scbh-rm-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}

.scbh-rm-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  padding: 0;
  transition: background .2s;
}

.scbh-rm-dot.is-active { background: #fff; }

.scbh-room-modal__body {
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.scbh-room-modal__name {
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cbh-text);
  margin: 0;
  text-transform: capitalize;
}

.scbh-room-modal__meta {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.scbh-room-modal__meta span {
  font-family: "Inter", Arial, sans-serif;
  font-size: .78rem;
  color: var(--cbh-muted);
  background: var(--cbh-bg-warm);
  border: 1px solid var(--cbh-border);
  border-radius: 20px;
  padding: .28rem .8rem;
}

.scbh-room-modal__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.scbh-room-modal__features li {
  font-family: "Inter", Arial, sans-serif;
  font-size: .74rem;
  color: var(--cbh-sage);
  background: rgba(124,140,96,.08);
  border: 1px solid rgba(124,140,96,.25);
  border-radius: 4px;
  padding: .2rem .6rem;
}

.scbh-room-modal__price {
  font-size: 1.25rem;
  color: var(--cbh-gold-dark);
}

.scbh-room-modal__price small {
  font-family: "Inter", Arial, sans-serif;
  font-size: .76rem;
  color: var(--cbh-muted);
}

.scbh-room-modal__cta { width: 100%; margin-top: auto; }

@media (max-width: 580px) {
  .scbh-room-modal__panel {
    grid-template-columns: 1fr;
    max-height: 96vh;
  }
  .scbh-room-modal__carousel {
    border-radius: var(--cbh-radius) var(--cbh-radius) 0 0;
    min-height: 210px;
    max-height: 210px;
  }
}

/* ----------------------------------------------------------------
   MAPA / UBICACIÓN
   ---------------------------------------------------------------- */
.scbh-map-block {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(181,138,66,.08) 0%, transparent 65%),
    #1a1208;
  padding: clamp(60px, 9vw, 100px) 0 0;
  text-align: center;
  color: var(--cbh-text-light);
}

.scbh-map-block__copy {
  padding: 0 clamp(1rem, 5vw, 3rem) 2.5rem;
}

.scbh-map-block__label {
  font-family: "Inter", Arial, sans-serif;
  font-size: .95rem;
  color: rgba(245,237,224,.7);
  margin: .4rem 0 0;
}

.scbh-map-block__frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
}

.scbh-map-block__iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(.85) brightness(.92);
}

.scbh-map-block__cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 2rem auto 3rem;
  font-family: "Inter", Arial, sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--cbh-gold-light);
  text-decoration: none;
  border: 1px solid rgba(212,169,78,.35);
  border-radius: 40px;
  padding: .7rem 1.6rem;
  transition: background .2s, color .2s;
}

.scbh-map-block__cta:hover {
  background: var(--cbh-gold);
  color: #fff;
  border-color: transparent;
}

.scbh-map-block__pin { font-size: 1rem; }

/* ----------------------------------------------------------------
   MARCA / CIERRE
   ---------------------------------------------------------------- */
.scbh-brand {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(181,138,66,.12) 0%, transparent 70%),
    var(--cbh-bg-warm);
  padding: clamp(70px, 12vw, 130px) 0;
  text-align: center;
  border-top: 1px solid var(--cbh-border);
}

.scbh-brand__inner { max-width: 700px; margin-inline: auto; }

/* Logo watermark en sección de marca */
.scbh-brand__logo {
  margin-bottom: 1.8rem;
}

.scbh-brand__logo img {
  width: clamp(110px, 22vw, 160px);
  height: auto;
  opacity: .45;
  filter: brightness(0);
}

.scbh-brand .scbh-eyebrow {
  font-size: .63rem;
  line-height: 1.7;
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 1.4rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.scbh-brand .scbh-section-title {
  color: var(--cbh-text);
}

.scbh-brand__tagline {
  font-size: 1.05rem;
  color: var(--cbh-muted);
  font-style: italic;
  margin: 0 0 2.4rem;
}

/* ----------------------------------------------------------------
   RESERVAS
   ---------------------------------------------------------------- */
/* Ocultar la barra sticky LLEGADA/SALIDA del plugin simple-multi-calendar */
.smb-fechas-resumen.smb-topbar,
.smb-fechas-resumen.smb-topbar * {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  height: 0 !important;
  overflow: hidden !important;
}

.scbh-booking {
  background: var(--cbh-bg-section);
  padding: clamp(60px, 10vw, 100px) 0;
  border-top: 1px solid var(--cbh-border);
}

.scbh-booking .scbh-eyebrow       { margin-bottom: .5rem; }
.scbh-booking .scbh-section-title { margin-bottom: 1.2rem; }

/* Ocultar el hint del motor de reservas en esta sección */
.scbh-booking #smbHint,
.scbh-booking .smb-hint,
#scbh-reservar #smbHint,
#scbh-reservar .smb-hint,
#smbHint.smb-hint { display: none !important; }

/* Links de redes sociales */
.scbh-social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.scbh-social-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem 1.1rem;
  border: 1.5px solid var(--cbh-gold, #b58a42);
  border-radius: 99px;
  color: var(--cbh-gold-dark, #8a6428);
  font-size: .84rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s, box-shadow .2s;
}

.scbh-social-link:hover {
  background: var(--cbh-gold, #b58a42);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(181,138,66,.35);
}

.scbh-social-link__icon {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  flex-shrink: 0;
}

.scbh-social-link--fb:hover {
  background: #1877f2;
  color: #fff;
  box-shadow: 0 6px 18px rgba(24,119,242,.35);
}

.scbh-booking__engine {
  background: var(--cbh-panel);
  border: 1px solid var(--cbh-border);
  border-radius: var(--cbh-radius);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--cbh-shadow);
}

/* ----------------------------------------------------------------
   MODAL DE RESERVA
   ---------------------------------------------------------------- */
.scbh-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s ease, visibility .25s ease;
}

.scbh-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.scbh-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 20, 8, 0.72);
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.scbh-modal__panel {
  position: relative;
  z-index: 1;
  width: min(680px, 96vw);
  max-height: 94svh;
  overflow-y: auto;
  background: var(--cbh-bg);
  border-radius: var(--cbh-radius);
  box-shadow: 0 32px 80px rgba(30,20,8,.4);
  transform: translateY(20px) scale(.97);
  transition: transform .28s cubic-bezier(.22,1,.36,1);
  border: 1px solid var(--cbh-border);
}

.scbh-modal.is-open .scbh-modal__panel {
  transform: translateY(0) scale(1);
}

.scbh-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cbh-bg-warm);
  border: 1px solid var(--cbh-border);
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cbh-muted);
  transition: background .18s, color .18s;
  z-index: 2;
}

.scbh-modal__close:hover {
  background: var(--cbh-gold);
  color: #fff;
  border-color: var(--cbh-gold);
}

.scbh-modal__head {
  padding: 2.2rem 2rem 1.4rem;
  text-align: center;
  border-bottom: 1px solid var(--cbh-border);
}

.scbh-modal__logo {
  height: 44px;
  width: auto;
  filter: brightness(0);
  margin-bottom: .9rem;
}

.scbh-modal__title {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 .35rem;
  color: var(--cbh-text);
}

.scbh-modal__sub {
  font-family: "Inter", Arial, sans-serif;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cbh-muted);
  margin: 0;
}

.scbh-modal__form {
  padding: 1.6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.scbh-modal__field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.scbh-modal__field--wide .scbh-modal__label + * {
  margin-top: .2rem;
}

.scbh-modal__label {
  font-family: "Inter", Arial, sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cbh-gold-dark);
}

.scbh-modal__dest {
  font-size: .92rem;
  color: var(--cbh-text);
}

/* Par de botones de fecha (check-in / check-out display) */
.scbh-modal__date-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
  margin-bottom: .7rem;
}

.scbh-modal__date-btn {
  display: flex;
  flex-direction: column;
  gap: .18rem;
  padding: .65rem 1rem;
  background: var(--cbh-bg-warm);
  border: 1.5px solid var(--cbh-border);
  border-radius: var(--cbh-radius-sm);
  cursor: default;
  text-align: left;
  transition: border-color .2s;
}

.scbh-modal__date-btn small {
  font-family: "Inter", Arial, sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cbh-gold-dark);
}

.scbh-modal__date-btn strong {
  font-family: "Inter", Arial, sans-serif;
  font-size: .86rem;
  font-weight: 400;
  color: var(--cbh-muted);
}

.scbh-modal__date-btn.has-date {
  border-color: var(--cbh-gold);
}

.scbh-modal__date-btn.has-date strong {
  color: var(--cbh-text);
  font-weight: 500;
}

/* Contenedor inline del flatpickr */
.scbh-cal-container {
  overflow-x: auto;
  border-radius: var(--cbh-radius-sm);
  border: 1px solid var(--cbh-border);
  background: var(--cbh-bg-warm);
}

/* Oculta el input auxiliar que flatpickr usa internamente */
.scbh-cal-container > input {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Tema flatpickr — paleta arena / crema */
.scbh-cal-container .flatpickr-calendar {
  background: var(--cbh-bg-warm) !important;
  box-shadow: none !important;
  border: none !important;
  font-family: "Inter", Arial, sans-serif !important;
  /* NO se fuerza width: 100% para respetar el layout de 2 meses nativo */
}

.scbh-cal-container .flatpickr-months .flatpickr-month,
.scbh-cal-container .flatpickr-months .flatpickr-prev-month,
.scbh-cal-container .flatpickr-months .flatpickr-next-month {
  background: var(--cbh-bg-warm) !important;
  color: var(--cbh-text) !important;
  fill: var(--cbh-gold-dark) !important;
}

.scbh-cal-container .flatpickr-current-month input.cur-year,
.scbh-cal-container .flatpickr-current-month .flatpickr-monthDropdown-months {
  color: var(--cbh-text) !important;
  font-family: "Inter", Arial, sans-serif !important;
}

.scbh-cal-container .flatpickr-weekday {
  background: var(--cbh-bg-warm) !important;
  color: var(--cbh-gold-dark) !important;
  font-weight: 700 !important;
}

.scbh-cal-container .flatpickr-days,
.scbh-cal-container .dayContainer {
  background: var(--cbh-bg-warm) !important;
}

.scbh-cal-container .flatpickr-day {
  color: var(--cbh-text) !important;
  border-radius: 6px !important;
}

.scbh-cal-container .flatpickr-day:hover:not(.flatpickr-disabled):not(.selected):not(.inRange) {
  background: rgba(181,138,66,.15) !important;
  border-color: var(--cbh-gold-light) !important;
}

.scbh-cal-container .flatpickr-day.today:not(.selected) {
  border-color: var(--cbh-gold-dark) !important;
}

.scbh-cal-container .flatpickr-day.selected,
.scbh-cal-container .flatpickr-day.startRange,
.scbh-cal-container .flatpickr-day.endRange,
.scbh-cal-container .flatpickr-day.selected:hover,
.scbh-cal-container .flatpickr-day.startRange:hover,
.scbh-cal-container .flatpickr-day.endRange:hover {
  background: var(--cbh-gold) !important;
  border-color: var(--cbh-gold) !important;
  color: #fff !important;
}

.scbh-cal-container .flatpickr-day.inRange {
  background: rgba(181,138,66,.18) !important;
  border-color: transparent !important;
  box-shadow: -5px 0 0 rgba(181,138,66,.18), 5px 0 0 rgba(181,138,66,.18) !important;
  color: var(--cbh-text) !important;
  border-radius: 0 !important;
}

.scbh-cal-container .flatpickr-day.flatpickr-disabled,
.scbh-cal-container .flatpickr-day.flatpickr-disabled:hover {
  color: rgba(44,30,14,.25) !important;
  background: transparent !important;
  border-color: transparent !important;
}

@media (max-width: 580px) {
  .scbh-modal__date-pair {
    grid-template-columns: 1fr 1fr;
  }
}

/* Steppers */
.scbh-modal__steppers {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  background: var(--cbh-bg-warm);
  border: 1px solid var(--cbh-border);
  border-radius: var(--cbh-radius-sm);
  padding: 1rem 1.1rem;
}

.scbh-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.scbh-stepper__label {
  font-family: "Inter", Arial, sans-serif;
  font-size: .84rem;
  color: var(--cbh-text);
}

.scbh-stepper__ctrl {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.scbh-stepper__btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--cbh-border);
  background: var(--cbh-bg);
  color: var(--cbh-gold-dark);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, border-color .15s;
  line-height: 1;
}

.scbh-stepper__btn:hover {
  background: var(--cbh-gold);
  border-color: var(--cbh-gold);
  color: #fff;
}

.scbh-stepper__ctrl input[type="number"] {
  width: 42px;
  text-align: center;
  border: none;
  background: none;
  font-family: "Inter", Arial, sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--cbh-text);
  -moz-appearance: textfield;
}

.scbh-stepper__ctrl input[type="number"]::-webkit-inner-spin-button,
.scbh-stepper__ctrl input[type="number"]::-webkit-outer-spin-button { display: none; }

.scbh-modal__submit {
  width: 100%;
  padding: .95rem;
  font-size: .88rem;
  margin-top: .4rem;
}

/* ----------------------------------------------------------------
   MODAL VIDEO
   ---------------------------------------------------------------- */
.scbh-video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s, visibility .25s;
}

.scbh-video-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.scbh-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.82);
  cursor: pointer;
}

.scbh-video-modal__box {
  position: relative;
  z-index: 1;
  width: min(900px, 95vw);
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.scbh-video-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 1.2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  z-index: 2;
}

.scbh-video-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ----------------------------------------------------------------
   3D TILT — aplicado via JS en .scbh-tilt
   ---------------------------------------------------------------- */
.scbh-tilt {
  transform-style: preserve-3d;
  will-change: transform;
}

/* Parallax sólo en dispositivos con mouse real (no iOS/Android) */
@media (hover: hover) and (pointer: fine) {
  .scbh-hero      { background-attachment: fixed; }
  .scbh-lifestyle { background-attachment: fixed; }
}

/* ----------------------------------------------------------------
   prefers-reduced-motion
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .scbh-hero      { background-attachment: scroll; }
  .scbh-lifestyle { background-attachment: scroll; }
  .scbh-tilt      { transform: none !important; }
  .scbh-btn       { transition: none; }
  .scbh-hero__scroll span::after { animation: none; }
}

/* ----------------------------------------------------------------
   Responsive general
   ---------------------------------------------------------------- */
@media (max-width: 480px) {
  .scbh-btn { width: 100%; justify-content: center; }
}

/* ================================================================
   Hello Elementor / Elementor Pro — compatibility overrides
   Elementor global styles and the hello-elementor theme can reset
   button backgrounds, colors, borders and link colors. These rules
   restore the plugin's own design tokens with higher specificity.
   ================================================================ */

/* Base button resets (beats Elementor's `button`, `.elementor-button`) */
.scbh-home .scbh-btn,
.scbh-topbar .scbh-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: .8rem 2.2rem !important;
  border-radius: 4px !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-size: .82rem !important;
  font-weight: 700 !important;
  letter-spacing: .08em !important;
  line-height: 1.4 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}

/* Gold primary */
.scbh-home .scbh-btn--gold,
.scbh-topbar .scbh-btn--gold {
  background: var(--cbh-gold, #b58a42) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(181,138,66,.3) !important;
}
.scbh-home .scbh-btn--gold:hover,
.scbh-topbar .scbh-btn--gold:hover {
  background: var(--cbh-gold-light, #d4a94e) !important;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(181,138,66,.45) !important;
  transform: translateY(-2px) !important;
  text-decoration: none !important;
}

/* Outline (secondary) */
.scbh-home .scbh-btn--outline {
  background: transparent !important;
  color: var(--cbh-gold-dark, #8a6428) !important;
  border: 1.5px solid var(--cbh-gold, #b58a42) !important;
}
.scbh-home .scbh-btn--outline:hover {
  background: rgba(181,138,66,.08) !important;
  color: var(--cbh-gold-dark, #8a6428) !important;
  transform: translateY(-2px) !important;
}

/* Outline light (over photos) */
.scbh-home .scbh-btn--outline-light {
  background: transparent !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.7) !important;
}
.scbh-home .scbh-btn--outline-light:hover {
  background: rgba(255,255,255,.15) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
}

/* Topbar CTA compact override */
.scbh-topbar .scbh-topbar__cta {
  padding: .55rem 1.5rem !important;
  font-size: .78rem !important;
}

/* Hamburger menu button (mobile) */
.scbh-topbar .scbh-topbar__hamburger {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: .4rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 5px !important;
  cursor: pointer !important;
}
.scbh-topbar .scbh-topbar__hamburger span {
  display: block !important;
  width: 22px !important;
  height: 2px !important;
  background: var(--cbh-text, #2c1e0e) !important;
  border-radius: 2px !important;
  border: none !important;
}

/* Nav links — prevent Elementor link color bleeding */
.scbh-topbar__nav a {
  color: var(--cbh-muted, #7a6248) !important;
  text-decoration: none !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-size: .8rem !important;
  font-weight: 600 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}
.scbh-topbar__nav a:hover {
  color: var(--cbh-gold-dark, #8a6428) !important;
  text-decoration: none !important;
}

/* Prevent Elementor global paragraph margin from shifting section copy */
.scbh-home p {
  margin-bottom: 0 !important;
}

/* Ghost button (operator panel links inside home) */
.scbh-home .scbh-btn--ghost {
  background: transparent !important;
  color: var(--cbh-gold, #b58a42) !important;
  border: 1px solid var(--cbh-gold, #b58a42) !important;
}

/* Carousel dots — 3-class chain to beat Elementor's specificity [0,2,1]
   (.hello-elementor .site-content button) without relying on !important alone */
.scbh-home .scbh-card-carousel__dots .scbh-card-carousel__dot,
.scbb-wrap .scbh-card-carousel__dots .scbh-card-carousel__dot {
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  border: none !important;
  background: rgba(255,255,255,.45) !important;
  padding: 0 !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  min-width: 0 !important;
  min-height: 0 !important;
  transition: background .22s, transform .22s, width .22s !important;
}
.scbh-home .scbh-card-carousel__dots .scbh-card-carousel__dot:hover,
.scbb-wrap .scbh-card-carousel__dots .scbh-card-carousel__dot:hover {
  background: rgba(255,255,255,.75) !important;
  transform: scale(1.2) !important;
}
.scbh-home .scbh-card-carousel__dots .scbh-card-carousel__dot.is-active,
.scbb-wrap .scbh-card-carousel__dots .scbh-card-carousel__dot.is-active {
  background: var(--cbh-gold, #b58a42) !important;
  width: 18px !important;
  border-radius: 3px !important;
  transform: none !important;
}

/* ================================================================
   Booking modal buttons — Hello Elementor / Elementor Pro compat
   .scbh-modal is a fixed overlay outside .scbh-home, so it needs
   its own !important layer to beat Elementor's global button rules.
   ================================================================ */

/* Date picker buttons (Check-in / Check-out) */
.scbh-modal .scbh-modal__date-btn {
  background: var(--cbh-bg-warm, #f2e8d4) !important;
  border: 1.5px solid var(--cbh-border, rgba(160,128,75,.2)) !important;
  border-radius: var(--cbh-radius-sm, 9px) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: .18rem !important;
  padding: .65rem 1rem !important;
  text-align: left !important;
  cursor: pointer !important;
}
.scbh-modal .scbh-modal__date-btn small {
  color: var(--cbh-gold-dark, #8a6428) !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-size: .62rem !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}
.scbh-modal .scbh-modal__date-btn strong {
  color: var(--cbh-muted, #7a6248) !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-size: .86rem !important;
  font-weight: 400 !important;
}
.scbh-modal .scbh-modal__date-btn.has-date {
  border-color: var(--cbh-gold, #b58a42) !important;
}
.scbh-modal .scbh-modal__date-btn.has-date strong {
  color: var(--cbh-text, #2c1e0e) !important;
  font-weight: 500 !important;
}

/* Stepper +/- buttons */
.scbh-modal .scbh-stepper__btn {
  background: var(--cbh-bg, #faf3e8) !important;
  color: var(--cbh-gold-dark, #8a6428) !important;
  border: 1.5px solid var(--cbh-border, rgba(160,128,75,.2)) !important;
  border-radius: 50% !important;
  width: 30px !important;
  height: 30px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  font-size: 1.2rem !important;
  cursor: pointer !important;
}
.scbh-modal .scbh-stepper__btn:hover {
  background: var(--cbh-gold, #b58a42) !important;
  border-color: var(--cbh-gold, #b58a42) !important;
  color: #fff !important;
}

/* Close button */
.scbh-modal .scbh-modal__close {
  background: transparent !important;
  border: none !important;
  color: var(--cbh-muted, #7a6248) !important;
}

/* ================================================================
   SMC unidades modal — hide by default when embedded in this plugin
   smb-disponibilidad.css may not load on the casa blanca home page,
   leaving the modal visible in the page flow.
   ================================================================ */
.smb-unidades-modal {
  display: none !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
  align-items: center !important;
  justify-content: center !important;
}
.smb-unidades-modal.is-open {
  display: flex !important;
}
