.booking-calendar {
  max-width: 350px;
  margin-bottom: 1.5rem;
}
.booking-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.booking-calendar-header button {
  background: none;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  font-size: 1rem;
  color: inherit;
  transition: background 0.2s, border-color 0.2s;
}
.booking-calendar-header button:hover {
  border-color: var(--primary, #c9956b);
  background: rgba(0,0,0,0.03);
}
.booking-calendar-header .cal-month-year {
  font-weight: 600;
  font-size: 1rem;
}
.booking-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
}
.booking-calendar-grid .cal-dow {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0;
  color: #999;
  text-transform: uppercase;
}
.booking-calendar-grid .cal-day {
  padding: 0.5rem 0;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border: none;
  background: none;
  color: inherit;
}
.booking-calendar-grid .cal-day:hover:not(.cal-disabled):not(.cal-empty) {
  background: var(--primary, #c9956b);
  color: #fff;
}
.booking-calendar-grid .cal-day.cal-disabled {
  color: #ccc;
  cursor: default;
  text-decoration: line-through;
}
.booking-calendar-grid .cal-day.cal-selected {
  background: var(--primary, #c9956b);
  color: #fff;
  font-weight: 700;
}
.booking-calendar-grid .cal-day.cal-today {
  font-weight: 700;
  box-shadow: inset 0 0 0 2px var(--accent, #8b6f4e);
  border-radius: 8px;
}
.booking-calendar-grid .cal-day.cal-empty {
  cursor: default;
}
