/* ============================================
   FIVE MOVES® — Booking Widget + Standalone Page
   booking.css

   1) Standalone-Buchungsseite (/buchung/andreas etc.)
   2) Inline-Widget im Guide-Profil (mobile-first, 430px)
   ============================================ */

/* ════════════════════════════════════════════
   STANDALONE BUCHUNGSSEITE
   ════════════════════════════════════════════ */

.booking-page {
  min-height: 80vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 160px 20px 60px;
  background: #F8F6F3;
}

.booking-container {
  width: 100%;
  max-width: 460px;
}

/* ── Guide-Header ── */
.guide-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.guide-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #C11D6F;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.guide-info h1 {
  font-size: 20px;
  font-weight: 600;
  color: #2D2D2D;
  letter-spacing: -0.3px;
  margin: 0;
  line-height: 1.3;
}

.guide-role {
  font-size: 13px;
  color: #7a7a7a;
  font-weight: 400;
}

.guide-city {
  font-size: 12px;
  color: #B8AFA6;
  font-weight: 400;
}

/* Widget als Card auf Standalone-Seite */
.booking-page .booking-widget {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 24px 20px 22px;
  box-shadow: 0 2px 16px rgba(45, 45, 45, 0.07);
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .booking-page {
    padding: 130px 14px 40px;
  }
  .booking-page .booking-widget {
    padding: 20px 16px 18px;
    border-radius: 14px;
  }
}

/* ════════════════════════════════════════════
   INLINE-WIDGET (Guide-Profil)
   ════════════════════════════════════════════ */

/* ── Inline-Aufklapper ── */
.booking-inline-wrap {
  padding: 0 16px 10px;
  display: none;
}

.booking-inline-wrap.open {
  display: block;
  animation: bk-in 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes bk-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Widget-Card ── */
.booking-widget-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 22px 18px 20px;
  box-shadow: 0 2px 12px rgba(45, 45, 45, 0.08);
}

/* ── Trigger-Row ── */
.dc-booking-trigger {
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s;
}

.dc-booking-trigger:active { background: #F0EBE6; }

/* Magenta-Icon = primäre Aktion, hebt sich von WhatsApp/Email ab */
.dc-booking-trigger .dc-icon {
  background: #C11D6F;
}

.dc-booking-trigger.active .dc-icon {
  background: #9E1759;
}

.dc-booking-trigger .dc-arrow {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  color: #C11D6F;
  font-size: 16px;
}

.dc-booking-trigger.active .dc-arrow {
  transform: rotate(180deg);
}

/* ── Progress ── */
.bk-progress {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}

.bk-prog-step {
  display: flex;
  align-items: center;
  gap: 4px;
}

.bk-prog-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #E0D6CC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #C8BDB2;
  background: #F8F8F8;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.bk-prog-step.active .bk-prog-dot {
  border-color: #C11D6F;
  color: #C11D6F;
  background: rgba(193, 29, 111, 0.06);
}

.bk-prog-step.done .bk-prog-dot {
  background: #C11D6F;
  border-color: #C11D6F;
  color: #FFFFFF;
}

.bk-prog-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #C8BDB2;
  white-space: nowrap;
}

.bk-prog-step.active .bk-prog-label { color: #C11D6F; }
.bk-prog-step.done  .bk-prog-label  { color: #7a7a7a; }

.bk-prog-line {
  flex: 1;
  height: 1px;
  background: #E0D6CC;
  margin: 0 4px;
  transition: background 0.3s;
}

.bk-prog-line.done { background: #C11D6F; }

/* ── Step Panels ── */
.bk-step { display: none; }
.bk-step.active { display: block; }

.bk-step-title {
  font-size: 17px;
  font-weight: 600;
  color: #2D2D2D;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}

/* ── Zurück-Button ── */
.bk-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  color: #C8BDB2;
  cursor: pointer;
  padding: 0;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
  -webkit-tap-highlight-color: transparent;
}

.bk-back:active { color: #7a7a7a; }

/* ── Primär-Button ── */
.bk-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px;
  background: #2D2D2D;
  color: #FFFFFF;
  border: none;
  border-radius: 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1px;
  cursor: pointer;
  margin-top: 16px;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.bk-btn:hover  { background: #1A1A1A; }
.bk-btn:active { transform: scale(0.99); }

.bk-btn:disabled {
  background: #F0EBE6;
  color: #C8BDB2;
  cursor: not-allowed;
  transform: none;
}

/* ============================================
   SCHRITT 1 — Session-Typen
   ============================================ */

.bk-sessions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bk-session {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid #E0D6CC;
  border-radius: 14px;
  background: #FAFAFA;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.bk-session:active { transform: scale(0.99); }

.bk-session.selected {
  border-color: #C11D6F;
  background: rgba(193, 29, 111, 0.03);
}

.bk-session-body { flex: 1; }

.bk-session-name {
  font-size: 14px;
  font-weight: 600;
  color: #2D2D2D;
  margin-bottom: 2px;
}

.bk-session-hint {
  font-size: 12px;
  color: #7a7a7a;
  line-height: 1.4;
  margin-bottom: 6px;
}

.bk-session-meta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.bk-session-dur {
  font-size: 12px;
  color: #C8BDB2;
  font-weight: 400;
}

.bk-session-price {
  font-size: 12px;
  font-weight: 600;
  color: #C11D6F;
  background: rgba(193, 29, 111, 0.08);
  padding: 2px 8px;
  border-radius: 100px;
}

.bk-session.selected .bk-session-price {
  background: rgba(193, 29, 111, 0.15);
}

.bk-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #E0D6CC;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.bk-session.selected .bk-radio {
  background: #C11D6F;
  border-color: #C11D6F;
}

.bk-session.selected .bk-radio::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
}

/* ============================================
   SCHRITT 2 — Kalender
   ============================================ */

.bk-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.bk-cal-month {
  font-size: 14px;
  font-weight: 600;
  color: #2D2D2D;
}

.bk-cal-btn {
  width: 30px;
  height: 30px;
  border: 1.5px solid #E0D6CC;
  border-radius: 8px;
  background: #FAFAFA;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #7a7a7a;
  transition: all 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.bk-cal-btn:active:not(:disabled) { background: #F0EBE6; }
.bk-cal-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.bk-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.bk-cal-wd {
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #C8BDB2;
  padding: 4px 0 8px;
}

.bk-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 12px;
  color: #C8BDB2;
  transition: all 0.15s;
}

.bk-cal-day.available {
  background: #E8F5E9;
  color: #2E7D32;
  font-weight: 600;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.bk-cal-day.available:active { transform: scale(0.92); }

.bk-cal-day.selected {
  background: #C11D6F !important;
  color: #FFFFFF !important;
  font-weight: 700;
}

.bk-cal-day.today.available {
  border: 1.5px solid #C11D6F;
}

/* ============================================
   SCHRITT 3 — Zeitslots
   ============================================ */

.bk-date-display {
  font-size: 12px;
  font-weight: 500;
  color: #5a5a5a;
  margin-bottom: 12px;
  padding: 8px 12px;
  background: #F0EBE6;
  border-radius: 8px;
}

.bk-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.bk-slot {
  padding: 12px 4px;
  text-align: center;
  border: 1.5px solid #E0D6CC;
  border-radius: 10px;
  background: #FAFAFA;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #2D2D2D;
  transition: all 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.bk-slot:active { transform: scale(0.95); }

.bk-slot.selected {
  background: #C11D6F;
  border-color: #C11D6F;
  color: #FFFFFF;
}

.bk-slot.booked {
  background: #F8F8F8;
  color: #C8BDB2;
  cursor: not-allowed;
  text-decoration: line-through;
  font-weight: 400;
}

/* ============================================
   SCHRITT 4 — Formular
   ============================================ */

.bk-summary {
  background: #F0EBE6;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

.bk-summary-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C8BDB2;
  margin-bottom: 8px;
}

.bk-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  color: #7a7a7a;
  padding: 3px 0;
}

.bk-summary-row strong {
  font-weight: 600;
  color: #2D2D2D;
  text-align: right;
  max-width: 60%;
}

.bk-form {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.bk-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.bk-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bk-field label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7a7a7a;
}

.bk-field input,
.bk-field textarea {
  padding: 11px 13px;
  border: 1.5px solid #E0D6CC;
  border-radius: 10px;
  background: #FAFAFA;
  font-family: inherit;
  font-size: 14px;
  color: #2D2D2D;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  width: 100%;
}

.bk-field input:focus,
.bk-field textarea:focus {
  border-color: #C11D6F;
  background: #FFFFFF;
}

.bk-field textarea {
  resize: none;
  height: 76px;
  line-height: 1.5;
}

.bk-note {
  font-size: 11px;
  color: #C8BDB2;
  line-height: 1.5;
  margin-top: -2px;
}

/* ============================================
   SCHRITT 5 — Bestätigung
   ============================================ */

.bk-confirm {
  text-align: center;
  padding: 20px 8px 8px;
}

.bk-confirm-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(193, 29, 111, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
  color: #C11D6F;
}

.bk-confirm-title {
  font-size: 18px;
  font-weight: 600;
  color: #2D2D2D;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.bk-confirm-detail {
  font-size: 13px;
  color: #7a7a7a;
  line-height: 1.75;
  margin-bottom: 20px;
}

.bk-confirm-detail strong { color: #2D2D2D; font-weight: 600; }

.bk-confirm-close {
  width: 100%;
  padding: 13px;
  background: #F0EBE6;
  color: #5a5a5a;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.bk-confirm-close:active { background: #E0D6CC; }
