.booking-choices {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

.booking-choices legend {
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 700;
}

.booking-choices .hint {
  margin: -4px 0 10px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-grid label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.choice-grid.detailed label > span {
  display: grid;
  line-height: 1.3;
}

.choice-grid.detailed small {
  margin-top: 2px;
  color: var(--muted);
}

.choice-grid label:has(input:checked) {
  border-color: var(--green);
  background: var(--green-light);
  color: var(--green-dark);
}

.choice-grid input {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 auto;
  accent-color: var(--green);
}

@media (max-width: 560px) {
  .choice-grid {
    grid-template-columns: 1fr;
  }
}
