.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
/* --- CLUBHOUSE COVER FLOW (destination picker) --- */

.dest-flow-wrap {
  position: relative;
  height: 320px;
  margin-top: 8px;
  overflow: hidden;
  contain: layout style paint;
}

.dest-flow-stage {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 60px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.dest-flow-stage::-webkit-scrollbar { display: none; }

/* Each cover: scroll-snap item */
.dest-cover {
  flex: 0 0 200px;
  width: 200px;
  /* 260 when the body carried a name AND a fare row. The fare is gone (it was
     the raw ladder price, contradicting the Member's plan -- see the note in
     passenger/app.js), so the card came back 100px of empty cream under a
     single line. Shortened, and the space handed to the artwork, which is the
     thing a Member is actually picking from. */
  height: 208px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--panel-2, #F3E7D2);
  border: 1px solid rgba(127,106,79,0.28);
  box-shadow: 0 8px 20px rgba(120,85,50,0.14);
  transition: box-shadow 0.25s ease,
              border-color 0.25s ease,
              transform 0.25s ease;
  display: flex;
  flex-direction: column;
  user-select: none;
  -webkit-user-select: none;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  will-change: transform;
  transform: scale(0.92);
  opacity: 0.65;
}
.dest-cover.center {
  border-color: var(--accent, #B87333);
  border-width: 2px;
  box-shadow: 0 0 0 3px rgba(184,115,51,0.14), 0 10px 28px rgba(120,85,50,0.18);
  z-index: 10;
  transform: scale(1);
  opacity: 1;
}

/* Layered shadow cards — keep for visual depth */
.dest-cover-layer-back,
.dest-cover-layer-mid {
  display: none;
}

/* Media / logo header */
.dest-cover-media {
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E8DDC8 0%, #F5E8D1 100%);
  overflow: hidden;
  border-bottom: 1px solid rgba(127,106,79,0.18);
  position: relative;
}
.dest-cover-media img {
  max-height: 80px;
  max-width: 80%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.dest-cover-media img.loaded { opacity: 1; }
.dest-cover-media .dest-cover-initial {
  font-family: 'The Seasons', Cochin, 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--bronze, #7F6A4F);
  position: absolute;
  transition: opacity 0.3s ease;
}
.dest-cover-media img.loaded + .dest-cover-initial { opacity: 0; }

/* Body */
.dest-cover-body {
  padding: 12px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  /* space-between held a name at the top and a fare at the bottom. With one
     child it just pins the name to the ceiling of an empty box. */
  justify-content: center;
}
.dest-cover-name {
  font-family: 'The Seasons', Cochin, 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text, #2E2114);
  line-height: 1.3;
}
/* Menu flip panel — slides up over the cover when swiped up */
.dest-cover-menu {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--panel, #FBF4E6);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 15;
  display: flex;
  flex-direction: column;
}
.dest-cover-menu.open {
  transform: translateY(0);
}
.dest-cover-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--panel-2, #F3E7D2);
  border-bottom: 1px solid rgba(127,106,79,0.18);
  flex-shrink: 0;
}
.dest-cover-menu-title {
  font-family: 'The Seasons', Cochin, 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text, #2E2114);
  letter-spacing: 0.04em;
}
.dest-cover-menu-close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--muted, #6E5A40);
  padding: 2px 6px;
  border-radius: 6px;
  line-height: 1;
}
.dest-cover-menu-close:hover {
  color: var(--accent, #B87333);
  background: rgba(184,115,51,0.1);
}
.dest-cover-menu-frame {
  flex: 1;
  border: 0;
  width: 100%;
  background: #fff;
}
.dest-cover-menu-hint {
  text-align: center;
  padding: 24px 16px;
  color: var(--muted, #6E5A40);
  font-size: 13px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.dest-cover-menu-hint svg {
  width: 28px;
  height: 28px;
  opacity: 0.5;
}
/* Swipe-up hint overlay on center cover */
.dest-cover-swipe-hint {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted, #6E5A40);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 5;
}
.dest-cover.center .dest-cover-swipe-hint.has-menu {
  opacity: 0.6;
  animation: swipeHintBob 1.8s ease-in-out infinite;
}
.dest-cover-swipe-hint svg {
  width: 16px;
  height: 16px;
}
@keyframes swipeHintBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}
/* (reflection removed — not needed for scroll-snap carousel) */

/* Prev / Next arrows */
.dest-flow-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--panel, #FBF4E6);
  border: 1px solid rgba(127,106,79,0.34);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 4px 12px rgba(120,85,50,0.15);
  transition: background var(--dur-2) var(--ease),
              box-shadow var(--dur-2) var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.dest-flow-nav:hover {
  background: var(--accent, #B87333);
  color: var(--on-accent, #F8EFDE);
}
.dest-flow-nav:disabled {
  opacity: 0.3;
  cursor: default;
}
.dest-flow-nav.prev { left: 8px; }
.dest-flow-nav.next { right: 8px; }
.dest-flow-nav svg {
  width: 18px;
  height: 18px;
}

/* Dot indicators */
.dest-flow-dots {
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 20;
}
.dest-flow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(127,106,79,0.3);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background var(--dur-2) ease, transform var(--dur-2) ease;
}
.dest-flow-dot.active {
  background: var(--accent, #B87333);
  transform: scale(1.3);
}

/* Empty state */
.dest-flow-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted, #6E5A40);
  font-size: 14px;
}
