/* ClassBnB shared styles — original design inspired by the existing aesthetic */
:root {
  --gold: #b8954a;
  --gold-dark: #9a7a3a;
  --gold-light: #d4b572;
  --gold-soft: #e8d9b8;
  --cream: #f5f1ea;
  --cream-dark: #ebe4d4;
  --ink: #0a0a0a;
  --ink-soft: #1a1a1a;
  --text: #2a2a2a;
  --text-muted: #6b6b6b;
  --text-light: #9a9a9a;
  --line: #e5e0d5;
  --line-soft: #efeae0;
  --bg: #fdfbf6;
  --white: #ffffff;
  --success: #3d7a4a;
  --shadow-sm: 0 1px 2px rgba(20, 15, 5, 0.04), 0 2px 8px rgba(20, 15, 5, 0.04);
  --shadow-md: 0 4px 16px rgba(20, 15, 5, 0.06), 0 8px 32px rgba(20, 15, 5, 0.04);
  --shadow-lg: 0 8px 32px rgba(20, 15, 5, 0.08), 0 16px 48px rgba(20, 15, 5, 0.06);
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;
}

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

html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-y: none;
}

button, a, [role="button"], .btn, .chip, .hs-field, .search-field, .sheet-field, .field { touch-action: manipulation; }
img, video { max-width: 100%; height: auto; }
@media (max-width: 768px) {
  input, textarea, select { font-size: 16px; }  /* prevent iOS auto-zoom on focus */
}

.serif {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }

/* ============ HEADER ============ */
.site-header {
  background: var(--ink);
  color: #fff;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.brand-block {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  line-height: 1;
  gap: 18px;
}
.brand-block .divider {
  width: 1px;
  height: 26px;
  background: linear-gradient(to bottom, transparent, rgba(212, 181, 112, 0.55) 30%, rgba(212, 181, 112, 0.55) 70%, transparent);
  display: inline-block;
  flex-shrink: 0;
}
.brand-block .logo {
  display: flex;
  line-height: 1;
  margin-bottom: 0;
}
.brand-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.015em;
  color: rgba(255, 255, 255, 0.88);
  text-transform: lowercase;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  top: 0;
}
.brand-tagline em {
  font-style: italic;
  color: #fff;
  font-weight: 500;
  padding: 0 1px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  height: 38px;
  text-decoration: none;
}
.logo .part {
  display: block;
  height: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}
.logo .part-class {
  width: 114px;
  background: #fff;
  -webkit-mask-image: url('logo_mask_class.png');
  mask-image: url('logo_mask_class.png');
}
.logo .part-bnb {
  width: 75px;
  background: var(--gold-light);
  -webkit-mask-image: url('logo_mask_bnb.png');
  mask-image: url('logo_mask_bnb.png');
}
.logo .sr { position: absolute; left: -9999px; }
.btn-book-header {
  position: relative;
  margin-left: 8px;
  padding: 11px 28px;
  background: linear-gradient(135deg, #d4b570 0%, #c9a359 35%, #b8954a 65%, #9b7a3b 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.25s ease, filter 0.2s ease;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.30) inset,
    0 -1px 0 rgba(0, 0, 0, 0.14) inset,
    0 4px 14px rgba(184, 149, 74, 0.40),
    0 1px 2px rgba(0, 0, 0, 0.10);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}
.btn-book-header::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 55%; height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.42) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn-book-header:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.38) inset,
    0 -1px 0 rgba(0, 0, 0, 0.16) inset,
    0 6px 22px rgba(184, 149, 74, 0.62),
    0 2px 4px rgba(0, 0, 0, 0.12);
}
.btn-book-header:hover::before { left: 120%; }
.btn-book-header:active {
  transform: translateY(0);
  filter: brightness(0.96);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 -1px 0 rgba(0, 0, 0, 0.22) inset,
    0 2px 6px rgba(184, 149, 74, 0.42);
}

/* Reveal-on-scroll variant: hidden until search button leaves viewport */
.btn-book-reveal {
  display: none;
}
.btn-book-reveal.is-visible {
  display: inline-block;
  animation: btnBookReveal 0.3s ease forwards;
}
@keyframes btnBookReveal {
  from { opacity: 0; transform: translateX(8px) scale(0.96); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav a { opacity: 0.78; transition: opacity 0.15s, color 0.15s; }
.nav a:hover { opacity: 1; color: var(--gold-light); }
.nav a.active { color: var(--gold-light); opacity: 1; }
.nav .heart { font-size: 14px; opacity: 0.78; cursor: pointer; }
.nav .lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-right: -4px;
}
.nav .flag {
  width: 20px; height: 14px;
  background: linear-gradient(to right, #009246 33%, #fff 33% 66%, #ce2b37 66%);
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.15);
  opacity: 0.7;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.12s;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  flex: 0 0 auto;
}
.nav .flag:hover { opacity: 1; }
.nav .flag:focus-visible {
  outline: 2px solid var(--gold-light, #d4b572);
  outline-offset: 2px;
}
.nav .flag[aria-expanded="true"] { opacity: 1; transform: scale(1.05); }

/* Per-language flag backgrounds (CSS-only) */
.nav .flag[data-lang="it"] {
  background: linear-gradient(to right, #009246 33%, #fff 33% 66%, #ce2b37 66%);
}
.nav .flag[data-lang="es"] {
  background: linear-gradient(to bottom, #c60b1e 0 25%, #ffc400 25% 75%, #c60b1e 75% 100%);
}
.nav .flag[data-lang="en"] {
  /* Stylized Union Jack via stacked gradients */
  background:
    linear-gradient(45deg, transparent 45%, #fff 47% 53%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, #fff 47% 53%, transparent 55%),
    linear-gradient(0deg, transparent 40%, #c8102e 40% 60%, transparent 60%),
    linear-gradient(90deg, transparent 40%, #c8102e 40% 60%, transparent 60%),
    #012169;
}

/* Language dropdown popover */
.nav .lang-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: -8px;
  background: rgba(20, 15, 5, 0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(184, 149, 74, 0.28);
  border-radius: 10px;
  padding: 6px;
  list-style: none;
  margin: 0;
  z-index: 200;
  min-width: 170px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.2);
  animation: langMenuIn 0.14s ease-out;
}
.nav .lang-menu[hidden] { display: none !important; }
.nav .lang-menu li { margin: 0; padding: 0; list-style: none; }
.nav .lang-menu .lang-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: rgba(255,255,255,0.85);
  padding: 10px 14px;
  border-radius: 7px;
  cursor: pointer;
  font-size: 13px;
  font-family: inherit;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  font-weight: 400;
}
.nav .lang-menu .lang-opt:hover {
  background: rgba(184, 149, 74, 0.14);
  color: #fff;
}
.nav .lang-menu .lang-opt.is-active {
  color: var(--gold-light, #d4b572);
  background: rgba(184, 149, 74, 0.10);
}
.nav .lang-menu .lang-opt.is-active::after {
  content: '✓';
  margin-left: auto;
  font-size: 11px;
  color: var(--gold-light, #d4b572);
}
@keyframes langMenuIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile menu lang-opt active state (no popover here — flat list) */
.mobile-menu .lang-opt.is-active {
  color: var(--gold-light, #d4b572) !important;
  font-weight: 600;
}
.mobile-menu .lang-opt.is-active::after {
  content: ' ✓';
  color: var(--gold-light, #d4b572);
}

.nav .lang {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; cursor: pointer;
}
.nav .lang::after {
  content: '▾'; font-size: 9px; opacity: 0.6;
}

/* ============ SEARCH BAR ============ */
.search-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 14px 32px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.search-field {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 13px;
  min-width: 180px;
  transition: border-color 0.15s;
}
.search-field:hover { border-color: var(--gold-light); }
.search-field .icon { color: var(--gold); font-size: 13px; }
.search-field .label { color: var(--text-muted); flex: 1; }
.search-field.has-value .label { color: var(--text); }
.search-field .chev { color: var(--text-light); font-size: 10px; }
.btn-search {
  position: relative;
  background: linear-gradient(135deg, #d4b570 0%, #c9a359 35%, #b8954a 65%, #9b7a3b 100%);
  color: #fff;
  padding: 11px 30px 11px 26px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.25s ease, filter 0.2s ease;
  display: flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.30) inset,
    0 -1px 0 rgba(0, 0, 0, 0.14) inset,
    0 4px 14px rgba(184, 149, 74, 0.40),
    0 1px 2px rgba(0, 0, 0, 0.10);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
  cursor: pointer;
  overflow: hidden;
}
.btn-search::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 55%; height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.42) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn-search:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.38) inset,
    0 -1px 0 rgba(0, 0, 0, 0.16) inset,
    0 6px 22px rgba(184, 149, 74, 0.62),
    0 2px 4px rgba(0, 0, 0, 0.12);
}
.btn-search:hover::before { left: 120%; }
.btn-search:active {
  transform: translateY(0);
  filter: brightness(0.96);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 -1px 0 rgba(0, 0, 0, 0.22) inset,
    0 2px 6px rgba(184, 149, 74, 0.42);
}
.btn-search .icon {
  width: 15px; height: 15px;
  flex: 0 0 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn-search .label {
  position: relative;
  z-index: 1;
}

/* ============ FILTER CHIPS ============ */
.filter-row {
  display: flex;
  gap: 8px;
  padding: 12px 32px;
  border-bottom: 1px solid var(--line-soft);
  flex-wrap: wrap;
  align-items: center;
  background: var(--bg);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12px;
  background: var(--white);
  cursor: pointer;
  color: var(--text);
  transition: all 0.15s;
}
.chip:hover { border-color: var(--gold); color: var(--gold-dark); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip .chev { font-size: 9px; opacity: 0.5; }

/* ============ HOUSE CARDS ============ */
.house-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.house-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.house-card .img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--cream-dark);
  overflow: hidden;
}
.house-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.house-card:hover .img-wrap img { transform: scale(1.03); }
.house-card .img-wrap .fav {
  position: absolute; bottom: 10px; left: 10px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--ink);
  backdrop-filter: blur(4px);
  transition: background 0.15s;
}
.house-card .img-wrap .fav:hover { background: #fff; }
.house-card .img-wrap .nav-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  opacity: 0;
  transition: opacity 0.2s;
}
.house-card:hover .nav-arrow { opacity: 1; }
.house-card .nav-arrow.prev { left: 8px; }
.house-card .nav-arrow.next { right: 8px; }
.house-card .body { padding: 14px 16px 16px; }
.house-card .title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--gold-dark);
  line-height: 1.25;
  letter-spacing: -0.005em;
  display: block;
  margin: 0 0 6px 0;
}
.house-card .meta {
  font-size: 11.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin: 0 0 12px 0;
}
.house-card .specs {
  display: flex;
  gap: 14px;
  font-size: 11.5px;
  color: var(--text-muted);
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
}
.house-card .spec {
  display: flex; align-items: center; gap: 5px;
}

/* Booking rating badge */
.booking-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.96);
  padding: 5px 10px 5px 10px;
  border-radius: 100px;
  font-size: 11px;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  color: var(--text);
  text-decoration: none;
  max-width: calc(100% - 20px);
  transition: background 0.15s, transform 0.15s;
}
.booking-badge:hover {
  background: #fff;
  transform: translateY(-1px);
}
.booking-badge .bk-prefix {
  font-size: 10.5px;
  color: var(--text-muted);
  white-space: nowrap;
}
.booking-badge .bk-prefix strong {
  color: var(--ink);
  font-weight: 600;
}
.booking-badge .bk-divider {
  width: 1px;
  height: 14px;
  background: var(--line);
}
.booking-badge .score {
  background: var(--ink);
  color: var(--gold-light);
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 100px;
  font-size: 11px;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}
.booking-badge .label {
  font-size: 11px;
  color: var(--text);
  font-weight: 500;
}
.booking-badge .count {
  font-size: 10.5px;
  color: var(--text-muted);
  white-space: nowrap;
}
.booking-badge .bk-ext {
  font-size: 10px;
  color: var(--text-muted);
  margin-left: 2px;
}
.booking-badge:hover .bk-ext { color: var(--gold-dark); }

/* Compact mode when card is narrow — hide prefix to keep badge readable */
@media (max-width: 520px) {
  .booking-badge .bk-prefix,
  .booking-badge .bk-divider,
  .booking-badge .bk-ext { display: none; }
}

/* ============ FOOTER / SUPPORT ============ */
.support-block {
  padding: 96px 40px 80px;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
}
.support-block .eye {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 12px;
}
.support-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 1.1;
  color: var(--text);
  margin: 0 0 16px;
}
.support-block h2 em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 400;
}
.support-block .lead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 48px;
}
.support-block .support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}
.support-block .support-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md, 14px);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  text-align: left;
}
.support-block .support-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}
.support-block .support-card .flag {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 6px;
}
.support-block .support-card .country {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.support-block .support-card .country .wa-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 7px;
  background: #25d366;
  color: #fff;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  vertical-align: middle;
}
.support-block .support-card .number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.support-block .support-card .action {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
}
.support-block .support-card-wa:hover {
  border-color: #25d366;
  box-shadow: 0 12px 28px rgba(37,211,102,0.12);
}
.support-block .support-card .wa-note {
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  font-style: italic;
}
@media (max-width: 980px) {
  .support-block { padding: 56px 18px 48px; }
  .support-block h2 { font-size: 30px; }
  .support-block .support-grid { grid-template-columns: 1fr; gap: 12px; max-width: 460px; }
  .support-block .support-card { padding: 22px 20px; }
}
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  padding: 24px 32px;
  text-align: center;
  font-size: 12px;
  line-height: 1.8;
}
.site-footer .company { color: rgba(255,255,255,0.8); }

/* ============ UTIL ============ */
.hidden { display: none !important; }
@media (max-width: 768px) {
  .search-bar { padding: 12px 16px; }
  .filter-row { padding: 10px 16px; }
}


/* ============ DROPDOWN POPOVERS (search bar / chips) ============ */
.cb-popover {
  position: absolute;
  z-index: 800;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14), 0 2px 6px rgba(0,0,0,0.06);
  padding: 8px;
  min-width: 200px;
  max-height: 420px;
  overflow-y: auto;
  font-family: 'Inter', sans-serif;
  animation: cbPopIn 0.16s ease;
}
@keyframes cbPopIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cb-pop-row {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--text);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
.cb-pop-row:hover { background: rgba(184, 149, 74, 0.08); color: var(--gold-dark); }
.cb-pop-row.is-active { background: rgba(184, 149, 74, 0.14); color: var(--gold-dark); font-weight: 500; }

.cb-pop-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.12s;
}
.cb-pop-check:hover { background: rgba(184, 149, 74, 0.06); }
.cb-pop-check input {
  accent-color: var(--gold);
  width: 16px; height: 16px;
  cursor: pointer;
}
.cb-pop-multi { padding: 6px; }

/* Calendar */
.cb-pop-cal { padding: 14px; }
.cb-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cb-cal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  text-transform: capitalize;
}
.cb-cal-nav {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.12);
  width: 28px; height: 28px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  color: var(--text);
  transition: border-color 0.12s, color 0.12s;
}
.cb-cal-nav:hover { border-color: var(--gold); color: var(--gold-dark); }
.cb-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cb-cal-dow {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  padding: 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cb-cal-day, .cb-cal-empty {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text);
  transition: background 0.12s, color 0.12s;
}
.cb-cal-day:hover { background: rgba(184, 149, 74, 0.12); }
.cb-cal-day.is-past { color: rgba(0,0,0,0.22); cursor: default; }
.cb-cal-day.is-past:hover { background: transparent; }
.cb-cal-day.is-selected { background: var(--gold); color: #fff; font-weight: 500; }
.cb-cal-day.is-range { background: rgba(184, 149, 74, 0.18); border-radius: 0; }
.cb-cal-foot {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  justify-content: flex-end;
}
.cb-cal-clear {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 12px;
  color: var(--text-muted);
  padding: 6px 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cb-cal-clear:hover { color: var(--ink); }

/* Guests */
.cb-pop-guests { padding: 14px 16px; }
.cb-guests-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.cb-guests-row + .cb-guests-row { border-top: 1px solid rgba(0,0,0,0.06); }
.cb-guests-main { font-size: 14px; color: var(--ink); font-weight: 500; }
.cb-guests-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.cb-guests-ctrl {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cb-guests-btn {
  width: 28px; height: 28px;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.12s, color 0.12s;
}
.cb-guests-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.cb-guests-val { min-width: 18px; text-align: center; font-size: 14px; font-weight: 500; }

/* Chip active state (applied by dropdowns.js after selection) */
.chip.is-active {
  background: rgba(184, 149, 74, 0.12);
  border-color: var(--gold);
  color: var(--gold-dark);
}
.search-field.is-selected .label { color: var(--text); font-weight: 500; }
.search-field { cursor: pointer; }
.chip { cursor: pointer; user-select: none; }
