:root {
  --bg: #f7f8fc;
  --bg-elev: #ffffff;
  --bg-elev-2: #f0f2f8;
  --border: #e2e6f0;
  --text: #111827;
  --text-dim: #6b7280;
  --accent: #ff5722;
  --accent-2: #f59e0b;
  --accent-soft: rgba(255, 87, 34, 0.1);
  --success: #16a34a;
  --radius: 14px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --font: 'Plus Jakarta Sans', "Segoe UI", -apple-system, sans-serif;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f1117;
    --bg-elev: #1a1d27;
    --bg-elev-2: #22263a;
    --border: #2a2f45;
    --text: #f0f2f8;
    --text-dim: #8892aa;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  }
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  scroll-behavior: smooth;
}

a { color: inherit; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 248, 252, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.02em;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

.brand-mark {
  color: var(--accent);
  width: 32px;
  height: auto;
  flex-shrink: 0;
  vertical-align: -8px;
}

.nav {
  display: flex;
  gap: 8px;
}

.nav-link {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s, color 0.15s;
}

.nav-link:hover { color: var(--text); background: var(--bg-elev); }
.nav-link.active { color: var(--text); background: var(--bg-elev-2); }

.badge {
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 999px;
  min-width: 18px;
  text-align: center;
}

/* Hero */
.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px 8px;
}

.hero-inner { max-width: 640px; margin-bottom: 32px; }

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  color: var(--text);
}

.hero p {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 24px;
}

.search-row input {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  color: var(--text);
  outline: none;
}

.search-row input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.search-row input::placeholder { color: var(--text-dim); }

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.chip {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.chip:hover { color: var(--text); border-color: var(--accent); }

.chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.select {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  cursor: pointer;
}

.results-meta {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin: 18px 0 14px;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding-bottom: 60px;
}

.card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.card-media {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.4rem;
  background: radial-gradient(circle at 30% 20%, var(--bg-elev-2), var(--bg-elev) 70%);
  position: relative;
  overflow: hidden;
}

.card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.card:hover .card-media img {
  transform: scale(1.04);
}

.card-media .card-emoji-fallback {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* Gradient overlay so badges read over photos */
.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.18) 100%);
  pointer-events: none;
  z-index: 1;
}

.card-media .fav-btn,
.card-media .card-diff,
.card-media .discount-ribbon {
  z-index: 2;
}

.card-diff {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.diff-Beginner { color: #2ecc71; }
.diff-Intermediate { color: #ffb300; }
.diff-Advanced { color: #ff8a3d; }
.diff-Extreme { color: #ff4b4b; }

.card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.card-title { font-size: 1.05rem; font-weight: 700; margin: 0; }

.card-location {
  color: var(--text-dim);
  font-size: 0.85rem;
}

.card-tagline {
  color: var(--text-dim);
  font-size: 0.87rem;
  line-height: 1.4;
  margin: 4px 0 8px;
  flex: 1;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.card-rating {
  font-size: 0.82rem;
  color: var(--accent-2);
  font-weight: 700;
}

.card-price {
  font-size: 1.05rem;
  font-weight: 800;
}

.card-price small {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 500;
}

.empty-state {
  text-align: center;
  color: var(--text-dim);
  padding: 60px 20px;
}

/* Bookings view */
.bookings-view {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.bookings-view h2 { font-size: 1.8rem; margin-bottom: 4px; }
.subtle { color: var(--text-dim); font-size: 0.9rem; margin-top: 0; }

.bookings-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.booking-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.booking-icon {
  font-size: 2rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elev-2);
  border-radius: 12px;
  flex-shrink: 0;
}

.booking-info { flex: 1; }
.booking-info h3 { margin: 0 0 4px; font-size: 1.02rem; }
.booking-info p { margin: 0; color: var(--text-dim); font-size: 0.85rem; }

.booking-price { font-weight: 800; font-size: 1.05rem; text-align: right; }
.booking-status {
  display: block;
  font-size: 0.72rem;
  color: var(--success);
  font-weight: 700;
  margin-top: 2px;
}

.cancel-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  cursor: pointer;
  margin-left: 12px;
}
.cancel-btn:hover { color: #ff4b4b; border-color: #ff4b4b; }

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 20px;
}

.modal-backdrop[hidden] {
  display: none;
}

.modal {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 20px;
  max-width: 560px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: var(--shadow);
}

.modal-media {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  background: radial-gradient(circle at 30% 20%, var(--bg-elev-2), var(--bg-elev) 70%);
  position: relative;
  overflow: hidden;
}

.modal-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.modal-media .card-emoji-fallback {
  position: relative;
  z-index: 1;
  text-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  color: var(--text);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-body { padding: 22px 26px 28px; }
.modal-body h2 { margin: 0 0 4px; font-size: 1.4rem; }
.modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 16px;
}

.meta-pill {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.modal-desc { color: var(--text-dim); line-height: 1.6; font-size: 0.94rem; margin-bottom: 22px; }

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.form-row { display: flex; gap: 12px; }
.form-field { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.8rem; color: var(--text-dim); font-weight: 600; }

.form-field input {
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.95rem;
  outline: none;
}
.form-field input:focus { border-color: var(--accent); }

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0 4px;
}

.total-row .total-amount { font-size: 1.4rem; font-weight: 800; }

.book-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
  color: #1a0d02;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.1s, filter 0.15s;
}
.book-btn:hover { filter: brightness(1.08); }
.book-btn:active { transform: scale(0.98); }

.form-error { color: #ff6b6b; font-size: 0.82rem; display: none; }
.form-error.show { display: block; }

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-elev-2);
  border: 1px solid var(--accent);
  color: var(--text);
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast[hidden] {
  display: none;
}

/* Demo banner */
.demo-banner {
  background: linear-gradient(90deg, #fff3e0, #ffe0cc);
  color: #7c2d12;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 16px;
  border-bottom: 1px solid var(--border);
}

/* Nav extras */
.account-link { white-space: nowrap; }
.nyc-chip {
  border-color: var(--accent-2);
  color: var(--accent-2);
}
.nyc-chip.active {
  background: var(--accent-2);
  color: #1a0d02;
}
.nyc-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent-2);
  border: 1px solid var(--accent-2);
  border-radius: 999px;
  padding: 0 6px;
  margin-left: 4px;
  vertical-align: middle;
}
.dim { color: var(--text-dim); font-weight: 400; }
.strike { text-decoration: line-through; color: var(--text-dim); margin-right: 6px; font-weight: 500; }

/* Favorite button */
.fav-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, transform 0.1s;
}
.fav-btn.active { color: var(--accent); border-color: var(--accent); }
.fav-btn:hover { transform: scale(1.08); }
.fav-btn.modal-fav { top: 14px; left: 14px; }

.discount-ribbon {
  position: absolute;
  top: 50px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* Newsletter */
.newsletter {
  margin: 20px 0 60px;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--bg-elev), var(--bg-elev-2));
  border: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.newsletter-text h3 { margin: 0 0 4px; font-size: 1.15rem; }
.newsletter-text p { margin: 0; color: var(--text-dim); font-size: 0.85rem; max-width: 380px; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input {
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  min-width: 220px;
  outline: none;
}
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form button {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
  color: #1a0d02;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 10px;
  cursor: pointer;
}

/* Favorites view */
.favorites-view {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.favorites-view h2 { font-size: 1.8rem; margin-bottom: 4px; }
.favorites-view .grid { margin-top: 24px; }
.empty-state.small { padding: 20px; font-size: 0.88rem; }

/* Operator / verified badge / testimonials */
.operator-row {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin: 4px 0 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.operator-row strong { color: var(--text); }
.verified-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--success);
  border: 1px solid var(--success);
  border-radius: 999px;
  padding: 1px 8px;
}

.testimonials {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-bottom: 20px;
}
.testimonials h4 { margin: 0 0 10px; font-size: 0.95rem; }
.testimonial { margin-bottom: 12px; }
.testimonial-head { display: flex; justify-content: space-between; font-size: 0.85rem; margin-bottom: 2px; }
.testimonial .stars { color: var(--accent-2); font-size: 0.8rem; }
.testimonial p { margin: 0; color: var(--text-dim); font-size: 0.86rem; line-height: 1.5; }

/* Account view */
.account-view {
  max-width: 480px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.account-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.account-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a0d02;
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.account-card h2 { margin: 0 0 2px; }
.account-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 22px 0;
}
.account-stats strong { display: block; font-size: 1.4rem; }
.account-stats span { font-size: 0.78rem; color: var(--text-dim); }
.logout-btn { background: var(--bg-elev-2); color: var(--text); }
.tiny-note { font-size: 0.76rem; color: var(--text-dim); margin-top: 12px; }

/* Auth forms */
.auth-wrap { text-align: left; }
.auth-tabs { display: flex; gap: 8px; margin-bottom: 14px; }
.auth-tab {
  flex: 1;
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.88rem;
}
.auth-tab.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.auth-form { display: flex; flex-direction: column; gap: 12px; }
.auth-form[hidden] { display: none; }
.link-btn {
  background: none;
  border: none;
  color: var(--accent-2);
  text-decoration: underline;
  cursor: pointer;
  font-size: inherit;
  padding: 0;
}

/* Checkout view */
.checkout-view { max-width: 960px; margin: 0 auto; padding: 48px 24px 90px; }
.checkout-wrap h2 { font-size: 1.7rem; margin-bottom: 18px; }
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.summary-card {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 18px;
}
.summary-media {
  font-size: 2.2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elev-2);
  border-radius: 12px;
  flex-shrink: 0;
}
.summary-card h3 { margin: 0 0 2px; font-size: 1rem; }
.summary-card p { margin: 0; font-size: 0.82rem; }

.promo-row { display: flex; gap: 8px; margin-bottom: 6px; }
.promo-row input {
  flex: 1;
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.88rem;
}
.promo-row button {
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0 16px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
}

.totals-box {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 14px 0 18px;
}
.totals-row { display: flex; justify-content: space-between; font-size: 0.88rem; color: var(--text-dim); padding: 5px 0; }
.totals-row.discount-row { color: var(--success); }
.totals-row.total { border-top: 1px solid var(--border); margin-top: 6px; padding-top: 10px; font-size: 1.05rem; font-weight: 800; color: var(--text); }

.waiver-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
  cursor: pointer;
}
.waiver-check input { margin-top: 3px; flex-shrink: 0; }
.waiver-check.compact { font-size: 0.85rem; margin: 4px 0 12px; }

.checkout-payment {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.checkout-payment h3 { margin: 0 0 16px; font-size: 1rem; }
.checkout-payment form { display: flex; flex-direction: column; gap: 14px; }

/* Legal view */
.legal-view { max-width: 820px; margin: 0 auto; padding: 48px 24px 90px; }
.legal-disclaimer {
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  color: #7c2d12;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.legal-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.legal-tab {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
}
.legal-tab.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.legal-doc h2 { margin: 0 0 4px; }
.legal-doc h3 { font-size: 1rem; margin: 22px 0 8px; }
.legal-doc p, .legal-doc li { color: var(--text-dim); font-size: 0.9rem; line-height: 1.65; }
.legal-doc ul { padding-left: 20px; }

/* Concierge */
.concierge-fab {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 60;
}
.concierge-panel {
  position: fixed;
  bottom: 94px;
  right: 26px;
  width: 340px;
  max-height: 70vh;
  overflow-y: auto;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  z-index: 60;
}
.concierge-panel[hidden] { display: none; }
.concierge-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2px; }
.concierge-head h3 { margin: 0; font-size: 1.05rem; }
.concierge-label { font-size: 0.78rem; color: var(--text-dim); font-weight: 600; margin: 14px 0 6px; }
.concierge-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip.small { padding: 6px 12px; font-size: 0.78rem; }
.concierge-quiz .select { width: 100%; margin-top: 4px; }
.concierge-quiz .book-btn { width: 100%; margin-top: 16px; padding: 11px; }
.concierge-summary { font-size: 0.82rem; color: var(--text-dim); margin: 16px 0 10px; }
.concierge-result {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 8px;
  cursor: pointer;
}
.concierge-result:hover { border-color: var(--accent); }
.concierge-result-icon { font-size: 1.5rem; }
.concierge-result strong { font-size: 0.88rem; }
.concierge-result p { margin: 2px 0 0; font-size: 0.78rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px 24px;
  margin-top: 40px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand { font-weight: 800; }
.footer-brand p { color: var(--text-dim); font-weight: 400; font-size: 0.8rem; margin: 6px 0 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links button {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
}
.footer-links button:hover { color: var(--text); }
.footer-copy {
  max-width: 1180px;
  margin: 24px auto 0;
  color: var(--text-dim);
  font-size: 0.76rem;
}

@media (max-width: 800px) {
  .checkout-grid { grid-template-columns: 1fr; }
}

/* ─── Provider Portal ─── */
.provider-view {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px 90px;
}
.provider-hero {
  text-align: center;
  padding: 56px 24px 40px;
  background: linear-gradient(135deg, #fff7f4, #fff3e0);
  border-bottom: 1px solid var(--border);
  margin: -48px -24px 40px;
}
.provider-hero h1 { margin: 0 0 10px; font-size: 2rem; font-weight: 800; color: var(--text); }
.provider-hero p { color: var(--text-dim); max-width: 500px; margin: 0 auto 24px; line-height: 1.6; }
.provider-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.provider-feature {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.provider-feature .icon { font-size: 1.8rem; margin-bottom: 8px; }
.provider-feature h3 { margin: 0 0 4px; font-size: 0.95rem; }
.provider-feature p { margin: 0; font-size: 0.82rem; color: var(--text-dim); }

.provider-section { margin-bottom: 32px; }
.provider-section h2 { font-size: 1.4rem; margin: 0 0 18px; }

.provider-form {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.provider-form h3 { margin: 0 0 20px; font-size: 1.1rem; }
.pf-row { display: flex; gap: 14px; margin-bottom: 14px; }
.pf-field { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.pf-field label { font-size: 0.8rem; font-weight: 600; color: var(--text-dim); }
.pf-field input,
.pf-field textarea,
.pf-field select {
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.92rem;
  outline: none;
  font-family: inherit;
}
.pf-field input:focus,
.pf-field textarea:focus,
.pf-field select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.pf-field textarea { resize: vertical; min-height: 90px; }
.pf-field.full { flex: 0 0 100%; }

.provider-submit-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 8px;
  transition: filter 0.15s;
}
.provider-submit-btn:hover { filter: brightness(1.07); }
.provider-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.provider-dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.provider-dash-header h2 { margin: 0; font-size: 1.4rem; }
.add-activity-btn {
  background: var(--accent);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: filter 0.15s;
}
.add-activity-btn:hover { filter: brightness(1.1); }

.business-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.business-icon {
  font-size: 2rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: 14px;
  flex-shrink: 0;
}
.business-info { flex: 1; }
.business-info h3 { margin: 0 0 2px; font-size: 1.1rem; }
.business-info p { margin: 0; font-size: 0.84rem; color: var(--text-dim); }
.business-edit-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  cursor: pointer;
}
.business-edit-btn:hover { color: var(--text); border-color: var(--accent); }

.activity-list { display: flex; flex-direction: column; gap: 14px; }
.provider-activity-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.provider-activity-icon {
  font-size: 1.8rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elev-2);
  border-radius: 12px;
  flex-shrink: 0;
}
.provider-activity-info { flex: 1; }
.provider-activity-info h4 { margin: 0 0 2px; font-size: 1rem; }
.provider-activity-info p { margin: 0; font-size: 0.82rem; color: var(--text-dim); }
.status-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.status-draft { background: var(--bg-elev-2); color: var(--text-dim); border: 1px solid var(--border); }
.status-pending { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.status-live { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.provider-activity-actions { display: flex; gap: 8px; }
.pa-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  cursor: pointer;
}
.pa-btn:hover { color: var(--text); border-color: var(--accent); }
.pa-btn.danger:hover { color: #ef4444; border-color: #ef4444; }

.upload-zone {
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  background: var(--bg-elev-2);
}
.upload-zone:hover, .upload-zone.drag-over { border-color: var(--accent); background: var(--accent-soft); }
.upload-zone p { margin: 0; color: var(--text-dim); font-size: 0.85rem; }
.upload-zone input[type="file"] { display: none; }
.upload-previews { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.upload-thumb {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border);
  position: relative;
}
.upload-thumb-wrap { position: relative; }
.upload-thumb-wrap .remove-thumb {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  border: none;
  font-size: 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.pf-hint { font-size: 0.78rem; color: var(--text-dim); margin: -8px 0 8px; }

.empty-activities {
  text-align: center;
  padding: 48px 24px;
  background: var(--bg-elev);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--text-dim);
}
.empty-activities p { margin: 8px 0 20px; }

@media (max-width: 640px) {
  .pf-row { flex-direction: column; }
  .provider-dash-header { flex-direction: column; align-items: stretch; }
  .add-activity-btn { text-align: center; }
}

/* ─── End Provider Portal ─── */

/* ─── Community ─── */

.community-view { padding-bottom: 80px; }

.community-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 24px;
}

.community-header { margin-bottom: 24px; }
.community-header h2 { font-size: 1.8rem; margin: 0 0 4px; }

.community-tabs {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}

.community-tab {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dim);
  padding: 8px 16px;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.15s, border-color 0.15s;
}
.community-tab.active { color: var(--accent); border-bottom-color: var(--accent); }

.community-top-actions {
  display: flex;
  justify-content: flex-end;
  margin: 20px 0 12px;
}

.community-posts-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.community-loading {
  color: var(--text-dim);
  font-size: 0.9rem;
  padding: 24px 0;
  text-align: center;
}

/* Post card */
.community-post {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.post-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.post-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.post-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.post-author { font-size: 0.92rem; }
.post-time { font-size: 0.78rem; color: var(--text-dim); }

.post-type-badge {
  font-size: 0.74rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.type-story { background: #eff6ff; color: #1d4ed8; }
.type-tip   { background: #fefce8; color: #854d0e; }
.type-photo { background: #fdf4ff; color: #7e22ce; }

.post-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.post-body {
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 10px;
}

.post-images {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.post-img {
  max-width: 100%;
  max-height: 280px;
  border-radius: 10px;
  object-fit: cover;
  flex: 1;
  min-width: 120px;
}

.post-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.like-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 12px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: border-color 0.15s, color 0.15s;
}
.like-btn:hover { border-color: #ef4444; color: #ef4444; }
.like-btn.liked { border-color: #ef4444; color: #ef4444; }
.like-btn .heart { font-size: 1rem; line-height: 1; }
.like-btn .like-count { font-weight: 600; }

.post-tag {
  font-size: 0.78rem;
  background: var(--bg-elev-2);
  border-radius: 12px;
  padding: 4px 10px;
  color: var(--text-dim);
}

/* Event card */
.community-event {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.event-date-pill {
  background: var(--accent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  letter-spacing: 0.02em;
}

.event-body { padding: 16px 18px; }

.event-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text-dim);
  margin: 8px 0 12px;
}

.join-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 9px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s;
}
.join-btn:hover { background: #e64a19; }
.join-btn.joined {
  background: var(--success);
}

/* Create post / event form */
.community-create-wrap {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 16px;
}

.community-create-wrap h4 { margin: 0 0 12px; font-size: 1rem; }

.post-type-tabs { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }

.community-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  font-size: 0.92rem;
  margin-bottom: 8px;
  box-sizing: border-box;
}
.community-input.half { width: calc(50% - 4px); }

.community-textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  font-size: 0.92rem;
  margin-bottom: 8px;
  resize: vertical;
  font-family: inherit;
  box-sizing: border-box;
}

.community-row {
  display: flex;
  gap: 8px;
}

.community-media-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
  padding: 6px 12px;
  border: 1px dashed var(--accent);
  border-radius: 10px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.post-preview-img {
  max-width: 100%;
  max-height: 200px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 10px;
  display: block;
}

.community-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 8px;
}

.book-btn.small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* ─── End Community ─── */

/* ── Mobile nav CTA button ───────────────────── */
.nav-cta {
  color: var(--accent) !important;
  font-weight: 700;
}

/* ── Hamburger button (hidden on desktop) ────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Close button inside mobile nav */
.nav-close {
  display: none;
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-dim);
  cursor: pointer;
  padding: 4px 8px;
  margin-bottom: 8px;
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 19;
}
.nav-overlay.open { display: block; }

/* ── Skeleton loading ────────────────────────── */
@keyframes skeleton-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
.skeleton-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  animation: skeleton-pulse 1.4s ease-in-out infinite;
}
.skeleton-img {
  height: 200px;
  background: var(--bg-elev-2);
}
.skeleton-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 10px; }
.skeleton-line {
  height: 13px;
  border-radius: 6px;
  background: var(--bg-elev-2);
}
.skeleton-line.short { width: 55%; }
.skeleton-line.xshort { width: 35%; }

/* ── Responsive: mobile ──────────────────────── */
@media (max-width: 767px) {
  .nav-hamburger { display: flex; }

  .nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(280px, 85vw);
    background: var(--bg-elev);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    z-index: 20;
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
    overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav-close { display: block; }
  .nav-link {
    justify-content: flex-start;
    padding: 13px 14px;
    font-size: 0.98rem;
    border-radius: 10px;
  }

  .header-inner { padding: 14px 16px; }
  .hero { padding: 36px 16px 8px; }
  .filters { flex-direction: column; align-items: stretch; }
  .booking-card { flex-wrap: wrap; }
  .concierge-panel { width: calc(100vw - 32px); right: 16px; }
  .newsletter { flex-direction: column; align-items: stretch; }
  .checkout-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   UPGRADE PACK — 2026-08-25
   ══════════════════════════════════════════════════════════════ */

/* 1 — Hero splash background */
.hero-inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10,12,18,0.88) 0%, rgba(50,25,0,0.76) 55%, rgba(10,12,18,0.86) 100%),
    url('https://images.unsplash.com/photo-1503220317375-aaad61436b1b?w=1400&q=80&auto=format&fit=crop') center/cover no-repeat;
  padding: 56px 40px 48px;
  margin-bottom: 4px;
}

.hero-inner h1 {
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}

.hero-inner p {
  color: rgba(255,255,255,0.87);
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}

@media (max-width: 640px) {
  .hero-inner {
    padding: 40px 20px 36px;
    border-radius: 14px;
  }
}

/* 2 — Social proof badge */
.card-social-proof {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0,0,0,0.68);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  pointer-events: none;
  letter-spacing: 0.02em;
}

/* 3 — Search autocomplete */
.search-row { position: relative; }

.autocomplete-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  max-height: 280px;
  overflow-y: auto;
}

.autocomplete-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  cursor: pointer;
  font-size: 0.88rem;
  border: none;
  width: 100%;
  text-align: left;
  background: none;
  color: var(--text);
  transition: background 0.1s;
}

.autocomplete-item:hover,
.autocomplete-item:focus {
  background: var(--bg-elev-2);
  outline: none;
}

.autocomplete-item-icon { font-size: 1.1rem; flex-shrink: 0; }
.autocomplete-item-name { font-weight: 600; flex: 1; }
.autocomplete-item-cat  { font-size: 0.76rem; color: var(--text-dim); flex-shrink: 0; }

/* 4 — Trending section */
.trending-section {
  margin: 12px 0 20px;
}

.trending-section h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.trending-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 640px) {
  .trending-rail { grid-template-columns: repeat(2, 1fr); }
}

.trending-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: pointer;
  display: block;
}

.trending-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.trending-card:hover img { transform: scale(1.06); }

.trending-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
}

.trending-card-name {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2px;
}

.trending-card-price {
  color: rgba(255,255,255,0.82);
  font-size: 0.72rem;
  font-weight: 600;
}

.trending-rank {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 5 — Share button in modal */
.modal-share-btn {
  position: absolute;
  top: 12px;
  right: 54px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: transform 0.15s, background 0.15s;
  z-index: 2;
  color: #111;
}

.modal-share-btn:hover {
  background: #fff;
  transform: scale(1.08);
}

/* 6 — Instant Confirmation pill */
.meta-pill.instant {
  background: rgba(0,160,100,0.1);
  color: #009060;
  font-weight: 700;
}

@media (prefers-color-scheme: dark) {
  .meta-pill.instant {
    background: rgba(0,220,140,0.14);
    color: #00c878;
  }
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-elev-2, #1a1a2e);
  border-top: 1px solid var(--accent, #ff5722);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 200;
  font-size: 0.88rem;
  color: var(--text, #e0e0e0);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; flex: 1; min-width: 200px; }
.cookie-link { background: none; border: none; color: var(--accent, #ff5722); cursor: pointer; font-size: inherit; padding: 0; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-decline { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: var(--text, #e0e0e0); padding: 7px 16px; border-radius: 8px; cursor: pointer; font-size: 0.88rem; }
.cookie-accept { background: var(--accent, #ff5722); border: none; color: #fff; padding: 7px 16px; border-radius: 8px; cursor: pointer; font-weight: 600; font-size: 0.88rem; }
