:root {
  /* Foundation - Navy depth system */
  --navy: #0a2540;
  --navy-surface: #102f4f;      /* Card backgrounds - 6% lighter */
  --navy-elevated: #163a5c;     /* Winner card - 10% lighter */
  --navy-overlay: rgba(255,255,255,0.04); /* Subtle lift */
  --navy-inset: rgba(0,0,0,0.08);         /* Depth */

  /* Text hierarchy */
  --white: #f5f7fa;             /* Primary text */
  --white-bright: #ffffff;      /* Headlines only */
  --muted: #8a9bb5;             /* Secondary text */
  --muted-light: rgba(138,155,181,0.75); /* Metadata */

  /* Gold - Authority marker only */
  --accent: #c8a96e;
  --accent-dark: #b8955b;       /* Hover state */
  --accent-light: rgba(200,169,110,0.15);
  --accent-glow: rgba(200,169,110,0.25);

  /* Functional (no bright colors) */
  --border: rgba(245,247,250,0.08);
  --card-border: rgba(245,247,250,0.06);

  /* Platform colors (only for badges) */
  --google-blue: #4285F4;
  --ta-green: #00AF87;
  --booking-blue: #4A90D9;

  /* Semantic color tokens */
  --green: #4ADE80;
  --green-dim: rgba(74,222,128,0.85);
  --coral: #F87171;
  --coral-dim: rgba(248,113,113,0.85);
  --sky: #7DD3FC;
  --amber: #FBBF24;
}

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

body {
  font-family: 'Figtree', sans-serif;
  background: var(--navy);
  color: var(--white);
  /* 100dvh = dynamic viewport height — accounts for iOS browser chrome */
  /* fallback to 100vh for older browsers                                */
  min-height: 100vh;
  min-height: 100dvh;
}

/* ── Header ── */
.header {
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(10,37,64,0.98);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.logo { 
  display: flex; 
  align-items: center;
  gap: 0px;
}

.logo-img {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.logo-fallback {
  display: flex;
  align-items: baseline;
  gap: 0px;
}

/* Keep the text logo styles for fallback */
.logo-trip {
  font-family: 'Cormorant', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 36px;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-sift {
  font-family: 'Figtree', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  font-size: 34px;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
  margin-left: 1px;
}

.logo-dot {
  font-family: 'Figtree', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  font-size: 34px;
  color: var(--accent);
  line-height: 1;
}

.header-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Hero ── */
.hero {
  padding: 80px 40px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(200,169,110,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero h1 {
  font-family: 'Cormorant', serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero h1 em { font-style: italic; color: var(--accent); }

.hero p {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
  font-weight: 300;
}

/* ── Modern Trust Indicators ── */
/* ── Trust Stat Bar ── */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(200,169,110,0.06);
  border: 1px solid rgba(200,169,110,0.18);
  border-radius: 14px;
  padding: 18px 32px;
  max-width: 620px;
  margin: 0 auto;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.trust-stat-num {
  font-family: 'Cormorant', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.trust-stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 400;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(200,169,110,0.2);
  margin: 0 24px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .trust-bar {
    padding: 16px 20px;
    gap: 0;
  }
  .trust-divider { margin: 0 14px; }
  .trust-stat-num { font-size: 16px; }
  .trust-stat-label { font-size: 10px; }
}

/* ── Container ── */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* ── Mode Toggle ── */
.mode-toggle {
  display: flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 5px;
  margin-bottom: 24px;
  gap: 5px;
}

.mode-btn {
  flex: 1;
  padding: 13px 16px;
  border: none;
  background: transparent;
  border-radius: 10px;
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.22s;
}

.mode-btn.active { background: var(--white); color: var(--navy); }

/* ── Social Proof Stats ── */
.social-proof {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 24px;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Cormorant', serif;
  line-height: 1;
  margin-bottom: 6px;
}

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

/* ── Popular Destinations ── */
.popular-destinations {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.popular-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-right: 4px;
}

.popular-chip {
  background: transparent;
  border: 1px solid rgba(245,247,250,0.12);
  color: var(--muted);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Figtree', sans-serif;
  letter-spacing: 0.01em;
}

.popular-chip:hover {
  background: rgba(200,169,110,0.08);
  border-color: rgba(200,169,110,0.35);
  color: var(--accent);
  transform: none;
}

/* ── Example Searches - Premium Categories (7 total) ── */
.example-searches-clean {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.example-header {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.example-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.category-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(245,247,250,0.08);
  color: var(--white);
  padding: 14px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Figtree', sans-serif;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.category-btn:hover {
  background: rgba(200,169,110,0.07);
  border-color: rgba(200,169,110,0.25);
}

.category-btn:active {
  transform: scale(0.98);
}

.category-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.category-dest {
  font-size: 12px;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.75;
  line-height: 1.2;
  letter-spacing: 0.01em;
}


/* loading steps defined below in enhancements section */

/* ── Cards ── */
.card {
  background: var(--navy-surface);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 20px;
}

.card-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 500;
}

/* ── Form ── */
.field { margin-bottom: 18px; position: relative; }

.field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.label-optional {
  font-size: 12px;
  opacity: 0.5;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 300;
}

.field-note {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.field input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  color: var(--white);
  background: rgba(255,255,255,0.05);
  outline: none;
  transition: all 0.2s;
}

.field input:focus {
  border-color: rgba(200,169,110,0.5);
  background: rgba(200,169,110,0.06);
}

.field input::placeholder { color: rgba(138,155,181,0.4); }

/* ── Autocomplete Dropdown ── */
.autocomplete-suggestions,
.resort-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--navy-surface);  /* Fixed: was using undefined --navy-mid */
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 10px;
  margin-top: 4px;
  max-height: 280px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
}

.autocomplete-item {
  padding: 12px 16px;
  cursor: pointer;
  font-size: 14px;
  color: var(--white);
  border-bottom: 1px solid rgba(245,247,250,0.05);
  transition: all 0.15s;
}

.autocomplete-item:last-child {
  border-bottom: none;
}

.autocomplete-item:hover {
  background: rgba(200,169,110,0.12);
  color: var(--accent);
}

.field input::placeholder { color: rgba(138,155,181,0.4); }

/* ── Resort Rows ── */
.resort-inputs { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }

.resort-row { display: flex; align-items: center; gap: 10px; }

.resort-num {
  width: 28px; height: 28px;
  background: rgba(200,169,110,0.15);
  border: 1px solid rgba(200,169,110,0.3);
  color: var(--accent);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.resort-row input {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  color: var(--white);
  background: rgba(255,255,255,0.04);
  outline: none;
  transition: all 0.2s;
}

.resort-row input:focus {
  border-color: rgba(200,169,110,0.4);
  background: rgba(200,169,110,0.05);
}

.resort-row input::placeholder { color: rgba(138,155,181,0.4); }

.remove-btn {
  width: 32px; height: 32px;
  border: none;
  background: rgba(248,113,113,0.1);
  color: var(--red);
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
  line-height: 1;
}

.remove-btn:hover { background: rgba(248,113,113,0.2); }

.add-resort-btn {
  width: 100%;
  padding: 11px;
  border: 1px dashed rgba(255,255,255,0.12);
  background: transparent;
  border-radius: 10px;
  font-family: 'Figtree', sans-serif;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.add-resort-btn:hover { border-color: rgba(200,169,110,0.4); color: var(--accent); }

/* ── Preference Chips ── */
.pref-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }

.chip {
  padding: 7px 16px;
  border: 1px solid rgba(245,247,250,0.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.18s;
  background: transparent;
  font-family: 'Figtree', sans-serif;
  letter-spacing: 0.02em;
  user-select: none;
}

.chip:hover {
  border-color: rgba(200,169,110,0.3);
  color: var(--white);
}

.chip.active {
  background: rgba(200,169,110,0.1);
  border-color: rgba(200,169,110,0.45);
  color: var(--accent);
  font-weight: 500;
}

/* ── CTA ── */
.cta-btn {
  width: 100%;
  padding: 17px;
  background: var(--white);
  color: var(--navy);
  border: none;
  border-radius: 12px;
  font-family: 'Cormorant', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s;
  margin-top: 8px;
}

.cta-btn:hover:not(:disabled) {
  background: var(--accent);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(200,169,110,0.25);
}

.cta-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── Loading ── */
/* ── Loading Screen ── */
.loading {
  padding: 60px 24px 80px;
  text-align: center;
}

.loading-inner {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bar-loader {
  width: 200px;
  margin-bottom: 32px;
}

.bar-loader-track {
  width: 100%;
  height: 2px;
  background: rgba(200,169,110,0.12);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.bar-loader-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  border-radius: 2px;
  animation: bar-sweep 1.8s ease-in-out infinite;
}

@keyframes bar-sweep {
  0%   { left: -50%; width: 40%; }
  50%  { left: 60%; width: 50%; }
  100% { left: 110%; width: 40%; }
}

.loading-title {
  font-family: 'Cormorant', serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.loading-sub {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 0;
  letter-spacing: 0.01em;
  min-height: 20px;
  transition: opacity 0.4s;
}

/* ── Results Header Actions (Top Buttons) ── */
.results-header-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: rgba(200,169,110,0.04);
  border: 1px solid rgba(200,169,110,0.1);
  border-radius: 12px;
  /* Removed position:sticky — stacking two sticky elements (header + this) */
  /* causes scroll momentum issues on iOS. Static works fine here.          */
  position: static;
  backdrop-filter: blur(10px);
}

.new-search-btn-top, .share-results-btn-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid;
}

.new-search-btn-top {
  background: var(--navy-surface);
  border-color: var(--border);
  color: var(--white);
}

.new-search-btn-top:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: translateX(-2px);
}

.share-results-btn-top svg {
  color: var(--accent);
}

.share-results-btn-top {
  background: rgba(200,169,110,0.08);
  border-color: rgba(200,169,110,0.25);
  color: var(--accent);
}

.share-results-btn-top:hover {
  background: rgba(200,169,110,0.15);
  border-color: rgba(200,169,110,0.4);
  transform: translateY(-1px);
}

/* ── Winner Banner ── */
.winner-banner {
  background: linear-gradient(135deg, rgba(200,169,110,0.12) 0%, rgba(200,169,110,0.04) 100%);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

/* ── Partial Data Warning ── */
.partial-data-warning {
  background: linear-gradient(135deg, rgba(255,152,0,0.12) 0%, rgba(255,152,0,0.04) 100%);
  border: 1px solid rgba(255,152,0,0.3);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.partial-data-icon {
  font-size: 32px;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.partial-data-content {
  flex: 1;
}

.partial-data-title {
  font-family: 'Cormorant', serif;
  font-size: 20px;
  font-weight: 600;
  color: #FF9800;
  margin-bottom: 8px;
}

.partial-data-message {
  font-size: 14px;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 16px;
}

.partial-data-retry {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,152,0,0.15);
  border: 1px solid rgba(255,152,0,0.3);
  border-radius: 8px;
  color: #FF9800;
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.partial-data-retry:hover {
  background: rgba(255,152,0,0.25);
  border-color: rgba(255,152,0,0.5);
  transform: translateY(-1px);
}

.partial-data-retry svg {
  flex-shrink: 0;
}

/* ── Simplified Layout Styles ── */
.winner-tag {
  display: inline-block;
  background: rgba(200,169,110,0.15);
  border: 1px solid rgba(200,169,110,0.3);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 8px;
}

.winner-tag.top-pick {
  background: linear-gradient(135deg, rgba(200,169,110,0.2) 0%, rgba(200,169,110,0.1) 100%);
  border-color: rgba(200,169,110,0.4);
  animation: subtle-pulse 3s ease-in-out infinite;
}

@keyframes subtle-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

/* ── Bottom Actions ── */
.results-actions-bottom {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.reset-btn-centered {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--border);
  padding: 12px 32px;
  border-radius: 10px;
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.reset-btn-centered:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
  transform: translateX(-2px);
}

.reset-btn-centered svg {
  flex-shrink: 0;
}

.price-range-inline {
  font-size: 13px;
  color: var(--accent);
  margin-top: 4px;
  font-weight: 500;
}

.ratings-row-simple {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
}

.score-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.score-num {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent);
}

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

.score-label.google { color: #4285F4; }
.score-label.ta     { color: #00AF87; }

.confidence-badge-simple {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  margin-left: auto;
}

.confidence-badge-simple.strong-consensus {
  background: rgba(74,222,128,0.1);
  color: #4ADE80;
  border: 1px solid rgba(74,222,128,0.2);
}

.confidence-badge-simple.mixed-feedback {
  background: rgba(251,146,60,0.1);
  color: #FB923C;
  border: 1px solid rgba(251,146,60,0.2);
}

.confidence-badge-simple.limited-data {
  background: rgba(148,163,184,0.1);
  color: #94A3B8;
  border: 1px solid rgba(148,163,184,0.2);
}

.collapse-toggle-minimal {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  padding: 12px 0;
  cursor: pointer;
  color: var(--muted);
  font-size: 13px;
  width: 100%;
  transition: color 0.2s;
}

.collapse-toggle-minimal:hover {
  color: var(--white);
}

.toggle-label-minimal {
  font-weight: 500;
}

.match-explanation {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0;
  padding: 12px 0;
}

.pros-cons-simple {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pro-item, .con-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pro-icon {
  color: #4ADE80;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 2px;
}

.con-icon {
  color: #F87171;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 2px;
}

.pro-text, .con-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(245,247,250,0.75);
}

.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin: 12px 0;
}

.highlights-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.highlight-tag {
  background: rgba(200,169,110,0.08);
  border: 1px solid rgba(200,169,110,0.2);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

.booking-bar {
  padding: 16px 0 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

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

.booking-link-affiliate {
  flex: 1;
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(200,169,110,0.15) 0%, rgba(200,169,110,0.08) 100%);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 10px;
  color: var(--accent);
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
}

.booking-link-affiliate:hover {
  background: linear-gradient(135deg, rgba(200,169,110,0.25) 0%, rgba(200,169,110,0.15) 100%);
  border-color: rgba(200,169,110,0.5);
  transform: translateY(-1px);
}

.booking-link-affiliate svg {
  flex-shrink: 0;
  color: var(--accent);
}

.booking-link-primary {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, rgba(200,169,110,0.15) 0%, rgba(200,169,110,0.08) 100%);
  border: 1px solid rgba(200,169,110,0.3);
  color: var(--accent);
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.booking-link-primary:hover {
  background: linear-gradient(135deg, rgba(200,169,110,0.25) 0%, rgba(200,169,110,0.15) 100%);
  border-color: rgba(200,169,110,0.5);
  transform: translateY(-1px);
}

.winner-banner {
  background: linear-gradient(135deg, rgba(200,169,110,0.12) 0%, rgba(200,169,110,0.04) 100%);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.winner-content {
  flex: 1;
  min-width: 0;
}

.share-btn-banner {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(200,169,110,0.15);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 8px;
  color: var(--accent);
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.share-btn-banner:hover {
  background: rgba(200,169,110,0.25);
  border-color: rgba(200,169,110,0.5);
  transform: translateY(-1px);
}

.share-btn-banner svg {
  flex-shrink: 0;
  color: var(--accent);
}

.winner-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(ellipse, rgba(200,169,110,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.winner-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 500;
}

.winner-name {
  font-family: 'Cormorant', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
}

.winner-reason {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  font-weight: 300;
}

/* ── Resort Cards Grid ── */
.resorts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.resort-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 26px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}

.resort-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.resort-card.is-winner {
  border: 2px solid rgba(200,169,110,0.65);
  background: rgba(200,169,110,0.05);
  box-shadow: 0 0 0 1px rgba(200,169,110,0.15), 0 8px 32px rgba(200,169,110,0.12);
}

.winner-badge {
  position: absolute;
  top: -11px; left: 20px;
  background: var(--accent);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.card-resort-name {
  font-family: 'Cormorant', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white-bright);
  margin-bottom: 3px;
  line-height: 1.2;
}

.card-location-full { 
  font-size: 13px; 
  color: var(--muted);
  margin-bottom: 14px; 
  line-height: 1.4;
}

.card-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }

.pill {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
}

/* ── Source Badges ── */
.sources-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 6px; }

.source-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
}

.source-badge.google {
  background: rgba(66,133,244,0.12);
  border: 1px solid rgba(66,133,244,0.3);
  color: #7AB3F5;
}

.source-badge.tripadvisor {
  background: rgba(0,175,135,0.10);
  border: 1px solid rgba(0,175,135,0.3);
  color: #4ECBA8;
}

.source-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

.source-badge.google .dot { background: var(--google-blue); }
.source-badge.tripadvisor .dot { background: var(--ta-green); }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.review-meta {
  font-size: 11px;
  color: rgba(138,155,181,0.6);
  margin-top: 6px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.ta-ranking {
  font-size: 11px;
  color: rgba(0,175,135,0.8);
  margin-top: 3px;
}

/* ── Section Labels ── */
.section-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(138,155,181,0.6);
  margin-bottom: 10px;
  font-weight: 500;
}

/* ── Ratings ── */
.ratings-section { margin-bottom: 20px; }

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.r-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.r-google { background: var(--google-blue); }
.r-tripadvisor { background: var(--ta-green); }
.r-booking { background: var(--booking-blue); }
.r-overall { background: var(--accent); }

.r-label { font-size: 12px; color: var(--muted); flex: 1; }

.r-live {
  font-size: 10px;
  margin-left: 4px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.r-bar-bg {
  flex: 2;
  height: 3px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
}

.r-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(200,169,110,0.6), var(--accent));
  transition: width 1.2s ease;
}

.r-score {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  width: 32px;
  text-align: right;
}

/* ── Guest Sentiment ── */
.sentiment-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 18px;
}

.sentiment-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.sentiment-mood { font-size: 13px; font-weight: 500; color: var(--white); }
.recommend-pct { font-size: 12px; color: var(--green); font-weight: 500; }

.sentiment-row { display: flex; gap: 8px; margin-bottom: 8px; }
.sentiment-row:last-child { margin-bottom: 0; }

.s-icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.s-text { font-size: 13px; color: rgba(138,155,181,0.9); line-height: 1.6; }

/* ── Review Confidence Badge ── */
.confidence-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.confidence-strong-consensus {
  background: var(--accent-light);
  border: 1px solid rgba(200,169,110,0.3);
  color: var(--accent);
}

.confidence-mixed-feedback {
  background: var(--navy-inset);
  border: 1px solid rgba(138,155,181,0.3);
  color: var(--muted);
}

.confidence-limited-data {
  background: var(--navy-inset);
  border: 1px solid rgba(138,155,181,0.2);
  color: var(--muted-light);
}

.disagreement-note {
  font-size: 11px;
  color: #FBC02D;
  margin-top: 6px;
  padding: 6px 10px;
  background: rgba(251,191,36,0.08);
  border-left: 2px solid rgba(251,191,36,0.4);
  border-radius: 4px;
}

/* ── Preference Match Indicator ── */
.preference-match {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  border-left: 3px solid;
}

.preference-strong-match {
  background: var(--accent-light);
  border-left-color: var(--accent);
}

.preference-partial-match {
  background: var(--navy-overlay);
  border-left-color: var(--muted);
}

.preference-weak-match {
  background: var(--navy-inset);
  border-left-color: rgba(138,155,181,0.3);
}

.match-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.preference-strong-match .match-label { color: var(--accent); }
.preference-partial-match .match-label { color: var(--muted); }
.preference-weak-match .match-label { color: var(--muted-light); }

.match-analysis {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(245,247,250,0.85);
  font-weight: 400;
}

/* ── Key Differences ── */
.key-differences {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(245,247,250,0.85);
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  margin-bottom: 16px;
  font-weight: 300;
}

/* ── Booking Section ── */
.booking-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(245,247,250,0.06);
}

.booking-links {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.booking-link {
  flex: 1;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(200,169,110,0.12);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.booking-link:hover {
  background: rgba(200,169,110,0.2);
  border-color: rgba(200,169,110,0.5);
  transform: translateY(-1px);
}

.booking-icon {
  font-size: 14px;
}

.booking-note {
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  font-style: italic;
}

/* ── Review Summary ── */
.review-summary {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(138,155,181,0.85);
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-weight: 300;
}

/* ── Highlights ── */
.highlights { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }

.highlight {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  color: rgba(255,255,255,0.55);
}

/* ── Results Actions ── */
.results-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.reset-btn, .share-results-btn {
  background: transparent;
  border: 1px solid var(--border);
  padding: 12px 32px;
  border-radius: 10px;
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.share-results-btn {
  background: rgba(200,169,110,0.08);
  border-color: rgba(200,169,110,0.25);
  color: var(--accent);
}

.reset-btn:hover { 
  border-color: rgba(255,255,255,0.2); 
  color: var(--white); 
}

.share-results-btn:hover {
  background: rgba(200,169,110,0.15);
  border-color: rgba(200,169,110,0.4);
  transform: translateY(-1px);
}

.share-results-btn svg {
  color: var(--accent);
}

/* ── Error ── */
.error-box {
  background: rgba(248,113,113,0.08);
  border: 1px solid rgba(248,113,113,0.2);
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 13px;
  color: var(--red);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ── Custom Modal ── */
.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--navy-mid);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  padding: 28px 28px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(245,247,250,0.08);
}

.modal-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.modal-header h3 {
  font-family: 'Cormorant', serif;
  font-size: 26px;
  font-style: italic;
  color: var(--white);
  margin: 0;
  font-weight: 400;
}

.modal-body {
  padding: 24px 28px;
}

.modal-body p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.suggestion-examples {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.example-row {
  font-size: 13px;
  padding: 10px 14px;
  background: rgba(200,169,110,0.08);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  color: rgba(245,247,250,0.9);
  line-height: 1.5;
}

.example-row strong {
  color: var(--accent);
  font-weight: 600;
}

.modal-close-btn {
  width: calc(100% - 56px);
  margin: 0 28px 28px;
  padding: 14px;
  background: var(--accent);
  color: var(--navy);
  border: none;
  border-radius: 10px;
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.modal-close-btn:hover {
  background: var(--white);
  transform: translateY(-1px);
}

/* ── Footer ── */
.footer {
  text-align: center;
  padding: 28px;
  font-size: 12px;
  color: rgba(138,155,181,0.45);
  letter-spacing: 0.06em;
  border-top: 1px solid var(--border);
}

/* ── Resort Header with Action Buttons ── */
.resort-header {
  margin-bottom: 16px;
}

.resort-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}

.resort-title-row > div:first-child {
  flex: 1;
  min-width: 0; /* Allows text-overflow to work properly */
}

.resort-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.action-link-compact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(200,169,110,0.08);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 8px;
  color: var(--accent);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s ease;
  cursor: pointer;
}

.action-link-compact.share-btn {
  background: transparent;
  border-color: rgba(200,169,110,0.2);
}

.action-link-compact:hover {
  background: rgba(200,169,110,0.15);
  border-color: rgba(200,169,110,0.4);
  transform: translateY(-1px);
}

.action-link-compact svg {
  color: var(--accent);
  opacity: 0.8;
  flex-shrink: 0;
}

/* ── Share Modal ── */
.share-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,37,64,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.share-modal.show {
  opacity: 1;
}

/* ── Destination Warning Modal ── */
.destination-warning-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,37,64,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.destination-warning-modal.show {
  opacity: 1;
}

.destination-warning-content {
  background: var(--navy-surface);
  border: 1px solid rgba(255,193,7,0.3);
  border-radius: 16px;
  padding: 36px;
  max-width: 520px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  text-align: center;
}

.warning-icon {
  font-size: 48px;
  margin-bottom: 16px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.warning-title {
  font-family: 'Cormorant', serif;
  font-size: 26px;
  font-weight: 600;
  color: #FFC107;
  margin: 0 0 16px 0;
}

.warning-message {
  font-size: 16px;
  color: var(--white);
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.warning-message strong {
  color: var(--accent);
  font-weight: 600;
}

.warning-resorts {
  background: rgba(255,193,7,0.08);
  border: 1px solid rgba(255,193,7,0.2);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  text-align: left;
}

.warning-resort-item {
  font-size: 15px;
  color: var(--white);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.warning-resort-item:last-child {
  border-bottom: none;
}

.warning-tip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
}

.warning-tip svg {
  color: #FFC107;
  flex-shrink: 0;
}

.warning-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.warning-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid;
}

.warning-cancel {
  background: transparent;
  border-color: var(--border);
  color: var(--white);
}

.warning-cancel:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.warning-continue {
  background: rgba(255,193,7,0.15);
  border-color: rgba(255,193,7,0.4);
  color: #FFC107;
}

.warning-continue:hover {
  background: rgba(255,193,7,0.25);
  border-color: rgba(255,193,7,0.6);
  transform: translateY(-1px);
}

.warning-btn svg {
  flex-shrink: 0;
}

.share-modal-content {
  background: var(--navy-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  max-width: 480px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.share-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 28px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.share-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.share-title {
  font-family: 'Cormorant', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 24px 0;
}

.share-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.share-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.share-option:hover {
  background: rgba(200,169,110,0.1);
  border-color: rgba(200,169,110,0.3);
  transform: translateY(-2px);
}

.share-option svg {
  color: var(--accent);
}

.share-option span {
  font-size: 13px;
  font-weight: 500;
}

.share-option.email:hover { border-color: #EA4335; }
.share-option.email:hover svg { color: #EA4335; }

.share-option.twitter:hover { border-color: #1DA1F2; }
.share-option.twitter:hover svg { color: #1DA1F2; }

.share-option.facebook:hover { border-color: #1877F2; }
.share-option.facebook:hover svg { color: #1877F2; }

.share-option.linkedin:hover { border-color: #0A66C2; }
.share-option.linkedin:hover svg { color: #0A66C2; }

.share-option.copy:hover { border-color: var(--accent); }

.price-range {
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  margin-top: 6px;
}

/* ── Key Ratings (Always Visible) ── */
.key-ratings {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding: 16px;
  background: rgba(200,169,110,0.06);
  border: 1px solid rgba(200,169,110,0.15);
  border-radius: 10px;
}

.overall-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 16px;
  background: var(--navy-elevated);
  border-radius: 8px;
  min-width: 80px;
}

.rating-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.rating-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  text-align: center;
}

.confidence-compact {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 8px;
  font-size: 13px;
}

.confidence-icon {
  font-size: 14px;
}

.confidence-text {
  color: #4ade80;
  font-weight: 500;
}

.match-compact {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.25);
  color: var(--accent);
}

.match-compact.strong-match {
  background: rgba(74,222,128,0.1);
  border-color: rgba(74,222,128,0.25);
  color: #4ade80;
}

.match-compact.partial-match {
  background: rgba(251,191,36,0.1);
  border-color: rgba(251,191,36,0.25);
  color: #fbbf24;
}

/* ── Quick Summary ── */
.quick-summary {
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--white);
}

.quick-summary strong {
  color: var(--accent);
}

/* ── Platform Ratings Mini ── */
.platform-ratings-mini {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.rating-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
}

.platform-name {
  color: var(--muted);
}

.rating-score {
  color: var(--accent);
  font-weight: 600;
}

/* ── Collapsible Sections ── */
.collapsible-section {
  margin-bottom: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  overflow: hidden;
}

.collapse-toggle {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  transition: all 0.2s;
}

.collapse-toggle:hover {
  background: rgba(200,169,110,0.06);
}

.toggle-icon {
  font-size: 10px;
  color: var(--accent);
  transition: transform 0.2s;
}

.toggle-label {
  flex: 1;
}

.collapse-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.collapse-content.expanded {
  max-height: 2000px;
  padding: 0 16px 16px 16px;
}

/* ── Review Summary Text ── */
.review-summary-text {
  margin-bottom: 16px;
  padding: 12px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--white);
}

/* ── Pattern Section (In Collapsible) ── */
.pattern-section {
  margin-top: 16px;
}

.pattern-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.pattern-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.pattern-item.positive {
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.15);
}

.pattern-item.negative {
  background: rgba(248,113,113,0.08);
  border: 1px solid rgba(248,113,113,0.15);
}

.pattern-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.pattern-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--white);
}

/* ── Sources Info (In Collapsible) ── */
.sources-info {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.review-count {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

/* ── Highlights Grid (In Collapsible) ── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
}

.highlight-item {
  font-size: 13px;
  color: var(--white);
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  line-height: 1.4;
}

/* ── Booking Section (Compact) ── */
.booking-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.booking-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

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

.booking-link.compact {
  flex: 1;
  min-width: 100px;
  padding: 10px 12px;
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 8px;
  color: var(--accent);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.booking-link.compact:hover {
  background: rgba(200,169,110,0.15);
  border-color: rgba(200,169,110,0.4);
  transform: translateY(-1px);
}

.booking-icon {
  font-size: 14px;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  /* === TOUCH TARGETS === */
  /* All interactive elements must be at least 44x44px for easy tapping */
  button,
  .chip,
  .popular-chip,
  .example-btn,
  .mode-btn,
  .cta-btn,
  .booking-link-primary,
  input[type="text"] {
    min-height: 44px;
    padding: 12px 16px;
    font-size: 15px;
  }

  /* Preference chips - bigger on mobile */
  .chip {
    padding: 10px 16px;
    font-size: 14px;
  }

  /* === TYPOGRAPHY === */
  /* Readable without zooming */
  body {
    font-size: 15px;
    line-height: 1.6;
  }

  .card-resort-name {
    font-size: 22px;
    line-height: 1.3;
  }

  .card-location-full {
    font-size: 14px;
  }

  .card-price {
    font-size: 15px;
  }

  /* === SPACING === */
  /* More breathing room */
  .header { padding: 18px 20px; }
  .hero { padding: 52px 20px 56px; }
  .container { padding: 0 20px 80px; }
  .card { padding: 28px 20px; }

  /* Field spacing */
  .field {
    margin-bottom: 24px;
  }

  /* === LAYOUT === */
  .resorts-grid { 
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* === BOOKING BUTTON === */
  /* Removed position:sticky — sticky inside a card creates an implicit */
  /* scroll container on iOS WebKit causing the double-scroll bug.      */
  .booking-bar {
    position: static;
    background: transparent;
    padding: 16px 0 0 0;
    margin: 0;
    box-shadow: none;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .booking-link-primary {
    width: 100%;
    font-size: 15px;
    padding: 14px 20px;
    justify-content: center;
  }

  /* === WINNER BANNER === */
  .winner-banner { 
    padding: 28px 24px; 
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .winner-content {
    text-align: center;
  }

  .winner-title {
    font-size: 18px;
  }

  .winner-subtitle {
    font-size: 14px;
  }

  /* === SOCIAL PROOF === */
  .social-proof {
    gap: 24px;
    padding: 20px 16px;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 45%;
    min-width: 120px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 10px;
  }

  /* === POPULAR DESTINATIONS === */
  .popular-chip {
    font-size: 13px;
    padding: 8px 12px;
  }

  /* === EXAMPLE SEARCHES === */
  .example-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .example-btn {
    padding: 12px;
  }

  .example-icon {
    font-size: 20px;
  }

  .example-text strong {
    font-size: 13px;
  }

  .example-text small {
    font-size: 10px;
  }

  /* === INPUTS === */
  input[type="text"],
  .resort-input {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 12px 14px;
  }

  /* === MODE TOGGLE === */
  .mode-toggle {
    gap: 6px;
    padding: 6px;
  }

  .mode-btn {
    font-size: 13px;
    padding: 12px 14px;
  }

  /* === LOADING === */
  .loading {
    padding: 48px 20px 60px;
  }
  .step {
    padding: 10px 0;
  }

  /* === RESORT CARDS === */
  .resort-card {
    padding: 24px 20px;
  }

  /* Top pick badge */
  .top-pick-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  /* Ratings row */
  .ratings-row-simple {
    gap: 10px;
  }

  .score-simple {
    flex: 1;
    min-width: 70px;
  }

  .score-label {
    font-size: 11px;
  }

  .score-num {
    font-size: 20px;
  }

  /* Confidence badge */
  .confidence-badge-simple {
    font-size: 11px;
    padding: 6px 10px;
  }

  /* Pros/cons */
  .pros-cons-simple {
    gap: 8px;
    margin: 16px 0;
  }

  .pro-item,
  .con-item {
    font-size: 13px;
    padding-left: 20px;
  }

  /* Collapsible sections */
  .collapsible-header {
    font-size: 14px;
    padding: 12px 0;
  }

  .collapsible-content {
    font-size: 14px;
    line-height: 1.6;
  }

  /* === MODALS === */
  .share-modal-content,
  .modal-content-custom {
    width: 90%;
    max-width: 400px;
    padding: 28px 24px;
  }

  .share-title {
    font-size: 20px;
  }

  .share-option {
    padding: 14px;
    font-size: 14px;
  }

  /* === FORM ELEMENTS === */
  .add-resort-btn {
    font-size: 14px;
    padding: 10px 16px;
  }

  .resort-row {
    gap: 10px;
  }

  .resort-num {
    min-width: 32px;
    height: 32px;
    font-size: 14px;
  }

  /* === CTA BUTTON === */
  .cta-btn {
    font-size: 16px;
    padding: 16px 24px;
    width: 100%;
  }

  /* === RESULTS ACTIONS === */
  .results-actions-bottom {
    padding: 20px 0;
  }

  .reset-btn-centered {
    font-size: 14px;
    padding: 12px 24px;
  }

  /* === PREVENT HORIZONTAL SCROLL === */
  /* overflow-x: hidden on body creates a scroll container on iOS      */
  /* causing the double-scroll bug. Use clip instead — same visual     */
  /* effect but does NOT create a new scroll context.                  */
  body {
    overflow-x: clip;
  }

  .container,
  .card,
  .resort-card {
    max-width: 100%;
  }

  /* === TAP HIGHLIGHT === */
  /* Remove default tap highlight and add custom */
  * {
    -webkit-tap-highlight-color: rgba(200,169,110,0.2);
  }

  button:active,
  .chip:active,
  a:active {
    transform: scale(0.98);
  }

  /* === HEADER === */

  /* Social proof on mobile */
  .social-proof {
    gap: 24px;
    padding: 20px 16px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 10px;
  }

  /* Popular destinations on mobile */
  .popular-chip {
    font-size: 11px;
    padding: 5px 10px;
  }

  /* Example searches on mobile */
  .trip-type-selector {
    gap: 6px;
  }


  /* Example categories on mobile */
  .example-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .category-btn {
    padding: 11px 14px;
    font-size: 12px;
  }

  .example-card {
    padding: 12px 10px;
  }

  .example-emoji {
    font-size: 20px;
  }

  .example-title {
    font-size: 11px;
  }

  .example-dest {
    font-size: 10px;
  }

  .trip-type-btn {
    flex: 1;
    min-width: 0;
    padding: 10px 8px;
    font-size: 11px;
    text-align: center;
  }

  .example-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .example-btn {
    font-size: 13px;
    padding: 12px 12px;
  }

  .example-icon {
    font-size: 20px;
  }

  .example-text strong {
    font-size: 13px;
  }

  .example-text small {
    font-size: 10px;
  }

  .share-btn-banner {
    width: 100%;
    justify-content: center;
  }

  /* Resort actions on mobile */
  .resort-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .resort-actions {
    width: 100%;
    display: flex;
    gap: 8px;
  }

  .action-link-compact {
    flex: 1;
    justify-content: center;
    padding: 10px 12px;
    font-size: 12px;
  }

  .action-link-compact svg {
    width: 14px;
    height: 14px;
  }

  /* Share modal on mobile */
  .share-modal-content {
    padding: 24px;
    max-width: 95%;
  }

  .share-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .share-options {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .share-option {
    flex-direction: row;
    justify-content: flex-start;
    padding: 16px;
  }

  /* Warning modal on mobile */
  .destination-warning-content {
    padding: 28px 24px;
    max-width: 95%;
  }

  .warning-icon {
    font-size: 40px;
  }

  .warning-title {
    font-size: 22px;
  }

  .warning-actions {
    flex-direction: column;
    gap: 10px;
  }

  .warning-btn {
    width: 100%;
    justify-content: center;
  }

  /* Partial data warning on mobile */
  .partial-data-warning {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }

  .partial-data-icon {
    font-size: 28px;
  }

  .partial-data-title {
    font-size: 18px;
  }

  .partial-data-retry {
    width: 100%;
    justify-content: center;
  }

  /* Simplified layout on mobile */
  .ratings-row-simple {
    gap: 12px;
  }

  .score-simple {
    flex: 1;
    min-width: 60px;
  }

  .score-num {
    font-size: 20px;
  }

  .confidence-badge-simple {
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-top: 8px;
  }

  .pros-cons-simple {
    gap: 10px;
  }

  .booking-link-primary {
    font-size: 14px;
    padding: 12px 20px;
  }

  .booking-links-row {
    flex-direction: column;
  }

  .booking-link-affiliate {
    width: 100%;
    min-width: auto;
  }

  /* Results actions on mobile */
  .results-actions {
    flex-direction: column;
    gap: 12px;
  }

  .reset-btn, .share-results-btn {
    width: 100%;
    justify-content: center;
  }

  /* Results header on mobile */
  .results-header-actions {
    padding: 12px;
    gap: 8px;
    position: static;
  }

  .new-search-btn-top, .share-results-btn-top {
    flex: 1;
    justify-content: center;
    font-size: 13px;
    padding: 10px 16px;
  }

  .new-search-btn-top svg,
  .share-results-btn-top svg {
    width: 14px;
    height: 14px;
  }

  .key-ratings {
    flex-direction: column;
    align-items: stretch;
  }

  .platform-ratings-mini {
    flex-direction: column;
    gap: 8px;
  }
}

/* Tablet: 3 columns */
@media (max-width: 900px) {
  .example-categories {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════════ */
/* ENHANCEMENTS - Progress Bar, Top Pick, Feedback */
/* ═══════════════════════════════════════════════════════════════ */

/* ─── Progress Bar ─── */

.progress-bar-container {
  width: 100%;
  margin: 32px 0 28px;
}

.progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, rgba(200,169,110,0.5) 0%, var(--accent) 100%);
  border-radius: 2px;
  transition: width 0.8s ease;
  width: 0%;
  box-shadow: 0 0 12px rgba(200,169,110,0.4);
}

/* ─── Loading Steps ─── */

.loading-steps {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all 0.35s ease;
  opacity: 0.3;
}

.step:last-child {
  border-bottom: none;
}

.step-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.step-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.01em;
  transition: all 0.35s ease;
}

.step.active {
  opacity: 1;
}

.step.active .step-dot {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(200,169,110,0.6);
  animation: pulse-dot 1.4s ease-in-out infinite;
}

.step.active .step-label {
  color: var(--white);
  font-weight: 500;
}

.step.done {
  opacity: 0.5;
}

.step.done .step-dot {
  background: rgba(100,200,120,0.7);
  box-shadow: none;
  animation: none;
}

.step.done .step-label {
  color: var(--muted);
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.6; }
}


/* ─── ENHANCEMENT 2: Top Pick Card ─── */

.top-pick-card {
  border: 2px solid var(--accent) !important;
  background: linear-gradient(135deg, 
    rgba(200,169,110,0.05) 0%, 
    rgba(40,40,60,1) 100%) !important;
  box-shadow: 0 8px 32px rgba(200,169,110,0.3) !important;
  position: relative;
  margin-bottom: 32px !important;
}

.top-pick-banner {
  background: linear-gradient(90deg, 
    rgba(200,169,110,1) 0%, 
    rgba(220,189,130,1) 100%);
  color: var(--navy);
  padding: 12px 20px;
  margin: -24px -24px 20px -24px;
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.trophy-icon {
  font-size: 20px;
}

.top-pick-text {
  flex: 1;
}

.match-score {
  background: rgba(200,169,110,0.15);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.match-icon {
  font-size: 18px;
}

.match-percentage {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
}

.why-top-pick {
  background: rgba(200,169,110,0.08);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 8px;
  padding: 16px;
  margin: 16px 0;
}

.why-header {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
}

.why-reasons {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-reason {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
  padding-left: 4px;
  line-height: 1.5;
}


/* ─── ENHANCEMENT 3: Feedback Section ─── */

.feedback-section {
  margin-top: 40px;
  padding: 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  text-align: center;
}

.feedback-divider {
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255,255,255,0.1) 50%, 
    transparent 100%);
  margin-bottom: 24px;
}

.feedback-header {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
}

.feedback-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.feedback-btn {
  flex: 0 1 auto;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Figtree', sans-serif;
}

.feedback-btn:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

.feedback-yes:hover {
  border-color: rgba(76,175,80,0.5);
  background: rgba(76,175,80,0.1);
}

.feedback-no:hover {
  border-color: rgba(244,67,54,0.5);
  background: rgba(244,67,54,0.1);
}

.feedback-icon {
  font-size: 18px;
}

.feedback-email-direct {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  opacity: 0.7;
}

.feedback-email-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.feedback-email-link:hover {
  text-decoration: underline;
  opacity: 0.9;
}

.feedback-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.3);
  border-radius: 8px;
  color: #4CAF50;
  font-size: 14px;
  font-weight: 500;
}

.success-icon {
  font-size: 20px;
}

/* Feedback Modal */
.feedback-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 28, 48, 0.85);
  backdrop-filter: blur(6px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.feedback-modal-content {
  background: #0e2d47;
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 16px;
  padding: 36px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--white);
}

.feedback-modal-title {
  font-size: 22px;
  color: var(--white);
  margin: 0 0 8px 0;
  font-family: 'Figtree', sans-serif;
}

.feedback-modal-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 20px 0;
}

.feedback-textarea {
  width: 100%;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  resize: vertical;
  min-height: 100px;
}

.feedback-textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.feedback-textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.feedback-email-row {
  margin: 16px 0;
}

.feedback-email-input {
  width: 100%;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
}

.feedback-email-input:focus {
  outline: none;
  border-color: var(--accent);
}

.feedback-email-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.feedback-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.btn-secondary {
  flex: 1;
  padding: 12px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Figtree', sans-serif;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
}

.btn-primary {
  flex: 1;
  padding: 12px 24px;
  background: var(--accent);
  border: none;
  border-radius: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Figtree', sans-serif;
}

.btn-primary:hover {
  background: rgba(220,189,130,1);
  transform: translateY(-1px);
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .feedback-modal-content {
    padding: 24px;
  }

  .feedback-buttons {
    flex-direction: column;
  }

  .feedback-btn {
    width: 100%;
  }
}