/* Fonts: enqueued in rezlive-hotel-booking.php (Playfair Display + DM Sans). */

/* ============================================================
   Rezlive Hotel Booking — booking.css
   Design system: luxury dark hero + cream results + gold accents
   ============================================================ */

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --rl-ink:          #273248;
  --rl-ink-60:       rgba(13,17,23,.6);
  --rl-ink-20:       rgba(13,17,23,.08);
  --rl-gold:         #ff4713;
  --rl-gold-light:   #f5e6b8;
  --rl-cream:        #faf8f4;
  --rl-white:        #ffffff;
  --rl-glass:        rgba(255,255,255,.72);
  --rl-radius-sm:    8px;
  --rl-radius-md:    16px;
  --rl-radius-lg:    24px;
  --rl-shadow-card:  0 4px 24px rgba(13,17,23,.10), 0 1px 4px rgba(13,17,23,.06);
  --rl-shadow-hover: 0 12px 40px rgba(13,17,23,.18), 0 2px 8px rgba(13,17,23,.08);
  --rl-ease:         cubic-bezier(.16,1,.3,1);
}

/* ─── WIDGET SHELL ───────────────────────────────────────── */
.rezlive-booking-widget {
  font-size: 15px;
  line-height: 1.5;
  color: var(--rl-ink);
  max-width: 100%;
}

/* ─── STEP VISIBILITY ────────────────────────────────────── */
.rezlive-step           { display: none; }
.rezlive-step.active    { display: block; }




.rezlive-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin-bottom: 36px;
  animation: rl-fadeUp .7s var(--rl-ease) both;
}
.rezlive-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rl-gold);
  margin-bottom: 16px;
}
.rezlive-hero-eyebrow::before,
.rezlive-hero-eyebrow::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--rl-gold);
  opacity: .5;
}
.rezlive-hero h2 {
  
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
}

/* ─── SEARCH CARD ───────────────────────────────────────── */
.rezlive-search-card {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 28px 32px;
  animation: rl-fadeUp .7s .15s var(--rl-ease) both;
}

.rezlive-step-header-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--rl-ink);
}
.rezlive-step-header-title::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--rl-gold);
  opacity: .5;
}

/* Tabs */
.rezlive-search-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--rl-ink-20);
}
.rezlive-search-tab {
  padding: 8px 18px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--rl-ink-60);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
 
}
.rezlive-search-tab.active {
  color: var(--rl-ink);
  border-bottom-color: var(--rl-gold);
}
.rezlive-search-tab svg { width: 14px; height: 14px; opacity: .7; }

/* Fixed destination (city/country set by site) */
.rezlive-search-destination {
  margin-bottom: 20px;
  padding: 14px 16px;
  background: rgba(255,255,255,.55);
  border: 1px solid var(--rl-ink-20);
  
}
.rezlive-search-destination-label {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rl-ink-60);
  margin-bottom: 6px;
}
.rezlive-search-destination-value {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--rl-ink);
}

.rezlive-accommodation-section {
  margin-bottom: 8px;
}
.rezlive-accommodation-title {
  
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--rl-ink);
  margin: 0 0 6px;
}
.rezlive-accommodation-hint {
  margin: 0 0 18px;
  font-size: 13px;
  color: var(--rl-ink-60);
  font-weight: 400;
}
.rl-child-ages-host {
  margin-top: 12px;
}
.rl-child-ages-host .rezlive-form-row--child-ages {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  width: 100%;
}

/* Search field grid */
.rezlive-search-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1fr auto;
  gap: 12px;
  align-items: end;
}
.rezlive-search-grid--accommodation {
  grid-template-columns: 1.1fr 1.1fr 1.35fr auto;
  align-items: end;
}
.rezlive-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rezlive-field label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rl-ink-60);
}
.rezlive-field-inner {
  position: relative;
  overflow: visible;
  z-index: 1;
}
.rezlive-field-inner:has(.rl-guest-dropdown.open) {
  z-index: 50;
}
.rezlive-field-inner svg.rl-field-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px; height: 15px;
  color: var(--rl-ink-60);
  pointer-events: none;
  z-index: 1;
}
.rezlive-field input,
.rezlive-field select {
  width: 100%;
  padding: 10px 12px 10px 34px;
  border: 1.5px solid var(--rl-ink-20);
  
 
  font-size: 14px;
  font-weight: 500;
  color: var(--rl-ink);
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}
.rezlive-field input:focus,
.rezlive-field select:focus {
  border-color: var(--rl-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}

/* Guest stepper display */
.rl-guest-display {
  padding: 10px 12px 10px 34px;
  border: 1.5px solid var(--rl-ink-20);
  
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  background: #fff;
  user-select: none;
  transition: border-color .2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
 
}
.rl-guest-display:hover,
.rl-guest-display.open { border-color: var(--rl-gold); }
.rl-guest-display svg.rl-chevron {
  width: 12px; height: 12px;
  color: var(--rl-ink-60);
  transition: transform .2s;
  flex-shrink: 0;
}
.rl-guest-display.open svg.rl-chevron { transform: rotate(180deg); }

.rl-guest-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: #fff;
  border: 1.5px solid var(--rl-ink-20);
  padding: 16px;
  box-shadow: var(--rl-shadow-hover);
  z-index: 5000;
  display: none;
  min-width: 220px;
}
.rl-guest-dropdown.open {
  display: block;
  animation: rl-dropIn .2s var(--rl-ease);
}
.rl-guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--rl-ink-20);
}
.rl-guest-row:last-child { border-bottom: none; }
.rl-guest-row-label strong { font-size: 13px; font-weight: 600; }
.rl-guest-row-label span   { font-size: 11px; color: var(--rl-ink-60); }
.rl-stepper { display: flex; align-items: center; gap: 10px; }
.rl-stepper button {
  width: 28px; height: 28px;
  border: 1.5px solid var(--rl-ink-20);
  border-radius: 50%;
  background: #fff;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s;
  font-weight: 600;
 
}
.rl-stepper button:hover { background: var(--rl-gold-light); border-color: var(--rl-gold); }
.rl-stepper span { font-size: 15px; font-weight: 600; min-width: 20px; text-align: center; }

/* Star rating chips */
.rl-star-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.rl-star-strip-label-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
}
.rl-star-strip-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--rl-ink-60);
}
.rl-star-strip-visual {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  line-height: 1;
}
.rl-star-strip-visual-star {
  color: var(--rl-gold);
  font-size: 15px;
  line-height: 1;
  filter: drop-shadow(0 1px 1px rgba(184, 134, 11, 0.35));
}
/* Stars always 1 → 5 left to right (ignore page RTL for this control) */
.rl-star-row {
  display: flex;
  flex-direction: row;
  direction: ltr;
  gap: 4px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.rl-star-chip {
  margin: 0;
  padding: 5px 5px;
  border: 1.5px solid var(--rl-ink-20);
  border-radius: 20px;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  background: #fff;
  color: var(--rl-ink-60);
  transition: background .15s, border-color .15s, color .15s;
  white-space: nowrap;
  appearance: none;
  -webkit-appearance: none;
}
.rl-star-chip:focus-visible {
  outline: 2px solid var(--rl-gold);
  outline-offset: 2px;
}
.rl-star-chip.active,
.rl-star-chip:hover {
  background: var(--rl-gold);
  border-color: var(--rl-gold);
  color: #fff;
}

/* Advanced toggle */
.rl-advanced-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  font-size: 12.5px;
  color: var(--rl-ink-60);
  cursor: pointer;
  border: none;
  background: none;
 
  font-weight: 500;
  padding: 4px 0;
  transition: color .2s;
}
.rl-advanced-toggle:hover { color: var(--rl-gold); }
.rl-advanced-toggle svg { width: 13px; height: 13px; transition: transform .25s; }
.rl-advanced-toggle.open svg:last-child { transform: rotate(180deg); }

.rl-advanced-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--rl-ink-20);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-bottom: 5px;
  transition: max-height .4s var(--rl-ease), opacity .3s;
}
.rl-advanced-row.open { max-height: 520px; opacity: 1; }

/* Search button */
.rezlive-btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 28px;
  background: var(--rl-ink);
  color: #fff;
  border: none;
  
 
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .15s;
  white-space: nowrap;
  letter-spacing: .02em;
  height: 44px;
}

.rezlive-btn-search:hover {
  background: #1e2c45;
  box-shadow: 0 6px 20px rgba(13,17,23,.25);
  transform: translateY(-1px);
}
.rezlive-btn-search:disabled {
  background: #999;
  cursor: not-allowed;
  transform: none;
}
.rezlive-btn-search svg { width: 15px; height: 15px; }

.advanced-filters-container {
    display: flex;
  justify-content: space-between;
  flex-direction: row;
 padding-bottom: 5px;
}

/* ─── RESULTS SECTION ────────────────────────────────────── */
.rezlive-results-section {
  max-width: 1320px;
  margin: 0 auto;
}
.rezlive-results-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.rezlive-results-title {
  
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--rl-ink);
}
.rezlive-results-count {
  font-size: 13px;
  color: var(--rl-ink-60);
  font-weight: 400;
  margin-top: 2px;
}
.rezlive-results-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rl-sort-select {
  padding: 8px 30px 8px 14px;
  border: 1.5px solid var(--rl-ink-20);
  
 
  font-size: 13px;
  font-weight: 500;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%230d1117' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 10px center;
  appearance: none;
  -webkit-appearance: none;
  color: var(--rl-ink);
  cursor: pointer;
  outline: none;
}
.rl-sort-select:focus { border-color: var(--rl-gold); }

/* Search results embedded below the form (step 1) */
.rezlive-search-results-panel {

}
.rezlive-search-results-kicker {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rl-ink-60);
  margin: 0 0 12px;
}
.rezlive-results-section--embedded {
  margin: 0;
  padding: 0;
}

/* ─── HOTELS CAROUSEL (horizontal scroll + snap) ──────────── */
.rezlive-hotels-carousel-shell {
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  max-width: 100%;
}
.rezlive-hotels-carousel-shell--empty .rezlive-carousel-btn {
  visibility: hidden;
  pointer-events: none;
}
.rezlive-hotels-carousel-viewport {
  flex: 1;
  min-width: 0;
  position: relative;
  /* Scrolling is on the inner track; avoid clipping first/last cards */
  overflow: visible;
  /* Enables 100cqi card width = visible track, for ~3.5 cards on desktop */
  container-type: inline-size;
  container-name: rezlive-hotels-carousel;
}

/* Results panel: skeleton cards replace live list while search AJAX runs */
.rezlive-search-results-panel.rezlive-search-results-panel--loading {
  pointer-events: none;
}
.rezlive-search-results-panel.rezlive-search-results-panel--loading .rezlive-carousel-meta {
  opacity: 0.35;
}

.rezlive-hotel-skeleton {
  pointer-events: none;
  user-select: none;
  animation: none !important;
}
.rezlive-hotel-skeleton:hover {
  transform: none;
  box-shadow: none;
}
.rezlive-hotel-skeleton .rezlive-hotel-card-image--placeholder {
  background: transparent;
}
.rl-skel {
  display: block;
  border-radius: 6px;
  background: linear-gradient(
    90deg,
    var(--rl-ink-20) 0%,
    rgba(255, 255, 255, 0.65) 48%,
    var(--rl-ink-20) 96%
  );
  background-size: 260% 100%;
  animation: rl-skel-shimmer 1.15s ease-in-out infinite;
}
.rl-skel--img {
  width: 100%;
  min-height: 168px;
  border-radius: 0;
}
.rl-skel--pill {
  height: 20px;
  width: 88px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.rl-skel--title {
  height: 18px;
  width: 88%;
  margin-bottom: 12px;
}
.rl-skel--line {
  height: 11px;
  width: 100%;
  margin-bottom: 10px;
}
.rl-skel--line.short {
  width: 58%;
}
.rl-skel--tiny {
  height: 9px;
  width: 44%;
  margin-bottom: 6px;
}
.rl-skel--price {
  height: 26px;
  width: 108px;
}
.rl-skel--btn {
  width: 118px;
  height: 38px;
  border-radius: 6px;
  flex-shrink: 0;
}
@keyframes rl-skel-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .rl-skel {
    animation: none;
    background: var(--rl-ink-20);
  }
}

.rl-spinner--lg {
  width: 44px;
  height: 44px;
  border-width: 3px;
}
.rl-spinner--btn {
  width: 18px;
  height: 18px;
  border-width: 2px;
  flex-shrink: 0;
}
.rezlive-loading--btn {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.rezlive-btn-search.is-loading .rezlive-loading--btn,
.rezlive-btn-continue.is-loading .rezlive-loading--btn {
  display: inline-flex;
}
.rezlive-btn-search.is-loading .rezlive-btn-text,
.rezlive-btn-continue.is-loading .rezlive-btn-text {
  display: none !important;
}
.rezlive-loading-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--rl-ink-60);
}
.rezlive-hotels-list.rezlive-hotels-carousel {
  --rl-carousel-gap: 22px;
  --rl-carousel-pad-inline: 16px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: var(--rl-carousel-gap);
  margin: 0;
  max-height: 500px;
  /* Room for card shadow + snap alignment; pairs with scroll-padding-inline */
  padding: 4px var(--rl-carousel-pad-inline) 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-padding-inline: var(--rl-carousel-pad-inline);
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(13, 17, 23, 0.25) transparent;
}
.rezlive-hotels-list.rezlive-hotels-carousel::-webkit-scrollbar {
  height: 8px;
}
.rezlive-hotels-list.rezlive-hotels-carousel::-webkit-scrollbar-track {

  border-radius: 999px;
}
.rezlive-hotels-list.rezlive-hotels-carousel::-webkit-scrollbar-thumb {

  border-radius: 999px;
}
/* Default (mobile / tablet): slightly wider than one card */
.rezlive-hotels-carousel .rezlive-hotel-item {
  flex: 0 0 min(360px, calc(100vw - 88px));
  max-width: min(360px, calc(100vw - 88px));
  min-height: 450px;
  scroll-snap-align: center;
  scroll-snap-stop: normal;
}
/* Desktop: ~3.5 cards visible (half of next card peeks) */
@media (min-width: 1024px) {
  @supports (width: 1cqi) {
    .rezlive-hotels-carousel .rezlive-hotel-item {
      /* Track inner width = container minus inline padding on scroll element */
      flex: 0 0 calc(
        (100cqi - 2 * var(--rl-carousel-pad-inline) - 3 * var(--rl-carousel-gap)) / 3.5
      );
      max-width: none;
      scroll-snap-align: start;
    }
  }
  @supports not (width: 1cqi) {
    .rezlive-hotels-carousel .rezlive-hotel-item {
      flex: 0 0 calc((100vw - 180px - 32px) / 3.5);
      max-width: none;
      scroll-snap-align: start;
    }
  }
}
.rezlive-carousel-btn {
  flex-shrink: 0;
  align-self: center;
  width: 44px;
  height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--rl-ink-20);
  border-radius: 50%;
  background: #fff;
  color: var(--rl-ink);
  cursor: pointer;
  transition: background-color 0.2s var(--rl-ease), border-color 0.2s var(--rl-ease),
    transform 0.2s var(--rl-ease), opacity 0.2s var(--rl-ease);
}
.rezlive-carousel-btn:hover:not(:disabled) {
  border-color: var(--rl-gold);
  background: #fffef8;
  transform: scale(1.05);
}
.rezlive-carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}
.rezlive-carousel-meta {
  margin: 8px 0 0;
  padding: 0 52px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--rl-ink-60);
}

/* Fallback grid (no carousel class) */
.rezlive-hotels-list:not(.rezlive-hotels-carousel) {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* ─── HOTEL CARD ─────────────────────────────────────────── */
.rezlive-hotel-card {
  background: #fff;
  overflow: hidden;
  transition: box-shadow .3s var(--rl-ease), transform .3s var(--rl-ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rl-ink-20);
  animation: rl-fadeUp .5s var(--rl-ease) both;
}
.rezlive-hotel-card:hover {
  transform: translateY(-5px);
}
/* stagger */
.rezlive-hotel-card:nth-child(1) { animation-delay: .05s; }
.rezlive-hotel-card:nth-child(2) { animation-delay: .10s; }
.rezlive-hotel-card:nth-child(3) { animation-delay: .15s; }
.rezlive-hotel-card:nth-child(4) { animation-delay: .20s; }
.rezlive-hotel-card:nth-child(5) { animation-delay: .25s; }
.rezlive-hotel-card:nth-child(6) { animation-delay: .30s; }
.rezlive-hotel-card:nth-child(7) { animation-delay: .35s; }
.rezlive-hotel-card:nth-child(8) { animation-delay: .40s; }

.rezlive-hotel-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e8e4dc;
}
.rezlive-hotel-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--rl-ease);
}
.rezlive-hotel-card:hover .rezlive-hotel-img-wrap img { transform: scale(1.06); }

.rezlive-hotel-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(13,17,23,.75);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.rezlive-hotel-badge.deal { background: var(--rl-gold); color: var(--rl-ink); }

.rezlive-wishlist-btn {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.rezlive-wishlist-btn:hover { background: #fff; transform: scale(1.1); }
.rezlive-wishlist-btn svg { width: 14px; height: 14px; color: var(--rl-ink-60); }
.rezlive-wishlist-btn.active svg { color: #e85d5d; fill: #e85d5d; }

/* Card body */
.rezlive-hotel-body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rezlive-hotel-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rezlive-hotel-stars { display: flex; gap: 2px; }
.rezlive-hotel-stars svg {
  width: 12px; height: 12px;
  fill: var(--rl-gold);
  color: var(--rl-gold);
}
.rezlive-hotel-stars svg.empty { fill: #ddd; color: #ddd; }
.rezlive-hotel-stars--card {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  vertical-align: middle;
}
.rezlive-hotel-stars--card svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.rezlive-detail-row-stars {
  padding-top: 2px;
}
.rezlive-detail-row-stars .rezlive-hotel-stars--card svg {
  width: 15px;
  height: 15px;
}
.rezlive-hotel-rating { display: flex; align-items: center; gap: 5px; }
.rl-rating-badge {
  background: var(--rl-ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 6px;
}
.rl-rating-label { font-size: 11px; color: var(--rl-ink-60); font-weight: 500; }

.rezlive-hotel-name {
  
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--rl-ink);
  line-height: 1.25;
}
.rezlive-hotel-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--rl-ink-60);
}
.rezlive-hotel-location svg { width: 12px; height: 12px; flex-shrink: 0; }

.rezlive-hotel-amenities { display: flex; flex-wrap: wrap; gap: 5px; }
.rl-amenity-chip {
  font-size: 10.5px;
  font-weight: 500;
  padding: 3px 8px;
  background: var(--rl-cream);
  border-radius: 20px;
  color: var(--rl-ink-60);
  border: 1px solid var(--rl-ink-20);
}

/* Card footer */
.rezlive-hotel-footer {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--rl-ink-20);
}
.rl-price-label {
  font-size: 10.5px;
  color: var(--rl-ink-60);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.rl-price-main {
  
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--rl-ink);
  line-height: 1;
}
.rl-price-main span {
  font-size: .75rem;
 
  font-weight: 400;
  color: var(--rl-ink-60);
}
.rl-price-nights { font-size: 11px; color: var(--rl-ink-60); margin-top: 1px; }

/* Select button */
.rezlive-btn-select {
  padding: 9px 16px;
  background: var(--rl-gold);
  color: var(--rl-ink);
  border: none;
  
 
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .03em;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.rezlive-btn-select:hover {
  background: #b8932f;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201,168,76,.35);
}

/* ─── STEP HEADERS (rooms / booking form) ────────────────── */
.rezlive-step-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.rezlive-back-btn {
  background: none;
  border: none;
  color: var(--rl-gold);
  font-size: 15px;
 
  cursor: pointer;
  font-weight: 500;
}
.rezlive-step-header h3 {
  
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--rl-ink);
}

/* ─── ROOM CARDS ─────────────────────────────────────────── */
.rezlive-rooms-list { display: flex; flex-direction: column; gap: 16px; }
.rezlive-room-card {
  background: #fff;
  border: 1.5px solid var(--rl-ink-20);
  
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: border-color .2s, box-shadow .2s;
}
.rezlive-room-card:hover { border-color: var(--rl-gold); box-shadow: var(--rl-shadow-card); }
.rezlive-room-info h4 {  font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.rezlive-room-info p  { font-size: 13px; color: var(--rl-ink-60); }

.rezlive-confirmation-success-title{
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--rl-ink);
    margin-bottom: 10px;
}
/* ─── BOOKING FORM ───────────────────────────────────────── */
#rezlive-booking-form-container {

}
#rezlive-booking-form-container .rezlive-form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
#rezlive-booking-form-container .rezlive-form-group {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#rezlive-booking-form-container .rezlive-form-group--wide {
  flex: 2 1 100%;
  min-width: 100%;
}
#rezlive-booking-form-container label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--rl-ink-60);
}
#rezlive-booking-form-container input,
#rezlive-booking-form-container select {
  padding: 10px 14px;
  border: 1.5px solid var(--rl-ink-20);
  
 
  font-size: 14px;
  color: var(--rl-ink);
  outline: none;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}
#rezlive-booking-form-container input:focus,
#rezlive-booking-form-container select:focus {
  border-color: var(--rl-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}

/* ─── GENERIC BUTTONS ────────────────────────────────────── */
.rezlive-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  background: var(--rl-ink);
  color: #fff;
  border: none;
  
 
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  letter-spacing: .02em;
}
.rezlive-btn:hover {
  background: #1e2c45;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13,17,23,.2);
}
.rezlive-btn:disabled { background: #999; cursor: not-allowed; transform: none; }
.rezlive-btn-primary { background: var(--rl-gold); color: var(--rl-cream); }
.rezlive-btn-primary:hover { background: #ff3700; }

/* ─── LOADING STATES ─────────────────────────────────────── */
.rezlive-loading-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 16px;
}
.rl-spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--rl-ink-20);
  border-top-color: var(--rl-gold);
  border-radius: 50%;
  animation: rl-spin .7s linear infinite;
}
.rl-loading-text { font-size: 14px; color: var(--rl-ink-60); font-weight: 500; }

/* Do not use bare .rezlive-loading on button rows — it would override display:none on .rezlive-loading--btn */
.rezlive-loading:not(.rezlive-loading--btn) {
  display: inline-block;
  animation: rl-pulse 1.5s ease-in-out infinite;
}
.rezlive-btn-search .rezlive-loading--btn,
.rezlive-btn-continue .rezlive-loading--btn {
  animation: none;
}
.rezlive-btn-search:disabled:not(.is-loading),
.rezlive-btn-continue:disabled:not(.is-loading) {
  opacity: 0.85;
}

/* ─── CONFIRMATION ───────────────────────────────────────── */
#rezlive-booking-confirmation {
  text-align: center;
}
.rl-confirm-icon {
  width: 56px; height: 56px;
  background: #d4edda;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.rl-confirm-icon svg { width: 28px; height: 28px; color: #28a745; }
#rezlive-booking-confirmation h3 {
  
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

/* ─── NOTICE / ERROR ─────────────────────────────────────── */
.rl-notice {
  padding: 14px 18px;
  
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}
.rl-notice-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.rl-notice-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }

/* ─── KEYFRAMES ──────────────────────────────────────────── */
@keyframes rl-fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rl-dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rl-spin {
  to { transform: rotate(360deg); }
}
@keyframes rl-pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .4; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1200px) {
  .rezlive-hotels-list:not(.rezlive-hotels-carousel) {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .rezlive-search-grid { grid-template-columns: 1fr 1fr 1fr; }
  .rezlive-search-grid--accommodation { grid-template-columns: 1fr 1fr; }
  .rezlive-search-grid .rezlive-btn-search { grid-column: 1 / -1; width: fit-content; }
  .rl-advanced-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .rezlive-hotels-list:not(.rezlive-hotels-carousel) {
    grid-template-columns: repeat(2, 1fr);
  }
  .rezlive-search-grid { grid-template-columns: 1fr 1fr; }
  /* Mobile: flush embed — padding removed (theme may add outer spacing) */
  .rezlive-search-card {
    padding: 0;
    border-radius: 12px;
  }
  .rezlive-hero {
    min-height: 0;
    padding: 0;
  }
  .rezlive-room-item {
    flex-direction: column;
    align-items: stretch;
  }
  .rezlive-room-actions {
    flex-direction: column;
    align-items: stretch;
  }

  /* Results: full-width track, cards sized to carousel container (not 100vw) */
  .rezlive-search-results-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
 
  }
  .rezlive-results-section--embedded {
    width: 100%;
    min-width: 0;
  }
  .rezlive-hotels-carousel-shell {
    width: 100%;
    min-width: 0;
    gap: 8px;
  }
  .rezlive-hotels-carousel-viewport {
    min-width: 0;
  }
  .rezlive-hotels-list.rezlive-hotels-carousel {
    --rl-carousel-pad-inline: 10px;
  }
  .rezlive-hotels-carousel .rezlive-hotel-item {
    flex: 0 0 min(320px, calc(100cqi - 24px));
    max-width: min(360px, calc(100cqi - 24px));
    scroll-snap-align: start;
  }
  .rezlive-carousel-meta {
    padding: 0 12px;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .rezlive-hotels-list:not(.rezlive-hotels-carousel) {
    grid-template-columns: 1fr;
  }
  /* Fallback when container queries unsupported */
  @supports not (width: 1cqi) {
    .rezlive-hotels-carousel .rezlive-hotel-item {
      flex: 0 0 min(300px, calc(100% - 16px));
      max-width: min(340px, calc(100% - 16px));
    }
  }
  .rezlive-hotels-carousel .rezlive-hotel-item {
    flex: 0 0 min(300px, calc(100cqi - 20px));
    max-width: min(340px, calc(100cqi - 20px));
  }
  .rezlive-carousel-btn {
    width: 38px;
    height: 38px;
  }
  .rezlive-carousel-meta {
    padding: 0 10px;
  }
  .rezlive-search-grid { grid-template-columns: 1fr; }
  .rl-advanced-row { grid-template-columns: 1fr; }
  .rezlive-results-header { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════
   JS MARKUP COMPATIBILITY (dynamic hotel cards, rooms, errors)
   ═══════════════════════════════════════════════════════════ */

article.rezlive-hotel-item.rezlive-hotel-card {
  cursor: default;
  height: 100%;
}

.rezlive-hotel-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e8e4dc;
}
.rezlive-hotel-card-image img.rezlive-hotel-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--rl-ease);
}
.rezlive-hotel-card:hover .rezlive-hotel-card-image img.rezlive-hotel-thumb {
  transform: scale(1.06);
}
.rezlive-hotel-card-image--placeholder {
  min-height: 160px;
  background: linear-gradient(135deg, #edf2f7 0%, #cbd5e0 100%);
}

.rezlive-hotel-card-body {
  padding: 16px 18px 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.rezlive-hotel-card-title {
  text-transform: uppercase;
  font-size: 1.2rem;
  color: var(--rl-ink);
  line-height: 1;
  font-weight: bolder;
  margin: 0;
}
.rezlive-hotel-card .rezlive-hotel-meta {
  margin: 0;
  font-size: 13px;
  color: var(--rl-ink-60);
  line-height: 1.4;
  display: block;
  justify-content: flex-start;
}
.rezlive-hotel-card-id {
  margin: 0;
  font-size: 12px;
  color: var(--rl-ink-60);
}

.rezlive-hotel-card-footer {
  margin-top: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px 18px;
  border-top: 1px solid var(--rl-ink-20);
}
.rezlive-hotel-card-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rezlive-hotel-price-label {
  font-size: 10.5px;
  color: var(--rl-ink-60);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.rezlive-hotel-card-footer .rezlive-current-price {
  margin: 0;
  display: block;
}
.rezlive-hotel-card-footer .total-rate {
  
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--rl-ink);
  line-height: 1;
}

.rezlive-hotel-card .rezlive-btn-primary.rezlive-select-hotel {
  padding: 9px 16px;
  background: var(--rl-gold);
  color: var(--rl-cream);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .03em;
  white-space: nowrap;
}
.rezlive-hotel-card .rezlive-btn-primary.rezlive-select-hotel:hover {
  background: #ff3700;
  box-shadow: 0 4px 12px rgba(201, 76, 76, 0.35);
}
.rezlive-hotel-card .rezlive-btn-primary.rezlive-select-hotel:disabled {
  background: #b0b8c2;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.85;
}

/* Hotel + best room on one card */
.rezlive-hotel-card--combined .rezlive-hotel-card-body {

}
.rezlive-combined-room {
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px solid var(--rl-ink-20);
}
.rezlive-combined-room--empty {

}
.rezlive-combined-room-empty {
  margin: 0;
  font-size: 13px;
  color: var(--rl-ink-60);
}
.rezlive-combined-room-kicker {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rl-ink-60);
  margin-bottom: 4px;
}
.rezlive-combined-room-title {
  margin: 0 0 0px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--rl-ink);
  line-height: 1.3;
}
.rezlive-hotel-card-price .rezlive-price-breakdown {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--rl-ink-60);
  line-height: 1.35;
  margin-top: 4px;
  max-width: 220px;
}
.rezlive-hotel-card-price .rezlive-price-breakdown--children {
  font-size: 11px;
  margin-top: 2px;
}

.rezlive-hotel-pagination {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  padding: 24px 8px 8px;
  margin-top: 12px;
  border-top: 1px solid var(--rl-ink-20);
}
.rezlive-pagination-info {
  font-size: 14px;
  color: var(--rl-ink-60);
  font-weight: 500;
}

/* Room list (JS uses .rezlive-room-item) */
.rezlive-room-item {
  background: #fff;
  border: 1.5px solid var(--rl-ink-20);
  
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: border-color .2s, box-shadow .2s;
}
.rezlive-room-item:hover {
  border-color: var(--rl-gold);
  box-shadow: var(--rl-shadow-card);
}
.rezlive-room-info h4 {
  
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 4px;
}
.rezlive-room-board,
.rezlive-room-desc,
.rezlive-cancellation {
  font-size: 13px;
  color: var(--rl-ink-60);
  margin: 0.1rem 0;
}
.rezlive-room-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.rezlive-room-price {
  
  font-size: 1.2rem;
  font-weight: 700;
  text-align: right;
  color: var(--rl-ink);
}
.rezlive-room-price small {
  font-size: 11px;
  font-weight: 500;
  color: var(--rl-ink-60);
}

/* Guest form + summary (step 4) */
.rezlive-booking-summary-card {
  margin-bottom: 16px;
  padding: 0;
  border: 1px solid var(--rl-ink-20);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
}
.rezlive-summary-card-head {
  padding: 8px 10px 6px;
  border-bottom: 1px solid var(--rl-ink-20);
  background: #fafafa;
}
.rezlive-booking-summary-card h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--rl-ink);
}
/* 4-column table: two label/value pairs per row */
.rezlive-summary-table-wrap {
  padding: 6px 10px 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.rezlive-summary-table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  table-layout: fixed;
  margin: 0;
}
.rezlive-summary-table th,
.rezlive-summary-table td {
  padding: 6px 4px;
  vertical-align: top;
  border-bottom: 1px solid rgba(13, 17, 23, 0.06);
}
.rezlive-summary-table th:nth-child(1),
.rezlive-summary-table th:nth-child(3) {
  width: 20%;
}
.rezlive-summary-table th:nth-child(3),
.rezlive-summary-table td:nth-child(4) {
  border-left: 1px solid rgba(13, 17, 23, 0.08);
  padding-left: 10px;
}
.rezlive-summary-table th.rezlive-summary-k {
  color: var(--rl-ink-60);
  font-weight: 500;
  font-size: 11px;
  line-height: 1.3;
  text-align: left;
}
.rezlive-summary-table td.rezlive-summary-v {
  color: var(--rl-ink);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.35;
  text-align: right;
  word-break: break-word;
}
.rezlive-summary-table tr:last-child th,
.rezlive-summary-table tr:last-child td {
  border-bottom: none;
}
.rezlive-summary-table__pad {
  border-bottom: 1px solid rgba(13, 17, 23, 0.06);
}
.rezlive-summary-table tr:last-child .rezlive-summary-table__pad {
  border-bottom: none;
}
.rezlive-summary-k {
  color: var(--rl-ink-60);
  font-weight: 500;
}
.rezlive-summary-v {
  color: var(--rl-ink);
  font-weight: 600;
  text-align: right;
  word-break: break-word;
}
.rezlive-summary-total-block {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px 10px;
  margin-top: 0;
  border-top: 1px solid rgba(201, 168, 76, 0.45);
  background: rgba(201, 168, 76, 0.06);
}
.rezlive-summary-total-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--rl-ink-60);
}
.rezlive-summary-total-value {
  font-size: 1.2rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--rl-ink);
  letter-spacing: -0.02em;
}
.rezlive-guest-form-title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--rl-ink);
}
.rezlive-guest-form {
  padding-top: 4px;
}
.rl-guest-intro {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--rl-ink-60);
}
.rl-guest-slots-wrap {
  margin-top: 12px;
}
.rl-guest-slots-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rl-guest-slot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--rl-ink-20);
  border-radius: 8px;
  background: #fff;
}
.rl-guest-slot--ok {
  border-color: rgba(201, 168, 76, 0.45);
  background: rgba(201, 168, 76, 0.04);
}
.rl-guest-slot-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.rl-guest-slot-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--rl-ink-60);
}
.rl-guest-slot-summary {
  font-size: 14px;
  font-weight: 600;
  color: var(--rl-ink);
  word-break: break-word;
}
.rl-guest-slot-pending {
  color: var(--rl-ink-60);
  font-weight: 500;
}
.rl-guest-slot-actions {
  display: flex;
  flex-shrink: 0;
  gap: 6px;
  align-items: center;
}
.rl-btn-text {
  border: none;
  background: transparent;
  color: var(--rl-gold, #c9a84c);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 4px;
}
.rl-btn-text:hover {
  text-decoration: underline;
}
.rl-btn-text:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: none;
}
.rl-guest-inline-editor {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--rl-ink-20);
  border-radius: 8px;
  background: #fafafa;
}
.rl-guest-inline-editor-inner .rl-guest-editor-title {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 700;
}
.rl-guest-editor-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}
.rl-guest-cancel-btn {
  background: transparent !important;
  border: 1px solid var(--rl-ink-20) !important;
  color: var(--rl-ink) !important;
}
#rezlive-guest-continue:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.rezlive-form-actions {
  display: flex;
  justify-content: flex-end;
  text-align: right;
}
.rezlive-btn-large {
  padding: 14px 28px;
  font-size: 15px;
}
.rezlive-btn-continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 200px;
}

.rezlive-guest-saved-hint {
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid var(--rl-ink-20);
  background: rgba(201, 168, 76, 0.08);
}
.rezlive-guest-saved-text {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--rl-ink);
}
.rezlive-guest-saved-sub {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--rl-ink-60);
}

.rezlive-confirmation-success--continue {
  text-align: left;
  max-width: 520px;
  margin: 0 auto;
  padding: 8px 4px 24px;
}
.rezlive-confirmation-success--continue h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  color: var(--rl-ink);
}
.rezlive-confirmation-lead {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--rl-ink-60);
}
.rezlive-confirmation-lead strong {
  color: var(--rl-ink);
}
.rezlive-confirmation-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid var(--rl-ink-20);
  border-radius: 10px;
  background: #fff;
}
.rezlive-confirmation-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(13, 17, 23, 0.06);
}
.rezlive-confirmation-list li:last-child {
  border-bottom: none;
}
.rezlive-confirmation-list li span:first-child {
  color: var(--rl-ink-60);
  font-weight: 500;
}
.rezlive-confirmation-list li span:last-child {
  font-weight: 600;
  text-align: right;
  color: var(--rl-ink);
}
.rezlive-confirmation-hint {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--rl-ink-60);
}

.rezlive-error {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
.rezlive-error-close {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: inherit;
  opacity: .7;
  line-height: 1;
}
.rezlive-error-close:hover { opacity: 1; }

.rezlive-confirmation-success {
  text-align: center;
}
.rezlive-confirmation-success p {
  margin-top: 16px;
}
.rezlive-confirmation-success .rezlive-btn {
  margin: 4px;
}

.rezlive-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
  color: var(--rl-ink-60);
}

#rezlive-child-ages-wrap.rezlive-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 12px;
}
#rezlive-child-ages-wrap .rezlive-form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--rl-ink-60);
}
#rezlive-child-ages-wrap .rezlive-form-group input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--rl-ink-20);
  
 
  font-size: 14px;
  color: var(--rl-ink);
}

/* Dark theme */
.rezlive-booking-widget[data-theme="dark"] {
  background: #1a2235;
  color: #ecf0f1;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-results-section {
  background: transparent;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-hotel-card,
.rezlive-booking-widget[data-theme="dark"] .rezlive-room-item,
.rezlive-booking-widget[data-theme="dark"] #rezlive-booking-confirmation,
.rezlive-booking-widget[data-theme="dark"] #rezlive-booking-form-container {
  background: #252f42;
  border-color: #4a5f7a;
  color: #ecf0f1;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-hotel-card-title,
.rezlive-booking-widget[data-theme="dark"] .rezlive-hotel-card-footer .total-rate,
.rezlive-booking-widget[data-theme="dark"] .rezlive-step-header h3,
.rezlive-booking-widget[data-theme="dark"] .rezlive-booking-summary-card h4 {
  color: #ecf0f1;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-booking-summary-card {
  background: #252f42;
  border-color: #4a5f7a;
  box-shadow: none;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-summary-card-head {
  border-color: #4a5f7a;
  background: rgba(0, 0, 0, 0.2);
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-summary-table th,
.rezlive-booking-widget[data-theme="dark"] .rezlive-summary-table td {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-summary-table th:nth-child(3),
.rezlive-booking-widget[data-theme="dark"] .rezlive-summary-table td:nth-child(4) {
  border-left-color: rgba(255, 255, 255, 0.1);
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-summary-table__pad {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-summary-k {
  color: #95a5a6;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-summary-v {
  color: #ecf0f1;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-summary-total-block {
  border-color: rgba(201, 168, 76, 0.45);
  background: rgba(201, 168, 76, 0.12);
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-summary-total-value {
  color: #ecf0f1;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-guest-form-title {
  color: #ecf0f1;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-confirmation-success--continue h3 {
  color: #ecf0f1;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-confirmation-lead {
  color: #bdc3c7;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-confirmation-list {
  background: #252f42;
  border-color: #4a5f7a;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-confirmation-hint {
  color: #95a5a6;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-summary-item,
.rezlive-booking-widget[data-theme="dark"] #rezlive-booking-form-container label {
  color: #bdc3c7;
}
.rezlive-booking-widget[data-theme="dark"] #rezlive-booking-form-container input,
.rezlive-booking-widget[data-theme="dark"] #rezlive-booking-form-container select {
  background: #34495e;
  border-color: #4a5f7a;
  color: #ecf0f1;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-hotel-pagination {
  border-top-color: #4a5f7a;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-pagination-info {
  color: #bdc3c7;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-search-destination {
  background: rgba(255,255,255,.06);
  border-color: #4a5f7a;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-search-destination-value,
.rezlive-booking-widget[data-theme="dark"] .rezlive-accommodation-title {
  color: #ecf0f1;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-accommodation-hint {
  color: #bdc3c7;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-carousel-btn {
  background: #252f42;
  border-color: #4a5f7a;
  color: #ecf0f1;
  box-shadow: none;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-carousel-btn:hover:not(:disabled) {
  border-color: var(--rl-gold);
  background: #2d3a52;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-carousel-meta {
  color: #95a5a6;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-hotels-list.rezlive-hotels-carousel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-hotels-list.rezlive-hotels-carousel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-combined-room {
  border-top-color: #4a5f7a;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-combined-room-title {
  color: #ecf0f1;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-price-breakdown,
.rezlive-booking-widget[data-theme="dark"] .rezlive-combined-room-kicker {
  color: #bdc3c7;
}

/* ─── Package layout (F1 / combined offer) ───────────────── */
.rezlive-package-banner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto 24px;
  padding: 16px 20px;
  text-align: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--rl-radius-md);
}
.rezlive-package-banner-kicker {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rl-gold);
}
.rezlive-package-banner-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.85);
}

.rezlive-package-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(201,168,76,.2);
  color: var(--rl-ink);
  border: 1px solid rgba(201,168,76,.45);
  margin-bottom: 8px;
}

.rezlive-detail-list {
  margin: 12px 0 0;
  padding: 0;
}
.rezlive-detail-row {
  display: grid;
  grid-template-columns: minmax(100px, 38%) 1fr;
  gap: 1px 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--rl-ink-20);
  font-size: 13px;
}
.rezlive-detail-row:last-child {
  border-bottom: none;
}
.rezlive-detail-row dt {
  margin: 0;
  font-weight: 600;
  color: var(--rl-ink-60);
}
.rezlive-detail-row dd {
  margin: 0;
  color: var(--rl-ink);
}

.rezlive-hotel-card--package .rezlive-hotel-card-body {
  padding-top: 14px;
}
.rezlive-hotel-card--package .rezlive-hotel-card-title {
  margin-top: 2px;
}

.rezlive-room-item--package {
  flex-wrap: wrap;
  align-items: flex-start;
}
.rezlive-room-item--package .rezlive-room-title {
  font-family: var(--rl-font-display, Georgia, serif);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 8px 0 0;
}
.rezlive-detail-list--room {
  margin-top: 12px;
}

.rezlive-booking-summary--package {
  border: 1.5px solid var(--rl-ink-20);
  padding: 20px;
  border-radius: var(--rl-radius-md);
  background: #fff;
}
.rezlive-booking-summary-dl .rezlive-detail-row dt {
  min-width: 120px;
}
.rezlive-booking-summary--package h4 {
  margin-top: 0;
}

.rezlive-results-section .rezlive-hotel-card--package,
.rezlive-results-section .rezlive-room-item--package {
  background: #fff;
}

.rezlive-booking-widget--package .rezlive-results-section {
  padding-top: 28px;
}

.rezlive-booking-widget[data-theme="dark"] .rezlive-package-banner {
  background: rgba(255,255,255,.06);
  border-color: #4a5f7a;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-package-banner-text {
  color: #bdc3c7;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-detail-row {
  border-color: #4a5f7a;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-detail-row dt {
  color: #95a5a6;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-detail-row dd {
  color: #ecf0f1;
}
.rezlive-booking-widget[data-theme="dark"] .rezlive-booking-summary--package {
  background: #252f42;
  border-color: #4a5f7a;
}
