/* Stage 1B: choose pickup spot
   Pickup sheet styles remain in base.css during migration. */

/* Lumen Field card — gray container matches unselected walk recommendations */
.page-pickup .pickup-location-card {
  height: 82px;
  min-height: 82px;
  max-height: 82px;
  padding: 0 16px;
  border: 2px solid #f3f3f3;
  border-radius: 14px;
  box-shadow: none;
}

.page-pickup .pickup-location-card.pickup-choice.is-selected {
  border-color: #000;
  border-width: 3px;
}

.page-pickup .walk-option.pickup-choice.is-selected {
  border-width: 3px;
}

.page-pickup .pickup-location-card:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.24);
  outline-offset: 2px;
}

.page-pickup .pickup-location-title {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.1;
}

.page-pickup .pickup-location-address {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.15;
}

.page-pickup .walk-option-copy {
  gap: 5px;
}

.page-pickup .walk-option-title {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.1;
}

.page-pickup .walk-option-price {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.1;
}

.page-pickup .walk-option-meta {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.15;
}

/* In-card number badges — match map .pickup-spot-marker exactly */
.page-pickup .walk-step {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border: 2.5px solid #000;
  border-radius: 999px;
  color: #000;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

/* Map pickup dot only — tooltip, line, and JS anchor offsets unchanged */
.page-pickup .selected-pickup-dot {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 22px;
  height: 22px;
  transform: translateX(-50%);
  border: none;
  border-radius: 999px;
  background: #000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
}

.page-pickup .selected-pickup-dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: #fff;
}
