/* ══════════════════════════════════════════════════════
   unidades-nuevo.css — Mockup ficha de propiedad Happy Host
   ══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --olive:   #6B7D5C;
  --dark:    #2F3E2F;
  --terra:   #C97A5A;
  --terra-lt:#E6B399;
  --cream:   #F5F3EF;
  --ink:     #1E2B1E;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
}

/* ── HEADER ──────────────────────────────────────────── */
.header-aloj {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
}

.header-inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-aloj img {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.menu-aloj {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}

.menu-aloj a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s;
}

.menu-aloj a:hover,
.menu-aloj a.activo { color: #fff; }

/* ── GALLERY ─────────────────────────────────────────── */
.unidad-galeria {
  max-width: 1300px;
  margin: 0 auto;
  padding: 24px 48px 0;
}

.galeria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border-radius: 16px;
  overflow: hidden;
  height: 520px;
}

.galeria-main {
  grid-row: span 2;
  position: relative;
  overflow: hidden;
}

.galeria-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
  cursor: pointer;
  display: block;
}

.galeria-main:hover img { transform: scale(1.03); }

.galeria-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,.25) 100%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}

.galeria-main:hover::after { opacity: 1; }

.galeria-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  grid-row: span 2;
  min-height: 0;
}

.galeria-thumbs img,
.galeria-ver-mas img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform .4s;
  display: block;
}

.galeria-thumbs img:hover,
.galeria-ver-mas img:hover { transform: scale(1.03); }

.galeria-ver-mas {
  position: relative;
  overflow: hidden;
  min-height: 0;   /* evita que el contenido estire la celda del grid */
}

.btn-ver-fotos {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: .8rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: background .2s;
  white-space: nowrap;
}

.btn-ver-fotos:hover { background: #fff; }

/* ── MAIN CONTENT ────────────────────────────────────── */
.unidad-contenido {
  max-width: 1300px;
  margin: 0 auto;
  padding: 36px 48px 80px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.unidad-izq { flex: 1; min-width: 0; }

.unidad-booking {
  width: 380px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
}

/* ── TITLE BLOCK ─────────────────────────────────────── */
.unidad-breadcrumb {
  font-size: .75rem;
  font-family: 'Inter', sans-serif;
  color: var(--olive);
  margin-bottom: 10px;
  letter-spacing: .04em;
}

.unidad-breadcrumb a {
  color: var(--olive);
  text-decoration: none;
}

.unidad-breadcrumb a:hover { text-decoration: underline; }

.unidad-breadcrumb span { color: #aaa; margin: 0 6px; }

.unidad-h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.2;
}

.unidad-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  color: #666;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.unidad-badge {
  background: var(--olive);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
}

.unidad-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.unidad-meta-item span:first-child { font-size: 1rem; }

.meta-icon { width: 15px; height: 15px; opacity: .7; }

.unidad-divider {
  border: none;
  border-top: 1px solid rgba(47,62,47,.1);
  margin: 24px 0;
}

/* ── AWARD BADGE ─────────────────────────────────────── */
.unidad-award-badge {
  height: 110px;
  width: auto;
  display: block;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.15));
}

/* ── DESCRIPTION ─────────────────────────────────────── */
.unidad-desc { margin-bottom: 36px; }

.unidad-desc h2,
.unidad-amenities h2,
.unidad-mapa h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 0;
  margin-bottom: 16px;
}

.unidad-desc p {
  font-size: .92rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 12px;
}

/* ── AMENITIES ───────────────────────────────────────── */
.unidad-amenities { margin-bottom: 36px; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(47,62,47,.1);
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
}

.amenity-item:hover {
  border-color: var(--olive);
  box-shadow: 0 2px 12px rgba(107,125,92,.1);
}

.amenity-icon-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.amenity-label {
  font-size: .78rem;
  font-family: 'Inter', sans-serif;
  color: #555;
  font-weight: 500;
}

/* ── MAP ─────────────────────────────────────────────── */
.unidad-mapa { margin-bottom: 8px; }

.unidad-mapa iframe {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  border: none;
  margin-bottom: 8px;
  display: block;
}

.mapa-nota {
  font-size: .82rem;
  color: #888;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── BOOKING CARD ────────────────────────────────────── */
.booking-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 40px rgba(47,62,47,.13);
  border: 1px solid rgba(47,62,47,.08);
  margin-bottom: 12px;
}

.booking-precio {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}

.booking-precio.precio-oculto { display: none !important; }

.booking-desde {
  font-size: .8rem;
  color: #999;
  font-family: 'Inter', sans-serif;
}

.booking-monto {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
}

.booking-noche {
  font-size: .82rem;
  color: #999;
  font-family: 'Inter', sans-serif;
}

.booking-fechas {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  border: 1.5px solid #e0ddd6;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}

.bf-col {
  padding: 12px 14px;
  cursor: pointer;
  background: #fff;
  transition: background .15s;
}

.bf-col:hover { background: var(--cream); }

.bf-col label {
  display: block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: #999;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
}

.bf-col input {
  border: none;
  outline: none;
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  width: 100%;
}

.bf-col input::placeholder { color: #aaa; }

.bf-div {
  background: #e0ddd6;
  width: 1px;
}

.booking-huespedes {
  border: 1.5px solid #e0ddd6;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
}

.booking-huespedes > label {
  display: block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: #999;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.bh-control {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bh-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  background: transparent;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: border-color .2s, color .2s;
  line-height: 1;
  flex-shrink: 0;
}

.bh-btn:hover {
  border-color: var(--olive);
  color: var(--olive);
}

#contador {
  font-size: .92rem;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  flex: 1;
}

/* Integración HuespedesSelector dentro de la booking card */
.booking-hu-container .hh-hu { width: 100%; }
.booking-hu-container .hh-hu__val {
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  font-weight: 500;
  color: #2B2B2B;
}
.booking-hu-container .hh-hu__chev { color: #6B7B53; }

.booking-btn {
  width: 100%;
  background: var(--olive);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  margin-bottom: 12px;
}

.booking-btn:hover:not(:disabled) { background: var(--dark); }

.booking-btn:disabled {
  background: #ccc;
  cursor: default;
}

.booking-btn-wa {
  width: 100%;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.booking-btn-wa:hover { background: #1ebe5a; }

.booking-resultado {
  background: var(--cream);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: .85rem;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  margin-bottom: 12px;
}

.booking-nota {
  text-align: center;
  font-size: .75rem;
  color: #aaa;
  font-family: 'Inter', sans-serif;
  margin-top: 10px;
}

/* Resumen precio */
.booking-summary {
  list-style: none;
  font-size: .83rem;
}
.booking-summary li {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  color: #555;
}
.booking-summary li strong { color: var(--ink); }

/* Price breakdown */
.price-breakdown { font-size: .82rem; }
.bd-list { list-style: none; }
.bd-list li { display: flex; justify-content: space-between; padding: 2px 0; color: #666; }
.bd-subtotal { border-top: 1px solid #e0ddd6; margin-top: 6px; padding-top: 6px; display: flex; justify-content: space-between; font-weight: 600; }
.bd-discount { color: #2e7d32; display: flex; justify-content: space-between; }
.bd-extra { color: #777; display: flex; justify-content: space-between; }
.bd-toggle { font-size: .75rem; color: var(--olive); cursor: pointer; text-decoration: underline; background: none; border: none; }
.price-stack { display: flex; flex-direction: column; align-items: flex-end; }
.price-current { font-size: 1.6rem; font-weight: 800; color: var(--ink); }
.new-price { font-size: 1.6rem; font-weight: 800; color: var(--olive); }
.old-price { font-size: .85rem; color: #aaa; text-decoration: line-through; }
.old-price--big { font-size: 1rem; }
.total-line { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: .95rem; border-top: 1px solid #e0ddd6; margin-top: 8px; padding-top: 8px; }

/* ── FLATPICKR OCUPADOS — cuadrados unidos ───────────── */
.flatpickr-day.hhcal-ocupado {
  background: #c8d8b8 !important;
  border: none !important;
  border-radius: 0 !important;
  color: #4a6630 !important;
  pointer-events: none !important;
  /* Extiende el fondo 2 px a cada lado para cerrar la brecha entre celdas */
  box-shadow: 2px 0 0 0 #c8d8b8, -2px 0 0 0 #c8d8b8;
}

/* Primer día bloqueado: la izquierda queda libre (check-in posible),
   la derecha entra en la banda — redondeado solo a la izquierda */
.flatpickr-day.hhcal-checkin {
  background: linear-gradient(90deg, transparent 50%, #c8d8b8 50%) !important;
  border: none !important;
  border-radius: 50% 0 0 50% !important;
  /* extiende solo hacia la derecha para conectar con el día siguiente */
  box-shadow: 2px 0 0 0 #c8d8b8;
}

/* Último día bloqueado: la derecha queda libre (check-out posible),
   la izquierda viene de la banda — redondeado solo a la derecha */
.flatpickr-day.hhcal-checkout {
  background: linear-gradient(90deg, #c8d8b8 50%, transparent 50%) !important;
  border: none !important;
  border-radius: 0 50% 50% 0 !important;
  /* extiende solo hacia la izquierda para conectar con el día anterior */
  box-shadow: -2px 0 0 0 #c8d8b8;
}

/* ── LEYENDA CALENDARIO ──────────────────────────────── */
.hhcal-leyenda {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 10px 12px 6px;
  font-size: .7rem;
  font-family: 'Inter', sans-serif;
  color: #666;
  flex-wrap: wrap;
  border-top: 1px solid #f0ede8;
  margin-top: 6px;
}
.hhcal-ley-item {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.hhcal-ley-dot {
  width: 22px;
  height: 13px;
  border-radius: 0;
  flex-shrink: 0;
  display: inline-block;
}
.hhcal-ley-dot.ocupado {
  background: #c8d8b8;
}
.hhcal-ley-dot.checkinout {
  background: linear-gradient(90deg, #c8d8b8 50%, transparent 50%);
  border-radius: 0 4px 4px 0;
  border: 1px solid #e0ddd6;
  border-left: none;
}
.hhcal-ley-dot.disponible {
  background: #fff;
  border: 1.5px solid #ccc;
  border-radius: 50%;
  width: 13px;
}

/* ── EXPLORE / FOOTER ────────────────────────────────── */
.unidad-explorar {
  max-width: 1300px;
  margin: 0 auto 48px;
  padding: 0 48px;
}

.btn-explorar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid #e0ddd6;
  border-radius: 10px;
  padding: 11px 20px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: border-color .2s, color .2s;
  font-family: 'Inter', sans-serif;
}

.btn-explorar:hover { border-color: var(--olive); color: var(--olive); }

.footer-simple {
  background: var(--dark);
  padding: 28px 48px;
}

.footer-simple-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-simple-logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-simple-links {
  display: flex;
  gap: 20px;
  flex: 1;
}

.footer-simple-links a {
  color: rgba(255,255,255,.6);
  font-size: .82rem;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: color .2s;
}

.footer-simple-links a:hover { color: #fff; }

.footer-simple-copy {
  color: rgba(255,255,255,.35);
  font-size: .75rem;
  font-family: 'Inter', sans-serif;
}

/* ── WHATSAPP FLOAT ──────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: transform .2s;
  text-decoration: none;
}

.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; }

/* ── PROMO POPUP ─────────────────────────────────────── */
.promo-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 900;
  align-items: center;
  justify-content: center;
}
.promo-popup-overlay.is-open { display: flex; }
.promo-popup {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  max-width: 380px;
  width: 90%;
  position: relative;
  text-align: center;
}
.promo-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #aaa;
}
.promo-badge {
  display: inline-block;
  background: var(--olive);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 6px 20px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.promo-popup h2 { margin-bottom: 10px; font-size: 1.2rem; }
.promo-text { font-size: .9rem; color: #444; margin-bottom: 8px; }
.promo-note { font-size: .78rem; color: #888; margin-bottom: 8px; }
.promo-code-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--cream);
  border-radius: 10px;
  padding: 12px 16px;
  margin: 12px 0;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .06em;
}
.copy-btn {
  background: var(--olive);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: .78rem;
  cursor: pointer;
  font-weight: 600;
}

/* ── LIGHTBOX ────────────────────────────────────────── */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lb-overlay.is-open { display: flex; }
.lb-content {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lb-content img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
}
.lb-counter {
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  margin-top: 8px;
  font-family: 'Inter', sans-serif;
}
.lb-nav {
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lb-nav:hover { background: rgba(255,255,255,.3); }
.lb-prev { margin-right: 16px; }
.lb-next { margin-left: 16px; }
.lb-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: .8;
  transition: opacity .2s;
  z-index: 10;
}
.lb-close:hover { opacity: 1; }

/* ── UTILITIES ───────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .galeria-grid { height: 400px; }
  .unidad-contenido { flex-direction: column; gap: 32px; }
  .unidad-booking { width: 100%; position: static; }
  .amenities-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .header-aloj { padding: 0 20px; height: 60px; }
  .menu-aloj { display: none; }
  .unidad-galeria { padding: 16px 16px 0; }
  .galeria-grid { grid-template-columns: 1fr; height: auto; position: relative; }
  .galeria-main { height: 280px; grid-row: span 1; }
  /* Superponer galeria-thumbs sobre galeria-main para mostrar solo el botón */
  .galeria-thumbs {
    display: block;
    position: absolute;
    top: 0; left: 0; width: 100%; height: 280px;
    background: none;
    pointer-events: none;
    z-index: 5;
  }
  .galeria-thumbs > img { display: none; }
  .galeria-ver-mas {
    position: absolute;
    bottom: 12px; right: 12px;
    width: auto; height: auto;
    overflow: visible;
    background: none;
    pointer-events: none;
  }
  .galeria-ver-mas > img { display: none; }
  .btn-ver-fotos { position: static; display: inline-flex; pointer-events: auto; }
  .unidad-contenido { padding: 24px 16px 48px; }
  /* Motor de reservas primero, info después */
  .unidad-booking { order: -1; }
  .unidad-explorar { padding: 0 16px; }
  .footer-simple { padding: 24px 16px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-simple-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  /* Hamburger visible */
  .hamburger-btn { display: flex !important; }
  /* Flechas de galería visibles */
  .gal-mob-btn { display: flex !important; }
  .gal-mob-counter { display: block !important; }
}

/* ── HAMBURGER BUTTON ────────────────────────────────────────────────────── */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
}
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU OVERLAY ─────────────────────────────────────────────────── */
.mob-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,0.55);
}
.mob-menu-overlay.open { display: block; }
.mob-menu-nav {
  position: absolute;
  top: 0; right: 0;
  width: 72%;
  max-width: 280px;
  height: 100%;
  background: var(--dark);
  padding: 72px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.mob-menu-nav li { list-style: none; }
.mob-menu-nav a {
  display: block;
  padding: 15px 0;
  color: #fff;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: color .2s;
}
.mob-menu-nav a:hover { color: var(--terra-lt, #E6B399); }

/* ── GALERÍA MÓVIL — flechas y contador ─────────────────────────────────── */
.gal-mob-btn {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.42);
  color: #fff;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.gal-mob-prev { left: 10px; }
.gal-mob-next { right: 10px; }
.gal-mob-counter {
  display: none;
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(0,0,0,0.48);
  color: #fff;
  font-size: .68rem;
  font-family: 'Inter', sans-serif;
  padding: 3px 9px;
  border-radius: 10px;
  pointer-events: none;
}

/* ── WhatsApp float ───────────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg   { width: 30px; height: 30px; }

@media (max-width: 768px) {
  .whatsapp-float { width: 52px; height: 52px; bottom: 15px; right: 15px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}
