:root {
  --bg-primary: #fafaf8;
  --bg-secondary: #f3f1ec;
  --bg-dark: #0a0f0d;
  --bg-darker: #060a08;
  --bg-card: #ffffff;

  --accent: #0fa090;
  --accent-light: #2dd4c0;
  --accent-dark: #0c8378;
  --accent-glow: rgba(15, 160, 144, 0.35);
  --accent-subtle: rgba(15, 160, 144, 0.08);

  --gold: #d4a853;
  --gold-light: #e8c77b;

  --text-primary: #0a1a14;
  --text-secondary: rgba(10, 26, 20, 0.6);
  --text-tertiary: rgba(10, 26, 20, 0.4);
  --text-inverse: #f5f0e8;
  --text-inverse-muted: rgba(245, 240, 232, 0.55);

  --border-color: rgba(10, 26, 20, 0.08);
  --border-hover: rgba(15, 160, 144, 0.5);

  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-bg-strong: rgba(255, 255, 255, 0.82);
  --glass-border: rgba(255, 255, 255, 0.45);
  --glass-dark: rgba(10, 15, 13, 0.55);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;

  --ease-out: cubic-bezier(0.16, 0.8, 0.24, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-full: 999px;

  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 30px var(--accent-glow);

  --section-py: clamp(64px, 8vw, 110px);
  --container-max: 1400px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

select,
input,
textarea {
  font: inherit;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--accent-light);
  color: var(--text-primary);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: #c5d3cc;
  border-radius: 99px;
  border: 2px solid var(--bg-secondary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 48px);
}

.text-balance {
  text-wrap: balance;
}

.stat-num {
  font-variant-numeric: tabular-nums;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-label--light {
  color: var(--accent-light);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.08;
  color: var(--text-primary);
  margin-top: 10px;
}

.section-title--light {
  color: var(--text-inverse);
}

.section-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 480px;
  margin-top: 14px;
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border);
}

.glass-strong {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  transition: all 0.35s var(--ease-out);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.btn-primary i {
  width: 16px;
  height: 16px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-color);
  transition: all 0.3s var(--ease-out);
}

.btn-secondary:hover {
  border-color: var(--border-hover);
  background: var(--accent-subtle);
}

.btn-secondary i {
  width: 16px;
  height: 16px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(245, 240, 232, 0.8);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.btn-ghost:hover {
  color: var(--accent-light);
}

.btn-ghost i {
  width: 16px;
  height: 16px;
}

/* Nav styles are fully provided by index.css — removed duplicate block */

/* ─── ALWAYS-VISIBLE START FRESH BUTTON ─── */
.start-fresh-btn {
  position: fixed;
  top: 86px;
  right: 24px;
  z-index: 990;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--bg-dark);
  color: var(--text-inverse);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 24px rgba(10, 15, 13, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  transition: transform 0.25s var(--ease-out), background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.start-fresh-btn:hover {
  background: #14231d;
  border-color: rgba(45, 212, 192, 0.5);
  color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(15, 160, 144, 0.25);
}

.start-fresh-btn:active {
  transform: translateY(0) scale(0.98);
}

.start-fresh-btn i,
.start-fresh-btn svg {
  width: 14px;
  height: 14px;
  color: var(--accent-light);
  transition: transform 0.4s var(--ease-spring);
}

.start-fresh-btn:hover i,
.start-fresh-btn:hover svg {
  transform: rotate(-180deg);
}

.start-fresh-btn.spinning i,
.start-fresh-btn.spinning svg {
  animation: spinFresh 0.6s linear infinite;
}

@keyframes spinFresh {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@media (max-width: 768px) {
  .start-fresh-btn {
    top: auto;
    bottom: 24px;
    right: 16px;
    padding: 8px 14px;
    font-size: 11px;
    background: rgba(10, 15, 13, 0.94);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  }
}

/* ─── PLANNER HERO ─── */
.planner-hero {
  position: relative;
  padding: 150px 0 60px;
  background:
    radial-gradient(ellipse 90% 60% at 30% 0%, #103b34 0%, var(--bg-dark) 55%),
    var(--bg-dark);
  overflow: hidden;
}

.planner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.planner-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.planner-hero .hero-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.planner-hero .hero-label-line {
  width: 32px;
  height: 1px;
  background: var(--accent-light);
}

.planner-hero .hero-label span:last-child {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.planner-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  color: var(--text-inverse);
}

.planner-hero h1 em {
  font-style: italic;
  color: var(--accent-light);
}

.planner-hero p {
  margin-top: 18px;
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.65);
  max-width: 560px;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-cta-row .btn-secondary {
  color: var(--text-inverse);
  border-color: rgba(245, 240, 232, 0.28);
}

.hero-cta-row .btn-secondary:hover {
  border-color: var(--accent-light);
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 640px) {
  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-cta-row a {
    width: 100%;
    justify-content: center;
  }
}

/* â•â•â•â•â•â•â• STEPPER â•â•â•â•â•â•â• */
.stepper-wrap {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 250, 248, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
}

.stepper {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 16px clamp(16px, 3vw, 48px);
  max-width: var(--container-max);
  margin: 0 auto;
  overflow-x: auto;
}

.step-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px 8px 8px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  border: 1px solid transparent;
}

.step-pill:hover {
  background: var(--accent-subtle);
}

.step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  background: var(--bg-secondary);
  color: var(--text-tertiary);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.step-pill span.step-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-tertiary);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.step-pill.active {
  background: var(--text-primary);
}

.step-pill.active .step-num {
  background: var(--accent);
  color: var(--text-primary);
}

.step-pill.active span.step-label {
  color: var(--text-inverse);
}

.step-pill.done .step-num {
  background: var(--accent);
  color: #fff;
}

.step-pill.done .step-num::before {
  content: "âœ“";
}

.step-pill.done span.step-label {
  color: var(--text-primary);
}

.step-connector {
  width: 20px;
  height: 1px;
  background: var(--border-color);
  flex-shrink: 0;
}

/* â•â•â•â•â•â•â• PLANNER LAYOUT â•â•â•â•â•â•â• */
.planner-section {
  padding: 48px 0 var(--section-py);
}

.planner-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: flex-start;
}

.step-panel {
  display: none;
}

.step-panel.active {
  display: block;
  animation: fadeSlideUp 0.45s var(--ease-out) forwards;
}

.panel-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 44px);
}

.panel-head {
  margin-bottom: 32px;
}

.panel-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 32px);
}

.panel-head p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 8px;
  max-width: 520px;
}

/* form bits */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 4px;
}

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 7px;
}

.form-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.form-input-wrap:focus-within {
  border-color: var(--accent);
  background: var(--accent-subtle);
  box-shadow: 0 0 0 3px rgba(15, 160, 144, 0.08);
}

.form-input-wrap i {
  width: 17px;
  height: 17px;
  color: var(--accent-dark);
  flex-shrink: 0;
}

.form-input-wrap input,
.form-input-wrap select {
  background: transparent;
  outline: none;
  border: none;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.form-input-wrap select option {
  background: #fff;
}

.stepper-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 6px 6px 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
}

.stepper-input .val {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  min-width: 30px;
  text-align: center;
}

.stepper-input .val-sub {
  font-size: 11px;
  color: var(--text-tertiary);
}

.stepper-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.stepper-btn:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.stepper-btn i {
  width: 15px;
  height: 15px;
}

.tier-grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.choice-card {
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  text-align: left;
  background: var(--bg-card);
}

.choice-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.choice-card.selected {
  border-color: var(--accent);
  background: var(--accent-subtle);
  box-shadow: 0 0 0 1px var(--accent);
}

.choice-card .cc-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--accent-dark);
  transition: all 0.3s ease;
}

.choice-card.selected .cc-icon {
  background: var(--accent);
  color: #fff;
}

.choice-card .cc-icon i {
  width: 17px;
  height: 17px;
}

.choice-card h4 {
  font-size: 14px;
  font-weight: 700;
}

.choice-card .cc-price {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--accent-dark);
  font-weight: 600;
  margin-top: 4px;
}

.choice-card p {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 6px;
  line-height: 1.5;
}

/* Preset Service Filter / Disabled State */
.type-card.disabled-by-preset {
  opacity: 0.35 !important;
  filter: grayscale(95%) !important;
  cursor: pointer !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  background: var(--bg-secondary) !important;
  box-shadow: none !important;
}

.type-card.disabled-by-preset:hover {
  transform: none !important;
  border-color: rgba(0, 0, 0, 0.12) !important;
}

.preset-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  margin-top: 14px;
  background: rgba(15, 160, 144, 0.08);
  border: 1px solid rgba(15, 160, 144, 0.25);
  border-radius: var(--radius-md);
  font-size: 13.5px;
}

.preset-banner .pb-text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
}

.preset-banner .pb-text i {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.reset-preset-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-dark);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.25s ease;
}

.reset-preset-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.vibe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.vibe-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  border: 1.5px solid var(--border-color);
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  overflow: hidden;
  background: var(--bg-card);
}

.vibe-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.vibe-card.selected {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--accent-subtle), var(--bg-card));
}

.vibe-card.selected::after {
  content: "âœ“";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vibe-card .vc-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--text-primary);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.vibe-card .vc-icon i {
  width: 19px;
  height: 19px;
}

.vibe-card h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
}

.vibe-card p {
  font-size: 12.5px;
  color: var(--text-secondary);
  margin-top: 6px;
  line-height: 1.55;
}

.vibe-card .vc-stops {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--accent-dark);
  margin-top: 10px;
  text-transform: uppercase;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
}

.toggle-row .tr-text h4 {
  font-size: 14px;
  font-weight: 700;
}

.toggle-row .tr-text p {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 3px;
}

.switch {
  width: 46px;
  height: 26px;
  border-radius: 99px;
  background: #c5d3cc;
  position: relative;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.switch.on {
  background: var(--accent);
}

.switch .knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.3s var(--ease-spring);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.switch.on .knob {
  transform: translateX(20px);
}

.lang-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lang-chip {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  transition: all 0.3s ease;
}

.lang-chip.active {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--bg-primary);
}

/* â•â•â•â•â•â•â• SERVICE TYPE TABS (STEP 0) â•â•â•â•â•â•â• */
.type-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.type-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 22px 16px;
  border: 1.5px solid var(--border-color);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  background: var(--bg-card);
  text-align: left;
}

.type-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.type-card.selected {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--accent-subtle), var(--bg-card));
  box-shadow: 0 0 0 1px var(--accent);
}

.type-card .tc-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--text-primary);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.type-card.selected .tc-icon {
  background: var(--accent);
  color: #fff;
}

.type-card .tc-icon i {
  width: 18px;
  height: 18px;
}

.type-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
}

.type-card p {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 6px;
  line-height: 1.5;
}

.type-card .tc-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--gold);
  color: var(--text-primary);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

/* â•â•â•â•â•â•â• TRAVELER GRID (3-up steppers) â•â•â•â•â•â•â• */
.form-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stepper-hint {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-top: 6px;
}

/* â•â•â•â•â•â•â• DESTINATION / MULTI CHIPS â•â•â•â•â•â•â• */
.dest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dest-chip {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  transition: all 0.3s ease;
  cursor: pointer;
}

.dest-chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* â•â•â•â•â•â•â• INCLUSION / INFO NOTE â•â•â•â•â•â•â• */
.note-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--accent-subtle);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md);
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.note-box i {
  width: 16px;
  height: 16px;
  color: var(--accent-dark);
  flex-shrink: 0;
  margin-top: 1px;
}

.comfort-block {
  margin-bottom: 24px;
}

.comfort-block:last-child {
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .type-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* â•â•â•â•â•â•â• MAP / ROUTE STEP â•â•â•â•â•â•â• */
.map-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.map-sidebar {
  background: var(--bg-secondary);
  padding: 20px;
  max-height: 560px;
  overflow-y: auto;
}

.map-search-box {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.map-search-box input {
  flex: 1;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  font-size: 13px;
  background: #fff;
}

.map-add-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--text-primary);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-add-btn i {
  width: 17px;
  height: 17px;
}

.map-status {
  font-size: 11.5px;
  color: var(--text-tertiary);
  margin-bottom: 10px;
  display: none;
}

.route-stop-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s ease;
}

.route-stop-item:hover {
  background: rgba(255, 255, 255, 0.6);
}

.route-stop-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: var(--accent-light);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.route-stop-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
}

.route-stop-nights {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--accent-dark);
  margin-top: 2px;
}

.route-stop-remove {
  margin-left: auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  flex-shrink: 0;
}

.route-stop-remove:hover {
  background: rgba(200, 60, 60, 0.12);
  color: #c0392b;
}

.route-stop-remove i {
  width: 13px;
  height: 13px;
}

.stop-nights-ctrl {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.stop-nights-ctrl button {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.05);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#trip-map {
  height: 560px;
  width: 100%;
}

.route-summary-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 14px;
  padding: 12px 18px;
  background: var(--bg-dark);
  border-radius: var(--radius-md);
  color: var(--text-inverse);
  font-family: var(--font-mono);
  font-size: 12.5px;
}

.route-summary-bar i {
  width: 15px;
  height: 15px;
  color: var(--accent-light);
  vertical-align: -3px;
  margin-right: 5px;
}

@media (max-width: 900px) {
  .map-layout {
    grid-template-columns: 1fr;
  }

  .map-sidebar {
    max-height: 320px;
  }

  #trip-map {
    height: 380px;
  }
}

/* â•â•â•â•â•â•â• SUMMARY SIDEBAR â•â•â•â•â•â•â• */
.summary-card {
  position: sticky;
  top: 96px;
  background: var(--bg-dark);
  color: var(--text-inverse);
  border-radius: var(--radius-xl);
  padding: 26px;
  overflow: hidden;
}

.summary-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.summary-card > * {
  position: relative;
  z-index: 1;
}

.summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.summary-head h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12.5px;
}

.summary-row span:first-child {
  color: var(--text-inverse-muted);
}

.summary-row span:last-child {
  font-family: var(--font-mono);
  font-weight: 600;
}

.summary-cost-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
}

.summary-cost-row span:first-child {
  color: var(--text-inverse-muted);
}

.summary-cost-row span:last-child {
  font-family: var(--font-mono);
  font-weight: 600;
}

.summary-total {
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.summary-total .st-label {
  font-size: 12px;
  color: var(--text-inverse-muted);
}

.summary-total .st-value {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 700;
  color: var(--accent-light);
}

.summary-per-person {
  font-size: 11px;
  color: var(--text-inverse-muted);
  text-align: right;
  margin-top: 2px;
}

.summary-note {
  font-size: 11px;
  color: var(--text-inverse-muted);
  margin-top: 14px;
  line-height: 1.6;
  display: flex;
  gap: 7px;
}

.summary-note i {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--accent-light);
}

.summary-empty {
  font-size: 13px;
  color: var(--text-inverse-muted);
  line-height: 1.7;
  padding: 12px 0;
}

/* â•â•â•â•â•â•â• STEP NAV BUTTONS â•â•â•â•â•â•â• */
.step-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
}

/* â•â•â•â•â•â•â• REVIEW / ITINERARY â•â•â•â•â•â•â• */
.day-timeline {
  position: relative;
  padding-left: 30px;
}

.day-timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background-image: linear-gradient(var(--border-color) 55%, transparent 0%);
  background-size: 1px 8px;
  background-repeat: repeat-y;
}

.day-item {
  position: relative;
  padding-bottom: 26px;
}

.day-item:last-child {
  padding-bottom: 0;
}

.day-item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 3px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg-card);
  box-shadow: 0 0 0 1.5px var(--accent);
}

.day-item .day-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.day-item h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  margin-top: 3px;
}

.day-item p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 5px;
  line-height: 1.6;
}

.day-item .day-transfer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-tertiary);
  background: var(--bg-secondary);
  padding: 5px 11px;
  border-radius: var(--radius-full);
}

.day-item .day-transfer i {
  width: 12px;
  height: 12px;
}

.cost-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.cost-table tr {
  border-bottom: 1px solid var(--border-color);
}

.cost-table td {
  padding: 13px 4px;
  font-size: 13.5px;
}

.cost-table td:last-child {
  text-align: right;
  font-family: var(--font-mono);
  font-weight: 600;
}

.cost-table .ct-sub {
  color: var(--text-tertiary);
  font-size: 11.5px;
}

.cost-table tr.ct-total td {
  padding-top: 18px;
  font-size: 16px;
  font-weight: 700;
  border-bottom: none;
}

.cost-table tr.ct-total td:last-child {
  color: var(--accent-dark);
  font-size: 20px;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

@media (max-width: 1024px) {
  .planner-grid {
    grid-template-columns: 1fr;
  }

  .summary-card {
    position: static;
  }

  .form-grid,
  .vibe-grid,
  .tier-grid3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .form-grid,
  .vibe-grid,
  .tier-grid3 {
    grid-template-columns: 1fr;
  }

  .stepper {
    gap: 3px;
  }

  .step-pill span.step-label {
    display: none;
  }

  .step-pill {
    padding: 8px;
  }
}

/* â•â•â•â•â•â•â• VALIDATION â•â•â•â•â•â•â• */
@keyframes shakeError {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-6px);
  }
  40% {
    transform: translateX(6px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
}

.shake-error {
  animation: shakeError 0.4s var(--ease-out);
}

.field-error {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #c4432e;
  margin-top: 7px;
}

.field-error.show {
  display: flex;
}

.field-error i {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.form-input-wrap.input-error,
.vibe-grid.input-error,
.prefs-textarea-wrap.input-error {
  border-color: #c4432e !important;
  background: rgba(196, 67, 46, 0.06) !important;
}

.required-mark {
  color: #c4432e;
  margin-left: 2px;
}

.switch.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* â•â•â•â•â•â•â• CUSTOM VIBE â•â•â•â•â•â•â• */
.custom-vibe-box {
  margin-top: 22px;
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-hover);
}

.custom-vibe-input-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.custom-vibe-input-row .form-input-wrap {
  background: var(--bg-card);
}

.custom-vibe-hint {
  font-size: 11.5px;
  color: var(--text-tertiary);
  margin-top: 8px;
}

.custom-vibe-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.custom-vibe-chips:empty {
  margin-top: 0;
}

.custom-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  padding: 7px 8px 7px 14px;
  border-radius: var(--radius-full);
  background: var(--text-primary);
  color: var(--text-inverse);
}

.custom-chip button {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.custom-chip button:hover {
  background: rgba(196, 67, 46, 0.8);
}

.custom-chip button i {
  width: 11px;
  height: 11px;
  color: #fff;
}

/* â•â•â•â•â•â•â• VEHICLE BLOCK HEAD + BADGE â•â•â•â•â•â•â• */
.vehicle-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 10px;
}

.vehicle-block-head .form-label {
  margin-bottom: 0;
}

.btn-more-options {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent-dark);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-hover);
  background: var(--accent-subtle);
  transition: all 0.25s ease;
}

.btn-more-options:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-more-options i {
  width: 14px;
  height: 14px;
}

.btn-more-options:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: var(--bg-secondary);
  color: var(--text-tertiary);
  border-color: var(--border-color);
}

.vehicle-current-badge {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: var(--accent-subtle);
  border: 1px solid var(--border-hover);
  font-size: 12.5px;
}

.vehicle-current-badge.show {
  display: flex;
}

.vehicle-current-badge i {
  width: 16px;
  height: 16px;
  color: var(--accent-dark);
  flex-shrink: 0;
}

.vehicle-current-badge b {
  font-weight: 700;
}

/* â•â•â•â•â•â•â• PREFERENCES TEXTAREA â•â•â•â•â•â•â• */
.prefs-textarea-wrap {
  padding: 14px 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.prefs-textarea-wrap:focus-within {
  border-color: var(--accent);
  background: var(--accent-subtle);
  box-shadow: 0 0 0 3px rgba(15, 160, 144, 0.08);
}

.prefs-textarea-wrap textarea {
  background: transparent;
  outline: none;
  border: none;
  width: 100%;
  resize: vertical;
  min-height: 84px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-primary);
  font-family: var(--font-body);
}

.prefs-char-count {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-tertiary);
  margin-top: 6px;
}

/* â•â•â•â•â•â•â• MODAL â•â•â•â•â•â•â• */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 10, 8, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  max-width: 720px;
  width: 100%;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  animation: fadeSlideUp 0.35s var(--ease-out) forwards;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 4vw, 32px);
  border-bottom: 1px solid var(--border-color);
}

.modal-head h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
}

.modal-head p {
  font-size: 12.5px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.modal-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.modal-close:hover {
  background: var(--text-primary);
  color: #fff;
}

.modal-close i {
  width: 16px;
  height: 16px;
}

.modal-body {
  padding: clamp(20px, 4vw, 32px);
  overflow-y: auto;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 20px clamp(20px, 4vw, 32px);
  border-top: 1px solid var(--border-color);
}

.driver-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.driver-opt {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-color);
  background: var(--bg-card);
  font-weight: 600;
  font-size: 13.5px;
  text-align: left;
  transition: all 0.25s ease;
}

.driver-opt span {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-tertiary);
  margin-top: 4px;
}

.driver-opt.active {
  border-color: var(--accent);
  background: var(--accent-subtle);
  box-shadow: 0 0 0 1px var(--accent);
}

.driver-opt:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.modal-hint {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 10px;
  padding: 10px 14px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  display: none;
}

.modal-hint.show {
  display: block;
}

.vehicle-modal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.vm-card {
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
  background: var(--bg-card);
  position: relative;
}

.vm-card:hover {
  border-color: var(--border-hover);
}

.vm-card.selected {
  border-color: var(--accent);
  background: var(--accent-subtle);
  box-shadow: 0 0 0 1px var(--accent);
}

.vm-card .cc-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  color: var(--accent-dark);
}

.vm-card.selected .cc-icon {
  background: var(--accent);
  color: #fff;
}

.vm-card .cc-icon i {
  width: 15px;
  height: 15px;
}

.vm-card h5 {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.3;
}

.vm-card .cc-price {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--accent-dark);
  font-weight: 600;
  margin-top: 3px;
}

.vm-card .vm-seats {
  font-size: 10px;
  color: var(--text-tertiary);
  margin-top: 4px;
}

.vm-card .vm-no-self {
  position: absolute;
  top: 8px;
  right: 8px;
  font-family: var(--font-mono);
  font-size: 8.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.optional-tag {
  font-family: var(--font-mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  background: var(--bg-secondary);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  margin-left: 8px;
  vertical-align: middle;
}

.modal-checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
}

.modal-checkbox-row input {
  width: 17px;
  height: 17px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.modal-section {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--border-color);
}

.modal-section:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* â•â•â•â•â•â•â• BROWSE HOTELS / GUIDES â€” TRIGGER ROW â•â•â•â•â•â•â• */
.browse-trigger-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.picked-summary {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-tertiary);
}

.picked-summary.is-set {
  color: var(--accent-dark);
  font-weight: 600;
}

/* â•â•â•â•â•â•â• MODAL TABS (tier / language browsing) â•â•â•â•â•â•â• */
.modal-tab-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.modal-tab {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-secondary);
  transition: all 0.25s ease;
}

.modal-tab:hover {
  border-color: var(--border-hover);
}

.modal-tab.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

/* â•â•â•â•â•â•â• ADVANCE SEARCH PROMO (inside browse modals) â•â•â•â•â•â•â• */
.modal-advanced-promo {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(120deg, var(--accent-subtle), rgba(212, 168, 83, 0.10));
  border: 1.5px solid rgba(15, 160, 144, 0.22);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.modal-advanced-promo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.75s var(--ease-out);
  pointer-events: none;
}

.modal-advanced-promo:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.modal-advanced-promo:hover::before {
  left: 130%;
}

.mab-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px var(--accent-glow);
}

.mab-icon i {
  width: 17px;
  height: 17px;
}

.mab-text {
  flex: 1;
  min-width: 0;
}

.mab-text h5 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.mab-text p {
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--text-secondary);
}

.mab-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-dark);
  white-space: nowrap;
}

.mab-cta i {
  width: 13px;
  height: 13px;
  transition: transform 0.3s var(--ease-out);
}

.modal-advanced-promo:hover .mab-cta i {
  transform: translate(2px, -2px);
}

@media (max-width: 560px) {
  .modal-advanced-promo {
    flex-wrap: wrap;
  }

  .mab-cta {
    margin-left: 52px;
  }
}

/* â•â•â•â•â•â•â• HOTEL BROWSER â•â•â•â•â•â•â• */
.hb-town-group {
  margin-bottom: 24px;
}

.hb-town-group:last-child {
  margin-bottom: 0;
}

.hb-town-group h5 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.hb-town-group h5 i {
  width: 14px;
  height: 14px;
  color: var(--accent-dark);
}

.hb-town-nights {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-tertiary);
  margin-left: 4px;
}

.hotel-card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hotel-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-color);
  background: var(--bg-card);
  transition: all 0.25s ease;
}

.hotel-card:hover {
  border-color: var(--border-hover);
}

.hotel-card.selected {
  border-color: var(--accent);
  background: var(--accent-subtle);
  box-shadow: 0 0 0 1px var(--accent);
}

.hotel-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  flex-shrink: 0;
}

.hotel-card.selected .hotel-card-icon {
  background: var(--accent);
  color: #fff;
}

.hotel-card-icon i {
  width: 18px;
  height: 18px;
}

.hotel-card-body {
  flex: 1;
  min-width: 0;
}

.hotel-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.hotel-card-top h4 {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.3;
}

.hotel-card-price {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-dark);
  white-space: nowrap;
}

.hotel-card-price small {
  font-weight: 500;
  color: var(--text-tertiary);
  font-size: 10px;
}

.hotel-card-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  margin-top: 3px;
}

.hotel-card-stars i {
  width: 12px;
  height: 12px;
  fill: var(--gold);
}

.hotel-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.hotel-card-tags span {
  font-size: 10.5px;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  padding: 3px 9px;
  border-radius: var(--radius-full);
}

.hotel-card-select {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--accent);
  background: transparent;
  color: var(--accent-dark);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.25s ease;
}

.hotel-card-select:hover {
  background: var(--accent);
  color: #fff;
}

.hotel-card.selected .hotel-card-select {
  background: var(--accent);
  color: #fff;
}

.hotel-card-select i {
  width: 12px;
  height: 12px;
}

/* â•â•â•â•â•â•â• GUIDE BROWSER â•â•â•â•â•â•â• */
.guide-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-color);
  background: var(--bg-card);
  margin-bottom: 10px;
  transition: all 0.25s ease;
}

.guide-card:last-child {
  margin-bottom: 0;
}

.guide-card:hover {
  border-color: var(--border-hover);
}

.guide-card.selected {
  border-color: var(--accent);
  background: var(--accent-subtle);
  box-shadow: 0 0 0 1px var(--accent);
}

.guide-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: var(--text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

.guide-card.selected .guide-avatar {
  background: var(--accent);
}

.guide-card-body {
  flex: 1;
  min-width: 0;
}

.guide-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.guide-card-top h4 {
  font-size: 13.5px;
  font-weight: 700;
}

.guide-card-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.guide-card-rating i {
  width: 12px;
  height: 12px;
  fill: var(--gold);
}

.guide-card-meta {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 3px;
}

.guide-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.guide-card-tags span {
  font-size: 10.5px;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  padding: 3px 9px;
  border-radius: var(--radius-full);
}

.guide-card-tags span.hl {
  background: var(--accent-subtle);
  color: var(--accent-dark);
  font-weight: 700;
}

.guide-card-select {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--accent);
  background: transparent;
  color: var(--accent-dark);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.25s ease;
}

.guide-card-select:hover {
  background: var(--accent);
  color: #fff;
}

.guide-card.selected .guide-card-select {
  background: var(--accent);
  color: #fff;
}

.guide-card-select i {
  width: 12px;
  height: 12px;
}

/* â•â•â•â•â•â•â• MODAL EMPTY STATE â•â•â•â•â•â•â• */
.modal-empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-secondary);
}

.modal-empty-state i {
  width: 30px;
  height: 30px;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}

.modal-empty-state p {
  font-size: 13px;
  max-width: 340px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .hotel-card,
  .guide-card {
    flex-wrap: wrap;
  }

  .hotel-card-select,
  .guide-card-select {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
  }

  .vehicle-modal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .driver-toggle {
    grid-template-columns: 1fr;
  }

  .modal-box {
    max-height: 92vh;
  }
}

/* â•â•â•â•â•â•â• FOOTER (copied) â•â•â•â•â•â•â• */
.footer {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: 90px 0 28px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.08em;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-inverse-muted);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.footer-social i {
  width: 15px;
  height: 15px;
}

.footer-heading {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-light);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13.5px;
  color: var(--text-inverse-muted);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-newsletter-desc {
  font-size: 12.5px;
  color: var(--text-inverse-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
}

.footer-newsletter-input {
  flex: 1;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 13px;
}

.footer-newsletter-input::placeholder {
  color: rgba(245, 240, 232, 0.35);
}

.footer-newsletter-input:focus {
  outline: none;
  border-color: var(--accent-light);
}

.footer-newsletter-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.footer-newsletter-btn:hover {
  background: var(--accent-light);
}

.footer-newsletter-btn i {
  width: 16px;
  height: 16px;
  color: var(--bg-dark);
}

.footer-newsletter-msg {
  font-size: 11.5px;
  color: var(--accent-light);
  margin-top: 10px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.footer-newsletter-msg.show {
  opacity: 1;
  height: auto;
  margin-top: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-payments {
  display: flex;
  gap: 14px;
}

.footer-payment {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 232, 0.35);
}

.footer-contact {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-contact span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--text-inverse-muted);
}

.footer-contact i {
  width: 14px;
  height: 14px;
  color: var(--accent-light);
}

.footer-copy {
  font-size: 11.5px;
  color: rgba(245, 240, 232, 0.3);
  text-align: center;
  padding-top: 10px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .type-grid,
  .form-grid-3,
  .vehicle-modal-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CART DRAWER ADDITIONS */
.cart-tab { position: fixed; right: 0; top: 20%; background: var(--bg-primary); border: 1px solid var(--border-color); border-right: none; padding: 16px 10px; border-radius: 12px 0 0 12px; display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 999; box-shadow: -4px 0 24px rgba(0,0,0,0.06); transition: transform 0.45s ease, right 0.45s ease; cursor: pointer; }
.cart-tab:hover { background: var(--bg-secondary); }
.cart-tab i { width: 20px; height: 20px; color: var(--text-primary); }
.cart-tab-label { writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg); font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-secondary); margin-top: 4px; }
.cart-tab-badge { position: absolute; top: -6px; left: -6px; background: var(--accent); color: var(--text-primary); font-size: 11px; font-weight: 700; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(15,160,144,0.3); border: 2px solid var(--bg-primary); transition: transform 0.3s ease; }
.cart-tab-badge.empty { display: none; }
.cart-overlay { position: fixed; inset: 0; background: rgba(6,10,8,0.5); backdrop-filter: blur(2px); z-index: 1002; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease-out); }
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(400px, 100vw); z-index: 1003; background: var(--bg-primary); box-shadow: -12px 0 48px rgba(0,0,0,0.25); display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.45s var(--ease-out); }
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 26px 24px 18px; border-bottom: 1px solid var(--border-color); }
.cart-drawer-label { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent); }
.cart-drawer-head h3 { font-family: var(--font-display); font-weight: 500; font-size: 24px; margin-top: 4px; }
.cart-drawer-days { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-tertiary); margin-top: 6px; }
.cart-close { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s ease; }
.cart-close:hover { background: var(--bg-secondary); border-color: var(--border-hover); transform: rotate(90deg); }
.cart-close i { width: 15px; height: 15px; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 10px 16px; }
.cart-item { display: flex; gap: 12px; align-items: center; padding: 12px 8px; border-radius: var(--radius-md); transition: background 0.3s ease, opacity 0.35s ease, transform 0.35s ease; }
.cart-item:hover { background: var(--bg-secondary); }
.cart-item.removing { opacity: 0; transform: translateX(24px) scale(0.96); }
.cart-item-img { width: 56px; height: 56px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; background: var(--bg-secondary); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-body { flex: 1; min-width: 0; }
.cart-item-name { font-family: var(--font-display); font-size: 15.5px; font-weight: 500; line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-region { font-family: var(--font-mono); font-size: 10px; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.04em; margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-remove { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--text-tertiary); transition: all 0.25s ease; }
.cart-item-remove:hover { background: rgba(200,60,60,0.1); color: #C83C3C; }
.cart-item-remove i { width: 15px; height: 15px; }
.cart-empty { text-align: center; padding: 60px 24px; color: var(--text-secondary); }
.cart-empty i { width: 30px; height: 30px; color: var(--text-tertiary); margin: 0 auto 14px; }
.footer-links a {
  font-size: 13.5px;
  color: var(--text-inverse-muted);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-newsletter-desc {
  font-size: 12.5px;
  color: var(--text-inverse-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
}

.footer-newsletter-input {
  flex: 1;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 13px;
}

.footer-newsletter-input::placeholder {
  color: rgba(245, 240, 232, 0.35);
}

.footer-newsletter-input:focus {
  outline: none;
  border-color: var(--accent-light);
}

.footer-newsletter-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.footer-newsletter-btn:hover {
  background: var(--accent-light);
}

.footer-newsletter-btn i {
  width: 16px;
  height: 16px;
  color: var(--bg-dark);
}

.footer-newsletter-msg {
  font-size: 11.5px;
  color: var(--accent-light);
  margin-top: 10px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.footer-newsletter-msg.show {
  opacity: 1;
  height: auto;
  margin-top: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-payments {
  display: flex;
  gap: 14px;
}

.footer-payment {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 232, 0.35);
}

.footer-contact {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-contact span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--text-inverse-muted);
}

.footer-contact i {
  width: 14px;
  height: 14px;
  color: var(--accent-light);
}

.footer-copy {
  font-size: 11.5px;
  color: rgba(245, 240, 232, 0.3);
  text-align: center;
  padding-top: 10px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .type-grid,
  .form-grid-3,
  .vehicle-modal-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CART DRAWER ADDITIONS */
.cart-tab { position: fixed; right: 0; top: 20%; background: var(--bg-primary); border: 1px solid var(--border-color); border-right: none; padding: 16px 10px; border-radius: 12px 0 0 12px; display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 999; box-shadow: -4px 0 24px rgba(0,0,0,0.06); transition: transform 0.45s ease, right 0.45s ease; cursor: pointer; }
.cart-tab:hover { background: var(--bg-secondary); }
.cart-tab i { width: 20px; height: 20px; color: var(--text-primary); }
.cart-tab-label { writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg); font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-secondary); margin-top: 4px; }
.cart-tab-badge { position: absolute; top: -6px; left: -6px; background: var(--accent); color: var(--text-primary); font-size: 11px; font-weight: 700; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(15,160,144,0.3); border: 2px solid var(--bg-primary); transition: transform 0.3s ease; }
.cart-tab-badge.empty { display: none; }
.cart-overlay { position: fixed; inset: 0; background: rgba(6,10,8,0.5); backdrop-filter: blur(2px); z-index: 1002; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease-out); }
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(400px, 100vw); z-index: 1003; background: var(--bg-primary); box-shadow: -12px 0 48px rgba(0,0,0,0.25); display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.45s var(--ease-out); }
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 26px 24px 18px; border-bottom: 1px solid var(--border-color); }
.cart-drawer-label { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent); }
.cart-drawer-head h3 { font-family: var(--font-display); font-weight: 500; font-size: 24px; margin-top: 4px; }
.cart-drawer-days { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-tertiary); margin-top: 6px; }
.cart-close { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s ease; }
.cart-close:hover { background: var(--bg-secondary); border-color: var(--border-hover); transform: rotate(90deg); }
.cart-close i { width: 15px; height: 15px; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 10px 16px; }
.cart-item { display: flex; gap: 12px; align-items: center; padding: 12px 8px; border-radius: var(--radius-md); transition: background 0.3s ease, opacity 0.35s ease, transform 0.35s ease; }
.cart-item:hover { background: var(--bg-secondary); }
.cart-item.removing { opacity: 0; transform: translateX(24px) scale(0.96); }
.cart-item-img { width: 56px; height: 56px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; background: var(--bg-secondary); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-body { flex: 1; min-width: 0; }
.cart-item-name { font-family: var(--font-display); font-size: 15.5px; font-weight: 500; line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-region { font-family: var(--font-mono); font-size: 10px; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.04em; margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-remove { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--text-tertiary); transition: all 0.25s ease; }
.cart-item-remove:hover { background: rgba(200,60,60,0.1); color: #C83C3C; }
.cart-item-remove i { width: 15px; height: 15px; }
.cart-empty { text-align: center; padding: 60px 24px; color: var(--text-secondary); }
.cart-empty i { width: 30px; height: 30px; color: var(--text-tertiary); margin: 0 auto 14px; }
.cart-empty p { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.cart-empty span { display: block; font-size: 12.5px; margin-top: 6px; line-height: 1.6; }
.cart-empty.hidden, .cart-drawer-body[data-empty="false"] .cart-empty { display: none; }
.cart-drawer-foot { padding: 16px 24px calc(20px + env(safe-area-inset-bottom)); border-top: 1px solid var(--border-color); display: flex; flex-direction: column; gap: 10px; }
.cart-drawer-foot .btn-ghost { width: 100%; display: inline-flex; align-items: center; justify-content: center; background: none; color: var(--text-primary); font-weight: 600; font-size: 14px; padding: 14px 28px; border-radius: var(--radius-full); transition: all 0.35s ease; border: 1px solid var(--border-color); }
.cart-drawer-foot .btn-ghost:hover { background: var(--bg-secondary); }
.type-card.disabled-by-cart { opacity: 0.5; cursor: not-allowed; filter: grayscale(100%); }

@media (max-width: 768px) {
  body.is-scrolling .cart-tab:not(.is-open) { transform: translateX(120%); opacity: 0; }
  body.is-scrolling .toast { opacity: 0; transform: translateX(-50%) translateY(40px); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• SMART HOTEL SELECTION & REVIEWS ENHANCEMENTS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.auto-suggest-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(15, 160, 144, 0.08) 0%, rgba(212, 168, 83, 0.12) 100%);
  border: 1.5px solid rgba(15, 160, 144, 0.25);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 18px rgba(15, 160, 144, 0.06);
  animation: fadeSlideUp 0.35s var(--ease-out) forwards;
}

.asb-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.asb-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px var(--accent-glow);
}

.asb-icon i {
  width: 18px;
  height: 18px;
}

.asb-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.asb-text p {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.asb-btn {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 13px;
}

/* Review Step Per-Place Hotel Cards */
.rev-hotel-card {
  margin-top: 14px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  transition: all 0.3s var(--ease-out);
}

.rev-hotel-card.is-selected {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(15, 160, 144, 0.03));
  box-shadow: 0 4px 20px rgba(15, 160, 144, 0.08);
}

.rev-hotel-card.is-empty {
  border-style: dashed;
  background: rgba(10, 26, 20, 0.015);
}

.rev-hotel-card:hover {
  border-color: var(--border-hover);
}

.rev-hotel-top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.rev-hotel-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--accent-subtle);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rev-hotel-icon i {
  width: 18px;
  height: 18px;
}

.rev-hotel-info {
  flex: 1;
  min-width: 0;
}

.rev-hotel-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.rev-hotel-title-row h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.rev-hotel-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}

.rev-hotel-rating i {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

.rev-hotel-meta {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.rev-hotel-price {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--accent-dark);
}

.rev-hotel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.rev-hotel-tags span {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  padding: 2px 8px;
  border-radius: 6px;
}

.rev-hotel-empty-body {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rev-hotel-empty-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--bg-secondary);
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rev-hotel-empty-icon i {
  width: 18px;
  height: 18px;
}

.rev-hotel-empty-text h5 {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
}

.rev-hotel-empty-text p {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 2px;
}

.rev-hotel-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
}

.btn-rev-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-primary);
  transition: all 0.25s var(--ease-out);
}

.btn-rev-action:hover {
  border-color: var(--border-hover);
  background: var(--accent-subtle);
}

.btn-rev-action i {
  width: 14px;
  height: 14px;
}

.btn-rev-suggest {
  border-color: rgba(212, 168, 83, 0.4);
  color: #a37828;
  background: rgba(212, 168, 83, 0.06);
}

.btn-rev-suggest:hover {
  background: rgba(212, 168, 83, 0.15);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.btn-rev-suggest i {
  color: var(--gold);
}

.btn-rev-select {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-rev-select:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

/* Hotel Browser Modal Header & Towns */
.hb-town-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.btn-town-suggest {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 168, 83, 0.4);
  background: rgba(212, 168, 83, 0.08);
  color: #a37828;
  transition: all 0.25s ease;
}

.btn-town-suggest:hover {
  background: rgba(212, 168, 83, 0.2);
  border-color: var(--gold);
}

.btn-town-suggest i {
  width: 12px;
  height: 12px;
  color: var(--gold);
}

.hotel-card-btns {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.hotel-card-preview-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.25s ease;
}

.hotel-card-preview-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.06);
}

.hotel-card-preview-btn i {
  width: 16px;
  height: 16px;
}

.hotel-card-dist {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-tertiary);
  font-weight: 400;
}

/* Hotel Detail & Map Preview Modal */
.modal-box-lg {
  max-width: 820px;
}

.hdm-body-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
}

.hdm-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hdm-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}

.hdm-rating i {
  width: 15px;
  height: 15px;
  fill: var(--gold);
}

.hdm-tier-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: var(--accent-subtle);
  color: var(--accent-dark);
}

.hdm-best-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(212, 168, 83, 0.12);
  color: #a37828;
  border: 1px solid rgba(212, 168, 83, 0.3);
}

.hdm-best-badge i {
  width: 12px;
  height: 12px;
  color: var(--gold);
}

.hdm-price-box {
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
}

.hdm-price-val {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-dark);
}

.hdm-price-val small {
  font-size: 12px;
  color: var(--text-tertiary);
  font-weight: 500;
}

.hdm-price-note {
  font-size: 11.5px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.hdm-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-top: 16px;
}

.hdm-tags-title {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-top: 18px;
  margin-bottom: 8px;
}

.hdm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hdm-tags span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 4px 10px;
  border-radius: 8px;
}

.hdm-tags span i {
  width: 13px;
  height: 13px;
  color: var(--accent);
}

.hdm-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.hdm-map-header i {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: -2px;
  color: var(--accent);
}

.hotel-preview-map-box {
  width: 100%;
  height: 260px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-color);
  overflow: hidden;
  background: var(--bg-secondary);
}

/* Floating Toast Notification */
.tp-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  background: var(--bg-dark);
  color: var(--text-inverse);
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease-spring);
}

.tp-toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.tp-toast i {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.tp-toast b {
  color: var(--accent-light);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• RESPONSIVE BREAKPOINTS FOR MOBILE â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 768px) {
  .auto-suggest-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .asb-btn {
    width: 100%;
    justify-content: center;
  }

  .hdm-body-grid {
    grid-template-columns: 1fr;
  }

  .hotel-preview-map-box {
    height: 210px;
  }

  .rev-hotel-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-rev-action {
    justify-content: center;
    width: 100%;
  }

  .tp-toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .rev-hotel-top {
    flex-direction: column;
  }

  .rev-hotel-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .hb-town-head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

