/*
  Small additions on top of the original assets/css/style.css for the
  pieces that only exist now that the booking modal and contact form
  are wired to a real backend (name/email/phone fields inside the
  modal, disabled/loading calendar states, and inline success/error
  messages). Everything else keeps using the original stylesheet as-is.
*/

.booking-form { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.booking-form input,
.booking-form textarea {
  width: 100%; border: 1px solid var(--c-border, #e2e8e6); border-radius: 12px;
  padding: 12px 14px; font-size: 14px; background: #fafcfc; font-family: inherit;
}
.booking-form textarea { min-height: 88px; resize: vertical; line-height: 1.55; }
.booking-form-msg {
  font-size: 13px; font-weight: 600; padding: 10px 12px; border-radius: 10px;
  background: #e8f7f5; color: var(--c-teal-800, #025b50);
}

.booking-field { display: flex; flex-direction: column; gap: 8px; }
.booking-field-label { font-size: 13px; font-weight: 700; color: var(--c-ink, #0b2a28); }
.booking-products { display: flex; flex-direction: column; gap: 8px; }
.booking-product {
  display: block; width: 100%; text-align: start; cursor: pointer;
  border: 1px solid var(--c-border, #e2e8e6); border-radius: 12px;
  padding: 12px 14px; background: #fafcfc; color: inherit;
}
.booking-product strong { display: block; font-size: 14px; font-weight: 800; }
.booking-product span { display: block; margin-top: 4px; font-size: 12px; line-height: 1.5; color: var(--c-muted-3, #7d918e); }
.booking-product.selected {
  border-color: var(--c-teal, #0baaa2); background: #e8f7f5;
  box-shadow: inset 0 0 0 1px var(--c-teal, #0baaa2);
}

.cal-grid button:disabled,
.cal-grid button.disabled {
  opacity: .35; cursor: not-allowed; background: #f4f7f7;
}
.cal-grid button.selected { background: var(--c-teal-800, #025b50); color: #fff; }

.slot-list .slot-loading,
.slot-list .slot-empty {
  font-size: 13px; color: var(--c-muted-3, #7d918e); padding: 8px 4px;
}

.contact-form .field,
.c-form .field { margin-bottom: 16px; }
