/* ====================================================================
   Born2Travel — Booking engine components
   Se apoya en styles.css (mismas variables, fuentes y lenguaje visual).
   Maqueta del motor de reservas (mapea a WooCommerce + Bookings).
   ==================================================================== */

:root {
  --bk-radius: 22px;
  --bk-radius-sm: 14px;
  --bk-line: rgba(0, 0, 0, 0.10);
  --bk-shadow: 0 24px 60px -28px rgba(86, 66, 49, 0.45);
  --bk-shadow-sm: 0 10px 30px -18px rgba(86, 66, 49, 0.4);
  --bk-ok: #2f8f5b;
  --bk-warn: #C46E14;
}

/* ===== Utilidades comunes ===== */
.bk-wrap { max-width: 1600px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }
.bk-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 14px;
}

/* ============================================================
   1. BARRA DE FILTROS (listado de viajes)
   ============================================================ */
.filter-bar {
  position: relative;
  margin: 0 auto clamp(34px, 5vw, 56px);
  max-width: 1600px;
  background: var(--white);
  border: 1px solid var(--bk-line);
  border-radius: 999px;
  box-shadow: var(--bk-shadow-sm);
  display: flex;
  align-items: stretch;
  gap: 4px;
  padding: 8px;
}
.filter-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 22px;
  position: relative;
  cursor: pointer;
}
.filter-group + .filter-group::before {
  content: '';
  position: absolute;
  left: 0; top: 18%;
  height: 64%;
  width: 1px;
  background: var(--bk-line);
}
.filter-group label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 4px;
  pointer-events: none;
}
.filter-group select {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--brown-deep);
  cursor: pointer;
  padding-right: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpolyline points='2,4 6,8 10,4' fill='none' stroke='%23806857' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
}
.filter-group select:focus { outline: none; }
.filter-search {
  flex: 0 0 auto;
  align-self: center;
  margin-left: 4px;
  background: var(--brown-bg-dark);
  color: var(--white);
  border: none;
  border-radius: 999px;
  height: 54px;
  padding: 0 26px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background .3s var(--ease), transform .3s var(--ease);
  display: inline-flex; align-items: center; gap: 9px;
}
.filter-search svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.filter-search:hover { background: var(--accent-deep); transform: translateY(-1px); }
.filter-count {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: -18px auto clamp(26px, 4vw, 40px);
  letter-spacing: .3px;
}
.filter-count strong { color: var(--brown-deep); font-weight: 500; }
.filter-clear {
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 13px;
  color: var(--muted-2); text-decoration: underline;
  margin-left: 10px; padding: 0;
  transition: color .2s;
}
.filter-clear:hover { color: var(--accent-deep); }

/* Card del listado: extras de precio / nivel / plazas */
.trip-card.is-hidden { display: none; }
.trip-card-tags {
  position: absolute;
  top: 16px; left: 16px;
  display: flex; gap: 6px; flex-wrap: wrap;
  z-index: 3;
}
.trip-tag {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--brown-deep);
  backdrop-filter: blur(4px);
  font-weight: 500;
}
.trip-card-price {
  display: block;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .4px;
  color: rgba(255,255,255,0.92);
}
.trip-card-price strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
}
.no-results {
  display: none;
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}
.no-results.show { display: block; }
.no-results h3 { font-family: var(--display); font-size: 30px; color: var(--brown-deep); margin-bottom: 10px; font-weight: 400; }

/* ============================================================
   1A. BUSCADOR POR MESES ("¿Cuándo puedes viajar?")
   ============================================================ */
.month-search {
  max-width: 1600px;
  margin: 0 auto clamp(30px, 4vw, 48px);
  padding: 0 clamp(20px, 5vw, 60px);
  text-align: center;
}
.month-search-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 16px;
}
.month-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  background: var(--brown-bg-dark);
  padding: 7px;
  border-radius: 999px;
  box-shadow: var(--bk-shadow-sm);
}
.month-tab {
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .4px;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.month-tab:hover { color: var(--white); }
.month-tab.is-active { background: var(--white); color: var(--brown-deep); font-weight: 500; }
.month-tab .mt-count {
  font-size: 11px;
  opacity: .65;
  margin-left: 5px;
}
.month-tab.is-active .mt-count { opacity: .55; }
@media (max-width: 600px) {
  .month-tabs { border-radius: 22px; }
  .month-tab { padding: 9px 14px; font-size: 12px; }
}

/* ============================================================
   1B. VOYAGE CARD (boceto) — tarjeta rica del listado
   ============================================================ */
.voyage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.voyage-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--bk-line);
  border-radius: var(--bk-radius);
  overflow: hidden;
  box-shadow: var(--bk-shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.voyage-card:hover { transform: translateY(-4px); box-shadow: var(--bk-shadow); }
.voyage-card.is-hidden { display: none; }

.vc-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.vc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.voyage-card:hover .vc-media img { transform: scale(1.05); }
.vc-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.28), transparent 45%);
}
.vc-badge-pop {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--accent-deep); color: var(--white);
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500;
  padding: 6px 12px; border-radius: 999px;
}
.vc-badge-spots {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-size: 10px; letter-spacing: 1px; text-transform: uppercase; font-weight: 500;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(4px);
}
.vc-badge-spots.few { color: var(--accent-deep); }
.vc-badge-spots.ok  { color: var(--bk-ok); }

.vc-body { display: flex; flex-direction: column; flex: 1; padding: clamp(20px, 2.4vw, 28px); }
.vc-eyebrow {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent-deep); margin-bottom: 8px;
}
.vc-title {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 27px);
  font-weight: 400; line-height: 1.1; color: var(--brown-deep);
  margin-bottom: 6px; letter-spacing: .3px;
}
.vc-sub { font-size: 14px; color: var(--muted); margin-bottom: 16px; }

.vc-meta {
  display: flex; flex-wrap: wrap; gap: 18px;
  padding: 14px 0; margin-bottom: 16px;
  border-top: 1px solid var(--bk-line); border-bottom: 1px solid var(--bk-line);
}
.vc-meta-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--brown-deep); }
.vc-meta-item svg { width: 16px; height: 16px; stroke: var(--brown-light); fill: none; stroke-width: 1.6; flex: none; }

.vc-departs-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 10px;
}
.vc-departs { list-style: none; display: grid; gap: 7px; margin-bottom: 18px; }
.vc-depart {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-size: 14px; color: var(--brown-deep);
}
.vc-depart .vc-depart-date { display: flex; align-items: center; gap: 8px; }
.vc-depart .vc-depart-date svg { width: 14px; height: 14px; stroke: var(--brown-light); fill: none; stroke-width: 1.6; }
.vc-depart .spots-pill { margin: 0; }

.vc-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  flex-wrap: wrap; row-gap: 12px;
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--bk-line);
}
.vc-price { font-size: 12px; color: var(--muted); }
.vc-price strong {
  display: block; font-family: var(--display); font-size: 26px;
  font-weight: 400; color: var(--brown-deep); letter-spacing: 0;
}
.vc-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 18px; border-radius: 999px;
  background: var(--brown-bg-dark); color: var(--white);
  font-size: 10.5px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  white-space: nowrap;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.vc-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.voyage-card:hover .vc-btn { background: var(--accent-deep); }
.vc-btn:hover { transform: translateX(2px); }

@media (max-width: 1240px) { .voyage-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .voyage-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .voyage-grid { grid-template-columns: 1fr; } }

/* Variante COMPACTA para la home: más columnas, menos scroll */
.voyage-grid--home {
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.4vw, 22px);
}
.voyage-grid--home .vc-departs,
.voyage-grid--home .vc-departs-label { display: none; }
.voyage-grid--home .vc-sub { font-size: 13.5px; line-height: 1.55; color: var(--muted); margin-bottom: 14px; min-height: 4.65em; }
.voyage-grid--home .vc-media { aspect-ratio: 4 / 3; }
.voyage-grid--home .vc-body { padding: clamp(15px, 1.3vw, 20px); }
.voyage-grid--home .vc-eyebrow { margin-bottom: 6px; }
.voyage-grid--home .vc-title { font-size: clamp(18px, 1.5vw, 22px); margin-bottom: 12px; min-height: 2.3em; }
.voyage-grid--home .vc-meta { gap: 6px 14px; flex-wrap: wrap; padding: 12px 0; margin-bottom: 0; border-bottom: none; }
.voyage-grid--home .vc-meta-item { font-size: 12px; }
.voyage-grid--home .vc-footer { padding-top: 14px; }
.voyage-grid--home .vc-price { font-size: 11px; }
.voyage-grid--home .vc-price strong { font-size: 21px; }
.voyage-grid--home .vc-btn { padding: 10px 15px; font-size: 10px; letter-spacing: 1px; }
.voyage-grid--home .vc-badge-pop,
.voyage-grid--home .vc-badge-spots { font-size: 9px; letter-spacing: 1px; padding: 5px 9px; top: 12px; }
.voyage-grid--home .vc-badge-pop { left: 12px; }
.voyage-grid--home .vc-badge-spots { right: 12px; }
@media (max-width: 1100px) {
  .voyage-grid--home { grid-template-columns: repeat(2, 1fr); }
  .voyage-grid--home .vc-badge-pop, .voyage-grid--home .vc-badge-spots { font-size: 10px; padding: 6px 11px; }
}
@media (max-width: 560px)  { .voyage-grid--home { grid-template-columns: 1fr; } }

/* ============================================================
   2. WIDGET DE RESERVA (página de viaje) — sticky
   ============================================================ */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.booking-widget {
  position: sticky;
  top: 110px;
  background: var(--white);
  border: 1px solid var(--bk-line);
  border-radius: var(--bk-radius);
  box-shadow: var(--bk-shadow);
  padding: clamp(22px, 2.4vw, 30px);
}
.booking-widget-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--bk-line);
  margin-bottom: 20px;
}
.booking-price-now {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 42px);
  font-weight: 400;
  color: var(--brown-deep);
  line-height: 1;
}
.booking-price-now small {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 6px;
}
.booking-price-old {
  font-size: 14px;
  color: var(--muted-2);
  text-decoration: line-through;
}
.booking-field { margin-bottom: 16px; }
.booking-field > label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

/* Selector de salida (radio cards) */
.departure-list { display: grid; gap: 8px; }
.departure {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid var(--bk-line);
  border-radius: var(--bk-radius-sm);
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.departure:hover { border-color: var(--brown-light); }
.departure input { position: absolute; opacity: 0; pointer-events: none; }
.departure.is-selected { border-color: var(--brown); background: var(--sand); }
.departure.is-soldout { opacity: .5; cursor: not-allowed; }
.departure-date { font-size: 14px; color: var(--brown-deep); font-weight: 500; }
.departure-sub { font-size: 12px; color: var(--muted-2); margin-top: 2px; }
.departure-right { text-align: right; }
.departure-price { font-family: var(--display); font-size: 18px; color: var(--brown-deep); }
.spots-pill {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .5px;
  padding: 3px 9px;
  border-radius: 999px;
  margin-top: 4px;
}
.spots-pill.few { background: #FBEAD7; color: var(--bk-warn); }
.spots-pill.ok  { background: #E4F0E8; color: var(--bk-ok); }
.spots-pill.none{ background: #efe9e2; color: var(--muted-2); }

/* Stepper nº viajeros */
.stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--bk-line);
  border-radius: var(--bk-radius-sm);
  padding: 8px 12px;
}
.stepper button {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--brown-light);
  background: var(--white);
  color: var(--brown-deep);
  font-size: 18px;
  cursor: pointer;
  transition: background .2s, color .2s;
  display: flex; align-items: center; justify-content: center;
}
.stepper button:hover:not(:disabled) { background: var(--brown); color: var(--white); border-color: var(--brown); }
.stepper button:disabled { opacity: .35; cursor: not-allowed; }
.stepper-value { font-family: var(--display); font-size: 22px; color: var(--brown-deep); }

/* Checkbox suplemento */
.booking-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--bk-line);
  border-radius: var(--bk-radius-sm);
  cursor: pointer;
  font-size: 14px;
  color: var(--brown-deep);
}
.booking-check input { margin-top: 3px; accent-color: var(--brown); }
.booking-check .sup-price { margin-left: auto; color: var(--muted); white-space: nowrap; }

/* Desglose total */
.booking-breakdown {
  margin: 18px 0;
  padding-top: 16px;
  border-top: 1px solid var(--bk-line);
  font-size: 14px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}
.booking-breakdown .row { display: flex; justify-content: space-between; }
.booking-breakdown .row.total {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--bk-line);
  font-family: var(--display);
  font-size: 24px;
  color: var(--brown-deep);
}
.booking-breakdown .row.deposit { color: var(--accent-deep); font-size: 13px; }

/* Botón principal de reserva */
.bk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 17px 24px;
  border: none;
  border-radius: 999px;
  background: var(--brown-bg-dark);
  color: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.bk-btn:hover { background: var(--accent-deep); transform: translateY(-2px); }
.bk-btn.ghost {
  background: transparent;
  border: 1px solid var(--brown-light);
  color: var(--brown-deep);
}
.bk-btn.ghost:hover { background: var(--sand); transform: none; }
.bk-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.bk-reassure {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.6;
}
.bk-reassure svg { width: 13px; height: 13px; vertical-align: -2px; margin-right: 3px; }

/* ============================================================
   2B. PÁGINA DE VIAJE (Egipto) — layout con tarjeta anclada
   ============================================================ */
.trip-main {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 60px);
}
.trip-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}
.trip-content { min-width: 0; }
.trip-content > * + * { margin-top: clamp(48px, 6vw, 80px); }

/* Bloque "An Adventure of a Lifetime" */
.adventure-hero {
  position: relative;
  border-radius: var(--bk-radius);
  overflow: hidden;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 4vw, 52px);
  color: var(--white);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.adventure-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.adventure-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(40,28,18,.92), rgba(40,28,18,.72) 60%, rgba(40,28,18,.66));
}
.adventure-hero > * { position: relative; z-index: 2; }
.adventure-hero h2 {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400; line-height: 1.08; margin-bottom: 18px; max-width: 16ch;
}
.adventure-hero p { font-size: 15px; line-height: 1.85; opacity: .9; max-width: 60ch; }
.adventure-hero p + p { margin-top: 14px; }

/* Bloque genérico de contenido */
.trip-block-tag {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent-deep); margin-bottom: 14px;
}
.trip-block h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px); color: var(--brown-deep);
  line-height: 1.12; margin-bottom: 22px;
}
.trip-block > p { font-size: 16px; line-height: 1.85; color: var(--muted); max-width: 65ch; }

/* "Lo que vas a vivir" */
.live-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.live-item {
  display: flex; gap: 14px; padding: 22px;
  background: var(--cream); border-radius: var(--bk-radius-sm);
}
.live-item .li-ico {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  background: var(--sand); display: flex; align-items: center; justify-content: center;
}
.live-item .li-ico svg { width: 20px; height: 20px; stroke: var(--brown-deep); fill: none; stroke-width: 1.6; }
.live-item h4 { font-family: var(--display); font-size: 18px; font-weight: 400; color: var(--brown-deep); margin-bottom: 5px; }
.live-item p { font-size: 14px; line-height: 1.6; color: var(--muted); }

/* Mini galería deslizable */
.mini-gallery {
  display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 8px; margin-top: 26px;
  scrollbar-width: thin;
}
.mini-gallery::-webkit-scrollbar { height: 6px; }
.mini-gallery::-webkit-scrollbar-thumb { background: var(--sand-dark); border-radius: 999px; }
.mini-gallery img {
  flex: 0 0 auto; width: clamp(220px, 32vw, 320px); height: clamp(160px, 22vw, 230px);
  object-fit: cover; border-radius: var(--bk-radius-sm); scroll-snap-align: start;
}

/* Itinerario día a día */
.trip-timeline { border-top: 1px solid var(--bk-line); margin-top: 24px; }
.trip-timeline-item {
  display: grid; grid-template-columns: 130px 1fr; gap: 28px;
  padding: 26px 0; border-bottom: 1px solid var(--bk-line);
}
.trip-timeline-day {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent-deep); padding-top: 5px;
}
.trip-timeline h4 { font-family: var(--display); font-size: clamp(20px, 2.4vw, 26px); font-weight: 400; color: var(--brown-deep); margin-bottom: 8px; }
.trip-timeline p { font-size: 15px; line-height: 1.75; color: var(--muted); }

/* Incluido / No incluido */
.includes-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.include-card { padding: clamp(24px, 3vw, 36px); border-radius: var(--bk-radius); background: var(--cream); }
.include-card h3 {
  font-family: var(--display); font-size: 24px; font-weight: 400; color: var(--brown-deep);
  margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--bk-line);
}
.include-card ul { list-style: none; display: grid; gap: 12px; }
.include-card li { position: relative; padding-left: 26px; font-size: 14px; line-height: 1.6; color: var(--muted); }
.include-card li::before { content: '+'; position: absolute; left: 0; top: -1px; color: var(--bk-ok); font-weight: 600; }
.include-card.excluded li::before { content: '–'; color: var(--muted-2); }

/* Anticipo + vídeo */
.anticipo {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: center;
  background: var(--brown-bg-dark); color: var(--white);
  border-radius: var(--bk-radius); overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
}
.anticipo h2 { font-family: var(--display); font-weight: 400; font-size: clamp(26px, 3vw, 38px); margin-bottom: 16px; }
.anticipo p { font-size: 15px; line-height: 1.8; opacity: .85; }
.anticipo p + p { margin-top: 12px; }
.anticipo-video {
  position: relative; aspect-ratio: 16/10; border-radius: var(--bk-radius-sm); overflow: hidden;
  background: #00000033; display: flex; align-items: center; justify-content: center;
}
.anticipo-video img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .65; }
.anticipo-video .play {
  position: relative; z-index: 2; width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,.92); display: flex; align-items: center; justify-content: center;
}
.anticipo-video .play svg { width: 22px; height: 22px; fill: var(--brown-deep); margin-left: 3px; }
.anticipo-video .placeholder-note {
  position: absolute; bottom: 10px; left: 0; right: 0; z-index: 2; text-align: center;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.7);
}

/* Frase inspiradora */
.trip-quote {
  text-align: center; font-family: var(--display); font-weight: 400;
  font-size: clamp(24px, 3.4vw, 40px); line-height: 1.3; color: var(--brown-deep);
  max-width: 22ch; margin-left: auto; margin-right: auto;
}

/* TARJETA ANCLADA (aside): detalles + precio + reservar */
.trip-details {
  display: grid; gap: 0;
  border-top: 1px solid var(--bk-line);
  margin-bottom: 20px;
}
.trip-detail-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  column-gap: 12px; row-gap: 3px;
  align-items: start;
  padding: 12px 0; border-bottom: 1px solid var(--bk-line);
}
.trip-detail-row svg { grid-row: span 2; width: 18px; height: 18px; margin-top: 3px; stroke: var(--brown-light); fill: none; stroke-width: 1.6; }
.trip-detail-row .td-label { grid-column: 2; font-size: 11px; letter-spacing: .6px; text-transform: uppercase; color: var(--muted-2); }
.trip-detail-row .td-value { grid-column: 2; font-size: 14px; line-height: 1.3; color: var(--brown-deep); font-weight: 500; text-align: left; }

@media (max-width: 980px) {
  .trip-layout { grid-template-columns: 1fr; }
  .trip-layout .booking-widget { position: static; }
  .live-grid, .includes-2col, .anticipo { grid-template-columns: 1fr; }
  .trip-timeline-item { grid-template-columns: 1fr; gap: 6px; }
}

/* ============================================================
   3. CHECKOUT
   ============================================================ */
.checkout-hero {
  padding: clamp(120px, 14vw, 160px) 0 clamp(30px, 4vw, 50px);
  background: var(--cream-2);
  text-align: center;
}
.checkout-hero h1 {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 400;
  color: var(--brown-deep);
}
.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.booking-steps .step {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted-2);
}
.booking-steps .step b {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 1px solid var(--brown-light);
  font-size: 12px; color: var(--brown-light); font-weight: 500;
}
.booking-steps .step.active b { background: var(--brown-bg-dark); color: var(--white); border-color: var(--brown-bg-dark); }
.booking-steps .step.active { color: var(--brown-deep); }
.booking-steps .step-sep { width: 26px; height: 1px; background: var(--brown-light); }

.checkout {
  padding: clamp(40px, 6vw, 72px) 0 clamp(60px, 8vw, 110px);
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.checkout-block {
  background: var(--white);
  border: 1px solid var(--bk-line);
  border-radius: var(--bk-radius);
  padding: clamp(22px, 3vw, 36px);
  margin-bottom: 22px;
}
.checkout-block h2 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  color: var(--brown-deep);
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.checkout-block h2 .num {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--sand); color: var(--brown-deep);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row { display: flex; flex-direction: column; }
.form-row.full { grid-column: 1 / -1; }
.form-row label {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 7px;
}
.form-row input, .form-row select, .form-row textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--brown-deep);
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 13px 15px;
  transition: border-color .2s, background .2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--brown-light); background: var(--white);
}
.form-row textarea { resize: vertical; min-height: 90px; }

/* Métodos de pago (placeholder, se conecta en WooCommerce) */
.pay-methods { display: grid; gap: 10px; }
.pay-method {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--bk-line);
  border-radius: var(--bk-radius-sm);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.pay-method:hover { border-color: var(--brown-light); }
.pay-method.is-selected { border-color: var(--brown); background: var(--sand); }
.pay-method input { accent-color: var(--brown); }
.pay-method .pm-label { font-size: 15px; color: var(--brown-deep); font-weight: 500; }
.pay-method .pm-sub { font-size: 12px; color: var(--muted-2); margin-top: 2px; }
.pay-method .pm-logos { margin-left: auto; font-size: 12px; color: var(--muted-2); letter-spacing: 1px; }
.pay-note {
  margin-top: 14px; font-size: 12px; color: var(--muted-2); line-height: 1.6;
  background: var(--cream); border-radius: 12px; padding: 12px 14px;
}

/* Resumen lateral del pedido */
.order-summary {
  position: sticky; top: 110px;
  background: var(--white);
  border: 1px solid var(--bk-line);
  border-radius: var(--bk-radius);
  box-shadow: var(--bk-shadow);
  overflow: hidden;
}
.order-summary-media { position: relative; height: 170px; }
.order-summary-media img { width: 100%; height: 100%; object-fit: cover; }
.order-summary-media .os-badge {
  position: absolute; bottom: 12px; left: 14px;
  background: rgba(255,255,255,0.92); color: var(--brown-deep);
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.order-summary-body { padding: clamp(20px, 2.4vw, 28px); }
.order-summary-body h3 {
  font-family: var(--display); font-size: 24px; font-weight: 400;
  color: var(--brown-deep); margin-bottom: 4px;
}
.os-dates { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.os-lines { display: grid; gap: 10px; font-size: 14px; color: var(--muted); padding-bottom: 16px; border-bottom: 1px solid var(--bk-line); }
.os-lines .row { display: flex; justify-content: space-between; gap: 10px; }
.os-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 16px;
}
.os-total .lbl { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.os-total .amt { font-family: var(--display); font-size: 30px; color: var(--brown-deep); }
.os-deposit {
  margin-top: 12px; padding: 12px 14px; border-radius: 12px;
  background: #FBEAD7; color: var(--accent-deep); font-size: 13px; line-height: 1.5;
}

/* ============================================================
   4. CONFIRMACIÓN
   ============================================================ */
.confirm-section {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(120px, 16vw, 180px) 20px 80px;
  background: var(--cream-2);
}
.confirm-card {
  max-width: 560px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: var(--bk-shadow);
  padding: clamp(36px, 6vw, 64px);
}
.confirm-check {
  width: 76px; height: 76px; margin: 0 auto 26px;
  border-radius: 50%;
  background: #E4F0E8;
  display: flex; align-items: center; justify-content: center;
}
.confirm-check svg { width: 36px; height: 36px; stroke: var(--bk-ok); }
.confirm-card h1 {
  font-family: var(--display); font-size: clamp(30px, 5vw, 44px);
  font-weight: 400; color: var(--brown-deep); margin-bottom: 14px;
}
.confirm-card p { color: var(--muted); line-height: 1.75; margin-bottom: 10px; }
.confirm-ref {
  display: inline-block; margin: 18px 0 26px;
  font-family: var(--display); font-size: 20px; letter-spacing: 2px;
  color: var(--brown-deep);
  background: var(--sand); border-radius: 999px; padding: 10px 24px;
}
.confirm-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 6px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .booking-layout, .checkout-grid { grid-template-columns: 1fr; }
  .booking-widget { position: static; }
  .order-summary { position: static; order: -1; }
  .filter-bar {
    position: static;
    border-radius: var(--bk-radius);
    flex-wrap: wrap;
  }
  .filter-group { flex: 1 1 45%; }
  .filter-group + .filter-group::before { display: none; }
}
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .filter-group { flex: 1 1 100%; }
  .filter-search { width: 100%; justify-content: center; height: 48px; border-radius: 12px; margin-left: 0; }
}

/* ============================================================
   HOME TWEAKS (ajustes PDF - inicio)
   ============================================================ */
/* (1) Botón "¿Quieres sentirte viva con nosotros?" en marrón visible */
.intro-split-cta.intro-split-cta--btn {
  border-bottom: none;
  background: var(--brown-bg-dark);
  color: var(--white);
  font-style: italic;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: clamp(17px, 1.7vw, 21px);
  box-shadow: var(--bk-shadow-sm);
  transition: background .3s var(--ease), transform .3s var(--ease), gap .3s var(--ease);
}
.intro-split-cta.intro-split-cta--btn:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  opacity: 1;
}

/* (2) "Sé parte de la aventura" más compacta + letras azules -> blancas */
.aventura-wide.aventura-wide--compact {
  padding: clamp(56px, 7vw, 96px) clamp(24px, 6vw, 80px);
}
.aventura-wide--compact .aventura-wide-tag { color: var(--white); opacity: .9; }
.aventura-wide--compact h2 { font-size: clamp(34px, 4.2vw, 54px); }
.aventura-wide--compact p { margin-bottom: 22px; }
.aventura-wide-discount {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  font-size: 13px; color: rgba(255,255,255,0.85);
}
.aventura-wide-discount strong { color: var(--white); }

/* ============================================================
   CHIPS (filtros galería / faqs)
   ============================================================ */
.chip-row {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  max-width: 1600px; margin: 0 auto clamp(28px, 4vw, 44px); padding: 0 clamp(20px, 5vw, 60px);
}
.chip {
  border: 1px solid var(--bk-line); background: var(--white); color: var(--muted);
  padding: 9px 18px; border-radius: 999px; font-family: var(--sans); font-size: 13px;
  letter-spacing: .3px; cursor: pointer; transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.chip:hover { border-color: var(--brown-light); color: var(--brown-deep); }
.chip.is-active { background: var(--brown-bg-dark); color: var(--white); border-color: var(--brown-bg-dark); }
.gallery-item.is-hidden, .faq-item.is-hidden { display: none; }

/* Galería pro: chips dentro del bloque oscuro */
.gallery--pro { padding-top: clamp(36px, 4vw, 56px) !important; }
.chip-row--dark { margin-bottom: clamp(24px, 3vw, 36px); }
.chip-row--dark .chip { background: transparent; border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.8); }
.chip-row--dark .chip:hover { border-color: rgba(255,255,255,.7); color: #fff; }
.chip-row--dark .chip.is-active { background: #fff; color: var(--brown-deep); border-color: #fff; }

/* ============================================================
   GALERÍA PRO — hover
   ============================================================ */
.gallery-item { position: relative; overflow: hidden; }
.gallery-item img { transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(40,28,18,.45), transparent 55%);
  opacity: 0; transition: opacity .3s var(--ease); pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }
.gi-zoom {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.8); transition: opacity .3s var(--ease), transform .3s var(--ease);
  pointer-events: none;
}
.gallery-item:hover .gi-zoom { opacity: 1; transform: scale(1); }
.gi-zoom svg { width: 17px; height: 17px; stroke: var(--brown-deep); fill: none; stroke-width: 1.8; }

/* ============================================================
   CONTACTO PRO — panel info + formulario
   ============================================================ */
.contact-pro {
  max-width: 1600px; margin: 0 auto;
  padding: clamp(44px, 5vw, 72px) clamp(20px, 5vw, 60px);
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(20px, 2.5vw, 36px);
  align-items: stretch;
}
.contact-aside {
  background: var(--brown-bg-dark); color: var(--white);
  border-radius: var(--bk-radius); padding: clamp(26px, 3vw, 42px);
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.contact-aside-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.contact-aside h2 { font-family: var(--display); font-weight: 400; font-size: clamp(26px, 3vw, 38px); line-height: 1.1; margin-bottom: 14px; }
.contact-aside > p { font-size: 15px; line-height: 1.7; opacity: .82; margin-bottom: 26px; }
.contact-method { display: flex; gap: 14px; align-items: center; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.15); }
.contact-method:first-of-type { border-top: none; }
.contact-method .cm-ico { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; flex: none; }
.contact-method .cm-ico svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 1.6; }
.contact-method > span:last-child { display: flex; flex-direction: column; }
.contact-method .cm-label { display: block; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; opacity: .6; margin-bottom: 3px; }
.contact-method .cm-value { display: block; font-size: 16px; color: var(--white); }
.contact-aside-foot { margin-top: auto; padding-top: 26px; }
.contact-aside-foot .caf-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; opacity: .6; margin-bottom: 12px; }
.contact-socials { display: flex; gap: 10px; }
.contact-socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center; color: var(--white); transition: background .25s, color .25s, transform .25s; }
.contact-socials a:hover { background: var(--white); color: var(--brown-deep); transform: translateY(-2px); }
.contact-socials svg { width: 18px; height: 18px; }

.contact-form-card {
  background: var(--white); border: 1px solid var(--bk-line);
  border-radius: var(--bk-radius); padding: clamp(26px, 3vw, 44px); box-shadow: var(--bk-shadow-sm);
}
.contact-form-card h2 { font-family: var(--display); font-weight: 400; font-size: clamp(24px, 2.6vw, 32px); color: var(--brown-deep); margin-bottom: 6px; }
.contact-form-card > p { color: var(--muted); font-size: 15px; margin-bottom: 26px; }
.contact-form-card .form-success { margin-top: 16px; }

@media (max-width: 860px) { .contact-pro { grid-template-columns: 1fr; } }

/* FAQ pro: respira un poco más y CTA */
.faq-cta-pro {
  max-width: 760px; margin: clamp(36px, 5vw, 56px) auto 0; text-align: center;
}

/* ============================================================
   LIGHTBOX (galería)
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(28, 19, 12, .94);
  display: none; align-items: center; justify-content: center;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox-close {
  position: absolute; top: 22px; right: 28px;
  background: none; border: none; color: #fff; font-size: 36px; line-height: 1; cursor: pointer; opacity: .85;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.14); border: none; color: #fff;
  width: 54px; height: 54px; border-radius: 50%; font-size: 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,.28); }
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }
.gallery-item, .ig-item { cursor: zoom-in; }
@media (max-width: 600px) { .lightbox-nav { width: 44px; height: 44px; } .lightbox-nav.prev { left: 8px; } .lightbox-nav.next { right: 8px; } }

/* Barra de reserva fija en móvil (página de viaje) */
.mobile-book-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  background: var(--white);
  border-top: 1px solid var(--bk-line);
  box-shadow: 0 -10px 30px -20px rgba(0,0,0,.4);
  padding: 12px 18px;
  align-items: center; justify-content: space-between; gap: 12px;
}
.mobile-book-bar .mbb-price { font-family: var(--display); font-size: 22px; color: var(--brown-deep); }
.mobile-book-bar .mbb-price small { display:block; font-family: var(--sans); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted-2); }
.mobile-book-bar .bk-btn { width: auto; padding: 14px 26px; }
@media (max-width: 980px) {
  .mobile-book-bar { display: flex; }
  body.has-book-bar { padding-bottom: 84px; }
}

/* ====================================================================
   REDISEÑO 2026 — Reserva: selector de experiencia/fecha/viajeros
   ==================================================================== */
.os-picker {
  display: flex; flex-direction: column; gap: 12px;
  padding: 0 0 18px; margin-bottom: 18px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.os-field { display: flex; flex-direction: column; gap: 6px; }
.os-field label {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 1.4px; text-transform: uppercase; color: var(--brown-cta);
}
.os-field select {
  padding: 11px 14px; border: 1px solid rgba(132,85,54,0.35); border-radius: 10px;
  background: #fff; font-family: var(--sans); font-size: 14px; color: #3a2a1c; outline: none;
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpolyline points='2,4 6,8 10,4' fill='none' stroke='%23845536' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.os-field select:focus { border-color: var(--brown-cta); }
.os-single { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); cursor: pointer; }
.os-single input { accent-color: var(--brown-cta); }

/* Acompañantes */
.block-hint { font-size: 14px; color: var(--muted); margin: -6px 0 16px; }
.add-companion {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 6px;
  padding: 11px 20px; border: 1px dashed rgba(132,85,54,0.5); border-radius: 100px;
  background: rgba(226,203,184,0.25); color: var(--brown-cta);
  font-family: var(--sans); font-size: 13px; font-weight: 500; cursor: pointer; transition: background 0.3s;
}
.add-companion:hover { background: rgba(226,203,184,0.55); }
.add-companion svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; }
.companion-row { position: relative; padding: 18px 0 4px; border-top: 1px solid rgba(0,0,0,0.07); margin-top: 14px; }
.companion-row:first-child { border-top: none; margin-top: 0; }
.companion-remove {
  position: absolute; top: 16px; right: 0; background: none; border: none;
  color: var(--muted); font-size: 12px; text-decoration: underline; cursor: pointer;
}
.companion-remove:hover { color: #b5462f; }
.weight-check { margin-top: 16px; }
