/* ================= RESET / BASE ================= */
*{
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

a{
  color: inherit;
  text-decoration: none;
}
a:hover{ opacity: .75; }

/* ================= THEME TOKENS (base) ================= */
:root{
  --bg: #ffffff;
  --text: #222222;
  --muted: #666666;

  --accent: #b84c00;
  --accent-2: #a24300;

  --border: #eeeeee;
  --card-border: #e6e6e6;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --radius-xl: 18px;

  --shadow-soft: 0 10px 25px rgba(0,0,0,.12);
  --shadow-strong: 0 20px 45px rgba(0,0,0,.25);
}

:root {
  --bg: #ffffff;
  --text: #222222;
  /* valores por defecto no-críticos */
}


body{
  margin: 0;
  color: var(--text);
  background: var(--bg);
}

/* ================= HEADER ================= */
.header{ border-bottom: 1px solid var(--border); }

.header-inner{
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header-left{
  font-size: 14px;
  color: var(--muted);
}

.header-center img{
  height: 60px;
  display: block;
}

.header-right{ text-align: right; }

.btn-book{
  background: var(--accent);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background .2s ease;
}
.btn-book:hover{
  background: var(--accent-2);
  opacity: 1;
}

/* ===== Language switch ===== */
.lang-switch{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.lang-switch .lang-link{ opacity: .75; font-weight: 700; }
.lang-switch .lang-link.is-active{ opacity: 1; color: var(--accent); }
.lang-switch span{ opacity: .35; }

/* ================= NAV ================= */
.nav{
  display: flex;
  justify-content: center;
  gap: 26px;
  padding: 12px 0;
}
.nav a{
  font-size: 15px;
  color: var(--text);
  padding-bottom: 6px;
}
.nav a.active{ border-bottom: 2px solid var(--accent); }

/* ================= HERO (HOME) ================= */
.hero{
  max-width: 1400px;
  margin: 30px auto 50px;
  padding: 0 20px;
}
.hero img{
  width: 100%;
  height: 70vh;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ================= INTRO (texto tras hero) ================= */
.intro{
  max-width: 900px;
  margin: 0 auto 70px;
  padding: 0 20px;
}
.intro h1{
  font-size: 34px;
  margin-bottom: 24px;
}
.intro p{
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
  text-align: justify;
  text-justify: inter-word;
}

/* ================= GRID 4 IMÁGENES (HOME) ================= */
.image-grid{
  max-width: 900px;
  margin: 0 auto 90px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.image-grid img{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
}

/* ================= CONTENT (texto largo final) ================= */
.content{
  max-width: 900px;
  margin: 0 auto 100px;
  padding: 0 20px;
}
.content h1{ font-size: 32px; margin-bottom: 24px; }
.content h2{ font-size: 24px; margin-top: 50px; margin-bottom: 16px; }
.content p{
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
  text-align: justify;
  text-justify: inter-word;
}
.content ul{ padding-left: 20px; margin-bottom: 20px; }
.content li{ font-size: 16px; line-height: 1.6; margin-bottom: 10px; }

/* ================= FOOTER ================= */



.footer{
  background-color: var(--footer-bg);
  color: var(--footer-text, #f5f5f5);
  padding: 50px 40px;
}
.footer-cols{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.footer h4{ margin-bottom: 14px; font-size: 16px; }

.footer a{
  display: inline-block;
  color: var(--footer-link, #fdfdfd);
  font-size: 15px;
  padding: 6px 0;
  line-height: 1.25;
}
.footer a:hover{
  color: var(--footer-link-hover, var(--accent-soft));
  opacity: 1;
}

.footer ul{ margin: 10px 0 0; padding: 0; list-style: none; }
.footer li{ margin: 0; padding: 0; }

.footer-bottom{
  max-width: 1200px;
  margin: 30px auto 0;
  opacity: .7;
  font-size: 14px;         
}

/* =========================================================
   PREZENTARE / DETAIL (overview)
   ========================================================= */

/* HERO detail */
.hero--detail{
  max-width: 1400px;
  margin: 22px auto 0;
  padding: 0 20px;
}
.hero-media{ position: relative; }
.hero--detail img{
  width: 100%;
  height: 70vh;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* CTA en hero */
.hero-cta{
  position: absolute;
  right: 22px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-soft);
}
.hero-cta:hover{ background: var(--accent-2); opacity: 1; }

/* wrapper */
.wrap{
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 90px;
}

/* Tabs */
.tabs{
  display: flex;
  gap: 22px;
  padding: 18px 0 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
}
.tab{
  background: transparent;
  border: 0;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  font-size: 16px;
  padding-bottom: 10px;
}
.tab.is-active,
.tab.active{
  border-bottom: 2px solid var(--accent);
  font-weight: 700;
}

/* Typography */
.kicker{
  color: #888; /* ok fijo: es “kicker” */
  font-size: 14px;
  margin-top: 6px;
}
.title-xl{
  font-size: 54px;
  line-height: 1.05;
  margin: 14px 0 14px;
}
.title-lg{ font-size: 34px; margin: 40px 0 18px; }
.title-md{ font-size: 20px; margin: 0 0 10px; }
.text-h3{ font-size: 20px; margin: 22px 0 10px; }

.section{ padding: 28px 0; }
.section p{
  line-height: 1.8;
  margin: 0 0 14px;
  text-align: justify;
  text-justify: inter-word;
}

/* Meta row */
.meta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin: 10px 0 24px;
  color: var(--text);
}
.meta-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
.meta-item strong{ font-weight: 700; }

/* Iconos meta “bonitos” */
.meta-row--icons .ico{
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.meta-row--icons .ico svg{ width: 16px; height: 16px; }

/* Readmore (Lodgify) */
.readmore{
  position: relative;
  margin-top: 6px;
}
.readmore-content{ line-height: 1.75; }

.readmore[data-collapsed="true"] .readmore-content{
  max-height: 220px;
  overflow: hidden;
}
.readmore[data-collapsed="true"]::after{
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 52px;
  height: 90px;
  background: linear-gradient(to bottom, rgba(0,0,0,0), var(--bg));
  pointer-events: none;
}
.readmore-toggle{
  display: block;
  width: max-content;
  margin: 8px auto 0;
  background: transparent;
  border: 0;
  padding: 10px 0 0;
  color: var(--accent);
  font-weight: 800;
  cursor: pointer;
  letter-spacing: .2px;
}

/* Chips */
.chips{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.chip{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 10px 14px;
  background: #fff;
  font-size: 15px;
}
.chip .ico svg{ width: 18px !important; height: 18px !important; }

/* Gallery grids (9 fotos etc.) */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 18px;
}
.gallery-grid img{
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
}
.gallery-grid--second{
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}
.link-more{
  display: inline-block;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 700;
}
.link-more--end{ margin-top: 22px; }

/* Cards 3 */
.cards-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.mini-card{
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  background: #fff;
}
.mini-ico svg{ width: 22px !important; height: 22px !important; }
.mini-title{ margin-top: 12px; font-weight: 700; }

/* Facilități */
.fac-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.fac-block{ padding: 0 0 18px; }
.fac-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}
.fac-title{ font-weight: 800; }
.fac-ico svg{
  width: 18px !important;
  height: 18px !important;
  opacity: .9;
}
.fac-text{ line-height: 1.8; color: #333; }

/* Two columns (Reglas / Políticas) */
.two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}
.rule-list .rule,
.rule-times .rule-time{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  line-height: 1.6;
}
.rule-list .ico svg,
.rule-times .ico svg{
  width: 18px !important;
  height: 18px !important;
}

/* Iconos (evita tamaños gigantes) */
.ico, .mini-ico, .fac-ico, .hero-cta-ico{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  line-height: 0;
}
.ico svg, .mini-ico svg, .fac-ico svg, .hero-cta-ico svg{
  width: 18px !important;
  height: 18px !important;
  display: block;
}

/* ================= LIGHTBOX ================= */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.86);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 22px;
}
.lightbox.open{ display: flex; }

.lightbox-inner{
  position: relative;
  max-width: 1100px;
  width: 100%;
}

.lightbox-img{
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(0,0,0,.2);
}

.lb-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}
.lb-btn:hover{ background: rgba(255,255,255,.18); }
.lb-prev{ left: -10px; }
.lb-next{ right: -10px; }

.lb-close{
  position: absolute;
  top: -10px;
  right: -10px;
  transform: none;
  width: 44px;
  height: 44px;
}

/* Counter + thumbs */
.lb-top{
  position: absolute;
  left: 0; right: 0;
  top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.lb-counter{
  pointer-events: none;
  color: #fff;
  font-weight: 700;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: .2px;
  user-select: none;
  backdrop-filter: blur(6px);
}

.lb-bottom{ margin-top: 12px; }
.lb-thumbs{
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 6px;
  scrollbar-width: thin;
}
.lb-thumb{
  width: 64px;
  height: 44px;
  object-fit: cover;
  border-radius: 10px;
  opacity: .7;
  border: 1px solid rgba(255,255,255,.18);
  cursor: pointer;
  flex: 0 0 auto;
}
.lb-thumb.is-active{
  opacity: 1;
  border-color: rgba(255,255,255,.65);
}

/* ================= RESERVA (FAB + Modal + Sticky) ================= */
.reserve-fab{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  z-index: 10500;
  padding: 12px 18px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  display: none;
}
@media (max-width: 820px){
  .reserve-fab{ display: inline-flex; align-items: center; gap: 10px; }
}

.reserve-modal{
  position: fixed;
  inset: 0;
  z-index: 11000;
  display: none;
}
.reserve-modal.is-open{ display: block; }
.reserve-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

.reserve-panel{
  position: absolute;
  left: 50%;
  bottom: calc(74px + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  width: min(520px, calc(100% - 24px));
  border-radius: var(--radius-xl);
  padding: 16px;
  background: var(--bg);
  color: var(--text);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: var(--shadow-strong);
}
.reserve-panel h3{ margin: 0 0 12px; }

.reserve-actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.reserve-btn{
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}
.reserve-btn:hover{
  background: var(--accent-2);
  opacity: 1;
}
.reserve-close{
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  background: #fff;
  color: #111;
  box-shadow: var(--shadow-soft);
}
body.reserve-lock{ overflow: hidden; }

/* Sticky */
.reserve-sticky{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  z-index: 10500;
  background: var(--accent);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border: 0;
  cursor: pointer;
  box-shadow: var(--shadow-soft);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.reserve-sticky:hover{ background: var(--accent-2); opacity: 1; }
.reserve-sticky.is-visible{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (max-width: 420px){
  .reserve-sticky{
    width: calc(100% - 28px);
    text-align: center;
  }
}

/* Énfasis suave en el botón de Airbnb dentro del modal */
.reserve-actions {
  display: flex;
  gap: 12px;
}

.reserve-actions .reserve-btn {
  flex: 1;
}

/* Airbnb un poquito más protagonista */
.reserve-btn--airbnb {
  transform: scale(1.03);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

/* Booking un pelín más discreto */
.reserve-btn--booking {
  opacity: 0.9;
}


/* ================= LEGAL INFO BOX ================= */
.legal-info{
  margin-top: 24px;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-md);
  background: rgba(0,0,0,.03);
  font-size: 14px;
  line-height: 1.35;
}
.legal-info .legal-row + .legal-row{ margin-top: 8px; }
.legal-info strong{ margin-right: 6px; }

/* ================= MOBILE ================= */
@media (max-width: 900px){

  /* header 3 columnas reales */
  .header-inner{
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0;
    text-align: left;
    padding: 12px 12px;
  }
  .header-left{
    justify-self: start;
    text-align: left;
    white-space: nowrap;
    font-size: 13px;
  }
  .header-center{ justify-self: center; }
  .header-right{
    justify-self: end;
    text-align: right;
    white-space: nowrap;
  }
  .header-center img{ height: 52px; width: auto; }

  .nav{ flex-wrap: wrap; gap: 18px; }

  .hero img,
  .hero--detail img{
    height: 48vh;
    min-height: 280px;
  }

  .image-grid{ grid-template-columns: 1fr; }

  /* ✅ Mantener textos largos justificados también en móvil */
  .intro,
  .content,
  .section,
  .readmore-content{
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    overflow-wrap: anywhere;
  }

  .footer-cols{
    flex-direction: column;
    gap: 30px;
  }

  .gallery-grid,
  .gallery-grid--second{ grid-template-columns: 1fr; }

  .cards-3{ grid-template-columns: 1fr; }
  .fac-grid{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }

  .hero-cta{
    left: 14px;
    right: 14px;
    justify-content: center;
  }

  .lb-prev{ left: 6px; }
  .lb-next{ right: 6px; }
  .lb-close{ top: 6px; right: 6px; }
  .lb-thumb{ width: 62px; height: 46px; }
  .lb-thumbs{ gap: 8px; padding: 10px 6px 6px; }
}


/* Botón header compacto */
@media (max-width: 720px){
  .btn-book{
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
    font-weight: 600;
  }
}
/* =======================================================
   PALETAS DE COLOR (VTW)
   Cada paleta define los roles principales:
   - --accent         → Botones, acciones, focus
   - --accent-2       → Hover del botón principal
   - --accent-soft    → Fondo suave (chips, cajas)
   - --header-bg      → Fondo de la barra superior
   - --header-link    → Enlaces del header
   - --link-color     → Enlaces de contenido
   - --footer-bg      → Fondo del pie de página
   - --footer-text    → Color de texto en el footer
   - --footer-link    → Color de enlaces en footer
   - --footer-link-hover → Hover de enlaces en footer
   ======================================================= */

/* Paleta por defecto (Vitwi coral) */
:root {
  --accent:        #b84c00;
  --accent-2:      #a24300;
  --accent-soft:   #ffe6d3;
  --header-bg:     #ffffff;
  --header-link:   #666666;
  --link-color:    #b84c00;

  --footer-bg:        #111111;
  --footer-text:      #f5f5f5;
  --footer-link:      #fdfdfd;
  --footer-link-hover:#ffe6d3;
}

/* CORAL explícito (igual que por defecto) */
:root[data-palette="coral"],
:root[data-palette=""] {
  --accent:        #b84c00;
  --accent-2:      #a24300;
  --accent-soft:   #ffe6d3;
  --header-bg:     #ffffff;
  --header-link:   #666666;
  --link-color:    #b84c00;

  --footer-bg:        #111111;
  --footer-text:      #f5f5f5;
  --footer-link:      #fdfdfd;
  --footer-link-hover:#ffe6d3;
}

/* ========= ROSA (blush) ========= */
:root[data-palette="rose"] {
  --accent:        #d86a8f;
  --accent-2:      #c0537b;
  --accent-soft:   #ffe6f1;
  --header-bg:     #ffffff;
  --header-link:   #694053;
  --link-color:    #c0537b;

  /* footer pastel rosado / teja suave */
  --footer-bg:        #f9e6ec;
  --footer-text:      #4b2834;
  --footer-link:      #b0435f;
  --footer-link-hover:#d86a8f;
}

/* ========= TEAL + ORO ========= */
:root[data-palette="teal-gold"] {
  --accent:        #00897b;
  --accent-2:      #00695c;
  --accent-soft:   #e0f3f1;
  --header-bg:     #ffffff;
  --header-link:   #345c5a;
  --link-color:    #00695c;

  --footer-bg:        #e3f2f0;
  --footer-text:      #23413d;
  --footer-link:      #00695c;
  --footer-link-hover:#00897b;
}

/* ========= FOREST ========= */
:root[data-palette="forest"] {
  --accent:        #3d6a4a;
  --accent-2:      #295037;
  --accent-soft:   #e3f0e7;
  --header-bg:     #ffffff;
  --header-link:   #344438;
  --link-color:    #295037;

  --footer-bg:        #e7f3ea;
  --footer-text:      #25412f;
  --footer-link:      #295037;
  --footer-link-hover:#3d6a4a;
}

/* ========= OCEAN (azulado pastel) ========= */
:root[data-palette="ocean"] {
  --accent:        #1f80c2;
  --accent-2:      #16629a;
  --accent-soft:   #e2f1fb;
  --header-bg:     #ffffff;
  --header-link:   #29435c;
  --link-color:    #16629a;

  --footer-bg:        #e4f0fb;   /* azul pastel */
  --footer-text:      #23415b;
  --footer-link:      #16629a;
  --footer-link-hover:#1f80c2;
}

/* ========= SAND ========= */
:root[data-palette="sand"] {
  --accent:        #b58a6a;
  --accent-2:      #9a6f51;
  --accent-soft:   #f7e7d7;
  --header-bg:     #fdf8f4;
  --header-link:   #5e4534;
  --link-color:    #9a6f51;

  --footer-bg:        #f6ede4;
  --footer-text:      #4b3524;
  --footer-link:      #9a6f51;
  --footer-link-hover:#b58a6a;
}

/* ========= LIME (oliva suave, mejor contraste) ========= */
:root[data-palette="lime"] {
  --accent:        #8ca344;   /* un pelín más oscuro */
  --accent-2:      #6f8332;
  --accent-soft:   #f3f7dd;
  --header-bg:     #ffffff;
  --header-link:   #4a5320;   /* texto menú más oscuro */
  --link-color:    #6f8332;

  --footer-bg:        #f5f8e7; /* verde muy clarito */
  --footer-text:      #3b4217;
  --footer-link:      #6f8332;
  --footer-link-hover:#8ca344;
}

/* ========= GOLD ========= */
:root[data-palette="gold"] {
  --accent:        #d9a74a;
  --accent-2:      #b4852b;
  --accent-soft:   #fff3d6;
  --header-bg:     #ffffff;
  --header-link:   #5b4420;
  --link-color:    #b4852b;

  --footer-bg:        #f8edd9;
  --footer-text:      #4b3617;
  --footer-link:      #b4852b;
  --footer-link-hover:#d9a74a;
}

/* ========= SKY (azul cielo pastel) ========= */
:root[data-palette="sky"] {
  --accent:        #4aa3df;
  --accent-2:      #2d7fb6;
  --accent-soft:   #e3f3ff;
  --header-bg:     #ffffff;
  --header-link:   #345575;
  --link-color:    #2d7fb6;

  --footer-bg:        #e5f1fb;   /* azul clarito */
  --footer-text:      #23415b;
  --footer-link:      #2d7fb6;
  --footer-link-hover:#4aa3df;
}

/* ========= VIOLET ========= */
:root[data-palette="violet"] {
  --accent:        #8264c8;
  --accent-2:      #6445af;
  --accent-soft:   #eee7fb;
  --header-bg:     #ffffff;
  --header-link:   #4a3a75;
  --link-color:    #6445af;

  --footer-bg:        #efe9fb;
  --footer-text:      #342353;
  --footer-link:      #6445af;
  --footer-link-hover:#8264c8;
}


/* =======================================================
   Overrides para usar las paletas VTW en el INDEX
   (se apoyan en las variables definidas en :root / data-palette)
   ======================================================= */

/* HEADER */
.header {
  background-color: var(--header-bg);
}

/* Enlaces del header (lang switch + nav) */
#langSwitch a,
.nav a {
  color: var(--header-link);
}

/* Estado activo del menú */
.nav a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* BOTONES PRINCIPALES (Reservar, Ver más fotos, etc.) */
.btn-book,
.hero-cta,
.reserve-btn.btn-book,
#reserveSticky {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Hover de esos botones */
.btn-book:hover,
.hero-cta:hover,
.reserve-btn.btn-book:hover,
#reserveSticky:hover {
  background-color: var(--link-color);
  border-color: var(--link-color);
  color: #fff;
}

/* ENLACES GENERALES (contenido, footer, etc.) */
a {
  color: var(--link-color);
}

/* FOOTER */
.footer {
  background-color: var(--footer-bg);
  color: #f5f5f5;
}


/* Paleta por defecto (= coral Vitwi)
   (asegura que si falta data-palette siga siendo la buena) */
:root,
:root[data-palette=""],
:root[data-palette="coral"],
:root:not([data-palette]) {
  --accent:        #b84c00;
  --accent-soft:   #ffe6d3;
  --header-bg:     #ffffff;
  --header-link:   #666666;
  --link-color:    #b84c00;
  --footer-bg:     #111111;
}

/* Bridge global para themes (Haven, etc.) */
:root {
  --vtw-accent: var(--accent);
}



/* =========================================================
   Bridge global para themes (Haven, etc.)
   Hace que --vtw-accent SIEMPRE apunte al color de acento
   actual de la paleta seleccionada.
========================================================= */
:root {
  --vtw-accent: var(--accent);
}
/* =========================================================
   THEME LINEN · Menú móvil tipo drawer
   - Solo aplica cuando data-theme="linen"
   - Oculta nav/lang clásicos y muestra hamburguesa
========================================================= */

/* Móvil: ocultar nav y selector de idioma clásicos en LINEN */
@media (max-width: 900px) {
  html[data-theme="linen"] .nav,
  html[data-theme="linen"] .lang-switch {
    display: none !important;
  }
}

/* Botón hamburger LINEN (arriba derecha) */
#lnHamb {
  position: fixed;
  right: 18px;
  top: 18px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
  display: none; /* solo móvil + linen */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1110;
}

/* Solo se ve en móvil y con theme linen */
@media (max-width: 900px) {
  html[data-theme="linen"] #lnHamb {
    display: flex;
  }
}

#lnHamb .ln-bars {
  width: 20px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#lnHamb .ln-bars span {
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  display: block;
}

/* Overlay oscuro */
#lnOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 1090;
}
body.ln-menu-open #lnOverlay {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer lateral */
#lnDrawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: 340px;
  max-width: 80%;
  background: #ffffff;
  box-shadow: 4px 0 18px rgba(0,0,0,.25);
  transform: translateX(-100%);
  transition: transform .25s ease-out;
  z-index: 1110;
  display: flex;
  flex-direction: column;
}

/* Abierto */
body.ln-menu-open #lnDrawer {
  transform: translateX(0);
}

/* Top: logo centrado + X */
#lnDrawer .ln-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 16px 12px;
  border-bottom: 1px solid #eee;
}
#lnDrawer .ln-logo img {
  max-height: 60px;
  width: auto;
  display: block;
}
#lnDrawer .ln-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

/* Enlaces de navegación */
#lnDrawer .ln-nav {
  padding: 20px 24px 10px;
  flex: 1 1 auto;
  overflow-y: auto;
  font-size: 16px;
}
#lnDrawer .ln-nav a {
  display: block;
  padding: 8px 0;
  text-decoration: none;
  color: #222;
}
#lnDrawer .ln-nav a:hover {
  color: var(--accent);
}

/* Selector de idioma + botón reservar */
#lnDrawer .ln-bottom {
  padding: 10px 24px 20px;
  border-top: 1px solid #eee;
  font-size: 14px;
}
#lnDrawer .ln-langLabel {
  margin-bottom: 4px;
  color: #555;
}
#lnDrawer .ln-langSelect {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 6px 8px;
  font-size: 14px;
  margin-bottom: 10px;
}
#lnDrawer .ln-reserve-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  background: var(--accent);
  color: #ffffff;
}
#lnDrawer .ln-reserve-btn:hover {
  background: var(--accent-2);
}

/* Móvil: el drawer ocupa todo el ancho */
@media (max-width: 768px) {
  #lnDrawer {
    width: 100%;
    max-width: none;
  }
}

/* Tipografía coherente con el resto del sitio */
html[data-theme="linen"] #lnDrawer,
html[data-theme="linen"] #lnDrawer .ln-nav a,
html[data-theme="linen"] .ln-reserve-btn,
html[data-theme="linen"] .ln-langSelect {
  font-family: inherit;
  letter-spacing: 0;
  font-size: 14px;
}
html[data-theme="linen"] #lnDrawer .ln-nav a {
  font-weight: 500;
}
html[data-theme="linen"] .ln-reserve-btn {
  font-weight: 600;
}

/* Linen: ocultar botón "Reservar" del header en móvil */
@media (max-width: 900px) {
  html[data-theme="linen"] .header-right .btn-book {
    display: none !important;
  }
}

/* Linen: resaltar enlace activo dentro del drawer móvil */
html[data-theme="linen"] #lnDrawer .ln-nav a {
  display: block;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

html[data-theme="linen"] #lnDrawer .ln-nav a.active {
  border-bottom-color: var(--accent);
  font-weight: 600;
}

/* ===== Aurora – menú móvil drawer ===== */

html[data-theme="aurora"] body.ar-menu-open {
  overflow: hidden;
}

/* Botón hamburger arriba a la derecha (solo lo mostramos en móvil) */
html[data-theme="aurora"] #arHamb {
  position: fixed;
  right: 14px;
  top: 14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  display: none;          /* oculto por defecto */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1110;
}

html[data-theme="aurora"] #arHamb .ar-bars {
  width: 20px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
html[data-theme="aurora"] #arHamb .ar-bars span {
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  display: block;
}

/* Solo en móviles mostramos el hamburger y ocultamos nav horizontal */
@media (max-width: 900px) {
  html[data-theme="aurora"] #arHamb {
    display: flex;
  }

  html[data-theme="aurora"] .nav {
    display: none;
  }
}

/* Overlay */
html[data-theme="aurora"] #arOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 1090;
}
html[data-theme="aurora"] body.ar-menu-open #arOverlay {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer */
html[data-theme="aurora"] #arDrawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: 340px;
  max-width: 80%;
  background: #ffffff;
  box-shadow: 4px 0 18px rgba(0,0,0,.25);
  transform: translateX(-100%);
  transition: transform .25s ease-out;
  z-index: 1110;
  display: flex;
  flex-direction: column;
}
html[data-theme="aurora"] body.ar-menu-open #arDrawer {
  transform: translateX(0);
}

/* Top: logo + X (AURORA) */
html[data-theme="aurora"] #arDrawer .ar-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 16px 12px;
  border-bottom: 1px solid #eee;
}
html[data-theme="aurora"] #arDrawer .ar-logo img {
  max-height: 60px;
  width: auto;
  display: block;
}
html[data-theme="aurora"] #arDrawer .ar-close {
  position: absolute;
  left: 14px;      /* lado izquierdo */
  right: auto;
  top: 16px;       /* arriba del todo para no chocar con el logo */
  transform: none; /* sin translateY */
  border: none;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

/* Links de navegación */
html[data-theme="aurora"] #arDrawer .ar-nav {
  padding: 14px 18px;
  flex: 1 1 auto;
  overflow-y: auto;
}
html[data-theme="aurora"] #arDrawer .ar-nav a {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  text-decoration: none;
  color: #222;
  border-bottom: 2px solid transparent;
}
html[data-theme="aurora"] #arDrawer .ar-nav a:hover {
  color: var(--accent);
}
html[data-theme="aurora"] #arDrawer .ar-nav a.active {
  border-bottom-color: var(--accent);
  font-weight: 600;
}

/* Parte inferior: idioma + reservar */
html[data-theme="aurora"] #arDrawer .ar-bottom {
  padding: 10px 18px 18px;
  border-top: 1px solid #eee;
  font-size: 14px;
}
html[data-theme="aurora"] #arDrawer .ar-langLabel {
  margin-bottom: 4px;
  color: #555;
}
html[data-theme="aurora"] #arDrawer .ar-langSelect {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 6px 8px;
  font-size: 14px;
  margin-bottom: 10px;
}
html[data-theme="aurora"] #arDrawer .ar-reserve-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  background: var(--accent);
  color: #ffffff;
}

/* En móvil, el drawer ocupa toda la pantalla */
@media (max-width: 768px) {
  html[data-theme="aurora"] #arDrawer {
    width: 100%;
    max-width: none;
  }
}

/* ===============================
   AURORA (móvil):
   ocultar logo + botón "Book"
   y dejar sólo la tira de idiomas
   =============================== */
@media (max-width: 900px) {
  html[data-theme="aurora"] .header-center,
  html[data-theme="aurora"] .header-right {
    display: none;              /* oculta logo + botón reservar */
  }

  html[data-theme="aurora"] .header-inner {
    grid-template-columns: 1fr; /* una sola columna */
    justify-content: center;
  }

  html[data-theme="aurora"] .header-left {
    justify-self: center;       /* centra los idiomas */
    text-align: center;
  }
}

/* === LINEN: X a la izquierda, centrada verticalmente === */
#lnDrawer .ln-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 16px 12px;
  border-bottom: 1px solid #eee;
}
#lnDrawer .ln-logo img {
  max-height: 56px;
  width: auto;
  display: block;
}
#lnDrawer .ln-close {
  position: absolute;
  left: 14px;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

/* AURORA – centrar texto del botón "See more photos" en desktop */
html[data-theme="aurora"] .hero-cta {
  display: flex;              /* en lugar de inline-flex */
  align-items: center;        /* centra vertical */
  justify-content: center;    /* centra horizontal */
  height: 48px;               /* alto fijo del pill */
  padding: 0 32px;            /* relleno lateral */
  line-height: 1;             /* evita desajustes de texto */
}

/* =======================================================
   FOOTER – contraste por paleta (todos los themes salvo LINEN)
   ======================================================= */

/* FOREST */
html:not([data-theme="linen"])[data-palette="forest"] .footer {
  background: #0b1f16 !important;   /* verde muy oscuro */
  color: #f4f8f6 !important;
}
html:not([data-theme="linen"])[data-palette="forest"] .footer a {
  color: #ffffff !important;
}
html:not([data-theme="linen"])[data-palette="forest"] .footer a:hover {
  color: #c6f6d5 !important;
}

/* OCEAN */
html:not([data-theme="linen"])[data-palette="ocean"] .footer {
  background: #0b2236 !important;   /* azul marino suave */
  color: #f3f7fb !important;
}
html:not([data-theme="linen"])[data-palette="ocean"] .footer a {
  color: #ffffff !important;
}
html:not([data-theme="linen"])[data-palette="ocean"] .footer a:hover {
  color: #b3e5fc !important;
}

/* SAND */
html:not([data-theme="linen"])[data-palette="sand"] .footer {
  background: #3f2b1f !important;   /* marrón arena oscuro */
  color: #f8f2eb !important;
}
html:not([data-theme="linen"])[data-palette="sand"] .footer a {
  color: #ffffff !important;
}
html:not([data-theme="linen"])[data-palette="sand"] .footer a:hover {
  color: #ffe0b2 !important;
}

/* LIME */
html:not([data-theme="linen"])[data-palette="lime"] .footer {
  background: #3e4a1a !important;   /* verde oliva oscuro */
  color: #f7fae6 !important;
}
html:not([data-theme="linen"])[data-palette="lime"] .footer a {
  color: #ffffff !important;
}
html:not([data-theme="linen"])[data-palette="lime"] .footer a:hover {
  color: #e6ff8f !important;
}

/* GOLD */
html:not([data-theme="linen"])[data-palette="gold"] .footer {
  background: #3f2a00 !important;   /* marrón dorado oscuro */
  color: #fff7de !important;
}
html:not([data-theme="linen"])[data-palette="gold"] .footer a {
  color: #ffffff !important;
}
html:not([data-theme="linen"])[data-palette="gold"] .footer a:hover {
  color: #ffe082 !important;
}

/* SKY */
html:not([data-theme="linen"])[data-palette="sky"] .footer {
  background: #0b3450 !important;   /* azul petróleo */
  color: #eff7ff !important;
}
html:not([data-theme="linen"])[data-palette="sky"] .footer a {
  color: #ffffff !important;
}
html:not([data-theme="linen"])[data-palette="sky"] .footer a:hover {
  color: #bbdefb !important;
}

/* VIOLET */
html:not([data-theme="linen"])[data-palette="violet"] .footer {
  background: #2a184b !important;   /* violeta noche */
  color: #f3edff !important;
}
html:not([data-theme="linen"])[data-palette="violet"] .footer a {
  color: #ffffff !important;
}
html:not([data-theme="linen"])[data-palette="violet"] .footer a:hover {
  color: #d1c4e9 !important;
}

/* ROSE */
html:not([data-theme="linen"])[data-palette="rose"] .footer {
  background: #4b1624 !important;   /* mismo tono vino que en Linen */
  color: #fdeaf2 !important;
}
html:not([data-theme="linen"])[data-palette="rose"] .footer a {
  color: #ffffff !important;
}
html:not([data-theme="linen"])[data-palette="rose"] .footer a:hover {
  color: #ffb2c8 !important;
}

/* TEAL–GOLD */
html:not([data-theme="linen"])[data-palette="teal-gold"] .footer {
  background: #003b33 !important;   /* teal muy oscuro, como Linen */
  color: #e6faf8 !important;
}
html:not([data-theme="linen"])[data-palette="teal-gold"] .footer a {
  color: #ffffff !important;
}
html:not([data-theme="linen"])[data-palette="teal-gold"] .footer a:hover {
  color: #7be0d4 !important;
}

/* ===== Banner de cookies Vitwi Sites ===== */
#vtwCookiesBanner{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.88);
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  padding: 10px 16px;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.25);
}

#vtwCookiesBanner .vtw-cb-inner{
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

#vtwCookiesBanner .vtw-cb-text{
  margin: 0;
}

#vtwCookiesBanner .vtw-cb-text a{
  color: #fff;
  text-decoration: underline;
}

#vtwCookiesBanner .vtw-cb-btn{
  border: none;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  cursor: pointer;
  background: #ff7a1a; /* tono similar al botón Reservar */
  color: #fff;
  font-weight: 600;
  flex-shrink: 0;
}

#vtwCookiesBanner .vtw-cb-btn:hover{
  opacity: 0.9;
}

@media (max-width: 720px){
  #vtwCookiesBanner .vtw-cb-inner{
    flex-direction: column;
    align-items: flex-start;
  }

  #vtwCookiesBanner .vtw-cb-btn{
    width: 100%;
    text-align: center;
  }
}

/* ===== Redes sociales footer (simple y limpio) ===== */

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.8);
  text-decoration: none;
}

.footer-social-icon {
  width: 22px;
  height: 22px;
  display: block;
  /* los SVG son negros: los invertimos a blanco sobre footer oscuro */
  filter: invert(1) brightness(1.4);
}

/* Texto solo para lectores de pantalla */
.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;
}

/* ==== Ajuste final iconos redes (luengihouse) ==== */

/* contenedor: un poco más grande y SIN borde propio */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;              /* quitamos el círculo duplicado */
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* el svg ocupa casi todo el botón */
.footer-social-icon {
  width: 36px;
  height: 36px;
  display: block;

  /* seguimos forzando blanco sobre footer oscuro */
  filter: invert(1) brightness(1.4);
}

/* ===========================================
   Alineación común de bloques de texto largos
   (home, overview, rental-conditions, policies)
   Se aplica igual en todos los themes.
=========================================== */

/* Intro + contenido principal de HOME */
.intro,
.content {
  max-width: 840px;        /* mismo ancho en todos los themes */
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  text-align: left;
}

/* Bloques de texto en overview/rules/policies */
.ov-section-text,
.ov-policies,
.rental-main,
.rental-section,
.policies-section {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* Por si algún theme los centraba */
.ov-section-text p,
.ov-policies p,
.rental-main p,
.rental-section p,
.policies-section p {
  text-align: left;
}

/* ===========================================
   FIX: justificar textos largos (aunque vengan en <div> con <br>)
   Aplica a home/overview/rental/policies y readmore
=========================================== */

/* 1) El bloque contenedor también justifica */
.intro,
.content,
.section,
.readmore-content,
.fac-text,
.legal-info{
  text-align: justify !important;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: anywhere;
}

/* 2) Los <p>/<li> heredan (por si algún theme los toca) */
.intro p,
.content p,
.section p,
.readmore-content p,
main li{
  text-align: inherit !important;
  text-justify: inherit;
  hyphens: inherit;
}

/* 3) Títulos NO justificados (para que no queden raros) */
.intro h1, .intro h2,
.content h1, .content h2,
.section h1, .section h2,
.title-xl, .title-lg, .title-md, .text-h3{
  text-align: left !important;
  hyphens: none;
}

/* =========================
   FIX: Tabs clicables + scroll horizontal móvil
   (evita overlays encima y permite swipe)
   ========================= */

/* Asegura stacking correcto */
.hero, .hero-media { position: relative; z-index: 1; }
.tabs { position: sticky; z-index: 200; } /* por encima de hero overlays */

/* Si el overlay del hero se “sale”, que no tape lo de abajo */
.hero-media { overflow: hidden; } /* importante si el CTA está absolute */
.hero-cta { position: absolute; z-index: 2; } /* encima SOLO dentro del hero */

/* Tabs tipo Airbnb (scroll horizontal en móvil) */
.tabs{
  display:flex;
  gap:18px;
  align-items:center;
  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}
.tabs::-webkit-scrollbar{ display:none; } /* Chrome/Safari */

.tabs .tab{
  white-space: nowrap;
  flex: 0 0 auto;
  padding: 10px 0;
}

/* Si por cualquier motivo hay algo encima de tabs, esto ayuda */
.tabs, .tabs * { pointer-events: auto; }

/* =========================================================
   AURORA – override final: header blanco + menú visible
   (solo aplica cuando data-theme="aurora")
   ========================================================= */

html[data-theme="aurora"] body .header{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;

  background: #ffffff !important;
  border-bottom: 1px solid rgba(0,0,0,.08) !important;
  color: #333333 !important;
}

/* Menú horizontal legible sobre blanco */
html[data-theme="aurora"] body .nav{
  justify-content: center;
}

html[data-theme="aurora"] body .nav a{
  color: #333333 !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

/* Estado activo: subrayado con el color de acento */
html[data-theme="aurora"] body .nav a.active{
  color: var(--accent) !important;
  border-bottom: 2px solid var(--accent) !important;
}

/* Selector de idioma SIN degradado, pill gris clarito */
html[data-theme="aurora"] body .lang-switch{
  background: #f3f3f3 !important;
  border: 1px solid rgba(0,0,0,.06) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.08) !important;
  padding: 6px 10px !important;
  border-radius: 999px !important;
}

html[data-theme="aurora"] body .lang-switch .lang-link,
html[data-theme="aurora"] body #langSwitch a{
  color: #333333 !important;
  text-shadow: none !important;
  opacity: 1 !important;
  font-weight: 600;
}

/* Idioma activo: marcado con el color de la paleta */
html[data-theme="aurora"] body .lang-switch .lang-link.is-active,
html[data-theme="aurora"] body #langSwitch a.is-active{
  color: var(--accent) !important;
  background: rgba(0,0,0,.03) !important;
  border-radius: 999px !important;
}

/* Botón reservar coherente por si otro theme lo pisa */
html[data-theme="aurora"] body .btn-book{
  background: var(--accent) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(0,0,0,.18) !important;
}


/* ================================
   RESERVE MODAL — Airbnb-ish layout
   ================================ */

#vtwReserveAirbnbLike { margin-top: 14px; }

.vtw-rsv-sep{
  margin: 14px 0;
  height: 1px;
  background: rgba(0,0,0,.08);
}

.vtw-rsv-grid{
  display:grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 16px;
}

@media (max-width: 820px){
  .vtw-rsv-grid{ grid-template-columns: 1fr; }
}

.vtw-rsv-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.vtw-rsv-head{ margin-bottom: 12px; }
.vtw-rsv-title{
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -.2px;
}
.vtw-rsv-sub{
  margin-top: 4px;
  font-size: 13px;
  color: rgba(0,0,0,.65);
}

.vtw-rsv-form{ display:block; }

.vtw-rsv-row2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
@media (max-width: 520px){
  .vtw-rsv-row2{ grid-template-columns: 1fr; }
}

.vtw-rsv-field{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.vtw-rsv-field > span{
  font-size: 12.5px;
  color: rgba(0,0,0,.75);
}

.vtw-rsv-form input,
.vtw-rsv-form select,
.vtw-rsv-form textarea{
  width:100%;
  border:1px solid rgba(0,0,0,.16);
  border-radius: 14px;
  padding: 11px 12px;
  font-size: 14px;
  outline:none;
  background: #fff;
}

.vtw-rsv-form textarea{ resize: vertical; min-height: 94px; }

.vtw-rsv-form input:focus,
.vtw-rsv-form select:focus,
.vtw-rsv-form textarea:focus{
  border-color: rgba(0,0,0,.35);
}

.vtw-rsv-terms{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size: 12.5px;
  color: rgba(0,0,0,.75);
  margin: 8px 0 10px;
}
.vtw-rsv-terms a{ text-decoration: underline; }

.vtw-rsv-hint{
  font-size: 12.5px;
  color: rgba(0,0,0,.65);
  margin-bottom: 12px;
}

.vtw-rsv-primary{
  display:block;
  width:100%;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 800;
  text-align:center;
  text-decoration:none;
  cursor:pointer;
  /* usa tus clases btn-book si quieres color; aquí solo “forma” */
}

.vtw-rsv-status{
  margin-top: 10px;
  font-size: 12.5px;
  color: rgba(0,0,0,.75);
}
.vtw-rsv-status.is-error{ color:#b00020; }

.vtw-rsv-summary-top{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-bottom: 14px;
}
.vtw-rsv-thumb{
  width: 74px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  flex: 0 0 auto;
}
.vtw-rsv-sumtitle{
  font-weight: 800;
  letter-spacing: -.2px;
  line-height: 1.15;
}
.vtw-rsv-summeta{
  font-size: 12.5px;
  color: rgba(0,0,0,.65);
  margin-top: 4px;
}

.vtw-rsv-lines{
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 10px 0;
  margin: 10px 0 12px;
}
.vtw-rsv-line{
  display:flex;
  justify-content:space-between;
  padding: 8px 0;
  font-size: 13.5px;
}
.vtw-rsv-line-k{ color: rgba(0,0,0,.65); }
.vtw-rsv-line-v{ font-weight: 700; }

.vtw-rsv-paytitle{ font-weight: 850; margin-bottom: 6px; }
.vtw-rsv-paynote{
  font-size: 12.5px;
  color: rgba(0,0,0,.7);
  margin-bottom: 12px;
}
.vtw-rsv-small{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(0,0,0,.6);
}

.vtw-rsv-contact-title{
  font-weight: 850;
  margin-bottom: 10px;
}
.vtw-rsv-contact-row{
  display:flex;
  gap: 10px;
}
.vtw-rsv-secondary{
  flex:1;
  border-radius: 14px;
  padding: 11px 12px;
  border: 1px solid rgba(0,0,0,.16);
  background: transparent;
  cursor:pointer;
  font-weight: 750;
}

/* =========================================================
   FIX DEFINITIVO: no cortar + no overflow horizontal
   ========================================================= */

/* Asegura que el panel pueda encoger y no genere overflow raro */
.reserve-panel{
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: min(980px, calc(100vw - 28px)); /* evita que se salga en pantallas medianas */
}

/* ✅ El scroll vertical lo hace el contenedor del layout */
#vtwReserveAirbnbLike{
  flex: 1 1 auto;
  min-height: 0;     /* CLAVE en flex */
  overflow-y: auto;
  overflow-x: hidden; /* ✅ mata el scroll horizontal */
  padding-right: 6px;
}

/* ✅ CLAVES para GRID: permitir shrink sin “cortar” */
.vtw-rsv-grid{
  min-width: 0;
}

.vtw-rsv-left,
.vtw-rsv-right{
  min-width: 0;      /* CLAVE: si no, la columna derecha se “sale” */
}

/* Card nunca debe forzar ancho */
.vtw-rsv-card{
  max-width: 100%;
}

/* Inputs/textarea no deben empujar */
.vtw-rsv-form input,
.vtw-rsv-form select,
.vtw-rsv-form textarea{
  max-width: 100%;
}

/* Evita que el thumb o textos largos hagan overflow */
.vtw-rsv-sumtitle,
.vtw-rsv-summeta{
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* (Opcional) scrollbar guapa */
#vtwReserveAirbnbLike::-webkit-scrollbar{ width: 8px; height: 8px; }
#vtwReserveAirbnbLike::-webkit-scrollbar-thumb{ background: rgba(0,0,0,.18); border-radius: 10px; }
#vtwReserveAirbnbLike::-webkit-scrollbar-track{ background: transparent; }

/* checkbox condiciones alineado */
.vtw-rsv-terms.vtw-rsv-terms-fix{
  width:100%;
  display:grid;
  grid-template-columns: 18px 1fr;
  gap:10px;
  align-items:start;
  justify-content:start;
  text-align:left;
  margin: 10px 0 12px;
}
.vtw-rsv-terms.vtw-rsv-terms-fix input{
  width:16px;
  height:16px;
  margin: 2px 0 0 0;
}

/* flatpickr por encima del modal */
.flatpickr-calendar{
  z-index: 999999 !important;
  max-width: calc(100vw - 24px);
}

/* ================================
   MODAL RESERVA – LAYOUT AIRBNB
   (igual que en Lex-IA)
   ================================ */

#vtwReserveAirbnbLike { 
  margin-top: 14px;
}

/* Separador fino */
.vtw-rsv-sep{
  margin: 14px 0;
  height: 1px;
  background: rgba(0,0,0,.08);
}

/* Grid 2 columnas (form + resumen) */
.vtw-rsv-grid{
  display:grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 16px;
}
@media (max-width: 820px){
  .vtw-rsv-grid{ grid-template-columns: 1fr; }
}

/* Tarjetas */
.vtw-rsv-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

/* Cabecera formulario */
.vtw-rsv-head{ margin-bottom: 12px; }
.vtw-rsv-title{
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -.2px;
}
.vtw-rsv-sub{
  margin-top: 4px;
  font-size: 13px;
  color: rgba(0,0,0,.65);
}

.vtw-rsv-form{ display:block; }

/* Filas de 2 campos */
.vtw-rsv-row2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
@media (max-width: 520px){
  .vtw-rsv-row2{ grid-template-columns: 1fr; }
}

/* Label + input */
.vtw-rsv-field{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.vtw-rsv-field > span{
  font-size: 12.5px;
  color: rgba(0,0,0,.75);
}

/* Inputs / selects / textarea */
.vtw-rsv-form input,
.vtw-rsv-form select,
.vtw-rsv-form textarea{
  width:100%;
  border:1px solid rgba(0,0,0,.16);
  border-radius: 14px;
  padding: 11px 12px;
  font-size: 14px;
  outline:none;
  background: #fff;
}
.vtw-rsv-form textarea{
  resize: vertical;
  min-height: 94px;
}
.vtw-rsv-form input:focus,
.vtw-rsv-form select:focus,
.vtw-rsv-form textarea:focus{
  border-color: rgba(0,0,0,.35);
}

/* Condiciones */
.vtw-rsv-terms{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size: 12.5px;
  color: rgba(0,0,0,.75);
  margin: 8px 0 10px;
}
.vtw-rsv-terms a{ text-decoration: underline; }

/* Hint bajo el checkbox */
.vtw-rsv-hint{
  font-size: 12.5px;
  color: rgba(0,0,0,.65);
  margin-bottom: 12px;
}

/* Botón principal (hereda color de .btn-book) */
.vtw-rsv-primary{
  display:block;
  width:100%;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 800;
  text-align:center;
  text-decoration:none;
  cursor:pointer;
}

/* Mensaje de estado */
.vtw-rsv-status{
  margin-top: 10px;
  font-size: 12.5px;
  color: rgba(0,0,0,.75);
}
.vtw-rsv-status.is-error{ color:#b00020; }

/* Resumen derecha */
.vtw-rsv-summary-top{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-bottom: 14px;
}
.vtw-rsv-thumb{
  width: 74px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  flex: 0 0 auto;
}
.vtw-rsv-sumtitle{
  font-weight: 800;
  letter-spacing: -.2px;
  line-height: 1.15;
}
.vtw-rsv-summeta{
  font-size: 12.5px;
  color: rgba(0,0,0,.65);
  margin-top: 4px;
}

/* Líneas resumen */
.vtw-rsv-lines{
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 10px 0;
  margin: 10px 0 12px;
}
.vtw-rsv-line{
  display:flex;
  justify-content:space-between;
  padding: 8px 0;
  font-size: 13.5px;
}
.vtw-rsv-line-k{ color: rgba(0,0,0,.65); }
.vtw-rsv-line-v{ font-weight: 700; }

/* Bloque pago / info */
.vtw-rsv-paytitle{ font-weight: 850; margin-bottom: 6px; }
.vtw-rsv-paynote{
  font-size: 12.5px;
  color: rgba(0,0,0,.7);
  margin-bottom: 12px;
}
.vtw-rsv-small{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(0,0,0,.6);
}

/* Contacto rápido */
.vtw-rsv-contact-title{
  font-weight: 850;
  margin-bottom: 10px;
}
.vtw-rsv-contact-row{
  display:flex;
  gap: 10px;
}
.vtw-rsv-secondary{
  flex:1;
  border-radius: 14px;
  padding: 11px 12px;
  border: 1px solid rgba(0,0,0,.16);
  background: transparent;
  cursor:pointer;
  font-weight: 750;
}

/* ==============================================
   FIX: panel flexible + sin scroll horizontal
   ============================================== */

/* El panel se hace flex y deja sitio al scroll interno */
.reserve-panel{
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: min(980px, calc(100vw - 28px));
}

/* El scroll vertical lo hace el contenedor del layout */
#vtwReserveAirbnbLike{
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 6px;
}

/* Grid e hijos pueden encoger sin salirse */
.vtw-rsv-grid,
.vtw-rsv-left,
.vtw-rsv-right{
  min-width: 0;
}

/* Inputs / textos largos no empujan el ancho */
.vtw-rsv-card{
  max-width: 100%;
}
.vtw-rsv-form input,
.vtw-rsv-form select,
.vtw-rsv-form textarea{
  max-width: 100%;
}
.vtw-rsv-sumtitle,
.vtw-rsv-summeta{
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Scrollbar más discreta (opcional) */
#vtwReserveAirbnbLike::-webkit-scrollbar{ width: 8px; height: 8px; }
#vtwReserveAirbnbLike::-webkit-scrollbar-thumb{ background: rgba(0,0,0,.18); border-radius: 10px; }
#vtwReserveAirbnbLike::-webkit-scrollbar-track{ background: transparent; }

/* Checkbox condiciones bien alineado */
.vtw-rsv-terms.vtw-rsv-terms-fix{
  width:100%;
  display:grid;
  grid-template-columns: 18px 1fr;
  gap:10px;
  align-items:start;
  justify-content:start;
  text-align:left;
  margin: 10px 0 12px;
}
.vtw-rsv-terms.vtw-rsv-terms-fix input{
  width:16px;
  height:16px;
  margin: 2px 0 0 0;
}

/* Flatpickr siempre por encima del modal */
.flatpickr-calendar{
  z-index: 999999 !important;
  max-width: calc(100vw - 24px);
}

/* ================================
   Footer + redes sociales
   ================================ */

.footer{
  background:#3c3c3c;
  color:#fff;
  padding: 28px 18px 80px;  /* espacio extra abajo para el botón sticky */
  font-size: 14px;
}

.footer-cols{
  max-width: 1100px;
  margin: 0 auto 10px;
  display:flex;
  gap:40px;
}
@media (max-width: 640px){
  .footer-cols{
    flex-direction:column;
    gap:18px;
  }
}

/* Bloque redes */
.footer-social{
  max-width:1100px;
  margin: 16px auto 0;
  display:flex;
  align-items:center;
  gap:10px;
  font-size: 14px;
}
.footer-social span{
  color:rgba(255,255,255,.85);
}

/* Iconos redondos */
.footer-social .social-link{
  width:32px;
  height:32px;
  border-radius:50%;
  background:#fff;
  color:#333;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
}
.footer-social .social-link span{
  color:#333;
}

.footer-bottom{
  max-width:1100px;
  margin: 16px auto 0;
  font-size:13px;
  color:rgba(255,255,255,.75);
}

/* Botón sticky de reserva por encima del footer */
.reserve-sticky{
  position:fixed;
  right:16px;
  bottom:18px;
  z-index:10000;
}
@media (max-width: 640px){
  .footer{
    padding-bottom: 96px;  /* un pelín más en móvil */
  }
}

/* Ajuste ancho botón sticky de reserva (Book) */
.reserve-sticky{
  width: 260px;      /* cámbialo a 240/280 si lo quieres más o menos largo */
  text-align: center;
}

/* En móvil pequeño sigue siendo casi a ancho completo */
@media (max-width: 420px){
  .reserve-sticky{
    width: calc(100% - 28px);
  }
}