/* ─── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.2px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out), border-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary { background: var(--accent-terracotta); color: var(--text-white); }
.btn--primary:hover { background: var(--accent-terracotta-hover); }

.btn--outline {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid var(--text-white);
}
.btn--outline:hover { background: var(--text-white); color: var(--bg-navy); }

.btn--outline-dark {
  background: transparent;
  color: var(--bg-navy);
  border: 1.5px solid var(--bg-navy);
}
.btn--outline-dark:hover { background: var(--bg-navy); color: var(--text-white); }

.btn--lg { padding: 16px 28px; font-size: 15px; }
.btn--xl { padding: 18px 40px; font-size: 16px; }
.btn--full { width: 100%; }

.btn[disabled] { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

/* ─── Trust card (Component/Trust Card f1jGN) ────────── */
.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 28px 20px;
  text-align: center;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.trust-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-cream);
  color: var(--bg-navy);
  border-radius: 50%;
  font-size: 28px;
}
.trust-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}
.trust-card__desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* ─── Review card (Component/Review Card u0e2vw) ────── */
.review-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
}
.review-card__stars { display: flex; gap: 2px; color: var(--accent-terracotta); font-size: 14px; }
.review-card__quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-dark);
  font-style: italic;
}
.review-card__author {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ─── Form input (Component/Form Input LvbFr) ────────── */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.form-field__label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--text-dark);
}
.form-field__input,
.form-field__textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.form-field__input:focus,
.form-field__textarea:focus {
  border-color: var(--bg-navy);
  box-shadow: 0 0 0 3px rgba(14, 58, 105, 0.08);
  outline: 0;
}
.form-field__textarea { resize: vertical; min-height: 120px; font-family: var(--font-body); }
.form-field__hint { font-size: 12px; color: var(--text-secondary); }

/* ─── Step item (Component/Step Item FtU4Y) ─────────── */
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step__num {
  flex: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-terracotta);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  border-radius: 50%;
}
.step:first-of-type .step__num,
.step--accent .step__num { background: var(--bg-navy); }
.step__body { flex: 1; padding-top: 6px; }
.step__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.step__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* ─── Time slot (Component/Time Slot Zl8kQ) ─────────── */
.slot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-dark);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s var(--ease-out), color 0.15s var(--ease-out), border-color 0.15s var(--ease-out);
  text-align: center;
}
.slot:hover:not(.slot--busy):not(.slot--active) {
  border-color: var(--accent-blue);
  background: var(--bg-cream);
}
.slot--active {
  background: var(--accent-blue);
  color: var(--text-white);
  border-color: var(--accent-blue);
  font-weight: 600;
}
.slot--busy {
  background: var(--bg-sand);
  border-color: var(--border-sand);
  color: var(--text-muted);
  cursor: pointer;
}

/* ─── Guest counter (Component/Guest Counter wj4wf) ── */
.counter {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.counter__label { font-size: 13px; font-weight: 500; color: var(--text-dark); }
.counter__sub { font-size: 12px; color: var(--text-secondary); }
.counter__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  padding: 8px 12px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
}
.counter__btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-cream);
  color: var(--bg-navy);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 600;
  transition: background 0.15s var(--ease-out), color 0.15s var(--ease-out);
}
.counter__btn:hover:not([disabled]) { background: var(--bg-navy); color: var(--text-white); }
.counter__btn[disabled] { opacity: 0.3; cursor: not-allowed; }
.counter__value {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  min-width: 24px;
  text-align: center;
}

/* ─── Section headers ────────────────────────────────── */
.section-header { display: flex; flex-direction: column; gap: 16px; }
.section-header--center { align-items: center; text-align: center; }
.section-header--inverse .h2 { color: var(--text-white); }
.section-header__lede { max-width: 60ch; }

/* ─── Card / panel ──────────────────────────────────── */
.panel {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 20px;
}

/* ─── Badge ──────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
}
.badge--pending { background: rgba(206, 90, 57, 0.15); color: var(--accent-terracotta); }
.badge--confirmed { background: rgba(107, 127, 94, 0.18); color: var(--accent-olive); }
.badge--rejected { background: rgba(94, 89, 84, 0.15); color: var(--text-secondary); }
.badge--admin { background: var(--accent-terracotta); color: var(--text-white); padding: 3px 8px; font-size: 10px; letter-spacing: 1.5px; }

/* ─── Toast / modal ──────────────────────────────────── */
.toast-root,
.modal-root {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(14, 58, 105, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.toast-root.is-open,
.modal-root.is-open { opacity: 1; pointer-events: auto; }

.modal {
  width: 100%;
  max-width: 480px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease-out);
}
.modal-root.is-open .modal { transform: none; }
.modal__title { font-family: var(--font-heading); font-size: 22px; font-weight: 600; color: var(--text-dark); }
.modal__body { font-size: 15px; line-height: 1.55; color: var(--text-secondary); }
.modal__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── Sticky CTA bar (mobile) ────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: var(--bg-cream);
  border-top: 1px solid var(--border-light);
  display: none;
  z-index: 50;
}
