/* Studio booking page — uses tokens defined in styles.css */

.booking-shell {
  max-width: 700px;
  margin-inline: auto;
  padding: 3rem var(--edge) 5rem;
}

.booking-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-card);
}
.booking-card + .booking-card { margin-top: 1.5rem; }

.duration-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0;
  flex-wrap: wrap;
}
.stepper {
  display: flex;
  align-items: center;
  border: 2px solid var(--blue-primary);
  border-radius: 999px;
  overflow: hidden;
}
.stepper button {
  background: var(--white);
  border: none;
  color: var(--blue-primary);
  font-size: 1.3rem;
  font-weight: 700;
  width: 44px;
  height: 44px;
  line-height: 1;
}
.stepper button:hover:not(:disabled) { background: var(--grey-light); }
.stepper button:disabled { color: #B7C6DE; cursor: not-allowed; }
.stepper .duration-value {
  min-width: 90px;
  text-align: center;
  font-weight: 600;
  font-family: var(--font-mono);
}
.price-display { font-family: var(--font-mono); font-size: 1.4rem; font-weight: 700; color: var(--blue-dark); }
.price-sub { font-family: var(--font-mono); font-size: 0.8rem; color: #6B7280; }

.btn-block { width: 100%; justify-content: center; }

.day-group { margin-bottom: 1.25rem; }
.day-group h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 0.6rem; }
.slot-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.slot-btn {
  background: var(--white);
  border: 2px solid var(--blue-primary);
  color: var(--blue-primary);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
}
.slot-btn:hover { background: var(--blue-primary); color: var(--white); }
.slot-btn.selected { background: var(--blue-primary); color: var(--white); }

.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.35rem; }
.form-field input, .form-field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #D6DCE5;
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.95rem;
}
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--purple-accent); border-color: transparent; }
.form-row { display: flex; gap: 1rem; }
.form-row .form-field { flex: 1; }
.checkbox-field { display: flex; align-items: flex-start; gap: 0.6rem; }
.checkbox-field input { width: auto; margin-top: 0.2rem; }

.radio-field { display: flex; align-items: flex-start; gap: 0.6rem; margin-top: 0.5rem; }
.radio-field input { width: auto; margin-top: 0.2rem; }
.radio-field label { display: inline; font-weight: normal; margin-bottom: 0; }

.summary-line { display: flex; justify-content: space-between; padding: 0.4rem 0; font-size: 0.95rem; }
.summary-line strong { font-family: var(--font-mono); }

.invoice-note { background: #EAF1FB; color: var(--blue-dark); font-size: 0.85rem; padding: 0.7rem 0.9rem; border-radius: var(--radius-sm); margin: 0.75rem 0 1.1rem; }

.status-message { padding: 0.9rem 1rem; border-radius: var(--radius-sm); font-size: 0.9rem; margin-bottom: 1rem; }
.status-message.error { background: #FBEAE8; color: #C4382E; }
.status-message.info { background: #EAF1FB; color: var(--blue-dark); }

.confirmation h2 { color: #1F8A55; }
.hidden { display: none !important; }

.step-back { background: none; border: none; color: var(--blue-primary); font-weight: 600; margin-bottom: 1rem; padding: 0; cursor: pointer; }
