/* ============================================================
   Secret Gems — Design System v2
   Aesthetic: Dark luxury editorial / AI travel concierge
   Fonts: Cormorant Garamond (headings) + Outfit (body) + JetBrains Mono
   ============================================================ */

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  /* Core palette */
  --bg:         #080810;
  --bg-surface: #0f0f18;
  --bg-card:    #13131e;
  --bg-card-hover: #181826;
  --bg-input:   #1a1a28;
  --border:     #252535;
  --border-focus: #c8a86a;
  --border-hover: #3a3a55;

  /* Text */
  --text-primary:   #f2ede3;
  --text-secondary: #9896a0;
  --text-muted:     #4e4d5c;

  /* Accent — warm antique gold */
  --gold:       #c8a86a;
  --gold-light: #e0c48a;
  --gold-dark:  #96773e;
  --gold-glow:  rgba(200, 168, 106, 0.15);
  --gold-glow-sm: rgba(200, 168, 106, 0.08);

  /* Semantic */
  --success: #5a9e72;
  --error:   #c85e5e;
  --info:    #5e88c8;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', 'DM Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'DM Mono', 'Courier New', monospace;

  /* Spacing */
  --space-xs:  0.375rem;
  --space-sm:  0.75rem;
  --space-md:  1.25rem;
  --space-lg:  2rem;
  --space-xl:  3.5rem;
  --space-2xl: 6rem;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.5);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.6);
  --shadow-lg:   0 16px 64px rgba(0,0,0,0.7);
  --shadow-glow: 0 0 40px rgba(200,168,106,0.18);
  --shadow-glow-sm: 0 0 20px rgba(200,168,106,0.10);

  /* Transitions */
  --ease: cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

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

/* ── Base ───────────────────────────────────────────────── */
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* Subtle grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── Layout helpers ─────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.site-main { flex: 1; position: relative; z-index: 1; }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  border-bottom: 1px solid rgba(37, 37, 53, 0.8);
  padding-block: 1.1rem;
  position: sticky;
  top: 0;
  background: rgba(8, 8, 16, 0.88);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
  color: var(--text-primary);
  transition: color .25s var(--ease);
  letter-spacing: 0.01em;
}
.logo:hover { color: var(--gold); }
.logo-gem {
  color: var(--gold);
  font-style: normal;
  font-size: 1.15rem;
  filter: drop-shadow(0 0 8px rgba(200,168,106,0.5));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.nav-link {
  color: var(--text-secondary);
  font-size: .88rem;
  font-weight: 400;
  transition: color .2s;
  letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--text-primary); }
.nav-greeting { color: var(--text-secondary); font-size: .875rem; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.4rem;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .025em;
  cursor: pointer;
  border: none;
  transition: all .2s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: #09090f;
  font-weight: 600;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
  pointer-events: none;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow), 0 4px 16px rgba(0,0,0,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
  background: rgba(255,255,255,0.03);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(200,168,106,0.4);
}
.btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #09090f;
  box-shadow: var(--shadow-glow-sm);
}

.btn-lg { padding: .85rem 2.2rem; font-size: 1rem; border-radius: var(--r-md); }
.btn-sm { padding: .38rem .95rem; font-size: .8rem; }

.btn[disabled], .btn:disabled {
  opacity: .4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Forms ──────────────────────────────────────────────── */
.form-group { margin-bottom: var(--space-md); }

label {
  display: block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .5rem;
  font-family: var(--font-mono);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 300;
  padding: .75rem 1.1rem;
  transition: border-color .2s, box-shadow .2s, background .2s;
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(200,168,106,0.1);
  background: rgba(26,26,40,0.9);
}

input::placeholder { color: var(--text-muted); }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a5870' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  cursor: pointer;
  font-size: .9rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-secondary);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: .15rem;
  accent-color: var(--gold);
  cursor: pointer;
}
.checkbox-label a { color: var(--gold); text-decoration: underline; }

/* ── Alerts ─────────────────────────────────────────────── */
.alert {
  border-radius: var(--r-sm);
  padding: .85rem 1.15rem;
  font-size: .88rem;
  margin-bottom: var(--space-md);
  border-left: 2px solid;
}
.alert-success { background: rgba(90,158,114,.08); border-color: var(--success); color: #8fd4a8; }
.alert-error   { background: rgba(200,94,94,.08);  border-color: var(--error);   color: #e08888; }
.alert-info    { background: rgba(94,136,200,.08); border-color: var(--info);    color: #8aabde; }

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-lg);
  transition: border-color .25s;
}
.card:hover { border-color: var(--border-hover); }

/* ── Page hero ──────────────────────────────────────────── */
.page-hero {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.page-hero .eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.85;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
  font-weight: 300;
  line-height: 1.75;
}

/* ── Tour generator form ────────────────────────────────── */
.generator-wrap {
  max-width: 680px;
  margin-inline: auto;
  padding-bottom: var(--space-2xl);
}

.generator-wrap .card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
}

/* Decorative radial accent in corner */
.generator-wrap .card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,168,106,0.06), transparent 65%);
  pointer-events: none;
}

.generator-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.01em;
}

/* Vibe chips */
.vibe-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .45rem;
}

.vibe-chip {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .28rem .9rem;
  font-size: .82rem;
  cursor: pointer;
  transition: all .18s var(--ease);
  color: var(--text-secondary);
  user-select: none;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.vibe-chip:hover {
  border-color: rgba(200,168,106,0.5);
  color: var(--gold-light);
  background: var(--gold-glow-sm);
}
.vibe-chip.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,168,106,0.1);
  box-shadow: 0 0 0 1px rgba(200,168,106,0.15);
}

.vibe-hidden { display: none; }

/* ── Loading overlay ────────────────────────────────────── */
#loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,8,16,.95);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  z-index: 9999;
  backdrop-filter: blur(8px);
}
#loading-overlay.active { display: flex; }

.loader-gem {
  font-size: 3rem;
  color: var(--gold);
  animation: spin 2.4s linear infinite;
  filter: drop-shadow(0 0 20px rgba(200,168,106,0.6));
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

#loading-overlay p {
  color: var(--text-secondary);
  font-size: .95rem;
  animation: pulse 2s ease-in-out infinite;
  font-weight: 300;
}
@keyframes pulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ── Results page ───────────────────────────────────────── */
.results-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-lg);
  align-items: start;
  padding-bottom: var(--space-2xl);
}

@media (max-width: 900px) {
  .results-layout { grid-template-columns: 1fr; }
  .results-map-col { order: -1; }
}

/* Map */
#map {
  width: 100%;
  height: 520px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  position: sticky;
  top: 80px;
  overflow: hidden;
}

/* Tour header */
.tour-header {
  padding: var(--space-xl) 0 var(--space-lg);
}

.tour-header .eyebrow {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .7rem;
  opacity: 0.85;
}

.tour-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: .83rem;
  color: var(--text-secondary);
}

.tour-meta span {
  display: flex;
  align-items: center;
  gap: .3rem;
}

/* Stops list */
.stops-list { display: flex; flex-direction: column; gap: var(--space-md); }

.stop-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--space-md) var(--space-lg);
  position: relative;
  cursor: pointer;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}

.stop-card:hover {
  border-color: rgba(200,168,106,0.4);
  transform: translateX(4px);
}
.stop-card.active {
  border-color: var(--gold);
  transform: translateX(4px);
  box-shadow: var(--shadow-glow-sm);
}

.stop-number {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 28px; height: 28px;
  background: var(--gold);
  color: #09090f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  font-family: var(--font-mono);
}

.stop-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: .4rem;
  padding-right: 2rem;
  letter-spacing: 0.01em;
}

.stop-address {
  font-size: .75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-bottom: .65rem;
}

.stop-description { font-size: .88rem; color: var(--text-secondary); margin-bottom: .8rem; line-height: 1.65; }

.stop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: .8rem;
}

.tag {
  background: rgba(200,168,106,0.07);
  border: 1px solid rgba(200,168,106,0.18);
  color: var(--gold);
  border-radius: 100px;
  padding: .16rem .7rem;
  font-size: .72rem;
  font-family: var(--font-mono);
  letter-spacing: .06em;
}

.stop-gem-reason {
  background: rgba(200,168,106,0.04);
  border-left: 2px solid var(--gold-dark);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: .65rem 1rem;
  font-size: .83rem;
  color: var(--text-secondary);
  margin-top: .5rem;
  line-height: 1.6;
}
.stop-gem-reason strong { color: var(--gold); font-weight: 500; }

.walking-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-top: .65rem;
}
.walking-badge::before { content: '⟶'; color: var(--gold-dark); margin-right: .1rem; }

/* Local tip box */
.local-tip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: var(--r-md);
  padding: var(--space-md) var(--space-lg);
  margin-top: var(--space-md);
}
.local-tip .label {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-mono);
  margin-bottom: .45rem;
  opacity: 0.85;
}

/* Route logic box */
.route-logic {
  color: var(--text-secondary);
  font-size: .87rem;
  font-style: italic;
  margin-bottom: var(--space-md);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
}

/* ── Auth pages ─────────────────────────────────────────── */
.auth-wrap {
  max-width: 440px;
  margin-inline: auto;
  padding: var(--space-xl) var(--space-lg) var(--space-2xl);
}

.auth-wrap h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: .3rem;
  letter-spacing: 0.01em;
}

.auth-wrap .subtitle {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  font-weight: 300;
}

.auth-alt {
  text-align: center;
  margin-top: var(--space-md);
  font-size: .88rem;
  color: var(--text-secondary);
}
.auth-alt a { color: var(--gold); }

/* Password strength */
.pwd-strength { height: 3px; border-radius: 2px; background: var(--border); margin-top: .4rem; overflow: hidden; }
.pwd-strength-bar { height: 100%; border-radius: 2px; width: 0; transition: width .3s, background .3s; }

/* ── Legal pages ────────────────────────────────────────── */
.legal-wrap {
  max-width: 740px;
  margin-inline: auto;
  padding: var(--space-xl) var(--space-lg) var(--space-2xl);
}

.legal-wrap h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: .4rem;
}

.legal-wrap .last-updated {
  font-size: .78rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-bottom: var(--space-xl);
}

.legal-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: var(--space-lg);
  margin-bottom: .65rem;
  color: var(--gold-light);
}

.legal-wrap p, .legal-wrap li {
  color: var(--text-secondary);
  font-size: .93rem;
  margin-bottom: .7rem;
  font-weight: 300;
}

.legal-wrap ul { margin-left: 1.4rem; }
.legal-wrap a  { color: var(--gold); text-decoration: underline; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding-block: var(--space-lg);
  margin-top: auto;
  background: var(--bg-surface);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--text-muted);
  font-size: .85rem;
}

.footer-links {
  display: flex;
  gap: var(--space-md);
}
.footer-links a { color: var(--text-muted); font-size: .83rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }

.footer-copy { color: var(--text-muted); font-size: .76rem; width: 100%; }

/* ── Utilities ──────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mb-lg  { margin-bottom: var(--space-lg); }
.hidden { display: none !important; }

/* ── Decorative divider ─────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--space-lg) 0;
}

/* Google Maps info window override */
.gm-style .gm-style-iw-c {
  background: var(--bg-card) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--r-md) !important;
  box-shadow: var(--shadow-md) !important;
}
.gm-style .gm-style-iw-d { overflow: auto !important; }
.gm-style .gm-style-iw-t::after { background: var(--bg-card) !important; }

/* ── Quota banner ───────────────────────────────────────── */
.quota-banner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: .75rem 1.15rem;
  margin-bottom: var(--space-md);
}
.quota-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.quota-info {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .86rem;
  color: var(--text-secondary);
}
.quota-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.quota-ok   { background: var(--success); box-shadow: 0 0 8px var(--success); }
.quota-full { background: var(--error);   box-shadow: 0 0 8px var(--error); }

/* ── Vibe category labels ───────────────────────────────── */
.vibe-category-label {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: .9rem;
  margin-bottom: .4rem;
  font-family: var(--font-mono);
}

/* ── Tour history cards ─────────────────────────────────── */
.tour-history-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.tour-history-card:hover {
  border-color: rgba(200,168,106,0.35);
  transform: translateX(4px);
}
.tour-history-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  gap: 1rem;
}
.tour-history-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: .3rem;
}
.tour-history-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  font-size: .76rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.tour-history-date {
  font-size: .78rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.tour-history-arrow {
  color: var(--gold);
  font-size: .95rem;
}

/* ── Popular cities grid ────────────────────────────────── */
.city-link {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: .75rem 1rem;
  text-align: center;
  font-size: .88rem;
  color: var(--text-secondary);
  transition: all .2s var(--ease);
  font-weight: 400;
}
.city-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow-sm);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ── Share buttons ──────────────────────────────────────── */
.share-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem 1rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.share-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.share-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,.35); }
.share-facebook:hover { background:#1877f2;border-color:#1877f2;color:#fff; }
.share-x:hover        { background:#111;border-color:#333;color:#fff; }
.share-linkedin:hover  { background:#0a66c2;border-color:#0a66c2;color:#fff; }
.share-reddit:hover    { background:#ff4500;border-color:#ff4500;color:#fff; }
.share-whatsapp:hover  { background:#25d366;border-color:#25d366;color:#fff; }
.share-viber:hover     { background:#7360f2;border-color:#7360f2;color:#fff; }
.share-email:hover     { background:var(--gold);border-color:var(--gold);color:#09090f; }
.share-copy:hover      { border-color:var(--gold);color:var(--gold); }

/* ── Explore page cards ─────────────────────────────────── */
.explore-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.explore-card:hover {
  border-color: rgba(200,168,106,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-hover); }

/* ── Selection ──────────────────────────────────────────── */
::selection { background: rgba(200,168,106,0.2); color: var(--text-primary); }
