/* ─── Prenota / Booking ─── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.booking-info { padding-top: 8px; }

.booking-info-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.booking-info-item:first-child { border-top: 1px solid var(--line); }

.booking-info-icon {
  font-size: 1.4rem;
  line-height: 1;
  min-width: 32px;
}

.booking-info-text h4 {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.booking-info-text p {
  font-size: 0.82rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

/* ─── Map placeholder ─── */
.map-placeholder {
  width: 100%;
  height: 200px;
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.map-placeholder span:first-child { font-size: 2rem; }
.map-placeholder span:last-child { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream-muted); }

