.bc-wizard{max-width:600px;margin:auto}
.bc-step{margin-bottom:20px}
input{width:100%;margin-bottom:10px}

/* ------------------------------------------------------------------ */
/* Slider                                                              */
/* ------------------------------------------------------------------ */
.bc-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.bc-slider-track-outer {
  overflow-x: hidden;   /* horizontal clippen für Slider-Effekt */
  overflow-y: visible;  /* vertikal sichtbar lassen für Schatten */
  flex: 1;
  /* Zeigt aktive Card + Vorschau der nächsten (20%) */
  padding-right: 20%;
  padding-top: 1rem;    /* Platz für Schatten oben */
  padding-bottom: 1rem; /* Platz für Schatten unten */
  margin-top: -1rem;
  margin-bottom: -1rem;
}

.bc-slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
  will-change: transform;
}

.bc-slide {
  flex: 0 0 calc(100% - 1.5rem);
  min-width: 0;
  transition: opacity 0.4s, transform 0.4s;
}

/* Inaktive Slides abgedunkelt */
.bc-slide:not(.bc-slide--active) {
  opacity: 0.4;
  pointer-events: none;
  transform: scale(0.97);
}

.bc-slide.bc-slide--active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

/* Navigationspfeile */
.bc-slider-prev,
.bc-slider-next {
  background: none;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.bc-slider-prev:hover,
.bc-slider-next:hover {
  background: #f0f0f0;
  border-color: #aaa;
}

.bc-slider-prev:disabled,
.bc-slider-next:disabled {
  opacity: 0.25;
  cursor: default;
}

/* Dots */
.bc-slider-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
}

.bc-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.bc-slider-dot.bc-slider-dot--active {
  background: #2c6e3f;
  transform: scale(1.3);
}

.bc-card h2 {
  background-color: unset !important;
  max-width: 32ch;
  text-indent: 2em;
  line-height: 1.25;
  margin: 0;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  text-indent: 4ch;
  font-family: "Times" !important;
  font-weight: 300;
  font-style: italic;
}

.bc-card h1 {
  background-color: unset !important;
  max-width: 32ch;
  text-indent: 2em;
  line-height: 1.25;
  margin: 0;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  text-indent: 4ch;
  font-family: "Times" !important;
  font-weight: 300;
  font-style: italic;
}

.bc-card {
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 6px;
  background: var(--background-light, #fff);
  font-family: "Times";
  font-weight: 300;
  text-align: center;
}

form.bc-form {
  display: flex !important;
  flex-direction: column !important;
  text-align: center !important;
}

.bc-card h3 { margin-top: 0; color: var(--theme-color, #333); }
.bc-card input, .bc-card button { width: 100%; margin-bottom: .5rem; }

/* ------------------------------------------------------------------ */
/* Metabox: fixe + optionale Gerichte nebeneinander                    */
/* ------------------------------------------------------------------ */
.bc-dishes-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.bc-dishes-col {
  background: #f9f9f9;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: .75rem 1rem;
}

.bc-dishes-col p.bc-col-header {
  margin: 0 0 .5rem;
  font-weight: 600;
  font-size: 13px;
  color: #444;
  border-bottom: 1px solid #ddd;
  padding-bottom: .4rem;
}

.bc-dishes-col label {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: .35rem;
  font-size: 13px;
  cursor: pointer;
}

.bc-dishes-col label.bc-optional-label[style*="0.35"] {
  text-decoration: line-through;
  color: #aaa;
}

/* ------------------------------------------------------------------ */
/* Dropdowns (Frontend)                                                */
/* ------------------------------------------------------------------ */
.bc-dropdown { position: relative; margin-bottom: 1rem; }
.bc-dropdown-menu {
  display: none;
  position: relative;
  background: #fafafa;
  border: 1px solid #ddd;
  padding: .5rem;
  border-radius: 4px;
  max-height: 160px;
  overflow-y: auto;
}
.bc-dropdown label { display: block; margin-bottom: .2rem; }
.bc-liveprice { font-weight: bold; margin: .5rem 0; }

.bc-section ul li {
  text-align: center;
  list-style-type: none !important;
  list-style-image: none;
}

.bc-persons {
  width: 120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ------------------------------------------------------------------ */
/* Vorschau                                                            */
/* ------------------------------------------------------------------ */
.bc-vorschau {
  max-width: 80%;
  margin: 0 auto;
  font-family: "Times", serif;
}

.bc-summary {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  background: #fafafa;
}

.bc-fixed-list div,
.bc-chosen-list div {
  padding: .2rem 0;
}

/* .bc-fixed-list div::before { content: "✔  "; color: #555; }
.bc-chosen-list div::before { content: "☑  "; color: #555; } */

.bc-address-form {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.bc-address-form label {
  font-weight: 600;
  margin-bottom: .2rem;
}

.bc-address-form input {
  width: 100%;
  padding: .5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.bc-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.bc-btn {
  padding: .6rem 1.4rem;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid #ccc;
}

.bc-btn-primary {
  background: #2c6e3f;
  color: #fff;
  border-color: #2c6e3f;
}

.bc-btn-primary:hover { background: #235530; }

.bc-btn-secondary {
  background: #fff;
  color: #333;
  border-color: #ccc;
}

.bc-btn-secondary:hover { background: #f0f0f0; }

.bc-errors { margin-bottom: 1rem; }
.bc-error  { color: #c00; margin: .2rem 0; }

/* ------------------------------------------------------------------ */
/* Dankesseite                                                         */
/* ------------------------------------------------------------------ */
.bc-danke {
  text-align: center;
  padding: 3rem 1rem;
  font-family: "Times", serif;
}

.bc-danke-icon {
  font-size: 3rem;
  color: #2c6e3f;
  margin-bottom: 1rem;
}

/* ------------------------------------------------------------------ */
/* Bearbeiten-Modus: aktiver Slide hervorheben                         */
/* ------------------------------------------------------------------ */
.bc-slide.bc-slide--active {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0, 0, 0, 0.08);
}
