/* Consultation Embed Widget - matches booking embed design language */
:root {
  --bgpt-primary: #333333;
  --bgpt-primary-hover: #555555;
  --bgpt-bg: #ffffff;
  --bgpt-text: #333333;
  --bgpt-text-muted: #666666;
  --bgpt-border: #e0e0e0;
  --bgpt-surface: #f8f9fa;
  --bgpt-success: #2d5a2d;
  --bgpt-success-bg: #e8f5e8;
  --bgpt-warning: #856404;
  --bgpt-warning-bg: #fff3cd;
  --bgpt-danger: #dc3545;
  --bgpt-radius: 8px;
  --bgpt-radius-sm: 5px;
  --bgpt-font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Remove browser default focus outlines and tap highlights on all interactive elements */
button, [role="button"], .bgpt-card, .bgpt-time-slot, .bgpt-cal-day, .bgpt-cal-nav {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--bgpt-font);
  background: var(--bgpt-bg);
  color: var(--bgpt-text);
  -webkit-font-smoothing: antialiased;
}

/* Widget Container */
.bgpt-widget {
  max-width: 640px;
  margin: 0 auto;
  padding: 24px 20px;
}

/* Logo */
.bgpt-logo { text-align: center; margin-bottom: 24px; }
.bgpt-logo img { max-height: 48px; width: auto; }

/* Progress Bar */
.bgpt-progress {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  padding: 0 4px;
}
.bgpt-progress-step {
  flex: 1;
  height: 4px;
  min-height: 4px;
  max-height: 4px;
  background: var(--bgpt-border);
  border-radius: 2px;
  transition: background 0.3s;
}
.bgpt-progress-step.filled { background: var(--bgpt-primary); }

/* Steps */
.bgpt-step { display: none; }
.bgpt-step.active { display: block; }

/* Typography */
.bgpt-title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.3;
}
.bgpt-subtitle {
  font-size: 15px;
  color: var(--bgpt-text-muted);
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.5;
}
.bgpt-section-title {
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  margin-bottom: 12px;
}

/* Grid Cards (Step 1 - Service Selection) */
.bgpt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.bgpt-card {
  border: 2px solid var(--bgpt-border);
  border-radius: var(--bgpt-radius);
  padding: 20px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--bgpt-bg);
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  user-select: none;
}
.bgpt-card:focus, .bgpt-card:focus-visible {
  outline: none;
}
.bgpt-card:hover {
  border-color: var(--bgpt-primary);
  background: var(--bgpt-surface);
}
.bgpt-card.selected {
  border-color: var(--bgpt-primary);
  background: var(--bgpt-primary);
  color: #fff;
}
.bgpt-card.selected .bgpt-card-icon svg { stroke: #fff; }
.bgpt-card.selected .bgpt-card-desc { color: rgba(255,255,255,0.8); }
.bgpt-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
}
.bgpt-card-icon svg { width: 100%; height: 100%; stroke: var(--bgpt-text); }
.bgpt-card-label { font-weight: 500; font-size: 14px; }
.bgpt-card-desc { font-size: 12px; color: var(--bgpt-text-muted); margin-top: 4px; }

/* Calendar */
.bgpt-calendar { margin-bottom: 20px; }
.bgpt-cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.bgpt-cal-month { font-weight: 600; font-size: 16px; }
.bgpt-cal-nav {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bgpt-surface);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.bgpt-cal-nav:hover { background: var(--bgpt-border); }
.bgpt-cal-nav svg { width: 18px; height: 18px; }
.bgpt-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}
.bgpt-cal-weekdays span {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--bgpt-text-muted);
  padding: 4px;
}
.bgpt-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.bgpt-cal-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--bgpt-radius-sm);
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
}
.bgpt-cal-day:hover:not(.disabled):not(.empty) { background: var(--bgpt-surface); }
.bgpt-cal-day.empty { cursor: default; }
.bgpt-cal-day.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.bgpt-cal-day.today {
  border: 2px solid var(--bgpt-primary);
}
.bgpt-cal-day.selected {
  background: var(--bgpt-primary);
  color: #fff;
}
.bgpt-cal-hint {
  font-size: 9px;
  color: var(--bgpt-danger);
  position: absolute;
  bottom: 2px;
}
.bgpt-cal-hint--low { color: #f59e0b; }
.bgpt-cal-hint--ok { color: #16a34a; }
.bgpt-cal-day.selected .bgpt-cal-hint { color: rgba(255,255,255,0.8); }

/* Slots hint */
.bgpt-slots-hint {
  text-align: center;
  color: var(--bgpt-text-muted);
  font-size: 14px;
  padding: 12px;
}

/* Time Slots */
.bgpt-time-section { margin-top: 20px; }
.bgpt-time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.bgpt-time-slot {
  padding: 12px 8px;
  text-align: center;
  border: 2px solid var(--bgpt-border);
  border-radius: var(--bgpt-radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}
.bgpt-time-slot:hover:not(.disabled) {
  border-color: var(--bgpt-primary);
  background: var(--bgpt-surface);
}
.bgpt-time-slot.selected {
  background: var(--bgpt-primary);
  color: #fff;
  border-color: var(--bgpt-primary);
}
.bgpt-time-slot.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Form */
.bgpt-form { text-align: left; }
.bgpt-form-group { margin-bottom: 20px; }
.bgpt-label {
  display: block;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 6px;
}
.bgpt-optional { font-weight: 400; color: var(--bgpt-text-muted); font-size: 12px; }
.bgpt-input {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 2px solid var(--bgpt-border);
  font-size: 16px;
  font-family: var(--bgpt-font);
  background: transparent;
  color: var(--bgpt-text);
  outline: none;
  transition: border-color 0.2s;
}
.bgpt-input:focus { border-bottom-color: var(--bgpt-primary); }
.bgpt-input::placeholder { color: #aaa; }
.bgpt-textarea {
  border: 2px solid var(--bgpt-border);
  border-radius: var(--bgpt-radius);
  padding: 12px;
  resize: vertical;
  min-height: 100px;
}
.bgpt-textarea:focus { border-color: var(--bgpt-primary); }

/* Buttons */
.bgpt-nav {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding-bottom: 24px;
}
.bgpt-btn {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: var(--bgpt-radius);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--bgpt-font);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.bgpt-btn-primary {
  background: var(--bgpt-primary);
  color: #fff;
}
.bgpt-btn-primary:hover { background: var(--bgpt-primary-hover); }
.bgpt-btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.bgpt-btn-secondary {
  background: transparent;
  color: var(--bgpt-text);
  border: 2px solid var(--bgpt-border);
}
.bgpt-btn-secondary:hover { border-color: var(--bgpt-primary); }
.bgpt-btn-danger {
  background: var(--bgpt-danger);
  color: #fff;
}
.bgpt-btn-danger:hover { opacity: 0.9; }

/* Success Box (Step 5) */
.bgpt-success-box {
  text-align: center;
  margin-bottom: 24px;
}
.bgpt-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--bgpt-success-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bgpt-success-icon svg { width: 32px; height: 32px; stroke: var(--bgpt-success); }

/* Confirmation */
.bgpt-confirmation {
  background: var(--bgpt-surface);
  border-radius: var(--bgpt-radius);
  padding: 20px;
  margin-bottom: 20px;
}
.bgpt-conf-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--bgpt-border);
}
.bgpt-conf-row:last-child { border-bottom: none; }
.bgpt-conf-label { color: var(--bgpt-text-muted); font-size: 14px; }
.bgpt-conf-value { font-weight: 500; font-size: 14px; text-align: right; }

.bgpt-conf-actions { text-align: center; }
.bgpt-conf-actions .bgpt-btn { margin-bottom: 8px; }
.bgpt-conf-email-hint {
  font-size: 13px;
  color: var(--bgpt-text-muted);
  margin-bottom: 16px;
}

/* Manage Actions */
.bgpt-cb-manage-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

/* Warning Box */
.bgpt-warning {
  background: var(--bgpt-warning-bg);
  color: var(--bgpt-warning);
  padding: 16px;
  border-radius: var(--bgpt-radius);
  margin-bottom: 20px;
  font-size: 14px;
}

/* Loading */
.bgpt-loading {
  text-align: center;
  padding: 32px;
  color: var(--bgpt-text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.bgpt-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--bgpt-border);
  border-top-color: var(--bgpt-primary);
  border-radius: 50%;
  animation: bgpt-spin 0.7s linear infinite;
}
.bgpt-spinner-small {
  width: 20px;
  height: 20px;
  border: 2px solid var(--bgpt-border);
  border-top-color: var(--bgpt-primary);
  border-radius: 50%;
  animation: bgpt-spin 0.7s linear infinite;
  margin: 20px auto;
}
@keyframes bgpt-spin { to { transform: rotate(360deg); } }

/* Toast (legacy — kept for consultation embed) */
.bgpt-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bgpt-text);
  color: #fff;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  z-index: 1000;
  max-width: 90%;
  text-align: center;
}

/* Inline error (pickup embed — no toasts in public frontend) */
.bgpt-inline-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  margin-top: 12px;
  text-align: center;
}
[data-theme="dark"] .bgpt-inline-error {
  background: #451a1a;
  color: #fca5a5;
  border-color: #7f1d1d;
}

/* Responsive */
@media (max-width: 480px) {
  .bgpt-widget { padding: 16px 12px; }
  .bgpt-title { font-size: 20px; }
  .bgpt-grid { gap: 8px; }
  .bgpt-card { padding: 16px 8px; }
  .bgpt-card-icon { width: 40px; height: 40px; }
  .bgpt-time-slots { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .bgpt-time-slot { padding: 10px 4px; font-size: 13px; }
}

/* =========================================================
   Preparation Form (prepare.blade.php)
   ========================================================= */
.bgpt-cb-prep-form {
  max-width: 500px;
  margin: 0 auto;
}

.bgpt-cb-prep-intro {
  color: #666;
  margin-bottom: 20px;
}

.bgpt-cb-prep-optional {
  font-size: 13px;
  color: #999;
  margin-bottom: 20px;
}

.bgpt-cb-prep-field {
  margin-bottom: 16px;
}

.bgpt-cb-prep-label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
  font-size: 14px;
}

.bgpt-cb-prep-textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
  resize: vertical;
}

.bgpt-cb-prep-submit {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--bgpt-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.bgpt-cb-prep-submit:hover {
  opacity: 0.9;
}

.bgpt-cb-prep-success {
  text-align: center;
  padding: 32px 0;
}

.bgpt-cb-prep-success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.bgpt-cb-prep-success h2 {
  margin: 0 0 8px;
  color: #333;
}

.bgpt-cb-prep-success p {
  color: #666;
}

.bgpt-cb-prep-success-shop {
  margin-top: 16px;
  font-size: 14px;
  color: #999;
}

/* =========================================================
   Manage Page (manage.blade.php) — replaces inline <style>
   ========================================================= */
.bm-body {
  font-family: var(--bgpt-font, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
  background: #f5f5f5;
  color: #333;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* In iFrame: white background, no padding, card flush */
.bm-body--iframe {
  background: #fff;
  padding: 8px 0;
  min-height: auto;
  align-items: flex-start;
}

.bm-card {
  background: #fff;
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.bm-body--iframe .bm-card {
  box-shadow: none;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.bm-header {
  background: #1a1a1a;
  color: #fff;
  padding: 28px 32px;
  text-align: center;
}

.bm-header h1 {
  font-size: 20px;
  font-weight: 600;
}

.bm-body-inner {
  padding: 32px;
}

.bm-detail-table {
  width: 100%;
  margin-bottom: 24px;
  background: #f8f8f8;
  border-radius: 8px;
  padding: 16px 20px;
}

.bm-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}

.bm-detail-label {
  color: #888;
  font-size: 14px;
}

.bm-detail-value {
  color: #333;
  font-size: 14px;
  font-weight: 600;
}

.bm-status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.bm-status-booked { background: #e8f5e9; color: #2e7d32; }
.bm-status-cancelled { background: #fce4ec; color: #c62828; }
.bm-status-done { background: #e3f2fd; color: #1565c0; }

.bm-warning-box {
  background: #fff3e0;
  border-left: 3px solid #ff9800;
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.bm-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  margin-bottom: 12px;
  transition: opacity 0.2s;
  text-decoration: none;
}

.bm-btn:hover { opacity: 0.85; }
.bm-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.bm-btn-dark { background: #1a1a1a; color: #fff; }
.bm-btn-outline { background: #fff; color: #333; border: 1px solid #ddd; }
.bm-btn-danger { background: #c62828; color: #fff; }

.bm-success-msg, .bm-error-msg {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  text-align: center;
}

.bm-success-msg { background: #e8f5e9; color: #2e7d32; }
.bm-error-msg { background: #fce4ec; color: #c62828; }

.bm-hidden { display: none; }

/* Cancel confirmation success */
.bm-cancel-success {
  text-align: center;
  padding: 20px 0;
}

.bm-cancel-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 32px;
  line-height: 64px;
  margin: 0 auto 16px;
}

.bm-cancel-success h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.bm-cancel-success p {
  color: #666;
  font-size: 14px;
  margin-bottom: 24px;
}

.bm-line-through {
  text-decoration: line-through;
  color: #999;
}

.bm-info-box {
  background: #f0f7ff;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

.bm-change-text {
  margin-bottom: 16px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.bm-change-subtext {
  margin-bottom: 24px;
  font-size: 14px;
  color: #888;
}

/* ─── Display none helper (consultation-embed standalone) ─── */
.d-none { display: none; }

/* bgpt-card-colored: no extra styling — uses standard .bgpt-card.selected (#333) */

/* ─── Debug panel ─── */
.bgpt-cb-debug-panel {
  margin-top: 24px;
  padding: 16px;
  background: #f0f0f0;
  border-radius: 8px;
  font-size: 12px;
  font-family: monospace;
  max-height: 400px;
  overflow: auto;
}
.bgpt-cb-debug-content {
  white-space: pre-wrap;
  word-break: break-all;
}

/* ─── Manage action bar ─── */
.bgpt-cb-manage-action-bar {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

/* =====================================================
 * Pickup-specific styles (Abholtermin)
 * ===================================================== */

/* ─── Toggle Group (assembled/boxed) ─── */
.bgpt-toggle-group {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.bgpt-toggle-option {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border: 2px solid var(--bgpt-border);
  border-radius: var(--bgpt-radius);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
  font-weight: 500;
  color: var(--bgpt-text-muted);
}

.bgpt-toggle-option:hover {
  border-color: var(--bgpt-primary);
  color: var(--bgpt-text);
}

.bgpt-toggle-option.selected {
  border-color: var(--bgpt-primary);
  background: var(--bgpt-surface);
  color: var(--bgpt-text);
  font-weight: 600;
}

@media (max-width: 480px) {
  .bgpt-toggle-group {
    flex-direction: column;
  }
}

/* ─── Collapsible notes ─── */
.bgpt-collapsible {
  margin-top: 20px;
}

.bgpt-collapsible-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--bgpt-text-muted);
  font-size: 14px;
  cursor: pointer;
  padding: 8px 0;
  font-family: var(--bgpt-font);
}

.bgpt-collapsible-btn:hover {
  color: var(--bgpt-text);
}

.bgpt-collapsible-body {
  margin-top: 8px;
}

/* ─── Section divider ─── */
.bgpt-section-divider {
  border-top: 1px solid var(--bgpt-border);
  margin: 24px 0 16px;
}

/* ─── Greeting (customer found) ─── */
.bgpt-cb-greeting {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--bgpt-success-bg);
  border-radius: var(--bgpt-radius);
  margin-top: 12px;
  color: var(--bgpt-success);
  font-weight: 500;
  font-size: 15px;
}

.bgpt-success-icon--small {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.bgpt-success-icon--small svg {
  width: 24px;
  height: 24px;
  color: var(--bgpt-success);
}

/* ─── Confirmation hints box ─── */
.bgpt-conf-hint-box {
  background: var(--bgpt-warning-bg);
  border-radius: var(--bgpt-radius);
  padding: 12px 16px;
  font-size: 14px;
  margin-top: 16px;
  color: var(--bgpt-warning);
}

/* ─── Feedback Stars ─── */
.pk-stars {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 24px 0 8px;
}

.pk-star {
  font-size: 40px;
  cursor: pointer;
  color: var(--bgpt-border);
  transition: color 0.15s, transform 0.15s;
  user-select: none;
  line-height: 1;
}

.pk-star:hover {
  transform: scale(1.15);
}

.pk-star--active {
  color: #f59e0b;
}

.pk-stars-label {
  text-align: center;
  font-size: 14px;
  color: var(--bgpt-text-muted);
  margin-bottom: 16px;
  min-height: 20px;
}

/* ─── Feedback success warning icon ─── */
.bgpt-success-icon--warning svg {
  color: #f59e0b;
}

@media (max-width: 480px) {
  .pk-star {
    font-size: 36px;
  }
}

/* =====================================================
 * Probefahrt Embed — Personalized Test Ride Booking
 * ===================================================== */

/* Greeting section */
.bgpt-cb-pf-greeting {
  margin-bottom: 24px;
}
.bgpt-cb-pf-greeting-title {
  font-size: 22px;
  line-height: 1.4;
}

/* Compact bike card (step 1, below greeting) */
.bgpt-cb-pf-bike-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bgpt-surface);
  border: 1px solid var(--bgpt-border);
  border-radius: var(--bgpt-radius);
  margin-bottom: 28px;
}
.bgpt-cb-pf-bike-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bgpt-bg);
  border-radius: 50%;
  border: 1px solid var(--bgpt-border);
}
.bgpt-cb-pf-bike-icon svg {
  color: var(--bgpt-primary);
}
.bgpt-cb-pf-bike-details {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}
.bgpt-cb-pf-bike-brand {
  font-weight: 600;
}
.bgpt-cb-pf-bike-model {
  font-weight: 500;
}
.bgpt-cb-pf-bike-variant {
  color: var(--bgpt-text-muted);
  font-weight: 400;
}

/* Structured bike summary (step 2) */
.bgpt-cb-pf-bike-summary {
  background: var(--bgpt-surface);
  border: 1px solid var(--bgpt-border);
  border-radius: var(--bgpt-radius);
  padding: 16px 20px;
  margin-bottom: 20px;
}
.bgpt-cb-pf-bike-summary-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--bgpt-border);
  color: var(--bgpt-text);
}
.bgpt-cb-pf-bike-summary-header svg {
  color: var(--bgpt-primary);
}
.bgpt-cb-pf-bike-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
}
.bgpt-cb-pf-bike-label {
  color: var(--bgpt-text-muted);
  font-size: 14px;
}
.bgpt-cb-pf-bike-value {
  font-weight: 500;
  font-size: 14px;
}

/* Time summary (step 2) */
.bgpt-cb-pf-time-summary {
  background: var(--bgpt-surface);
  border: 1px solid var(--bgpt-border);
  border-radius: var(--bgpt-radius);
  padding: 14px 20px;
  margin-bottom: 24px;
}
.bgpt-cb-pf-time-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}
.bgpt-cb-pf-time-row svg {
  color: var(--bgpt-primary);
  flex-shrink: 0;
}

/* Email warning styling */
.bgpt-cb-pf-email-warning {
  color: #c0392b;
  font-weight: 600;
}

@media (max-width: 480px) {
  .bgpt-cb-pf-greeting-title {
    font-size: 19px;
  }
  .bgpt-cb-pf-bike-card {
    padding: 12px 14px;
    gap: 10px;
  }
  .bgpt-cb-pf-bike-details {
    font-size: 14px;
  }
}

/* ============================================================
   DSGVO / Datenschutz Checkbox
   ============================================================ */
.bgpt-datenschutz-section {
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--bgpt-surface);
  border: 1px solid var(--bgpt-border);
  border-radius: var(--bgpt-radius);
}
.bgpt-datenschutz-check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  line-height: 1.4;
}
.bgpt-datenschutz-check-row input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 3px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--bgpt-primary);
}
.bgpt-datenschutz-label {
  font-size: 13px;
  color: var(--bgpt-text);
  flex: 1;
}
.bgpt-datenschutz-label a {
  color: var(--bgpt-primary);
  text-decoration: underline;
}
.bgpt-datenschutz-error {
  font-size: 12px;
  color: #e53e3e;
  margin-top: 6px;
  font-weight: 500;
}
