.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: clamp(0.2rem, 0.5vw, 0.5rem);
  max-width: 100%;
  margin: 0 auto;
}
.calendar-day-header {
  text-align: center;
  font-size: clamp(0.78rem, 1.2vw, 1rem);
  color: var(--gold-500);
  padding: 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.calendar-day-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.calendar-day {
  width: clamp(2rem, 2.3vw, 2.5rem);
  height: clamp(2rem, 2.3vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  transition: all 0.2s;
  cursor: pointer;
  font-size: clamp(0.95rem, 1.4vw, 1rem);
}
.calendar-day:hover:not(.disabled):not(.selected) {
  background: var(--secondary);
}
.calendar-day.selected {
  background: var(--gold-500);
  color: var(--background);
}
.calendar-day.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.time-slot {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  transition: all 0.2s;
  cursor: pointer;
  font-size: 0.875rem;
  text-align: center;
  width: 100%;
  display: block;
  box-sizing: border-box;
}
.time-slot:hover:not(.selected) {
  border-color: var(--gold-500);
  color: var(--gold-500);
}
.time-slot.selected {
  background: var(--gold-500);
  color: var(--background);
  border-color: var(--gold-500);
}
.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.progress-step {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}
.progress-step.active {
  background: var(--gold-500);
  color: var(--background);
}
.progress-step.inactive {
  background: var(--secondary);
  color: var(--muted-foreground);
}
.progress-line {
  width: 2rem;
  height: 2px;
  margin: 0 0.25rem;
}
.progress-line.active {
  background: var(--muted-foreground);
}
.progress-line.inactive {
  background: var(--secondary);
}
.guest-counter {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.guest-counter-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: var(--secondary);
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid var(--border);
}
.guest-counter-btn:hover {
  background: var(--gold-500);
  color: var(--background);
  border-color: var(--gold-500);
}
.guest-count {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  width: 3rem;
  text-align: center;
}
.reservation-container {
  width: 100%;
  max-width: none;
  margin: 0;
}
.res-details-form {
  width: 100%;
}
.res-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .res-details-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.calendar-nav h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--gold-500);
}
.calendar-nav-btn {
  padding: 0.5rem;
  border-radius: 9999px;
  transition: background 0.3s;
}
.calendar-nav-btn:hover:not(:disabled) {
  background: var(--secondary);
  color: var(--gold-500);
}
.calendar-nav-btn.nav-disabled {
  opacity: 0.2;
  cursor: not-allowed;
  pointer-events: none;
}
.calendar-nav-btn svg {
  width: 20px;
  height: 20px;
}
.time-inline-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 0.35rem;
}
.back-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.back-btn-info .back-label {
  color: var(--gold-500);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.back-btn-info .back-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
}
.confirmation-details {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}
.confirmation-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
}
.confirmation-row:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.confirmation-row svg {
  width: 20px;
  height: 20px;
  color: var(--gold-500);
  flex-shrink: 0;
}
.confirmation-row .conf-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.confirmation-row .conf-value {
  font-weight: 500;
}
.confirmation-actions {
  display: flex;
  gap: 1rem;
}
.confirmation-actions .btn {
  flex: 1;
}
