/* ============================================================
   Bestow — Shared Stylesheet
   Warm/Minimal · Earth Tones · Cormorant Garamond + Jost
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&family=JetBrains+Mono:wght@400&display=swap');

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --cream:         #FAF7F2;
  --cream-dark:    #F0EAE0;
  --beige:         #E4D9C8;
  --beige-dark:    #CFC0A8;
  --sand:          #B8A48C;
  --brown-light:   #9A7655;
  --brown:         #6B4A2A;
  --brown-dark:    #4A3220;
  --forest:        #3A4A38;
  --forest-dark:   #2A3828;
  --copper:        #C49A6C;
  --copper-light:  #D4B48A;
  --text:          #2C2016;
  --text-mid:      #5A4030;
  --text-muted:    #8A7260;
  --white:         #FFFFFF;

  --success:       #5A7A54;
  --warning:       #B87820;
  --danger:        #8B3A2A;

  --radius-sm:     6px;
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     32px;

  --shadow-sm:     0 1px 4px rgba(44,32,22,0.08);
  --shadow:        0 4px 20px rgba(44,32,22,0.10);
  --shadow-lg:     0 12px 48px rgba(44,32,22,0.14);

  --transition:    all 0.22s ease;
  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Jost', system-ui, sans-serif;
  --font-mono:     'JetBrains Mono', monospace;

  --nav-height:    68px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  min-height: 100vh;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-sans); }
input, textarea, select { font-family: var(--font-sans); }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}

.display {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.0;
}
.display em { font-style: italic; color: var(--brown); }

.headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  letter-spacing: -0.01em;
}

.subheading {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown-light);
}

.body-lg { font-size: 1.1rem; font-weight: 300; line-height: 1.75; }
.body-sm { font-size: 0.875rem; color: var(--text-muted); }

/* ── Section separator ──────────────────────────────────────── */
.section-sep { border-top: 3px solid #C49A6C; }

/* ── Navigation (dark forest — global) ──────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: #2A3828;
  border-bottom: 1px solid rgba(196,154,108,0.15);
  z-index: 900;
  display: flex;
  align-items: center;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  gap: 1rem;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #FAF7F2;
  font-weight: 600;
  color: var(--forest-dark);
  letter-spacing: 0.04em;
  flex: 1;
}
.nav-logo span { color: var(--copper); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Invite Widget */
.invite-widget {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(250,247,242,0.07);
  border: 1px solid rgba(196,154,108,0.3);
  border-radius: var(--radius-xl);
  padding: 0.35rem 0.5rem 0.35rem 1rem;
  transition: var(--transition);
}
.invite-widget:focus-within {
  border-color: rgba(196,154,108,0.6);
  box-shadow: 0 0 0 3px rgba(196,154,108,0.1);
}
.invite-widget label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(250,247,242,0.45);
  white-space: nowrap;
  cursor: pointer;
}
.invite-widget input {
  width: 120px;
  border: none;
  background: transparent;
  font-size: 0.82rem;
  font-family: var(--font-mono);
  color: #FAF7F2;
  outline: none;
  letter-spacing: 0.05em;
}
.invite-widget input::placeholder { color: rgba(250,247,242,0.2); }
.invite-widget button {
  background: #C49A6C;
  color: #4A3220;
  border: none;
  border-radius: 50px;
  padding: 0.38rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.invite-widget button:hover { background: #D4B48A; }

/* Google Sign-In Button */
.btn-google {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 50px;
  padding: 0.45rem 1rem 0.45rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.btn-google:hover { border-color: var(--brown-light); box-shadow: var(--shadow); }
.btn-google svg { width: 18px; height: 18px; }

/* User Avatar (post-login) */
.user-avatar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  position: relative;
}
.user-avatar img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--beige);
  object-fit: cover;
}
.user-avatar .name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
.user-avatar .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--radius);
  padding: 0.5rem;
  min-width: 160px;
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 999;
}
.user-avatar:hover .dropdown,
.user-avatar.open .dropdown { display: block; }
.user-avatar .dropdown a {
  display: block;
  padding: 0.55rem 0.75rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.user-avatar .dropdown a:hover { background: var(--cream-dark); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: none;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--forest);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--forest-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(42,56,40,0.25);
}

.btn-secondary {
  background: var(--brown);
  color: var(--cream);
}
.btn-secondary:hover {
  background: var(--brown-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(107,74,42,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--cream);
}

.btn-ghost {
  background: transparent;
  color: var(--text-mid);
  border: 1.5px solid var(--beige);
}
.btn-ghost:hover {
  border-color: var(--sand);
  background: var(--cream-dark);
}

.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; letter-spacing: 0.05em; }
.btn-xl { padding: 1.1rem 3rem; font-size: 1.05rem; letter-spacing: 0.06em; }

.btn-copper {
  background: var(--copper);
  color: var(--brown-dark);
}
.btn-copper:hover {
  background: var(--copper-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,154,108,0.3);
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow); }

.card-flat {
  background: var(--cream-dark);
  border: 1px solid var(--beige);
  border-radius: var(--radius);
  padding: 1.25rem;
}

/* Selectable card (for flights/lodging/places) */
.card-select {
  background: var(--white);
  border: 2px solid var(--beige);
  border-radius: var(--radius);
  padding: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.card-select:hover {
  border-color: var(--copper);
  box-shadow: var(--shadow);
}
.card-select.selected {
  border-color: var(--forest);
  background: rgba(58,74,56,0.04);
}
.card-select.selected::after {
  content: '✓';
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 24px;
  height: 24px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ── Form Elements ──────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-input,
.form-textarea,
.form-select {
  background: var(--white);
  border: 1.5px solid var(--beige);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: var(--transition);
  width: 100%;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--brown-light);
  box-shadow: 0 0 0 3px rgba(107,74,42,0.08);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--beige-dark); }
.form-textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A7260' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-hint { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem; }
.form-error { font-size: 0.8rem; color: var(--danger); margin-top: 0.2rem; }

/* Toggle */
.toggle-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}
.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-track {
  position: absolute;
  inset: 0;
  background: var(--beige-dark);
  border-radius: 50px;
  transition: var(--transition);
}
.toggle input:checked + .toggle-track { background: var(--forest); }
.toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
}
.toggle input:checked ~ .toggle-thumb { transform: translateX(20px); }

/* ── Budget Bar ─────────────────────────────────────────────── */
.budget-bar-wrap {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  z-index: 800;
  background: var(--cream-dark);
  border-bottom: 1px solid var(--beige);
  padding: 0.5rem clamp(1.5rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}
.budget-bar-track {
  flex: 1;
  height: 6px;
  background: var(--beige);
  border-radius: 50px;
  overflow: hidden;
}
.budget-bar-fill {
  height: 100%;
  border-radius: 50px;
  background: var(--success);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), background 0.5s ease;
  width: 0%;
}
.budget-bar-fill.warn  { background: var(--warning); }
.budget-bar-fill.over  { background: var(--danger); animation: pulse-bar 1s infinite; }
.budget-bar-label { font-size: 0.8rem; font-weight: 500; color: var(--text-muted); white-space: nowrap; }
.budget-bar-amount { font-size: 0.85rem; font-weight: 600; color: var(--text); white-space: nowrap; }

@keyframes pulse-bar {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ── Status Badges ──────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.7rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-pending  { background: var(--cream-dark); color: var(--text-muted); border: 1px solid var(--beige); }
.badge-viewed   { background: rgba(196,154,108,0.15); color: var(--copper); border: 1px solid rgba(196,154,108,0.3); }
.badge-selected { background: rgba(58,74,56,0.12); color: var(--forest); border: 1px solid rgba(58,74,56,0.25); }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ── Toast ──────────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}
.toast {
  background: var(--brown-dark);
  color: var(--cream);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 400;
  box-shadow: var(--shadow-lg);
  pointer-events: auto;
  animation: toast-in 0.3s ease;
  max-width: 320px;
}
.toast.success { background: var(--forest-dark); }
.toast.error   { background: var(--danger); }
@keyframes toast-in {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ── Dividers ───────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--beige);
  margin: 1.5rem 0;
}
.divider-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  margin: 1.5rem 0;
}
.divider-label::before,
.divider-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--beige);
}

/* ── Loaders ────────────────────────────────────────────────── */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

.skeleton {
  background: linear-gradient(90deg, var(--cream-dark) 25%, var(--beige) 50%, var(--cream-dark) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* ── Invite Code Display ────────────────────────────────────── */
.invite-code {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--forest-dark);
  background: var(--cream-dark);
  border: 2px dashed var(--beige-dark);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  text-align: center;
  user-select: all;
}

/* ── Utilities ──────────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 3rem); }
.container-sm { width: 100%; max-width: 680px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 3rem); }
.container-md { width: 100%; max-width: 900px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 3rem); }

.mt-nav { margin-top: var(--nav-height); }
.pt-nav { padding-top: var(--nav-height); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

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

@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .nav-logo { font-size: 1.3rem; }
}

/* ── Page Fade ──────────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fade-up 0.5s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }

/* ── Shared Utility JS hooks ────────────────────────────────── */
.hidden { display: none !important; }

/* ══════════════════════════════════════════
   TRAVEL SEARCH COMPONENTS
   ══════════════════════════════════════════ */

/* ── Calendar ────────────────────────────── */
.cal-wrap {
  background: #FFFFFF;
  border: 1px solid #E4D9C8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 380px;
}
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: #E4D9C8;
  border-bottom: 1px solid #CFC0A8;
}
.cal-nav-btn {
  background: none;
  border: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  color: #6B4A2A;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cal-nav-btn:hover { background: rgba(107,74,42,0.12); }
.cal-month { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400; color: #2C2016; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal-day-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9A7655;
  padding: 0.75rem 0;
  border-bottom: 1px solid #F0EAE0;
}
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.15s ease;
  position: relative;
  color: #2C2016;
}
.cal-day:hover:not(.cal-day--off):not(.cal-day--disabled) { background: #F0EAE0; }
.cal-day--off { color: transparent; pointer-events: none; }
.cal-day--disabled { color: #CFC0A8; pointer-events: none; cursor: default; }
.cal-day--available { font-weight: 500; }
.cal-day--in-range { background: rgba(58,74,56,0.08); }
.cal-day--departure {
  background: #3A4A38;
  color: #FAF7F2;
  border-radius: 50% 0 0 50%;
  font-weight: 600;
}
.cal-day--return {
  background: #3A4A38;
  color: #FAF7F2;
  border-radius: 0 50% 50% 0;
}
.cal-day--departure.cal-day--return { border-radius: 50%; }
.cal-legend {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid #F0EAE0;
  font-size: 0.78rem;
  color: #9A7655;
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.cal-legend span { display: flex; align-items: center; gap: 0.35rem; }
.cal-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }

/* ── Flight cards ────────────────────────── */
.flight-result {
  background: #FFFFFF;
  border: 2px solid #E4D9C8;
  border-radius: var(--radius);
  padding: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 0.75rem;
}
.flight-result:hover { border-color: #C49A6C; box-shadow: var(--shadow); }
.flight-result.selected { border-color: #3A4A38; background: rgba(58,74,56,0.04); }
.flight-result.selected::after {
  content: '✓';
  position: absolute;
  top: 0.8rem; right: 0.8rem;
  width: 24px; height: 24px;
  background: #3A4A38;
  color: #FAF7F2;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 600;
}
.flight-result { position: relative; }
.flight-airline { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #9A7655; margin-bottom: 0.5rem; }
.flight-route {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.flight-time { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 300; color: #2C2016; }
.flight-line {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
.flight-line-bar {
  width: 100%;
  height: 1px;
  background: #CFC0A8;
  position: relative;
}
.flight-line-bar::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 6px; height: 6px;
  background: #C49A6C;
  border-radius: 50%;
}
.flight-duration { font-size: 0.72rem; color: #9A7655; }
.flight-stops { font-size: 0.72rem; color: #9A7655; }
.flight-stops.direct { color: #5A7A54; }
.flight-price-row { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 0.5rem; }
.flight-price { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 300; color: #6B4A2A; }
.flight-cabin { font-size: 0.72rem; color: #9A7655; letter-spacing: 0.06em; text-transform: uppercase; }

/* ── Hotel cards ─────────────────────────── */
.hotel-result {
  background: #FFFFFF;
  border: 2px solid #E4D9C8;
  border-radius: var(--radius);
  padding: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 0.75rem;
  position: relative;
}
.hotel-result:hover { border-color: #C49A6C; box-shadow: var(--shadow); }
.hotel-result.selected { border-color: #3A4A38; background: rgba(58,74,56,0.04); }
.hotel-result.selected::after {
  content: '✓';
  position: absolute;
  top: 0.8rem; right: 0.8rem;
  width: 24px; height: 24px;
  background: #3A4A38;
  color: #FAF7F2;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 600;
}
.hotel-stars { color: #C49A6C; font-size: 0.8rem; margin-bottom: 0.3rem; letter-spacing: 0.1em; }
.hotel-name { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 400; color: #2C2016; margin-bottom: 0.25rem; }
.hotel-room { font-size: 0.82rem; color: #8A7260; }
.hotel-price-row { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 0.75rem; }
.hotel-price { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 300; color: #6B4A2A; }
.hotel-price-sub { font-size: 0.75rem; color: #9A7655; }
.hotel-nights { font-size: 0.78rem; color: #9A7655; }

/* ── Search loading state ────────────────── */
.search-loading {
  text-align: center;
  padding: 3rem 1rem;
  color: #9A7655;
}
.search-loading .spinner {
  width: 32px; height: 32px;
  border: 2px solid #E4D9C8;
  border-top-color: #3A4A38;
  margin: 0 auto 1rem;
}
.search-loading p { font-size: 0.9rem; }

/* ── Search empty/error state ────────────── */
.search-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  background: #FAF7F2;
  border: 1px dashed #CFC0A8;
  border-radius: var(--radius);
  color: #9A7655;
}
.search-empty p { font-size: 0.9rem; margin-bottom: 1rem; }

/* ── Invite step progress ─────────────────── */
.invite-steps {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  overflow-x: auto;
}
.inv-step {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}
.inv-step-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #E4D9C8;
  transition: var(--transition);
}
.inv-step-dot.active { background: #3A4A38; }
.inv-step-dot.done { background: #C49A6C; }
.inv-step-line { width: 20px; height: 1px; background: #E4D9C8; }

/* ── Location autocomplete ───────────────── */
.loc-wrap { position: relative; }
.loc-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #FFFFFF;
  border: 1px solid #E4D9C8;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  max-height: 240px;
  overflow-y: auto;
}
.loc-option {
  padding: 0.65rem 1rem;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid #F0EAE0;
}
.loc-option:last-child { border-bottom: none; }
.loc-option:hover { background: #FAF7F2; }
.loc-option-code { font-family: var(--font-mono); font-weight: 600; font-size: 0.85rem; color: #3A4A38; margin-right: 0.5rem; }
.loc-option-name { font-size: 0.85rem; color: #2C2016; }
.loc-option-country { font-size: 0.75rem; color: #9A7655; }
