/* Popup unidade — compartilhado (home + cardápio) */
.modal__panel--unit {
  width: min(520px, 100%);
  max-width: 520px;
  text-align: center;
  padding: 2rem 1.75rem 1.75rem;
}

.modal__panel--unit h2 {
  margin: 0 0 1.25rem;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand);
}

.unit-cards {
  display: grid;
  gap: 0.85rem;
}

.unit-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  width: 100%;
  padding: 1rem 1.15rem;
  border: 2px solid var(--border);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.unit-card:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(21, 36, 90, 0.12);
  transform: translateY(-2px);
}

.unit-card__city {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand);
}

.unit-card__addr,
.unit-card__phone {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.unit-card__phone {
  font-weight: 600;
  color: #25d366;
}
