.booking-time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 8px;
}

.booking-time-chip {
  display: grid;
  gap: 2px;
  border: 1px solid var(--ds-border);
  border-radius: 12px;
  background: #fff;
  padding: 8px 10px;
  text-decoration: none;
  color: var(--ds-text);
  min-height: 44px;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.booking-time-chip:hover {
  border-color: #93c5fd;
  background: #f8fbff;
}

.booking-time-chip--selected {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
  background: #f8fbff;
}

.booking-time-chip__range {
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.1;
  white-space: nowrap;
}

.booking-time-chip__meta {
  font-size: 0.78rem;
  color: #4b5563;
  line-height: 1.1;
  white-space: nowrap;
}

.booking-time-chip--hidden {
  display: none;
}

@media (max-width: 720px) {
  .booking-time-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
