#luna-di-miele-map {
  width: 100%;
  height: clamp(420px, 70vh, 720px);
  background-color: var(--color-ink);
  touch-action: pan-y;
}

.honeymoon__map-stage {
  position: relative;
  touch-action: pan-y;
}

.honeymoon__map-stage .leaflet-container {
  touch-action: pan-y;
}

/* --- Markers --- */

.roadtrip-marker {
  background: none;
  border: none;
}

.roadtrip-dot {
  width: 12px;
  height: 12px;
  background: var(--color-gold);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.roadtrip-dot--active {
  width: 18px;
  height: 18px;
  box-shadow:
    0 0 0 4px rgba(196, 153, 60, 0.3),
    0 2px 6px rgba(0, 0, 0, 0.3);
  animation: marker-pulse 2s ease-in-out infinite;
}

@keyframes marker-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(196, 153, 60, 0.3), 0 2px 6px rgba(0, 0, 0, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(196, 153, 60, 0.15), 0 2px 6px rgba(0, 0, 0, 0.3); }
}

/* --- Active stop panel --- */

.roadtrip-stop-panel {
  position: absolute;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-cream);
  background: rgba(26, 22, 18, 0.94);
  border: 1px solid rgba(196, 153, 60, 0.36);
  border-radius: 6px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
  pointer-events: none;
}

.roadtrip-stop-panel__image {
  border-radius: 4px;
  object-fit: cover;
  flex: 0 0 auto;
}

.roadtrip-stop-panel__image[hidden] {
  display: none;
}

.roadtrip-stop-panel__body {
  min-width: 0;
}

.roadtrip-stop-panel__count {
  margin: 0 0 2px;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.roadtrip-stop-panel__title {
  margin: 0;
  color: var(--color-gold);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
}

.roadtrip-stop-panel__desc {
  display: -webkit-box;
  margin: 4px 0 0;
  overflow: hidden;
  color: rgba(245, 240, 232, 0.84);
  font-family: var(--font-body);
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (min-width: 721px) {
  .roadtrip-stop-panel {
    right: 18px;
    bottom: 18px;
    width: min(360px, calc(100% - 36px));
    min-height: 118px;
    padding: 12px;
  }

  .roadtrip-stop-panel__image {
    width: 96px;
    height: 96px;
  }

  .roadtrip-stop-panel__title {
    font-size: 1.35rem;
  }

  .roadtrip-stop-panel__desc {
    font-size: 0.92rem;
  }
}

@media (max-width: 720px) {
  #luna-di-miele-map {
    height: clamp(460px, 74svh, 640px);
  }

  .roadtrip-dot {
    width: 16px;
    height: 16px;
  }

  .roadtrip-dot--active {
    width: 24px;
    height: 24px;
    box-shadow:
      0 0 0 5px rgba(196, 153, 60, 0.32),
      0 2px 8px rgba(0, 0, 0, 0.36);
  }

  .roadtrip-stop-panel {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 96px;
    padding: 10px;
  }

  .roadtrip-stop-panel__image {
    width: 76px;
    height: 76px;
  }

  .roadtrip-stop-panel__title {
    font-size: 1.18rem;
  }

  .roadtrip-stop-panel__desc {
    font-size: 0.86rem;
  }
}

@media (max-width: 480px) {
  #luna-di-miele-map {
    height: clamp(430px, 72svh, 600px);
  }

  .roadtrip-stop-panel {
    left: 10px;
    right: 10px;
    bottom: 10px;
    min-height: 88px;
    gap: 10px;
  }

  .roadtrip-stop-panel__image {
    width: 64px;
    height: 64px;
  }

  .roadtrip-stop-panel__title {
    font-size: 1.05rem;
  }

  .roadtrip-stop-panel__desc {
    font-size: 0.8rem;
  }
}
