/*
 Theme Name:   GeneratePress Child — LetsGo.bg
 Theme URI:    https://letsgo.bg
 Description:  Child theme for LetsGo.bg — curated Bulgarian hotel bookings
 Author:       LetsGo.bg
 Template:     generatepress
 Version:      1.0.0
 Text Domain:  generatepress-child
*/

/* ─────────────────────────────────────────────────────────────────────────────
   All custom CSS goes here.
   Do NOT edit the parent GeneratePress theme directly — changes go here only.
   ───────────────────────────────────────────────────────────────────────────── */

/* ── Design System Variables ─────────────────────────────────────────────── */

:root {
  /* Brand colours */
  --color-navy:           #191E3B;
  --color-pink:           #e8217b;
  --color-cyan:           #0cc0df;
  --color-white:          #ffffff;
  --color-off-white:      #F9F8F6;
  --color-navy-light:     #0a4a8a;
  --color-navy-deep:      #001f3f;

  /* Text */
  --color-text-primary:   #191E3B;
  --color-text-secondary: #4a5568;
  --color-text-muted:     #8896a5;

  /* Surfaces & borders */
  --color-border:         #e2e8f0;
  --color-surface:        #f4f6f9;

  /* Semantic */
  --color-success:        #0d9488;
  --color-warning:        #d97706;
  --color-error:          #dc2626;

  /* Typography */
  --font-display: 'Nunito', sans-serif;
  --font-body:    'Nunito', sans-serif;
  --font-ui:      'Ubuntu', sans-serif;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
}

/* ── Layout ──────────────────────────────────────────────────────────────── */

/* Sticky footer: page always fills viewport height, footer pushed to bottom */
#page.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.letsgo-footer {
  margin-top: auto;
}

.letsgo-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Destination autocomplete dropdown ───────────────────────────────────── */

/* The destination .letsgo-field needs position:relative for the dropdown */
.letsgo-field {
  position: relative;
}

.letsgo-suggest-drop {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  min-width: 280px;
  background: var(--color-white);
  border: 1.5px solid var(--color-navy);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(25, 30, 59, 0.12);
  z-index: 200;
  overflow: hidden;
}

.letsgo-suggest-group {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-navy);
  padding: 0.6rem 0.85rem 0.3rem;
  border-top: 1px solid var(--color-border);
}

.letsgo-suggest-group:first-child {
  border-top: none;
}

.letsgo-suggest-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.letsgo-suggest-item:hover,
.letsgo-suggest-item--active {
  background: var(--color-surface);
}

.letsgo-suggest-icon {
  font-size: 0.95rem;
  flex-shrink: 0;
  line-height: 1;
}

.letsgo-suggest-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.letsgo-suggest-label {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.letsgo-suggest-sub {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.letsgo-suggest-count {
  margin-left: auto;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

/* ── Search form ─────────────────────────────────────────────────────────── */

.letsgo-search-form-section {
  background: var(--color-white);
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 12px rgba(25, 30, 59, 0.06);
}

.letsgo-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
}

.letsgo-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1 1 160px;
}

.letsgo-field--date   { flex: 0 1 155px; }
.letsgo-field--narrow { flex: 0 1 95px; }
.letsgo-field--submit { flex: 0 0 auto; }

/* Clear saved search — a quiet text link, not a CTA. Muted by default,
   pink on hover per the design system's accent rules. */
.letsgo-clear-row {
  margin-top: 0.85rem;
}
.letsgo-clear-search {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color 0.15s ease;
}
.letsgo-clear-search:hover,
.letsgo-clear-search:focus,
.letsgo-clear-search:focus-visible {
  background: none;
  box-shadow: none;
  color: var(--color-pink);
}

.letsgo-field label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-navy);
}

.letsgo-field input,
.letsgo-field select {
  padding: 0.65rem 0.875rem;
  border: 1.5px solid var(--color-border);
  border-radius: 6px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-primary);
  background: var(--color-white);
  width: 100%;
  box-sizing: border-box;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.letsgo-field input:focus,
.letsgo-field select:focus {
  outline: none;
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 3px rgba(12, 192, 223, 0.15);
}

#letsgo-search-btn {
  padding: 0.7rem 2rem;
  background: var(--color-pink);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition-fast), transform var(--transition-fast);
  letter-spacing: 0.01em;
}

#letsgo-search-btn:hover {
  background: #c41868;
  transform: translateY(-1px);
}

/* ── Children age inputs ─────────────────────────────────────────────────── */

.letsgo-children-ages {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

.letsgo-ages-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #555;
  margin: 0 0 0.6rem;
}

.letsgo-ages-inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.letsgo-age-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.letsgo-age-label {
  font-size: 0.75rem;
  color: #666;
}

.letsgo-age-select {
  padding: 0.45rem 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.9rem;
  width: 90px;
}

/* ── Status messages ─────────────────────────────────────────────────────── */

.letsgo-results-section {
  background: var(--color-off-white);
  padding: 2rem 0 4rem;
}

.letsgo-status {
  font-family: var(--font-ui);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border-radius: 6px;
  font-size: 0.9rem;
}

.letsgo-status--loading { background: rgba(12, 192, 223, 0.08); color: var(--color-navy); }
.letsgo-status--error   { background: #fde8e8; color: var(--color-error); }
.letsgo-status--empty   { background: var(--color-surface); color: var(--color-text-secondary); }

/* ── Results two-column layout ───────────────────────────────────────────── */

#letsgo-results-layout {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

#letsgo-search-filters {
  flex: 0 0 240px;
  position: sticky;
  top: 2rem;
}

#letsgo-results-main {
  flex: 1;
  min-width: 0;
}

/* Results header: count text + sort select on the same row */
.letsgo-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

/* Result count summary line */
.letsgo-result-count {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--color-navy);
  margin: 0;
}

/* Sort select — desktop only */
.letsgo-sort-select {
  flex-shrink: 0;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--color-navy);
  border: 1.5px solid var(--color-navy);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  background: var(--color-white);
  cursor: pointer;
}

@media (max-width: 900px) {
  .letsgo-sort-select { display: none; }
}

/* ── Price range filter ───────────────────────────────────────────────────── */

.letsgo-filter-group--last {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.letsgo-price-range {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.letsgo-price-range-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.letsgo-price-range-field label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.letsgo-price-range-field input[type="number"] {
  width: 100%;
  padding: 0.45rem 0.6rem;
  border: 1.5px solid var(--color-border);
  border-radius: 6px;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: var(--color-text-primary);
  background: var(--color-white);
  box-sizing: border-box;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.letsgo-price-range-field input[type="number"]:focus {
  outline: none;
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 3px rgba(12, 192, 223, 0.15);
}

.letsgo-price-sep {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  flex-shrink: 0;
  margin-top: 1.4rem;
}

/* ── Hotel cards ─────────────────────────────────────────────────────────── */

.letsgo-hotel-card {
  display: flex;
  gap: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.letsgo-hotel-card:hover {
  box-shadow: 0 8px 32px rgba(25, 30, 59, 0.1);
  transform: translateY(-2px);
}

.letsgo-hotel-image {
  flex: 0 0 240px;
  overflow: hidden;
  position: relative;
}

/* Featured ("Препоръчан от нас") — an editorial trust signal, so navy/authority
   rather than the pink CTA accent. Badge sits over the top-left of the photo. */
.letsgo-featured-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: var(--color-pink);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(232, 33, 123, 0.3);
}

.letsgo-hotel-card--featured {
  border-color: var(--color-pink);
}

.letsgo-hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.letsgo-hotel-card:hover .letsgo-hotel-image img {
  transform: scale(1.04);
}

.letsgo-no-image {
  width: 240px;
  height: 180px;
  background: var(--color-surface);
}

.letsgo-hotel-info {
  flex: 1;
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.letsgo-hotel-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.3rem;
}

.letsgo-hotel-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: var(--leading-snug);
  margin: 0;
}

.letsgo-hotel-name a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.letsgo-hotel-name a:hover { color: var(--color-pink); }

.letsgo-hotel-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.letsgo-hotel-location,
.letsgo-hotel-source {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin: 0 0 0.15rem;
}

/* ── Room rows ───────────────────────────────────────────────────────────── */

.letsgo-hotel-rooms {
  margin-top: 0.85rem;
  border-top: 1px solid var(--color-border);
  padding-top: 0.75rem;
  flex: 1;
}

.letsgo-room-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--color-surface);
}

.letsgo-room-name  { flex: 1; font-family: var(--font-body); font-size: 0.875rem; color: var(--color-navy); }
.letsgo-room-meal  { flex: 0 0 130px; font-family: var(--font-ui); font-size: 0.8rem; color: var(--color-navy); }
.letsgo-room-price { flex: 0 0 90px; font-family: var(--font-ui); font-size: 0.9rem; font-weight: 700; text-align: right; color: var(--color-navy); }

.letsgo-more-rooms {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--color-navy);
  margin: 0.4rem 0 0;
}

.letsgo-view-hotel-btn {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-pink);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.letsgo-view-hotel-btn:hover { color: #c41868; }

.letsgo-hotel-image a { display: block; height: 100%; }

/* ── Skeleton loading ──────────────────────────────────────────────────────── */

@keyframes letsgo-shimmer {
  0%   { background-position: -800px 0; }
  100% { background-position:  800px 0; }
}

/* Base shimmer block — applied to every placeholder span */
.letsgo-skel {
  display: block;
  background: linear-gradient(90deg, #f0f0f0 25%, #e6e6e6 50%, #f0f0f0 75%);
  background-size: 1600px 100%;
  animation: letsgo-shimmer 1.5s ease-in-out infinite;
  border-radius: 4px;
}

/* Hotel card skeleton — outer shell reuses .letsgo-hotel-card */
.letsgo-hotel-card--skel { pointer-events: none; }

.letsgo-hotel-card--skel .letsgo-hotel-image {
  min-height: 180px;
  background: #ebebeb;
}

.letsgo-hotel-card--skel .letsgo-hotel-info {
  gap: 0.55rem;
  justify-content: center;
}

.letsgo-skel--name  { height: 20px; width: 55%; }
.letsgo-skel--stars { height: 13px; width: 72px; }
.letsgo-skel--loc   { height: 12px; width: 38%; }
.letsgo-skel--row   { height: 12px; width: 100%; }
.letsgo-skel--row-s { height: 12px; width: 76%; }
.letsgo-skel--btn   { height: 16px; width: 88px; border-radius: 6px; margin-top: 8px; }

/* Room card skeleton — outer shell reuses .letsgo-room-card */
.letsgo-room-card--skel { pointer-events: none; }

.letsgo-room-card--skel .letsgo-room-card-price-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.letsgo-skel--rname  { height: 16px; width: 48%; }
.letsgo-skel--rmeal  { height: 12px; width: 28%; margin-top: 6px; }
.letsgo-skel--rbadge { height: 22px; width: 165px; border-radius: 4px; margin-top: 8px; }
.letsgo-skel--price  { height: 26px; width: 85px; }
.letsgo-skel--nights { height: 11px; width: 65px; }
.letsgo-skel--book   { height: 38px; width: 95px; border-radius: 20px; }

/* ── Hotel detail page ───────────────────────────────────────────────────── */

#letsgo-hotel-page {
  padding: 2rem 0 4rem;
}

.letsgo-hotel-hero {
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.letsgo-hotel-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.letsgo-hotel-detail-header {
  margin-bottom: 2rem;
}

.letsgo-hotel-detail-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.letsgo-hotel-detail-title h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
}

.letsgo-hotel-detail-location {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0.25rem 0 0;
}

.letsgo-hotel-detail-dates {
  font-size: 0.9rem;
  color: #374151;
  margin: 0.35rem 0 0;
}

/* ── Rooms list ──────────────────────────────────────────────────────────── */

.letsgo-rooms-heading {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f0f0f0;
}

.letsgo-room-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}

.letsgo-room-card-info { flex: 1; }

.letsgo-room-card-name {
  font-size: 1rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.2rem;
}

.letsgo-room-card-meal {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.letsgo-room-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.letsgo-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.letsgo-badge--deposit { background: #ecfdf5; color: #065f46; }
.letsgo-badge--full    { background: #fff7ed; color: #92400e; }
.letsgo-badge--request { background: #eff6ff; color: #1e40af; }
.letsgo-badge--promo   { background: rgba(232,33,123,0.1); color: #e8217b; }

/* Available rooms count — shown on hotel detail room cards */
.letsgo-avail-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  background: #f0fdf4;
  color: #166534;
}
.letsgo-avail-badge.letsgo-avail--low {
  background: #fff7ed;
  color: #9a3412;
}

.letsgo-room-card-price-col {
  text-align: right;
  flex: 0 0 auto;
  min-width: 140px;
}

.letsgo-room-card-price-was {
  font-size: 0.85rem;
  color: #9ca3af;
  text-decoration: line-through;
  margin-bottom: 0.1rem;
}

.letsgo-room-card-cancel {
  font-size: 0.8rem;
  color: #16a34a;
  margin-top: 0.35rem;
}

.letsgo-room-card-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111;
}

.letsgo-room-card-nights {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

.letsgo-book-btn {
  display: block;
  width: 100%;
  padding: 0.6rem 1rem;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

.letsgo-book-btn:hover:not(:disabled) { background: #333; }
.letsgo-book-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.letsgo-book-error {
  font-size: 0.8rem;
  color: #c81e1e;
  margin-top: 0.4rem;
  min-height: 1rem;
}

/* ── Hotel photo gallery strip ─────────────────────────────────────────────── */

.letsgo-hotel-gallery {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
  border-radius: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #d1d5db transparent;
}
.letsgo-hotel-gallery img {
  height: 100px;
  width: auto;
  min-width: 130px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* ── Room name info button ─────────────────────────────────────────────────── */

.letsgo-room-name-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-size: inherit;
  font-weight: 600;
  color: #191E3B;
  cursor: pointer;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(25,30,59,0.35);
}
.letsgo-room-name-btn:hover {
  text-decoration-color: #191E3B;
}
.letsgo-room-info-icon {
  display: inline-block;
  font-style: normal;
  font-size: 0.75rem;
  color: #4a5568;
  margin-left: 0.3rem;
  vertical-align: middle;
}

/* ── Room info modal ───────────────────────────────────────────────────────── */

.letsgo-room-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.letsgo-room-modal--open {
  display: flex;
}
.letsgo-room-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.letsgo-room-modal-box {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  width: min(680px, 94vw);
  max-height: 88vh;
  overflow-y: auto;
  z-index: 1;
}
.letsgo-room-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: #666;
  cursor: pointer;
  padding: 0;
}
.letsgo-room-modal-close:hover {
  color: #191E3B;
}
.letsgo-room-modal-title {
  margin: 0 2rem 1rem 0;
  font-size: 1.15rem;
  color: #191E3B;
}
.letsgo-room-modal-loading,
.letsgo-room-modal-empty {
  color: #666;
  font-size: 0.9rem;
}
.letsgo-room-modal-photos {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  margin-bottom: 1rem;
  border-radius: 4px;
}
.letsgo-room-modal-photos img {
  height: 160px;
  width: auto;
  flex-shrink: 0;
  border-radius: 4px;
  object-fit: cover;
  display: block;
}
.letsgo-room-modal-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #333;
  white-space: pre-line;
  margin: 0 0 1rem;
}
.letsgo-room-modal-amenities {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  font-size: 0.85rem;
  color: #444;
  columns: 2;
  gap: 1rem;
}
.letsgo-room-modal-amenities li {
  margin-bottom: 0.25rem;
}
@media (max-width: 500px) {
  .letsgo-room-modal-amenities { columns: 1; }
  .letsgo-room-modal-photos img { height: 120px; }
}

/* ── Booking page ────────────────────────────────────────────────────────── */

#letsgo-booking-page {
  padding: 2rem 0 4rem;
}

.letsgo-booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
}

/* Summary panel */
.letsgo-booking-summary {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  position: sticky;
  top: 2rem;
}

.letsgo-summary-hotel {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.letsgo-summary-img {
  width: 72px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.letsgo-summary-hotel-name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.letsgo-summary-hotel-stars { color: #f59e0b; font-size: 0.8rem; }

.letsgo-summary-hotel-loc {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.15rem;
}

.letsgo-summary-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 1rem 0;
}

.letsgo-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
  color: #374151;
}

.letsgo-summary-row span { color: #6b7280; }

.letsgo-summary-room-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
}

.letsgo-summary-meal {
  font-size: 0.82rem;
  color: #6b7280;
  margin-top: 0.15rem;
}

/* Per-night breakdown table (meal plan / price overrides from SPOs) */
.letsgo-night-breakdown {
  margin-top: 0.75rem;
  padding: 0.6rem 0.7rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
}
.letsgo-night-breakdown-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.4rem;
}
.letsgo-night-breakdown-table {
  width: 100%;
  font-size: 0.78rem;
  border-collapse: collapse;
}
.letsgo-night-breakdown-table th,
.letsgo-night-breakdown-table td {
  text-align: left;
  padding: 4px 6px;
  border-bottom: 1px solid #eef0f3;
}
.letsgo-night-breakdown-table th {
  color: #6b7280;
  font-weight: 500;
}
.letsgo-night-breakdown-table tr:last-child td {
  border-bottom: none;
}
.letsgo-meal-upgrade-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  font-size: 0.68rem;
  background: #fef3c7;
  color: #92400e;
  border-radius: 10px;
  font-weight: 500;
}

/* On-request notice */
.letsgo-on-request-notice {
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 4px;
  font-size: 0.82rem;
  color: #1e40af;
  line-height: 1.5;
}

/* Payment schedule */
.letsgo-payment-schedule {
  margin-top: 0;
}

.letsgo-payment-title,
.letsgo-conf-payment-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-bottom: 0.6rem;
}

.letsgo-conf-payment-title { margin-top: 1.5rem; }

.letsgo-payment-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #374151;
}

.letsgo-payment-row--full strong { color: #92400e; }

.letsgo-payment-deadline {
  font-size: 0.78rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.letsgo-payment-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
  border-top: 1px solid #e5e7eb;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
}

/* Rate notes */
.letsgo-rate-notes {
  margin-top: 0.75rem;
  padding: 0.65rem 0.75rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 4px;
}

.letsgo-rate-notes-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #92400e;
  margin-bottom: 0.3rem;
}

.letsgo-rate-note {
  font-size: 0.78rem;
  color: #78350f;
  margin: 0;
  line-height: 1.5;
}

/* Cancellation policy — shown on booking page for all suppliers */
.letsgo-cancel-policy {
  margin-top: 0.75rem;
  padding: 0.65rem 0.75rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 4px;
}

.letsgo-cancel-policy-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1e40af;
  margin-bottom: 0.3rem;
}

.letsgo-cancel-policy-line {
  font-size: 0.78rem;
  color: #1e3a8a;
  margin: 0 0 0.2rem;
  line-height: 1.5;
}

.letsgo-cancel-policy-line:last-child { margin-bottom: 0; }

/* Admin-only rate notes (OT critical comments) */
.letsgo-admin-notes {
  margin-top: 0.75rem;
  padding: 0.65rem 0.75rem;
  background: #faf5ff;
  border: 1px dashed #a855f7;
  border-radius: 4px;
}

.letsgo-admin-notes-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #7e22ce;
  margin-bottom: 0.3rem;
}

.letsgo-admin-note {
  font-size: 0.78rem;
  color: #581c87;
  margin: 0 0 0.2rem;
  line-height: 1.5;
}

.letsgo-admin-note:last-child { margin-bottom: 0; }

/* Booking form */
.letsgo-booking-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
}

.letsgo-form-group {
  margin-bottom: 1.1rem;
}

.letsgo-form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #555;
  margin-bottom: 0.3rem;
}

.letsgo-form-group .req { color: #c81e1e; }

.letsgo-form-group input,
.letsgo-form-group textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 0.95rem;
  box-sizing: border-box;
  font-family: inherit;
}

.letsgo-form-group textarea { resize: vertical; }

.letsgo-form-group input:focus,
.letsgo-form-group textarea:focus {
  outline: none;
  border-color: #1a1a1a;
  box-shadow: 0 0 0 2px rgba(26,26,26,0.08);
}

.letsgo-booking-error {
  background: #fde8e8;
  color: #c81e1e;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.letsgo-btn-primary {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.letsgo-btn-primary:hover:not(:disabled) { background: #333; color: #fff; }
.letsgo-btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }
.letsgo-btn-full { width: 100%; box-sizing: border-box; }

.letsgo-btn-secondary {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1.5rem;
}

.letsgo-btn-secondary:hover { background: #f3f4f6; }

.letsgo-booking-disclaimer {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* Confirmation screen */
.letsgo-confirmation {
  max-width: 600px;
  margin: 3rem auto;
  text-align: center;
  padding: 0 1rem;
}

.letsgo-confirmation-icon {
  width: 64px;
  height: 64px;
  background: #ecfdf5;
  color: #065f46;
  font-size: 2rem;
  line-height: 64px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.letsgo-confirmation-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.letsgo-confirmation-message {
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.letsgo-confirmation-ref {
  display: inline-block;
  background: #f3f4f6;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 2rem;
}

.letsgo-confirmation-details {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  text-align: left;
  margin-bottom: 0.5rem;
}

.letsgo-conf-section { margin-bottom: 0.75rem; }
.letsgo-conf-section:last-child { margin-bottom: 0; }

.letsgo-conf-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
  margin-bottom: 0.15rem;
}

.letsgo-conf-value {
  font-size: 0.95rem;
  color: #111;
}

.letsgo-confirmation-email-note {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 1.5rem;
}

.letsgo-booking-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: #6b7280;
}

/* ── Hotel CPT page ──────────────────────────────────────────────────────── */

body.single-letsgo_hotel {
  background: var(--color-off-white);
}

#letsgo-cpt-hotel-page {
  padding: 0 0 5rem;
}

/* ── Breadcrumbs ─────────────────────────────────────────────────────────── */

.letsgo-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 16px 0 20px;
  font-family: var(--font-ui);
  font-size: 13px;
  flex-wrap: wrap;
}

.letsgo-breadcrumb__link {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.letsgo-breadcrumb__link:hover {
  color: var(--color-pink);
}

.letsgo-breadcrumb__sep {
  color: var(--color-text-muted);
  font-size: 12px;
}

.letsgo-breadcrumb__current {
  color: var(--color-text-primary);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}

/* ── Hotel badge — free-text label set per hotel in WP admin ────────────── */

.letsgo-hotel-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--color-pink);
  color: var(--color-white);
  border-radius: 20px;
  padding: 3px 10px;
}

/* When inside a card image: overlay absolutely in top-left corner */
.letsgo-featured-card__img .letsgo-hotel-badge,
.letsgo-htarch-card__img    .letsgo-hotel-badge,
.letsgo-col-hotel-card__img .letsgo-hotel-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  margin-bottom: 0;
  z-index: 2;
}

/* ── Gallery mosaic: hero (left 2/3) + 2×2 thumb grid (right 1/3) ───────── */

.letsgo-cpt-gallery-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4px;
  height: 440px;
  overflow: hidden;
  border-radius: 0 0 12px 12px;
  margin-bottom: 2rem;
}

.letsgo-gallery-main {
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}

.letsgo-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

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

.letsgo-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 100%;
}

.letsgo-gallery-thumb {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.letsgo-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.letsgo-gallery-thumb:hover img {
  transform: scale(1.06);
}

.letsgo-gallery-more {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* ── Hotel header ────────────────────────────────────────────────────────── */

.letsgo-cpt-hotel-header {
  padding: 0.5rem 0 1.5rem;
}

.letsgo-cpt-hotel-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.letsgo-cpt-hotel-name {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.15;
  margin: 0 0 0.85rem;
}

.letsgo-cpt-hotel-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.letsgo-cpt-hotel-location {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.letsgo-cpt-hotel-location::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-cyan);
  border-radius: 50%;
  flex-shrink: 0;
}

.letsgo-cpt-hotel-badge {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(12, 192, 223, 0.12);
  color: #0891b2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Tripadvisor compliant badge ─────────────────────────────────────────── */
/*
 * Requirements met:
 *  - Ollie owl logo present, ≥20px high, with clearspace (padding handles this)
 *  - Bubble image ≥55px wide (min-width enforced below)
 *  - #00AA6C Tripadvisor Moss used for bubbles (comes from TA's own image URL)
 *  - White background — bubbles never show through page background
 */

.letsgo-ta-rating {
  margin-top: 0.65rem;
}

.letsgo-ta-badge-link {
  display: inline-flex;
  text-decoration: none;
}

.letsgo-ta-badge-link:hover .letsgo-ta-meta {
  text-decoration: underline;
}

.letsgo-ta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  /* Clearspace: padding acts as the required clearspace around Ollie */
  padding: 5px 10px 5px 8px;
}

/* Bubble rating image from TA CDN — must be ≥55px wide per TA brand guidelines */
.letsgo-ta-bubbles {
  display: block;
  min-width: 55px;
  height: 22px;
  width: auto;
  flex-shrink: 0;
}

.letsgo-ta-meta {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

/* Shown when TA hasn't returned rating_image_url yet (e.g. before first refresh) */
.letsgo-ta-score-fallback {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  color: #00aa6c;
}

/* ── Tab bar ─────────────────────────────────────────────────────────────── */

.letsgo-cpt-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 2.5rem;
}

.letsgo-cpt-tab {
  padding: 0.75rem 1.5rem;
  background: transparent !important;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  margin-bottom: -2px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: color var(--transition-fast), border-color var(--transition-fast);
  box-shadow: none !important;
  text-transform: none;
  letter-spacing: normal;
}

.letsgo-cpt-tab:hover {
  background: transparent !important;
  color: var(--color-navy);
}

.letsgo-cpt-tab--active {
  color: var(--color-navy) !important;
  font-weight: 600;
  border-bottom-color: var(--color-pink);
  background: transparent !important;
}

/* ── Tab panes ───────────────────────────────────────────────────────────── */

.letsgo-cpt-tab-pane {
  max-width: 860px;
}

.letsgo-cpt-section {
  margin-bottom: 2.5rem;
}

.letsgo-cpt-section-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 1.25rem;
  line-height: 1.2;
}

/* ── Description ─────────────────────────────────────────────────────────── */

.letsgo-cpt-description {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

.letsgo-cpt-description p,
.letsgo-cpt-description span,
.letsgo-cpt-description div {
  color: var(--color-text-secondary);
}

.letsgo-cpt-description p {
  margin: 0 0 1.25rem;
}

.letsgo-cpt-description h2,
.letsgo-cpt-description h3 {
  font-family: var(--font-display);
  color: var(--color-text-primary);
}

/* ── "прочети повече" link ───────────────────────────────────────────────── */

.letsgo-read-more {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-pink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-fast);
}

.letsgo-read-more:hover {
  color: var(--color-pink);
  border-bottom-color: var(--color-pink);
}

/* ── Amenities preview on Преглед tab (dot bullets, top 9) ──────────────── */

.letsgo-amenities-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem 2rem;
}

.letsgo-amenity-dot {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  line-height: 1.4;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0.55rem 0.85rem;
}

.letsgo-amenity-dot::before {
  content: '✓';
  color: var(--color-navy);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ── Amenities full grid on Удобства tab (checkmark) ────────────────────── */

.letsgo-amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem 1.5rem;
}

.letsgo-amenity-item {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}

.letsgo-amenity-item::before {
  content: '✓';
  color: var(--color-cyan);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ── Structured description: "Подходящ за" cards ───────────────────────── */

.letsgo-for-who {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.letsgo-for-who-card {
  background: var(--color-off-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}

.letsgo-for-who-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.letsgo-for-who-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 0.6rem;
}

.letsgo-for-who-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
}

/* ── Structured description: "Добре е да знаете" callout ────────────────── */

.letsgo-good-to-know {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #edf6ff;
  border: 1px solid #b8d9f5;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
}

.letsgo-good-to-know__icon {
  font-size: 1.25rem;
  font-style: normal;
  flex-shrink: 0;
  color: var(--color-navy-light);
  margin-top: 0.1rem;
}

.letsgo-good-to-know__title {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-navy);
  margin-bottom: 0.4rem;
}

.letsgo-good-to-know__text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
}

/* ── ЧЗВ tab — FAQ accordion ─────────────────────────────────────────────── */

.letsgo-faq {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.letsgo-faq-item {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.letsgo-faq-item[open] {
  border-color: #9ab5cb;
}

.letsgo-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  list-style: none;
  background: #f7f9fb;
  transition: background var(--transition-fast);
  user-select: none;
}

.letsgo-faq-question::-webkit-details-marker { display: none; }

.letsgo-faq-question::after {
  content: '+';
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-text-secondary);
  flex-shrink: 0;
}

.letsgo-faq-item[open] > .letsgo-faq-question {
  background: #eef3f8;
}

.letsgo-faq-item[open] > .letsgo-faq-question::after {
  content: '−';
}

.letsgo-faq-answer {
  padding: 0 1.25rem 1.125rem;
  background: #fff;
}

.letsgo-faq-answer p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin: 0.75rem 0 0;
}

/* ── Стаи tab — room cards ───────────────────────────────────────────────── */

.letsgo-rooms-intro {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: -0.5rem 0 1.5rem;
  line-height: 1.6;
}

.letsgo-room-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

/* Content-tab room cards (.letsgo-stai-card) — distinct from search-result .letsgo-room-card */
.letsgo-stai-card {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
}

.letsgo-stai-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-surface);
}

.letsgo-stai-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.letsgo-stai-card__body {
  padding: 1rem 1.25rem 1.25rem;
  flex: 1;
}

.letsgo-stai-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 0.5rem;
}

.letsgo-stai-card__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
}

@media (max-width: 640px) {
  .letsgo-for-who      { grid-template-columns: 1fr; }
  .letsgo-room-cards   { grid-template-columns: 1fr; }
}

/* ── Search block (above tabs) ───────────────────────────────────────────── */

.letsgo-cpt-search-block {
  margin: 1.75rem 0 0;
}

/* Tab bar gets a top border to visually separate search results from content */
.letsgo-cpt-tabs {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

/* ── Availability search form ────────────────────────────────────────────── */

.letsgo-cpt-avail-form-wrap {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 2px 16px rgba(0, 51, 102, 0.07);
}

.letsgo-cpt-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
}

.letsgo-cpt-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1 1 150px;
}

.letsgo-cpt-field--date   { flex: 0 1 175px; }
.letsgo-cpt-field--narrow { flex: 0 1 105px; }
.letsgo-cpt-field--submit { flex: 0 0 auto; }

.letsgo-cpt-field label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-text-muted);
}

.letsgo-cpt-field input,
.letsgo-cpt-field select {
  padding: 0.65rem 0.875rem;
  border: 1.5px solid var(--color-border);
  border-radius: 6px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--color-text-primary);
  background: var(--color-white);
  width: 100%;
  box-sizing: border-box;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.letsgo-cpt-field input:focus,
.letsgo-cpt-field select:focus {
  outline: none;
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 3px rgba(12, 192, 223, 0.15);
}

/* Pink search button */
#letsgo-avail-btn {
  padding: 0.7rem 2rem;
  background: var(--color-pink);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition-fast), transform var(--transition-fast);
  letter-spacing: 0.01em;
}

#letsgo-avail-btn:hover:not(:disabled) {
  background: #c41868;
  transform: translateY(-1px);
}

#letsgo-avail-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ── Results area: rooms (left) + filters (right) ────────────────────────── */

#letsgo-avail-status {
  margin: 1.25rem 0 0;
  font-family: var(--font-ui);
  font-size: 0.875rem;
}

#letsgo-cpt-results-wrap {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 1.5rem;
}

#letsgo-avail-rooms {
  flex: 1;
  min-width: 0;
}

#letsgo-cpt-filters {
  flex: 0 0 220px;
  position: sticky;
  top: 2rem;
}

/* Summary line above rooms */
.letsgo-avail-summary {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0 0 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

.letsgo-rooms-heading {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 1rem;
}

/* Pink variant of the book button */
.letsgo-book-btn--pink {
  background: var(--color-pink) !important;
}

.letsgo-book-btn--pink:hover:not(:disabled) {
  background: #c41868 !important;
  transform: translateY(-1px);
}

/* ── Filter panel ────────────────────────────────────────────────────────── */

.letsgo-filter-panel {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.25rem;
}

.letsgo-filter-title {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-navy);
  margin: 0 0 1rem;
}

.letsgo-filter-group {
  margin-bottom: 1.1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--color-border);
}

.letsgo-filter-group-label {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 0.55rem;
}

.letsgo-filter-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-navy);
  cursor: pointer;
  padding: 0.2rem 0;
}

.letsgo-filter-check input[type="checkbox"] {
  accent-color: var(--color-navy);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.letsgo-filter-reset {
  width: 100%;
  padding: 0.5rem 0.75rem;
  background: var(--color-white) !important;
  border: 1.5px solid var(--color-navy) !important;
  border-radius: 6px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--color-navy) !important;
  cursor: pointer;
  margin-top: 0.75rem;
  transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
  box-shadow: none !important;
  text-align: center;
}

.letsgo-filter-reset:hover {
  border-color: var(--color-navy) !important;
  color: var(--color-navy) !important;
  background: var(--color-white) !important;
}

.letsgo-filter-empty {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-muted);
  padding: 1rem 0;
}

/* ── Pikaday overrides ───────────────────────────────────────────────────── */

.pika-single {
  font-family: var(--font-ui);
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 51, 102, 0.12);
}

.pika-title {
  background: var(--color-navy) !important;
  border-radius: 8px 8px 0 0;
  padding: 0.25rem 0;
}

.pika-label {
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  background: transparent !important;
}

.pika-label select {
  background: transparent !important;
  color: #fff !important;
}

.pika-prev,
.pika-next {
  opacity: 0.85;
  filter: brightness(0) invert(1);
}

.pika-prev:hover,
.pika-next:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  opacity: 1;
  filter: brightness(0) invert(1);
}

.pika-table th {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.pika-table abbr {
  font-size: 13px !important;
  font-weight: 700 !important;
}

.pika-button {
  font-family: var(--font-ui);
  font-size: 16px !important;
  font-weight: 700 !important;
  border-radius: 50%;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.is-selected .pika-button,
.is-selected .pika-button:hover,
.has-event .pika-button {
  background: var(--color-pink) !important;
  box-shadow: none;
  color: #fff !important;
  font-weight: 900 !important;
}

.is-today .pika-button {
  color: var(--color-cyan);
  font-weight: 700;
}

.pika-button:hover,
.pika-button:focus {
  background: var(--color-pink) !important;
  color: #fff !important;
  box-shadow: none;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

/* Tablet — chips replace sidebar, 2-col amenities */
/* ── Mobile filter chips (search results page) ───────────────────────────── */

/* Chips bar sits outside .letsgo-container — full viewport width, truly sticky.
   JS sets inline display:none before search and clears it after results arrive;
   the media query below then takes over to set flex vs none by screen size. */
#letsgo-filter-chips {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 6px rgba(25, 30, 59, 0.06);
  display: none;
  align-items: center;
}

/* Scrollable inner area — chips scroll left/right while sort button stays pinned */
.letsgo-chips-scroll {
  display: flex;
  flex: 1;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex-wrap: nowrap;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  align-items: center;
}

.letsgo-chips-scroll::-webkit-scrollbar { display: none; }

/* Sort button — pinned to the right of the chips bar, never scrolls */
.letsgo-sort-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.55rem 1rem;
  border: none;
  border-left: 1px solid var(--color-border);
  font-size: 0.875rem;
  font-family: var(--font-ui);
  font-weight: 600;
  cursor: pointer;
  background: var(--color-white);
  color: var(--color-navy);
  white-space: nowrap;
}

.letsgo-sort-btn:hover { background: #f5f5f7; }

.letsgo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.55rem 1.1rem;
  min-height: 44px;
  border: 1.5px solid var(--color-navy);
  border-radius: 99px;
  font-size: 0.875rem;
  font-family: var(--font-ui);
  font-weight: 500;
  cursor: pointer;
  background: var(--color-white);
  color: var(--color-navy);
  white-space: nowrap;
  line-height: 1.2;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.letsgo-chip--active {
  background: #191E3B;
  color: var(--color-white);
  border-color: #191E3B;
}

@media (max-width: 900px) {
  #letsgo-cpt-results-wrap {
    flex-direction: column;
  }

  /* Sidebar hidden — horizontal chips replace it on mobile/tablet */
  #letsgo-cpt-filters {
    display: none !important;
  }

  /* Show chip filter bar */
  #letsgo-cpt-filter-chips {
    display: block !important;
    margin-bottom: 1rem;
  }

  .letsgo-amenities-grid,
  .letsgo-amenities-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .letsgo-cpt-tab-pane {
    max-width: none;
  }
}

/* Desktop — never show chips */
@media (min-width: 901px) {
  #letsgo-cpt-filter-chips {
    display: none !important;
  }
}

/* Tablet/mobile — hide sidebar, show chips */
@media (max-width: 900px) {
  #letsgo-results-layout {
    flex-direction: column;
  }

  #letsgo-search-filters {
    display: none;
  }

  #letsgo-filter-chips {
    display: flex;
  }
}

/* Mobile — single column everything */
@media (max-width: 700px) {
  /* Search results cards */
  .letsgo-hotel-card  { flex-direction: column; }
  .letsgo-hotel-image { flex: none; }
  .letsgo-hotel-image img,
  .letsgo-no-image    { width: 100%; height: 200px; }
  .letsgo-hotel-info  { padding: 1rem; }
  .letsgo-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .letsgo-form-row .letsgo-field:first-child { grid-column: 1 / -1; }
  .letsgo-form-row .letsgo-field--submit      { grid-column: 1 / -1; }

  /* Booking page */
  .letsgo-booking-layout  { grid-template-columns: 1fr; }
  .letsgo-booking-summary { position: static; }

  /* Room cards (hotel detail page) */
  .letsgo-room-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .letsgo-room-card-price-col {
    text-align: left;
    width: 100%;
  }

  /* CPT availability form — full-width stacking */
  .letsgo-cpt-form-row { flex-direction: column; gap: 0.75rem; }
  .letsgo-cpt-field,
  .letsgo-cpt-field--date,
  .letsgo-cpt-field--narrow,
  .letsgo-cpt-field--submit { flex: 1 1 auto; width: 100%; }
  .letsgo-cpt-field--submit button { width: 100%; box-sizing: border-box; }
  .letsgo-cpt-avail-form-wrap { padding: 1rem; border-radius: 8px; }

  /* Hotel CPT gallery — single column hero only */
  .letsgo-cpt-gallery-mosaic {
    grid-template-columns: 1fr;
    height: 260px;
    border-radius: 0;
  }

  .letsgo-gallery-grid { display: none; }

  /* Hotel name smaller on mobile */
  .letsgo-cpt-hotel-name { font-size: 1.85rem; }

  /* Tabs — smaller padding */
  .letsgo-cpt-tab { padding: 0.6rem 1rem; font-size: 0.875rem; }

  /* Amenities: single column */
  .letsgo-amenities-grid,
  .letsgo-amenities-preview-grid { grid-template-columns: 1fr; }
}

/* ── Gallery lightbox ────────────────────────────────────────────────────── */

#letsgo-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}

#letsgo-lightbox.letsgo-lightbox--open {
  display: flex;
}

.letsgo-lb-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 88vh;
}

#letsgo-lb-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}

.letsgo-lb-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 2.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  z-index: 2;
  transition: color var(--transition-fast);
}
.letsgo-lb-close:hover { color: #fff; }

.letsgo-lb-prev,
.letsgo-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 2.25rem;
  line-height: 1;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  z-index: 2;
  transition: background var(--transition-fast);
}
.letsgo-lb-prev { left: 1.25rem; }
.letsgo-lb-next { right: 1.25rem; }
.letsgo-lb-prev:hover,
.letsgo-lb-next:hover { background: rgba(255, 255, 255, 0.25); }

.letsgo-lb-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 700px) {
  .letsgo-lb-prev { left: 0.5rem; }
  .letsgo-lb-next { right: 0.5rem; }
  .letsgo-lb-prev,
  .letsgo-lb-next { font-size: 1.75rem; padding: 0.5rem 0.75rem; }
}

/* ── Mobile filter chips ─────────────────────────────────────────────────── */

#letsgo-cpt-filter-chips {
  display: none; /* shown via responsive rules above */
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 6px rgba(25, 30, 59, 0.06);
}

.letsgo-filter-chips-bar {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.65rem 0;
  scrollbar-width: none;
}
.letsgo-filter-chips-bar::-webkit-scrollbar { display: none; }

.letsgo-filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.55rem 1.1rem;
  min-height: 44px;
  border: 1.5px solid var(--color-navy);
  border-radius: 99px;
  background: var(--color-white);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-navy);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.2;
  transition: background var(--transition-fast), color var(--transition-fast);
  box-shadow: none;
}

.letsgo-filter-chip--active {
  background: #191E3B !important;
  border-color: #191E3B !important;
  color: #fff !important;
}

.letsgo-filter-chip--clear {
  border-color: var(--color-navy);
  color: var(--color-navy);
}
.letsgo-filter-chip--clear:hover {
  background: var(--color-navy);
  color: #fff;
}

/* ── Sticky search bar (mobile only) ─────────────────────────────────────── */

#letsgo-sticky-bar {
  display: none; /* shown by JS after first search; hidden on desktop by rule above */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--color-navy);
  padding: 0.875rem 1.25rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
}

.letsgo-sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

#letsgo-sticky-summary {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#letsgo-sticky-btn {
  flex-shrink: 0;
  padding: 0.55rem 1.1rem;
  background: var(--color-pink);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition-fast);
}
#letsgo-sticky-btn:hover { background: #c41868; }

/* ── "Промени търсенето" overlay (hotel page) ────────────────────────────────
   Centered modal on desktop, full-screen sheet on mobile. Opened from the
   sticky bar; reuses .letsgo-suggest-drop for the destination autocomplete. */
.letsgo-modify-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.letsgo-modify-overlay[hidden] { display: none; } /* author rule beats UA [hidden] */

.letsgo-modify-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 30, 0.55);
}

.letsgo-modify-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 1.25rem 1.25rem 1.5rem;
}

.letsgo-modify-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.letsgo-modify-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-navy);
}
.letsgo-modify-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 0 0.25rem;
}
.letsgo-modify-close:hover { color: var(--color-pink); }

.letsgo-modify-form { display: flex; flex-direction: column; gap: 0.85rem; }

.letsgo-modify-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  position: relative; /* anchors the autocomplete dropdown */
  min-width: 0;       /* allow the field to shrink inside the grid (no overflow) */
}
.letsgo-modify-field label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-navy);
}
.letsgo-modify-field input,
.letsgo-modify-field select {
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
  padding: 0.65rem 0.875rem;
  border: 1.5px solid var(--color-border);
  border-radius: 6px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  background: var(--color-white);
}
.letsgo-modify-field input:focus,
.letsgo-modify-field select:focus {
  outline: none;
  border-color: var(--color-cyan);
}

.letsgo-modify-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); /* minmax(0,…) lets columns shrink below input width */
  gap: 0.85rem;
}

.letsgo-modify-submit {
  margin-top: 0.5rem;
  padding: 0.8rem 1rem;
  background: var(--color-pink);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.letsgo-modify-submit:hover { background: #c41868; }

@media (max-width: 700px) {
  .letsgo-modify-overlay { padding: 0; align-items: stretch; }
  .letsgo-modify-panel {
    max-width: none;
    max-height: none;
    height: 100%;
    border-radius: 0;
  }
}

/* ── Map section ─────────────────────────────────────────────────────────── */

.letsgo-cpt-section--map {
  max-width: none;
}

.letsgo-hotel-map {
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 16px rgba(0, 51, 102, 0.07);
  z-index: 1;
}

/* Custom navy pin */
.letsgo-map-pin {
  width: 32px;
  height: 32px;
  background: var(--color-pink);
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 700px) {
  .letsgo-hotel-map { height: 260px; border-radius: 8px; }
}

/* ── Similar hotels section ──────────────────────────────────────────────── */

.letsgo-cpt-similar {
  max-width: none;
}

.letsgo-similar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.letsgo-similar-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.letsgo-similar-card:hover {
  box-shadow: 0 8px 32px rgba(0, 51, 102, 0.12);
  transform: translateY(-3px);
  text-decoration: none;
}

.letsgo-similar-card-img {
  height: 160px;
  overflow: hidden;
  background: var(--color-surface);
}

.letsgo-similar-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.letsgo-similar-card:hover .letsgo-similar-card-img img {
  transform: scale(1.05);
}

.letsgo-similar-card-no-img {
  width: 100%;
  height: 100%;
  background: var(--color-surface);
}

.letsgo-similar-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.letsgo-similar-card-stars {
  color: #f59e0b;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.letsgo-similar-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.letsgo-similar-card-loc {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.letsgo-similar-card-btn {
  display: inline-block;
  margin-top: auto;
  padding-top: 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-pink);
}

@media (max-width: 900px) {
  .letsgo-similar-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .letsgo-similar-grid { gap: 0.75rem; }
  .letsgo-similar-card-img { height: 130px; }
  .letsgo-similar-card-name { font-size: 0.95rem; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   HOME PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

body.home .inside-article,
body.home .entry-content { padding: 0 !important; margin: 0 !important; }

/* Prevent horizontal scrollbar */
body.home { overflow-x: clip; }

/* ── Root fix: force GP content column to full width (remove sidebar layout) ── */
/* .site-content is GP's flex container that creates the two-column layout.
   Switching to block collapses it so the content area takes 100% width. */
body.home .site-content {
  display: block !important;
}

/* Full-bleed: now that the content column is 100% wide and centered,
   calc(50% - 50vw) correctly aligns each section with the viewport edge. */
.letsgo-site-header,
.letsgo-hero,
.letsgo-destinations,
.letsgo-collections,
.letsgo-featured,
.letsgo-how {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

/* Hide GP's native header on home page — we render our own inside the template */
body.home .site-header,
body.home #masthead { display: none !important; }

/* ── Custom site header ─────────────────────────────────────────────────── */

.letsgo-site-header {
  background: var(--color-navy);
  height: 58px;
  display: flex;
  align-items: center;
  position: relative;
}

.letsgo-site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.letsgo-site-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.letsgo-site-logo span { color: var(--color-cyan); }

.letsgo-site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
}

.letsgo-site-nav a {
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.letsgo-site-nav a:hover { color: var(--color-white); }

.letsgo-site-header__right {
  display: flex;
  justify-content: flex-end;
}

.letsgo-site-phone {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.letsgo-site-phone:hover { color: rgba(255,255,255,0.8); }

/* ── Hero ──────────────────────────────────────────────────────────────── */

.letsgo-hero {
  background: var(--color-navy);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

.letsgo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 72% 40%, rgba(12,192,223,0.10) 0%, transparent 58%);
  pointer-events: none;
}

.letsgo-hero__inner { position: relative; z-index: 1; }

.letsgo-hero__label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin: 0 0 18px;
}

.letsgo-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 3.75rem);
  font-weight: 600;
  color: var(--color-white);
  margin: 0 0 14px;
  line-height: 1.12;
  letter-spacing: -0.5px;
  max-width: 620px;
}

.letsgo-hero__subline {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin: 0 0 44px;
  line-height: 1.65;
  max-width: 460px;
}

/* ── Hero search card ──────────────────────────────────────────────────── */

.letsgo-hero-search {
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 16px 56px rgba(0,0,0,0.32);
  position: relative;
}

/* ── Children ages (expands inside the search card when children > 0) ─────── */

.letsgo-hero-ages {
  padding: 14px 20px 18px;
  border-top: 1px solid var(--color-border);
}

.letsgo-hero-ages__label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin: 0 0 10px;
}

.letsgo-hero-ages__inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.letsgo-hero-ages .letsgo-age-wrapper { display: flex; flex-direction: column; gap: 4px; }
.letsgo-hero-ages .letsgo-age-label   { font-family: var(--font-ui); font-size: 11px; color: var(--color-text-muted); }
.letsgo-hero-ages .letsgo-age-select  {
  padding: 5px 8px;
  border: 1.5px solid var(--color-border);
  border-radius: 5px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--color-text-primary);
  cursor: pointer;
  min-width: 90px;
}

.letsgo-hero-search__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 0.65fr 0.65fr auto;
  align-items: center;
}

.letsgo-hero-search__field {
  padding: 14px 20px;
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}

.letsgo-hero-search__field--submit {
  padding: 14px 18px 14px 16px;
  border-right: none;
}

.letsgo-hero-search__field label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.letsgo-hero-search__field input,
.letsgo-hero-search__field select {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 900;
  color: var(--color-text-primary);
  background: transparent;
  border: none;
  padding: 0;
  outline: none;
  width: 100%;
}

.letsgo-hero-search__field select { cursor: pointer; }

.letsgo-hero-search__field--error {
  background: rgba(220, 38, 38, 0.04);
  z-index: 10;
}

.letsgo-hero-dest-error {
  position: absolute;
  bottom: -26px;
  left: 20px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: var(--color-pink);
  padding: 3px 10px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 100;
}

.letsgo-hero-search__field--submit button {
  background: var(--color-pink);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.letsgo-hero-search__field--submit button:hover {
  background: #c41868;
  transform: translateY(-1px);
}

/* ── Trust pills ───────────────────────────────────────────────────────── */

.letsgo-trust-pills {
  display: flex;
  gap: 32px;
  margin-top: 20px;
}

.letsgo-trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 16px;
  color: rgba(255,255,255,1);
}

.letsgo-trust-pill__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-cyan);
  flex-shrink: 0;
}

/* ── Section layout helpers ────────────────────────────────────────────── */

.letsgo-section-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin: 0 0 10px;
}

.letsgo-section-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}

.letsgo-section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.15;
}

.letsgo-see-all {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--color-cyan);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity var(--transition-fast);
}

.letsgo-see-all:hover { opacity: 0.75; }

/* ── Destinations ──────────────────────────────────────────────────────── */

.letsgo-destinations {
  background: var(--color-off-white);
  padding: 64px 0 72px;
}

.letsgo-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.letsgo-dest-card {
  display: block;
  text-decoration: none;
  border-radius: 9px;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.letsgo-dest-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(25,30,59,0.14);
}

.letsgo-dest-card__img {
  height: 170px;
  background-color: var(--dest-color, #3d6b7a);
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}

.letsgo-dest-card:hover .letsgo-dest-card__img { transform: scale(1.04); }

.letsgo-dest-card__body {
  background: var(--color-white);
  padding: 10px 12px 12px;
  border: 1px solid var(--color-border);
  border-top: none;
  border-radius: 0 0 9px 9px;
}

.letsgo-dest-card__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.letsgo-dest-card__count {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ── Collections ───────────────────────────────────────────────────────── */

.letsgo-collections {
  background: var(--color-white);
  padding: 64px 0 72px;
}

.letsgo-collections-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 14px;
}

.letsgo-collections-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.letsgo-collection-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.letsgo-collection-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(25,30,59,0.10);
}

.letsgo-collection-card__img {
  background: var(--color-navy);
  background-size: cover;
  background-position: center;
}

.letsgo-collection-card--large .letsgo-collection-card__img { height: 220px; }
.letsgo-collection-card--small .letsgo-collection-card__img { height: 150px; }

.letsgo-collection-card__body { padding: 18px 20px; flex: 1; }

.letsgo-collection-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: var(--color-cyan);
  color: var(--color-white);
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: 8px;
}

.letsgo-collection-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--color-text-primary);
  margin: 0 0 8px;
  line-height: 1.2;
}

.letsgo-collection-title--sm { font-size: 18px; }

.letsgo-collection-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.55;
  margin: 0 0 12px;
}

.letsgo-collection-count {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-pink);
}

/* ── Featured hotels ───────────────────────────────────────────────────── */

.letsgo-featured {
  background: var(--color-off-white);
  padding: 64px 0 72px;
}

.letsgo-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.letsgo-featured-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.letsgo-featured-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(25,30,59,0.12);
}

.letsgo-featured-card__img {
  position: relative;
  height: 180px;
  background: var(--color-navy);
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}

.letsgo-featured-card:hover .letsgo-featured-card__img { transform: scale(1.04); }

.letsgo-featured-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.letsgo-featured-card__stars {
  color: #f0a500;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.letsgo-featured-card__name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--color-text-primary);
  margin: 0 0 4px;
  line-height: 1.25;
}

.letsgo-featured-card__loc {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0 0 10px;
}

.letsgo-featured-card__price {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: auto 0 10px;
}

.letsgo-featured-card__btn {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-pink);
  transition: opacity var(--transition-fast);
}

.letsgo-featured-card:hover .letsgo-featured-card__btn { opacity: 0.75; }

/* ── How it works ──────────────────────────────────────────────────────── */

.letsgo-how {
  background: var(--color-navy);
  padding: 72px 0 80px;
}

.letsgo-how .letsgo-section-label { color: var(--color-cyan); }

.letsgo-how__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--color-white);
  margin: 0 0 48px;
  line-height: 1.15;
}

.letsgo-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.letsgo-how-step__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  color: var(--color-cyan);
  line-height: 1;
  margin-bottom: 16px;
}

.letsgo-how-step__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-white);
  margin: 0 0 10px;
}

.letsgo-how-step__body {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 0;
}

/* ── Home responsive ───────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .letsgo-dest-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

@media (max-width: 900px) {
  .letsgo-site-nav { display: none; }

  .letsgo-hero-search__row {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .letsgo-hero-search__field {
    padding: 12px 16px;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .letsgo-hero-search__field--dest  { grid-column: 1 / -1; }
  .letsgo-hero-search__field--submit {
    grid-column: 1 / -1;
    border-bottom: none;
    padding: 14px 16px;
  }
  .letsgo-hero-search__field--submit button { width: 100%; }

  .letsgo-collections-grid { grid-template-columns: 1fr; }
  .letsgo-collections-side { grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
  .letsgo-featured-grid    { grid-template-columns: 1fr 1fr; }
  .letsgo-how-grid         { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .letsgo-hero { padding: 48px 0 60px; }
  .letsgo-hero__subline { display: none; }
  .letsgo-trust-pills   { flex-direction: column; gap: 10px; }
  .letsgo-dest-grid     { grid-template-columns: repeat(2, 1fr); }
  .letsgo-featured-grid { grid-template-columns: 1fr; }
  .letsgo-collections-side { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Hotels Archive (archive-letsgo_hotel.php)
   ══════════════════════════════════════════════════════════════════════════ */

#letsgo-hotels-archive {
  padding-bottom: 5rem;
}

.letsgo-htarch-hero {
  background: var(--color-navy);
  padding: 56px 0 48px;
}

.letsgo-htarch-hero .letsgo-section-label { color: var(--color-cyan); }

.letsgo-htarch-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--color-white);
  margin: 8px 0 14px;
  line-height: 1.1;
}

.letsgo-htarch-intro {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.letsgo-htarch-dest-section {
  padding: 52px 0 0;
}

.letsgo-htarch-dest-section:last-of-type {
  padding-bottom: 52px;
}

.letsgo-htarch-dest-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-border);
}

.letsgo-htarch-dest-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--color-text-primary);
  margin: 0;
}

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

.letsgo-htarch-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.letsgo-htarch-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(25,30,59,0.11);
}

.letsgo-htarch-card__img {
  position: relative;
  height: 160px;
  background: var(--color-navy);
  background-size: cover;
  background-position: center;
}

.letsgo-htarch-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.letsgo-htarch-card__stars {
  color: #f0a500;
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.letsgo-htarch-card__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--color-text-primary);
  margin: 0 0 auto;
  line-height: 1.3;
  padding-bottom: 10px;
}

.letsgo-htarch-card__price {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.letsgo-htarch-card__cta {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-pink);
}

@media (max-width: 1024px) {
  .letsgo-htarch-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .letsgo-htarch-grid { grid-template-columns: repeat(2, 1fr); }
  .letsgo-htarch-title { font-size: 30px; }
}

@media (max-width: 480px) {
  .letsgo-htarch-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Collections Archive (archive-letsgo_collection.php)
   ══════════════════════════════════════════════════════════════════════════ */

#letsgo-collections-archive {
  padding-bottom: 5rem;
}

.letsgo-colarch-hero {
  background: var(--color-off-white);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--color-border);
}

.letsgo-colarch-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--color-text-primary);
  margin: 0 0 16px;
  line-height: 1.1;
}

.letsgo-colarch-intro {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--color-text-secondary);
  max-width: 600px;
  line-height: 1.65;
  margin: 0;
}

.letsgo-colarch-grid-section {
  padding: 56px 0 72px;
}

.letsgo-colarch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.letsgo-colarch-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.letsgo-colarch-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(25,30,59,0.12);
}

.letsgo-colarch-card__img {
  height: 200px;
  background: var(--color-navy);
  background-size: cover;
  background-position: center;
}

.letsgo-colarch-card__body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.letsgo-colarch-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--color-text-primary);
  margin: 8px 0 8px;
  line-height: 1.25;
}

.letsgo-colarch-card__sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.55;
  margin: 0 0 14px;
  flex: 1;
}

.letsgo-colarch-card__count {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-pink);
  margin-top: auto;
}

@media (max-width: 900px) {
  .letsgo-colarch-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .letsgo-colarch-grid { grid-template-columns: 1fr; }
  .letsgo-colarch-title { font-size: 28px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Single Collection Landing Page (single-letsgo_collection.php)
   ══════════════════════════════════════════════════════════════════════════ */

#letsgo-collection-page {
  padding-bottom: 0;
}

/* Hero */
.letsgo-col-hero {
  position: relative;
  background: var(--color-navy-deep);
  background-size: cover;
  background-position: center;
  padding: 100px 0 90px;
  text-align: center;
}

.letsgo-col-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(25,30,59,0.55) 0%, rgba(25,30,59,0.75) 100%);
}

.letsgo-col-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.letsgo-col-hero__badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--color-cyan);
  color: var(--color-white);
  border-radius: 20px;
  padding: 5px 16px;
  margin-bottom: 22px;
}

.letsgo-col-hero__title {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 900;
  color: var(--color-white);
  margin: 0 0 24px;
  line-height: 1.1;
}

.letsgo-col-hero__sub {
  display: inline-block;
  background: rgba(255,255,255,0.97);
  color: var(--color-pink);
  border-radius: 50px;
  padding: 12px 28px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0 0 32px;
  max-width: 560px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.letsgo-col-hero__cta {
  display: inline-block;
  background: var(--color-pink);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.letsgo-col-hero__cta:hover {
  background: #c41868;
  transform: translateY(-1px);
}

/* Why this collection */
.letsgo-col-why {
  background: var(--color-white);
  padding: 72px 0;
  border-bottom: 1px solid var(--color-border);
}

.letsgo-col-why__inner {
  max-width: 820px;
  margin: 0 auto;
}

.letsgo-col-why__content {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.letsgo-col-why__content h2,
.letsgo-col-why__content h3 {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--color-text-primary);
  margin: 1.8em 0 0.6em;
}

.letsgo-col-why__content h2 { font-size: 26px; }
.letsgo-col-why__content h3 { font-size: 20px; }

.letsgo-col-why__content ul {
  padding-left: 1.4em;
  margin: 1em 0;
}

.letsgo-col-why__content li {
  margin-bottom: 0.5em;
}

.letsgo-col-why__content strong {
  color: var(--color-text-primary);
  font-weight: 700;
}

/* Hotel cards grid */
.letsgo-col-hotels {
  background: var(--color-off-white);
  padding: 72px 0 80px;
}

.letsgo-col-hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.letsgo-col-hotel-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.letsgo-col-hotel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(25,30,59,0.12);
}

.letsgo-col-hotel-card__img {
  position: relative;
  height: 190px;
  background: var(--color-navy);
  background-size: cover;
  background-position: center;
}

.letsgo-col-hotel-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.letsgo-col-hotel-card__stars {
  color: #f0a500;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.letsgo-col-hotel-card__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text-primary);
  margin: 0 0 5px;
  line-height: 1.25;
}

.letsgo-col-hotel-card__loc {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.letsgo-col-hotel-card__price {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: auto 0 10px;
}

.letsgo-col-hotel-card__cta {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-pink);
}

/* Bottom CTA strip */
.letsgo-col-bottom-cta {
  background: var(--color-navy);
  padding: 72px 0 80px;
  text-align: center;
}

.letsgo-col-bottom-cta__inner {
  max-width: 640px;
  margin: 0 auto;
}

.letsgo-col-bottom-cta__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--color-white);
  margin: 0 0 16px;
  line-height: 1.15;
}

.letsgo-col-bottom-cta__body {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin: 0 0 32px;
}

.letsgo-col-bottom-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.letsgo-col-btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.letsgo-col-btn--primary {
  background: var(--color-pink);
  color: var(--color-white);
}

.letsgo-col-btn--primary:hover {
  background: #c41868;
  transform: translateY(-1px);
}

.letsgo-col-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
}

.letsgo-col-btn--ghost:hover {
  border-color: rgba(255,255,255,0.7);
  color: var(--color-white);
}

/* Responsive */
@media (max-width: 900px) {
  .letsgo-col-hotels-grid { grid-template-columns: 1fr 1fr; }
  .letsgo-col-hero__title { font-size: 34px; }
}

@media (max-width: 640px) {
  .letsgo-col-hero { padding: 64px 0 60px; }
  .letsgo-col-hero__title { font-size: 26px; }
  .letsgo-col-hero__sub { font-size: 16px; }
  .letsgo-col-hotels-grid { grid-template-columns: 1fr; }
  .letsgo-col-bottom-cta__title { font-size: 24px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Customer Portal (page-portal.php)
   ══════════════════════════════════════════════════════════════════════════ */

.letsgo-portal-page { font-family: 'Ubuntu', sans-serif; }

.portal-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  padding: 36px;
  max-width: 480px;
  margin: 0 auto;
}
.portal-title   { font-size: 22px; color: #191E3B; font-weight: 700; margin: 0 0 8px; }
.portal-subtitle { font-size: 14px; color: #666; margin: 0 0 24px; line-height: 1.6; }

.portal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px;
}

.portal-field   { margin-bottom: 16px; }
.portal-label   { display: block; font-size: 13px; font-weight: 600; color: #444; margin-bottom: 5px; }
.portal-input {
  width: 100%; box-sizing: border-box;
  border: 1px solid #ccc; border-radius: 5px;
  padding: 10px 12px; font-size: 14px; font-family: inherit;
}
.portal-input:focus { outline: none; border-color: #191E3B; box-shadow: 0 0 0 2px rgba(25,30,59,.12); }

.portal-btn {
  display: inline-block; border: none; border-radius: 5px;
  padding: 12px 24px; font-size: 14px; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: opacity .15s;
}
.portal-btn:disabled { opacity: .55; cursor: default; }
.portal-btn-primary  { background: #191E3B; color: #fff; width: 100%; }
.portal-btn-secondary { background: #f0f2f5; color: #333; }
.portal-btn-sm       { padding: 7px 16px; font-size: 13px; }

.portal-back-link {
  background: none; border: none; color: #1a6eb5; font-size: 13px;
  cursor: pointer; padding: 0 0 20px; display: block; font-family: inherit;
}
.portal-back-link:hover { text-decoration: underline; }

.portal-alert { border-radius: 5px; padding: 10px 14px; font-size: 13px; margin-bottom: 14px; }
.portal-alert-success { background: #d4edda; color: #155724; }
.portal-alert-error   { background: #f8d7da; color: #721c24; }
.portal-alert-warn    { background: #fff3cd; color: #7d5a00; }

.portal-loading { padding: 60px; text-align: center; color: #888; font-size: 15px; }
.portal-empty   { color: #aaa; font-size: 13px; font-style: italic; }
.portal-error   { background: #f8d7da; color: #721c24; border-radius: 5px; padding: 16px; }

/* Reservation cards (list view) */
.portal-reservation-card {
  background: #fff;
  border: 1px solid #e0e4ec;
  border-radius: 7px;
  padding: 16px 20px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: box-shadow .15s, border-color .15s;
}
.portal-reservation-card:hover { box-shadow: 0 3px 12px rgba(0,0,0,.1); border-color: #191E3B; }
.prc-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.prc-uid    { font-weight: 700; color: #191E3B; font-size: 14px; margin-right: 6px; }
.prc-hotel  { font-size: 15px; color: #333; font-weight: 600; }
.prc-body   { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.prc-dates  { font-size: 13px; color: #666; }
.prc-price  { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; color: #191E3B; }
.prc-paid.paid  { color: #155724; font-size: 12px; font-weight: 600; }
.prc-paid.owed  { color: #c0392b; font-size: 12px; font-weight: 600; }

/* Badges */
.portal-badge {
  display: inline-block; border-radius: 10px; padding: 2px 9px;
  font-size: 11px; font-weight: 700; letter-spacing: .3px; white-space: nowrap;
}
.portal-badge-pending   { background: #fff3cd; color: #7d5a00; }
.portal-badge-confirmed { background: #d4edda; color: #155724; }
.portal-badge-cancelled { background: #f8d7da; color: #721c24; }
.portal-badge-resolved  { background: #d4edda; color: #155724; }
.portal-badge-rejected  { background: #f8d7da; color: #721c24; }
.portal-badge-warn      { background: #cce5ff; color: #004085; }

/* Detail view */
.portal-detail-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 10px; margin-bottom: 24px;
}
.portal-section { margin-bottom: 28px; }
.portal-section-title {
  font-size: 14px; font-weight: 700; color: #191E3B; text-transform: uppercase;
  letter-spacing: .5px; margin: 0 0 12px; padding-bottom: 6px;
  border-bottom: 2px solid #e8eaf0;
}
.portal-detail-grid { display: flex; flex-direction: column; gap: 0; }
.portal-detail-row {
  display: flex; padding: 8px 0; border-bottom: 1px solid #f0f2f6; font-size: 14px;
}
.portal-detail-row:last-child { border-bottom: none; }
.pdl { min-width: 160px; color: #666; flex-shrink: 0; }

.portal-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.portal-table th { padding: 7px 10px; text-align: left; font-size: 12px; color: #666; border-bottom: 2px solid #eee; font-weight: 600; text-transform: uppercase; }
.portal-table td { padding: 8px 10px; border-bottom: 1px solid #f3f3f3; }
.portal-table tr:last-child td { border-bottom: none; }

.portal-info-box {
  background: #f8f9fb; border: 1px solid #e0e4ec; border-radius: 5px;
  padding: 12px 16px; font-size: 13px; color: #444; line-height: 1.6;
}

.portal-cr-item {
  border: 1px solid #e0e4ec; border-radius: 5px; padding: 12px 14px; margin-bottom: 8px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   GLOBAL HEADER & FOOTER
   Replaces the old .letsgo-site-header (home-only) with a unified header
   across all pages. The old .letsgo-site-header CSS below is kept but is
   no longer used after the front-page.php inline header was removed.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hide GP's native header/footer — we render our own via header.php ──── */

.site-header,
#masthead,
.site-footer,
#colophon {
  display: none !important;
}

/* ── Global nav header ──────────────────────────────────────────────────── */

.letsgo-header {
  background: var(--color-navy);
  height: 68px;
  width: 100%;
  position: relative;
  z-index: 100;
}

.letsgo-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2rem;
}

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

.letsgo-header__logo-img {
  display: block;
  height: 44px;
  width: auto;
}

/* Text fallback when logo image not yet uploaded */
.letsgo-header__logo-text {
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.5px;
}
.letsgo-header__logo-text span { color: var(--color-pink); }

/* Nav sits directly to the right of logo */
.letsgo-header__nav {
  display: flex;
  align-items: center;
}

.letsgo-header__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.letsgo-header__menu li { margin: 0; }

.letsgo-header__menu a {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.letsgo-header__menu a:hover { opacity: 0.75; }

/* Phone number — pushed to far right by margin-left: auto */
.letsgo-header__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.letsgo-header__phone {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.letsgo-header__phone:hover { opacity: 0.75; }

/* Burger button — hidden on desktop */
.letsgo-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  flex-shrink: 0;
}

.letsgo-header__burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

/* Burger → X animation when open */
.letsgo-header__burger--open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.letsgo-header__burger--open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.letsgo-header__burger--open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ── Mobile nav ─────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .letsgo-header {
    position: relative; /* anchor for the absolute dropdown */
  }

  /* Nav drawer — hidden by default, shown via JS toggle */
  .letsgo-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-navy);
    z-index: 99;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }

  .letsgo-header__nav--open {
    display: block;
  }

  .letsgo-header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 1.5rem 1rem;
  }

  .letsgo-header__menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .letsgo-header__menu li:last-child {
    border-bottom: none;
  }

  .letsgo-header__menu a {
    display: block;
    padding: 0.9rem 0;
    font-size: 16px;
  }

  .letsgo-header__burger {
    display: flex;
  }

  .letsgo-header__phone {
    font-size: 14px;
  }
}

/* ── Global footer ──────────────────────────────────────────────────────── */

.letsgo-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.85);
}

.letsgo-footer__top {
  padding: 4rem 0 3rem;
}

.letsgo-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
}

/* Column 1: brand */
.letsgo-footer__col--brand { }

.letsgo-footer__logo-link {
  display: inline-block;
  margin-bottom: 1rem;
  text-decoration: none;
}

.letsgo-footer__logo-img {
  display: block;
  height: 38px;
  width: auto;
}

/* Text fallback */
.letsgo-footer__logo-text {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--color-white);
}
.letsgo-footer__logo-text span { color: var(--color-pink); }

.letsgo-footer__tagline {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin: 0;
}

/* Column titles */
.letsgo-footer__col-title {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 1rem;
}

/* WP menu list inside footer columns */
.letsgo-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.letsgo-footer__menu li {
  margin-bottom: 0.6rem;
}

.letsgo-footer__menu a {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.letsgo-footer__menu a:hover {
  color: rgba(255, 255, 255, 1);
}

/* Direct phone in col 3 */
.letsgo-footer__contact-direct {
  margin-top: 0.75rem;
}

.letsgo-footer__contact-phone {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.letsgo-footer__contact-phone:hover {
  color: var(--color-white);
}

/* Bottom legal bar */
.letsgo-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
}

.letsgo-footer__legal {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  line-height: 1.6;
}

/* Mobile footer */
@media (max-width: 768px) {
  .letsgo-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .letsgo-footer__top {
    padding: 2.5rem 0 2rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   GLOBAL FONT BUMPS
   Targets elements that were below 14px minimum.
   ═══════════════════════════════════════════════════════════════════════════ */

/* Search form labels */
.letsgo-field label                    { font-size: 0.875rem; }

/* Autocomplete dropdown group header */
.letsgo-suggest-group                  { font-size: 0.8rem; }

/* Search results */
.letsgo-result-count                   { font-size: 0.9rem; }
.letsgo-hotel-location,
.letsgo-hotel-source                   { font-size: 0.875rem; }
.letsgo-room-name                      { font-size: 0.9rem; }
.letsgo-room-meal                      { font-size: 0.875rem; }
.letsgo-room-price                     { font-size: 0.95rem; }
.letsgo-more-rooms                     { font-size: 0.875rem; }

/* Children age inputs */
.letsgo-ages-label                     { font-size: 0.875rem; }
.letsgo-age-label                      { font-size: 0.875rem; }
.letsgo-age-select                     { font-size: 0.9rem; }

/* Booking page */
.letsgo-form-group label               { font-size: 0.875rem; }
.letsgo-room-card-meal                 { font-size: 0.9rem; }
.letsgo-room-card-nights               { font-size: 0.875rem; }
.letsgo-booking-disclaimer             { font-size: 0.875rem; }
.letsgo-payment-title,
.letsgo-conf-payment-title             { font-size: 0.875rem; }
.letsgo-payment-deadline               { font-size: 0.875rem; }
.letsgo-payment-row                    { font-size: 0.9rem; }
.letsgo-cancel-policy-title            { font-size: 0.875rem; }
.letsgo-cancel-policy-line            { font-size: 0.875rem; }
.letsgo-rate-note, .letsgo-admin-note  { font-size: 0.875rem; }
.letsgo-conf-label                     { font-size: 0.875rem; }
.letsgo-conf-value                     { font-size: 1rem; }
.letsgo-summary-row                    { font-size: 0.9rem; }

/* Hotel CPT */
.letsgo-cpt-hotel-location             { font-size: 0.95rem; }

/* Hero section labels */
.letsgo-hero__label                    { font-size: 13px; }
.letsgo-hero-ages__label               { font-size: 13px; }
.letsgo-hero-ages .letsgo-age-label    { font-size: 13px; }
.letsgo-hero-ages .letsgo-age-select   { font-size: 14px; }

