/* =============================================
   BUCHUNGSSEITE – Styles
   ============================================= */

/* === STEP HEADER === */
.step-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: white;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

/* === CASTLE SELECTION GRID === */
.castles-select-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.castle-select-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.castle-select-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.castle-select-card.selected {
  border-color: var(--blue);
  background: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.2);
}

.castle-select-card.selected::after {
  content: '✓';
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--blue);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.castle-select-emoji {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.castle-select-card h3 {
  font-size: 0.85rem;
  margin-bottom: 4px;
  line-height: 1.3;
}

.castle-select-card .castle-size-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.castle-select-card .castle-price-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
}

.castle-category-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 999px;
  margin-bottom: 6px;
}

.castle-category-tag.klein { background: #FFF3CD; color: #856404; }
.castle-category-tag.mittel { background: #BBDEFB; color: #0D47A1; }
.castle-category-tag.gross { background: #C8E6C9; color: #1B5E20; }

/* === LOADING === */
.loading-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px;
  color: var(--text-muted);
}

.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 12px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* === STEP 2 LAYOUT === */
.step2-section {
  background: var(--blue-light);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

/* === STICKY SIDEBAR (rechte Spalte in Schritt 2) === */
.booking-sidebar-col {
  position: sticky;
  top: 20px;
  /* Auf Mobile: position static + vor dem Formular (via order) */
}

.booking-sidebar-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.sidebar-section-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.cart-count {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* === WARENKORB-ITEMS (Sidebar Schritt 3) === */
#cartItems {
  max-height: 340px;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item:first-child {
  border-top: 1px solid var(--border);
}

.cart-item-img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.cart-item-img.klein  { background: linear-gradient(135deg, #FFF3CD, #FFE082); }
.cart-item-img.mittel { background: linear-gradient(135deg, #BBDEFB, #90CAF9); }
.cart-item-img.gross  { background: linear-gradient(135deg, #C8E6C9, #A5D6A7); }

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.cart-item-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.cart-item-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue);
}

.cart-item-label {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.72rem;
}

.cart-item-remove {
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.65rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}

.cart-item-remove:hover {
  border-color: #E53E3E;
  color: #E53E3E;
  background: #FFF5F5;
}

/* === HÜPFBURG-GRID SCHRITT 2 === */
.unavailable-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.castle-unavailable {
  opacity: 0.75;
}

/* === MOBILE KOSTEN-BAR (nur auf kleinen Bildschirmen) === */
.mobile-cost-bar {
  display: none; /* JS setzt display:flex wenn Schritt 3 aktiv */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: white;
  border-top: 2px solid var(--blue);
  padding: 12px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
}

.mobile-cost-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-cost-total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
}

.mobile-cost-label {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* === SELECTED CASTLE SUMMARY === */
.selected-castle-summary {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}

.castle-summary-row {
  display: flex;
  gap: 14px;
  padding: 14px;
}

.castle-summary-thumb {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.castle-summary-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.castle-summary-emoji {
  font-size: 2.4rem;
}

.castle-summary-info {
  flex: 1;
  min-width: 0;
}

.castle-summary-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.castle-summary-name {
  font-size: 1rem;
  margin: 3px 0 0;
}

.castle-summary-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.castle-summary-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.spec-item {
  display: inline-block;
  font-size: 0.75rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px 8px;
  color: var(--text-muted);
}

.castle-summary-prices {
  display: flex;
  border-top: 1px solid var(--border);
}

.summary-price-item {
  flex: 1;
  text-align: center;
  padding: 10px 6px;
  border-right: 1px solid var(--border);
}

.summary-price-item:last-child {
  border-right: none;
}

.summary-price-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.summary-price-item strong {
  font-size: 0.9rem;
  color: var(--blue);
}

.change-castle-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}

.change-castle-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* === KALENDER === */
.calendar-wrapper {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}

.calendar-wrapper input[type="text"] {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
}

.calendar-wrapper input[type="text"]:focus {
  outline: none;
  border-color: var(--blue);
}

.calendar-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.calendar-sublabel {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.4;
}

.calendar-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 10px;
  text-align: center;
}

/* Flatpickr Customization */
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  background: #FFEBEE !important;
  color: #EF9A9A !important;
  text-decoration: line-through;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
}

.flatpickr-day.inRange {
  background: var(--blue-light) !important;
  border-color: transparent !important;
  color: var(--blue) !important;
}

/* === PREISSCHÄTZUNG === */
.price-estimate {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.price-estimate h4 {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.price-estimate .price-row {
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.price-estimate .total-row {
  border-bottom: none;
  border-top: 2px solid var(--border);
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue);
  padding-top: 10px;
  margin-top: 4px;
}

.price-note {
  font-size: 0.77rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

/* === BOOKING FORM COL === */
.booking-form-col {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

/* === SUCCESS === */
.success-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: white;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: var(--shadow-md);
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.success-box h2 {
  margin-bottom: 16px;
  color: var(--blue);
}

.success-box p {
  margin-bottom: 10px;
}

/* === ENTFERNUNGSRECHNER === */
.distance-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  line-height: 1.4;
}

.distance-info.loading {
  background: #F3F4F6;
  color: var(--text-muted);
  align-items: center;
}

.distance-info.ok {
  background: #E8F5E9;
  color: #1B5E20;
  border: 1px solid #A5D6A7;
}

.distance-info.warn {
  background: #FFF8E1;
  color: #856404;
  border: 1px solid #FFD54F;
}

.distance-info.out-of-range {
  background: #FFEBEE;
  color: #B71C1C;
  border: 1px solid #EF9A9A;
}

.dist-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.dist-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid var(--border);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}

.distance-info a {
  color: inherit;
  font-weight: 600;
}

/* === VORAUSWAHL-HINWEIS (Schritt 2) === */
.preselect-notice {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.preselect-notice.ok {
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  color: #1B5E20;
}

.preselect-notice.warn {
  background: #FFF8E1;
  border: 1px solid #FFD54F;
  color: #856404;
}

/* === DATUM + UHRZEIT PAARE === */
.datetime-pairs {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.datetime-pair {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.datetime-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 28px;
  flex-shrink: 0;
}

.datetime-date {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  flex: 1;
}

.datetime-sep {
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.datetime-pair select {
  padding: 6px 10px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: white;
  cursor: pointer;
  flex-shrink: 0;
}

.datetime-pair select:focus {
  outline: none;
  border-color: var(--blue);
}

/* === BESTÄTIGUNGS-SCHRITT === */
.confirm-card {
  max-width: 640px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.confirm-summary {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}

.confirm-row {
  display: flex;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.confirm-row:last-child {
  border-bottom: none;
}

.confirm-row-label {
  color: var(--text-muted);
  flex-shrink: 0;
  width: 120px;
}

.confirm-row-value {
  font-weight: 500;
  flex: 1;
}

.confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

@media (max-width: 560px) {
  .confirm-card {
    padding: 24px 16px;
  }
  .confirm-actions {
    flex-direction: column-reverse;
  }
  .confirm-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* === DATE STEP CARD (Step 1) === */
.date-step-card {
  max-width: 640px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

/* === DATE SUMMARY BAR (top of Step 2) === */
.date-summary-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--blue-light);
  border: 1px solid #BBDEFB;
  border-radius: var(--radius);
  padding: 12px 20px;
  margin-bottom: 20px;
}

.date-summary-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue);
}

/* === CATEGORY FILTER CHIPS === */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 16px;
  border: 2px solid var(--border);
  border-radius: 999px;
  background: white;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: var(--transition);
}

.filter-chip:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.filter-chip.active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

/* === UNAVAILABLE CASTLE CARD STATE === */
.castle-select-card.unavailable {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.castle-select-card.unavailable:hover {
  border-color: var(--border);
  box-shadow: none;
  transform: none;
}

.unavailable-badge {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: #E53E3E;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

/* === SELECTION FOOTER (sticky, bottom of Step 2) === */
.selection-footer {
  position: sticky;
  bottom: 16px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: white;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  padding: 14px 24px;
  box-shadow: 0 8px 32px rgba(21, 101, 192, 0.18);
  margin-top: 24px;
}

.selection-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue);
}

.selection-sep {
  color: var(--border);
}

/* === LIEFERUNGS-AUSWAHL (Schritt 2.5) === */

/* Hüpfburg-Zusammenfassung in Schritt 2.5 */
.castle-summary-25 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto 24px;
}

.castle-summary-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 14px 8px 8px;
}

.castle-summary-img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.castle-summary-img.klein  { background: linear-gradient(135deg, #FFF3CD, #FFE082); }
.castle-summary-img.mittel { background: linear-gradient(135deg, #BBDEFB, #90CAF9); }
.castle-summary-img.gross  { background: linear-gradient(135deg, #C8E6C9, #A5D6A7); }

.castle-summary-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.castle-summary-name {
  font-size: 0.85rem;
  font-weight: 700;
}

.castle-summary-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
}

.delivery-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto 32px;
}

.delivery-choice-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.delivery-choice-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

.delivery-choice-card.selected {
  border-color: var(--blue);
  background: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.15);
}

.delivery-choice-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.delivery-choice-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.delivery-choice-meta {
  flex: 1;
}

.delivery-choice-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.delivery-choice-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.delivery-choice-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}

.delivery-choice-price--free {
  color: #2E7D32;
}

.delivery-choice-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.delivery-address-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 720px;
  margin: 0 auto 24px;
}

.delivery-address-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

@media (max-width: 600px) {
  .delivery-choice-grid {
    grid-template-columns: 1fr;
  }
  .delivery-choice-top {
    flex-wrap: wrap;
  }
}

/* === PRICE ROW (used in price estimate) === */
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .castles-select-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .castles-select-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Hüpfburg-Grid Schritt 2: responsive */
@media (max-width: 1100px) {
  .step2-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .step2-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Warenkorb-Sidebar auf Mobile: kompakt über dem Formular */
  .booking-sidebar-col {
    position: static;
    order: -1;
  }

  .booking-sidebar-card {
    border-radius: 0;
    box-shadow: none;
    border-bottom: 2px solid var(--border);
    padding: 16px;
  }

  #cartItems {
    max-height: 200px;
  }

  .booking-form-col {
    padding: 24px 16px;
    padding-bottom: 80px; /* Platz für mobile-cost-bar */
  }
}

@media (min-width: 769px) {
  /* Mobile-Bar nie auf Desktop zeigen */
  .mobile-cost-bar {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .castles-select-grid {
    grid-template-columns: 1fr 1fr;
  }

  .date-step-card {
    padding: 20px 16px;
  }

  .selection-footer {
    flex-direction: column;
    gap: 10px;
    bottom: 8px;
    padding: 14px 16px;
  }

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

  .date-summary-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* === MENGEN-STEPPER (Schritt 2: Burgkarte) === */
.castle-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 2px solid var(--blue);
  border-radius: 10px;
  overflow: hidden;
}

.stepper-btn {
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue);
  cursor: pointer;
  transition: background 0.15s;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}

.stepper-btn:hover:not(:disabled) {
  background: var(--blue-light, #e8f0fe);
}

.stepper-btn:disabled {
  color: var(--text-muted);
  cursor: not-allowed;
}

.availability-badge {
  font-size: 0.78rem;
  font-weight: 600;
  color: #b45309;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 6px;
  padding: 5px 10px;
  margin-bottom: 10px;
  text-align: center;
}

.stepper-qty {
  flex: 1;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  padding: 0 8px;
  border-left: 1.5px solid var(--blue);
  border-right: 1.5px solid var(--blue);
  line-height: 44px;
}

/* Quantity-Badge in Schritt 2.5 Zusammenfassung */
.castle-summary-qty {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 4px;
  padding: 1px 5px;
  margin-right: 4px;
  vertical-align: middle;
}
