/* ============================================================
   SkyRoam – Design System
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --bg-deep: #050c1a;
  --bg-panel: rgba(8, 18, 40, 0.82);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-hover: rgba(255, 255, 255, 0.08);

  --accent-blue: #00d4ff;
  --accent-violet: #8b5cf6;
  --accent-coral: #ff6b6b;
  --accent-gold: #f59e0b;
  --accent-green: #10b981;
  --accent-red: #e8332a;
  --radius: 12px;

  --text-primary: #e8f4fd;
  --text-secondary: #8faec9;
  --text-muted: #49637e;

  --border: rgba(0, 212, 255, 0.12);
  --border-hover: rgba(0, 212, 255, 0.35);

  --glow-blue: 0 0 20px rgba(0, 212, 255, 0.3);
  --glow-violet: 0 0 20px rgba(139, 92, 246, 0.4);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}


/* ============================================================
   STARS CANVAS (background)
   ============================================================ */
#stars-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ============================================================
   GLOBE
   ============================================================ */
#globe-container {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

#globe-canvas-wrapper {
  width: 100%;
  height: 100%;
}

#globe-canvas-wrapper canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

#globe-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(12px);
  animation: fadeInUp 1s ease 1.5s both;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 28px;
  background: linear-gradient(180deg, rgba(5, 12, 26, 0.97) 0%, rgba(5, 12, 26, 0.80) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

/* ── Navbar Service Buttons ── */
.nav-services {
  display: flex;
  gap: 6px;
  margin-left: 6px;
}

.service-nav-btn {
  padding: 7px 14px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--bg-glass);
  color: var(--text-secondary);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  letter-spacing: .2px;
}

.service-nav-btn:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  box-shadow: 0 0 12px rgba(0, 212, 255, .18);
}

.service-nav-btn.active {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 18px rgba(0, 212, 255, .35);
}

/* ── Service Panel (slides down below navbar) ── */
.service-panel {
  position: fixed;
  top: 56px;
  /* height of navbar */
  left: 0;
  right: 0;
  z-index: 95;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
}

.service-panel.open {
  max-height: 520px;
}

.service-panel-inner {
  background: rgba(5, 10, 22, 0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 16px 32px 20px;
}

.service-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.service-panel-tabs {
  display: flex;
  gap: 6px;
}

.service-tab-btn {
  padding: 7px 16px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.service-tab-btn:hover {
  border-color: var(--accent-blue);
  color: var(--text-secondary);
}

.service-tab-btn.active {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  border-color: transparent;
  color: #fff;
}

.service-panel-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-glass);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.service-panel-close:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
}

/* Tab content */
.service-tab-content {
  display: none;
}

.service-tab-content.active {
  display: block;
}

/* Search row */
.service-search-row {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.service-search-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 120px;
}

.service-search-field label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .6px;
}

.service-input {
  width: 100%;
  padding: 9px 12px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  outline: none;
  transition: var(--transition);
  color-scheme: dark;
  box-sizing: border-box;
}

.service-input:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, .1);
}

.service-search-btn {
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  border: none;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  align-self: flex-end;
}

.service-search-btn:hover {
  opacity: .88;
  transform: translateY(-1px);
}

/* Travelpayouts widget slot */
.service-widget-frame {
  min-height: 120px;
  border: 1px dashed rgba(0, 212, 255, .2);
  border-radius: var(--radius);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, .02);
}

.widget-placeholder {
  text-align: center;
  padding: 20px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.widget-placeholder code {
  background: rgba(255, 255, 255, .08);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
  color: var(--accent-blue);
}

.widget-placeholder-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}

/* Partner link buttons */
.service-partner-links {
  margin-top: 6px;
}

.partner-links-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.partner-links-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.partner-link {
  padding: 7px 16px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.partner-link:hover {
  opacity: .85;
  transform: translateY(-1px);
}

.partner-link.booking {
  background: #003580;
  color: #fff;
}

.partner-link.agoda {
  background: #e3001b;
  color: #fff;
}

.partner-link.hotels {
  background: #d4001f;
  color: #fff;
}

.partner-link.viator {
  background: #1a1a2e;
  border: 1px solid #34d399;
  color: #34d399;
}

.partner-link.gyg {
  background: #ff5533;
  color: #fff;
}

.partner-link.klook {
  background: #ff5722;
  color: #fff;
}

.partner-link.worldnomads {
  background: #003580;
  color: #fff;
}

.partner-link.comparethemarket {
  background: #00a651;
  color: #fff;
}

.partner-link.columbus {
  background: #001c40;
  border: 1px solid #6b95cc;
  color: #6b95cc;
}



.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-icon {
  font-size: 22px;
}

.nav-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.nav-tagline {
  color: var(--text-secondary);
  font-size: 13px;
  flex: 1;
}

.stat-badge {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 12px;
  color: var(--text-secondary);
  transition: var(--transition);
}

/* ============================================================
   PANEL (Left)
   ============================================================ */
.panel {
  position: fixed;
  top: 70px;
  z-index: 50;
  width: 300px;
  max-height: calc(100vh - 90px);
  overflow-y: auto;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  backdrop-filter: blur(24px);
  border-radius: var(--radius-lg);
  padding: 22px;
  animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.panel::-webkit-scrollbar {
  width: 4px;
}

.panel::-webkit-scrollbar-track {
  background: transparent;
}

.panel::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.panel-left {
  left: 20px;
}

.panel-header {
  margin-bottom: 20px;
}

.panel-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.panel-subtitle {
  font-size: 12px;
  color: var(--text-secondary);
}

/* --- Budget Display --- */
.budget-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.budget-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.budget-values {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

#budget-min-display {
  color: var(--accent-blue);
  font-size: 16px;
}

#budget-max-display {
  color: var(--accent-violet);
  font-size: 16px;
}

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

/* --- Slider --- */
.slider-wrapper {
  position: relative;
  height: 40px;
  margin-bottom: 18px;
}

.slider-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transform: translateY(-50%);
}

.slider-fill {
  position: absolute;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-violet));
  border-radius: 4px;
  transition: var(--transition);
}

.range-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  top: 0;
  left: 0;
  pointer-events: none;
}

.range-slider:nth-of-type(1) {
  z-index: 3;
}

.range-slider:nth-of-type(2) {
  z-index: 4;
}

/* Visible slider knobs via thumb pseudo-elements */
.slider-wrapper::before,
.slider-wrapper::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
  z-index: 5;
  transition: left 0.1s;
}

/* Preset Buttons */
.preset-label {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.presets {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.preset-btn {
  flex: 1;
  padding: 7px 6px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: var(--transition);
}

.preset-btn:hover,
.preset-btn.active {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  box-shadow: var(--glow-blue);
}

/* Find Button */
.find-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  border: none;
  border-radius: var(--radius-md);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.25);
  letter-spacing: 0.3px;
}

.find-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.45);
}

.find-btn:active {
  transform: translateY(0);
}

.find-btn .find-btn-icon {
  font-size: 16px;
}

/* ---- Destination List ---- */
.dest-list-section {
  margin-top: 22px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.dest-list-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.dest-list-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.count-badge {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  border-radius: 50px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.dest-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dest-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.dest-item:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.dest-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dest-item-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.dest-item-country {
  font-size: 11px;
  color: var(--text-muted);
}

.dest-item-price {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-blue);
}

/* ============================================================
   FLIGHT DETAIL MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 12, 26, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  position: relative;
  width: 480px;
  max-width: calc(100vw - 40px);
  background: linear-gradient(145deg, rgba(10, 22, 50, 0.96), rgba(8, 18, 40, 0.98));
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), var(--glow-blue);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.modal::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(255, 107, 107, 0.15);
  border-color: var(--accent-coral);
  color: var(--accent-coral);
}

/* Modal Hero */
.modal-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.modal-destination-emoji {
  font-size: 44px;
  line-height: 1;
  filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.4));
}

.modal-destination-info {
  flex: 1;
}

.modal-destination-info h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
}

.modal-destination-info p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 3px;
}

.modal-price-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

/* Flight Details Grid */
.flight-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.flight-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.flight-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  transition: var(--transition);
}

.flight-detail-item:hover {
  border-color: var(--border-hover);
}

.detail-icon {
  font-size: 16px;
}

.detail-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.detail-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

/* Modal Actions */
.modal-actions {
  display: flex;
  gap: 12px;
}

.explore-btn,
.book-btn {
  flex: 1;
  padding: 13px;
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.explore-btn {
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.35);
  color: var(--accent-violet);
}

.explore-btn:hover {
  background: rgba(139, 92, 246, 0.22);
  box-shadow: var(--glow-violet);
  transform: translateY(-2px);
}

.book-btn {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.25);
}

.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 212, 255, 0.4);
}

/* ============================================================
   EXPLORE / SIGHTSEEING PANEL
   ============================================================ */
.explore-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 480px;
  max-width: 100vw;
  height: 100vh;
  z-index: 300;
  background: linear-gradient(180deg, rgba(8, 18, 40, 0.97) 0%, rgba(5, 12, 26, 0.99) 100%);
  border-left: 1px solid var(--border);
  backdrop-filter: blur(30px);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.explore-panel.open {
  transform: translateX(0);
  box-shadow: -20px 0 80px rgba(0, 0, 0, 0.5), -2px 0 40px rgba(0, 212, 255, 0.06);
}

.explore-panel-inner {
  flex: 1;
  overflow-y: auto;
  padding: 30px;
}

.explore-panel-inner::-webkit-scrollbar {
  width: 4px;
}

.explore-panel-inner::-webkit-scrollbar-track {
  background: transparent;
}

.explore-panel-inner::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.explore-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.explore-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.explore-header p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.explore-close {
  width: 32px;
  height: 32px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.explore-close:hover {
  background: rgba(255, 107, 107, 0.15);
  border-color: var(--accent-coral);
  color: var(--accent-coral);
}

/* Sightseeing Cards */
.sightseeing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sight-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  animation: fadeInUp 0.4s ease both;
}

.sight-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), var(--glow-blue);
}

.sight-card-image {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.06), rgba(139, 92, 246, 0.08));
  position: relative;
  overflow: hidden;
}

.sight-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8, 18, 40, 0.9) 100%);
}

.sight-card-body {
  padding: 16px 18px;
}

.sight-card-name {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.sight-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ============================================================
   LOADING OVERLAY
   ============================================================ */
.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(5, 12, 26, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.loading-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.loading-spinner {
  position: relative;
  width: 60px;
  height: 60px;
}

.spinner-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: spin 1.2s linear infinite;
}

.spinner-ring:nth-child(1) {
  border-top-color: var(--accent-blue);
  animation-duration: 1.1s;
}

.spinner-ring:nth-child(2) {
  inset: 8px;
  border-right-color: var(--accent-violet);
  animation-duration: 0.9s;
  animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
  inset: 16px;
  border-bottom-color: var(--accent-coral);
  animation-duration: 0.7s;
}

.loading-text {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
  animation: pulse 1.5s ease infinite;
}

/* ============================================================
   MARKER LABELS (rendered as HTML overlays)
   ============================================================ */
.marker-label {
  position: absolute;
  pointer-events: none;
  transform: translate(-50%, -160%);
  z-index: 10;
}

.marker-label-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  background: rgba(10, 10, 18, 0.82);
  border: 1px solid rgba(232, 51, 42, 0.55);
  border-radius: 8px;
  padding: 4px 10px;
  font-family: 'Outfit', sans-serif;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(232, 51, 42, 0.25);
  animation: markerPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

/* Tiny downward triangle callout pointing at the pin head */
.marker-label-inner::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(232, 51, 42, 0.55);
}

.marker-city {
  font-size: 10px;
  font-weight: 600;
  color: #e8f4fd;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.marker-price {
  font-size: 12px;
  font-weight: 800;
  color: #ff6b6b;
  line-height: 1.2;
}


/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

@keyframes markerPop {
  from {
    opacity: 0;
    transform: scale(0.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes markerPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

@keyframes ringExpand {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

/* ============================================================
   UTILITY
   ============================================================ */
.hidden {
  display: none !important;
}

/* ============================================================
   ORIGIN / DEPARTURE SELECTOR
   ============================================================ */
.origin-section {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

/* ── Filter panel travel date section ── */
.travel-date-section {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.filter-trip-toggle {
  display: flex;
  gap: 6px;
  margin: 8px 0 10px;
}

.filter-trip-btn {
  flex: 1;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-glass);
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-trip-btn:hover {
  border-color: var(--border-hover);
  color: var(--text-secondary);
}

.filter-trip-btn.active {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 3px 12px rgba(0, 212, 255, 0.3);
}

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

.filter-date-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.filter-date-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.filter-date-input {
  width: 100%;
  padding: 8px 10px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  outline: none;
  transition: var(--transition);
  color-scheme: dark;
  box-sizing: border-box;
}

.filter-date-input:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}


.origin-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 500;
}

.origin-label-icon {
  font-size: 14px;
}

.origin-input-wrap {
  position: relative;
}

.origin-input {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  outline: none;
  transition: var(--transition);
}

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

.origin-input:focus {
  border-color: var(--accent-blue);
  background: rgba(0, 212, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.origin-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: rgba(8, 18, 40, 0.97);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md);
  backdrop-filter: blur(24px);
  z-index: 200;
  overflow: hidden;
  display: none;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.2s ease both;
}

.origin-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(0, 212, 255, 0.06);
}

.origin-option:last-child {
  border-bottom: none;
}

.origin-option:hover {
  background: rgba(0, 212, 255, 0.08);
}

.option-flag {
  font-size: 18px;
  flex-shrink: 0;
}

.option-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.option-city {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.option-sub {
  font-size: 11px;
  color: var(--text-muted);
}

/* Selected origin chip */
.origin-selected {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: var(--radius-md);
  animation: fadeInUp 0.2s ease both;
}

.origin-selected>span:first-child {
  font-size: 18px;
}

#origin-name {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-blue);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.origin-clear {
  width: 22px;
  height: 22px;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.25);
  border-radius: 50%;
  color: var(--accent-coral);
  font-size: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.origin-clear:hover {
  background: rgba(255, 107, 107, 0.22);
  border-color: var(--accent-coral);
}

/* ============================================================
   BOOKING PANEL (inside flight modal)
   ============================================================ */
.booking-panel {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  animation: fadeInUp 0.3s ease both;
}

/* Trip type toggle */
.trip-type-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.trip-type-btn {
  flex: 1;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-glass);
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.trip-type-btn:hover {
  border-color: var(--border-hover);
  color: var(--text-secondary);
}

.trip-type-btn.active {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.3);
}


.booking-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.booking-panel-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.booking-panel-close {
  width: 24px;
  height: 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.booking-panel-close:hover {
  border-color: var(--accent-coral);
  color: var(--accent-coral);
}

.booking-date-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.booking-date-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.booking-date-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.booking-date-input {
  padding: 9px 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  outline: none;
  transition: var(--transition);
  color-scheme: dark;
}

.booking-date-input:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.search-flights-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  border: none;
  border-radius: var(--radius-md);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  margin-bottom: 14px;
}

.search-flights-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 212, 255, 0.4);
}

.search-flights-btn:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

/* Flight offer cards */
.flight-offers-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
  max-height: 280px;
  overflow-y: auto;
}

.flight-offers-list::-webkit-scrollbar {
  width: 3px;
}

.flight-offers-list::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

.offer-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  transition: var(--transition);
  animation: fadeInUp 0.3s ease both;
}

.offer-card:hover {
  border-color: var(--border-hover);
}

.offer-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.offer-airline {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

.offer-cabin {
  font-size: 10px;
  color: var(--text-muted);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 6px;
}

.offer-route {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.offer-time {
  text-align: center;
  min-width: 50px;
}

.offer-iata {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
}

.offer-clock {
  font-size: 11px;
  color: var(--text-muted);
}

.offer-middle {
  flex: 1;
  text-align: center;
}

.offer-dur {
  font-size: 10px;
  color: var(--text-muted);
}

.offer-line {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 2px 0;
}

.offer-line::before,
.offer-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.offer-plane {
  font-size: 14px;
}

.offer-stops {
  font-size: 10px;
  color: var(--accent-green);
}

.offer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.offer-price {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offer-book-btn {
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  border-radius: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  transition: var(--transition);
}

.offer-book-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.3);
}

.amadeus-badge {
  display: inline-block;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.amadeus-badge.live {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--accent-green);
}

.amadeus-info {
  padding: 12px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.amadeus-info code {
  background: rgba(255, 255, 255, 0.08);
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 11px;
  color: var(--accent-blue);
}

.amadeus-info a {
  color: var(--accent-blue);
}

.no-offers {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  padding: 16px 0;
}

/* Booking Links */
.booking-links {
  margin-top: 4px;
}

.booking-links-title {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

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

.booking-link-btn {
  flex: 1;
  padding: 9px 6px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.booking-link-btn:hover {
  transform: translateY(-2px);
}

.booking-link-btn.google {
  background: rgba(66, 133, 244, 0.08);
  color: #6ba3f5;
  border-color: rgba(66, 133, 244, 0.25);
}

.booking-link-btn.google:hover {
  background: rgba(66, 133, 244, 0.18);
  box-shadow: 0 4px 16px rgba(66, 133, 244, 0.25);
}

.booking-link-btn.skyscanner {
  background: rgba(0, 104, 183, 0.08);
  color: #48b4f7;
  border-color: rgba(0, 104, 183, 0.25);
}

.booking-link-btn.skyscanner:hover {
  background: rgba(0, 104, 183, 0.18);
  box-shadow: 0 4px 16px rgba(0, 104, 183, 0.2);
}

.booking-link-btn.kayak {
  background: rgba(255, 108, 55, 0.08);
  color: #ff8c6a;
  border-color: rgba(255, 108, 55, 0.25);
}

.booking-link-btn.kayak:hover {
  background: rgba(255, 108, 55, 0.18);
  box-shadow: 0 4px 16px rgba(255, 108, 55, 0.2);
}

/* ============================================================
   SCROLL HINT
   ============================================================ */
.scroll-hint {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(5, 10, 22, 0.7);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 11px;
  color: var(--text-muted);
  pointer-events: none;
  backdrop-filter: blur(10px);
  animation: scrollBounce 2s ease-in-out infinite;
  transition: opacity .4s;
}

.scroll-hint.hidden {
  opacity: 0;
}

.scroll-hint-arrow {
  font-size: 13px;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(5px);
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  z-index: 10;
  background: #060e20;
  border-top: 1px solid rgba(0, 212, 255, .1);
  padding: 40px 48px 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 220px 200px 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 32px;
}

/* Left col */
.footer-col-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-region-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(0, 212, 255, .05);
  border: 1px solid rgba(0, 212, 255, .2);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.footer-region-btn:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

.footer-chevron {
  margin-left: auto;
  font-size: 18px;
  opacity: .5;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
}

.footer-link:hover {
  color: var(--accent-blue);
}

/* Accordion col */
.footer-col-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-accordion {
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-accordion:first-child {
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-accordion-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4px;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.footer-accordion-label::after {
  content: '›';
  font-size: 18px;
  opacity: .5;
  transition: transform .2s;
}

.footer-accordion[open] .footer-accordion-label::after {
  transform: rotate(90deg);
}

.footer-accordion-label::-webkit-details-marker {
  display: none;
}

.footer-accordion-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 4px 14px;
}

.footer-copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 24px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.8;
}

/* ============================================================
   AUTH MODALS (Login + Region)
   ============================================================ */
.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

.auth-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.auth-modal {
  background: rgba(8, 18, 42, .96);
  border: 1px solid rgba(0, 212, 255, .15);
  border-radius: 20px;
  padding: 36px 40px;
  width: 100%;
  max-width: 420px;
  position: relative;
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
  animation: modalSlideIn .3s cubic-bezier(.4, 0, .2, 1) both;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(.94) translateY(16px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.auth-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-glass);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.auth-close:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
}

.auth-logo {
  font-size: 32px;
  text-align: center;
  margin-bottom: 12px;
}

.auth-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.auth-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.5;
}

.auth-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.auth-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-glass);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.auth-social-btn:hover {
  border-color: var(--border-hover);
  background: var(--bg-glass-hover);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 12px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auth-field label {
  font-size: 12px;
  color: var(--text-muted);
}

.auth-input {
  padding: 11px 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.auth-input:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, .12);
}

.auth-submit {
  width: 100%;
  padding: 13px;
  border-radius: var(--radius-sm);
  border: none;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .3px;
}

.auth-submit:hover {
  opacity: .88;
  transform: translateY(-1px);
}

.auth-switch {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

.auth-switch-link {
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 600;
  margin-left: 4px;
}

.auth-switch-link:hover {
  text-decoration: underline;
}

/* Region modal specifics */
.region-modal {
  max-width: 460px;
}

.region-selectors {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.region-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.region-field label {
  font-size: 12px;
  color: var(--text-muted);
}

.region-select {
  padding: 11px 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
  color-scheme: dark;
}

.region-select:focus {
  border-color: var(--accent-blue);
}

/* RTL support for Arabic */
[dir="rtl"] {
  font-family: 'Inter', sans-serif;
}

/* --- Real-price marker refinements --- */
.marker-label-inner.real-price {
  border-color: #00d4ff;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.price-badge {
  background: #00d4ff;
  color: #000;
  font-size: 8px;
  font-weight: 900;
  padding: 1px 4px;
  border-radius: 4px;
  margin-left: 5px;
  vertical-align: middle;
  letter-spacing: 0.5px;
}