/* ==========================================================================
   Banner-Landingpage (Geburtstagsbanner PID 3194)
   Eingebunden via banner_selbst_gestalten.html
   Brand-Variablen aus fadesing2026.css (--f26-green, --f26-text ...)
   ========================================================================== */

.bp-page {
  --bp-green: var(--f26-green, #7ea000);
  --bp-green-dark: var(--f26-green-dark, #5f7f00);
  --bp-green-soft: var(--f26-green-soft, #eff7d6);
  --bp-text: var(--f26-text, #182230);
  --bp-muted: var(--f26-muted, #607080);
  --bp-border: var(--f26-border, #d6dee7);
  --bp-bg: var(--f26-bg, #f3f6f9);
  --bp-card: #fff;
  --bp-radius: 10px;
  --bp-shadow: 0 4px 18px rgba(24, 34, 48, .07);
  --bp-shadow-hover: 0 8px 24px rgba(24, 34, 48, .12);

  color: var(--bp-text);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 32px;
}

.bp-page * { box-sizing: border-box; }

.bp-section {
  padding: 56px 24px;
  margin: 0;
}

.bp-page .bp-section--alt { background: var(--bp-bg) !important; }
.bp-page .bp-section--brand {
  background: #7ea000 !important;
  background: var(--bp-green) !important;
  color: #fff !important;
}
.bp-page .bp-section--brand .bp-h2,
.bp-page .bp-section--brand h2,
.bp-page .bp-section--brand p,
.bp-page .bp-section--brand .bp-final-cta-sub { color: #fff !important; }
.bp-page .bp-section--brand .bp-final-cta-sub strong { color: #fff !important; }

.bp-container {
  max-width: 1180px;
  margin: 0 auto;
}

.bp-h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 700;
  color: var(--bp-text);
}

.bp-h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  line-height: 1.2;
  margin: 0 0 28px;
  font-weight: 700;
  color: var(--bp-text);
  text-align: center;
}

.bp-section--brand .bp-h2 { color: #fff; }

.bp-subline {
  font-size: 1.05rem;
  color: var(--bp-muted);
  margin: 0 0 22px;
}

/* ----- HERO ----- */
.bp-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 24px 48px;
}

.bp-hero-image {
  background: var(--bp-bg);
  border-radius: var(--bp-radius);
  padding: 12px;
  text-align: center;
  box-shadow: var(--bp-shadow);
}

.bp-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  margin: 0 auto;
}

.bp-hero-content { padding: 8px 0; }

.bp-hero-usps {
  list-style: none;
  padding: 0;
  margin: 18px 0 26px;
}

.bp-hero-usps li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 1rem;
  color: var(--bp-text);
}

.bp-hero-usps .bp-usp-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bp-green-soft);
  color: var(--bp-green-dark);
  border-radius: 50%;
  font-size: 1.1rem;
}

.bp-cta-primary {
  display: inline-block;
  background: var(--bp-green);
  color: #fff !important;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 12px rgba(126, 160, 0, .25);
  width: 100%;
  text-align: center;
  max-width: 420px;
}

.bp-cta-primary:hover {
  background: var(--bp-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(126, 160, 0, .35);
  color: #fff !important;
  text-decoration: none;
}

.bp-cta-primary::after { content: " →"; }

.bp-trust-microcopy {
  font-size: .9rem;
  color: var(--bp-muted);
  margin-top: 12px;
  max-width: 420px;
}

.bp-trust-microcopy strong { color: var(--bp-text); }

.bp-meta-row {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--bp-border);
  font-size: .9rem;
  color: var(--bp-muted);
}

.bp-meta-row p { margin: 4px 0; }
.bp-meta-row strong { color: var(--bp-text); }

/* ----- USP CARDS ----- */
.bp-usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bp-usp-card {
  background: var(--bp-card);
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform .15s, box-shadow .2s;
}

.bp-usp-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--bp-shadow-hover);
}

.bp-usp-card .bp-usp-icon-large {
  font-size: 2rem;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: var(--bp-green-soft);
  color: var(--bp-green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bp-usp-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bp-text);
}

.bp-usp-card p {
  margin: 0;
  font-size: .92rem;
  color: var(--bp-muted);
  line-height: 1.5;
}

/* ----- SIZE BLOCK ----- */
.bp-size-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.bp-size-visual {
  background: var(--bp-card);
  border: 2px dashed var(--bp-border);
  border-radius: var(--bp-radius);
  padding: 40px 24px;
  text-align: center;
}

.bp-size-visual .bp-size-bar {
  display: inline-block;
  background: var(--bp-green);
  color: #fff;
  padding: 60px 80px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.4rem;
  position: relative;
}

.bp-size-visual .bp-size-bar::before {
  content: "130 cm";
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .85rem;
  color: var(--bp-muted);
  font-weight: 500;
}

.bp-size-visual .bp-size-bar::after {
  content: "100 cm";
  position: absolute;
  top: 50%;
  right: -55px;
  transform: translateY(-50%);
  font-size: .85rem;
  color: var(--bp-muted);
  font-weight: 500;
}

.bp-size-text h3 {
  font-size: 1.25rem;
  margin: 0 0 12px;
  font-weight: 700;
}

.bp-size-text p { margin: 0 0 12px; color: var(--bp-muted); }

.bp-size-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.bp-size-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--bp-border);
  font-size: .95rem;
}

.bp-size-list li:last-child { border-bottom: none; }
.bp-size-list strong { color: var(--bp-green-dark); }

/* ----- ANLASS-TILES ----- */
.bp-tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.bp-tile {
  background: var(--bp-card);
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-radius);
  padding: 28px 14px;
  text-align: center;
  text-decoration: none !important;
  color: var(--bp-text) !important;
  transition: all .18s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 110px;
}

.bp-tile:hover {
  background: var(--bp-green);
  color: #fff !important;
  border-color: var(--bp-green);
  transform: translateY(-2px);
  box-shadow: var(--bp-shadow-hover);
}

.bp-tile-emoji {
  font-size: 1.6rem;
  margin-bottom: 6px;
  display: block;
}

.bp-tile-title {
  font-weight: 700;
  font-size: 1rem;
  display: block;
}

.bp-tile-sub {
  font-size: .8rem;
  color: var(--bp-muted);
  margin-top: 2px;
  display: block;
}

.bp-tile:hover .bp-tile-sub { color: rgba(255,255,255,.85); }

.bp-tiles-link {
  text-align: center;
  margin-top: 12px;
}

.bp-tiles-link a {
  color: var(--bp-green-dark);
  font-weight: 600;
  text-decoration: underline;
}

/* ----- STEP BY STEP ----- */
.bp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.bp-step {
  background: var(--bp-card);
  border-radius: var(--bp-radius);
  padding: 28px 20px 24px;
  text-align: center;
  position: relative;
  border: 1px solid var(--bp-border);
}

.bp-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--bp-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
}

.bp-step-icon {
  font-size: 1.8rem;
  margin: 8px 0 10px;
  display: block;
}

.bp-step h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
}

.bp-step p {
  margin: 0;
  font-size: .88rem;
  color: var(--bp-muted);
  line-height: 1.45;
}

/* ----- KONFIGURATOR-WRAPPER ----- */
.bp-configurator {
  background: var(--bp-card);
  border-radius: var(--bp-radius);
  padding: 32px;
  border: 1px solid var(--bp-border);
  scroll-margin-top: 80px;
}

.bp-configurator h2 {
  text-align: center;
  margin-bottom: 24px;
}

/* MODULE_product_options Container darin nicht wegstylen — Modified-Standard belassen,
   nur die alte schwarze Box optisch dezent machen falls noch da */
.bp-configurator .productoptions { background: transparent; }
.bp-configurator .categoryheader {
  color: var(--bp-text) !important;
  background: transparent !important;
}

/* ----- TRUST ----- */
.bp-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 36px;
  align-items: center;
}

.bp-trust-rating {
  background: var(--bp-card);
  border-radius: var(--bp-radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--bp-border);
}

.bp-trust-stars {
  font-size: 2rem;
  color: #f5b400;
  margin-bottom: 8px;
}

.bp-trust-rating-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--bp-text);
  line-height: 1;
}

.bp-trust-rating small {
  display: block;
  margin-top: 6px;
  color: var(--bp-muted);
  font-size: .9rem;
}

.bp-trust-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bp-trust-points li {
  padding: 12px 0;
  border-bottom: 1px solid var(--bp-border);
  display: flex;
  align-items: center;
  gap: 14px;
}

.bp-trust-points li:last-child { border-bottom: none; }

.bp-trust-points .bp-trust-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--bp-green-soft);
  color: var(--bp-green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.bp-trust-points strong {
  display: block;
  margin-bottom: 2px;
  color: var(--bp-text);
}

.bp-trust-points span {
  color: var(--bp-muted);
  font-size: .9rem;
}

/* ----- FAQ ----- */
.bp-faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.bp-faq-item {
  background: var(--bp-card);
  border: 1px solid var(--bp-border);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.bp-faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bp-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.bp-faq-q::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--bp-green-dark);
  font-weight: 400;
  transition: transform .2s;
}

.bp-faq-item.is-open .bp-faq-q::after { content: "−"; }

.bp-faq-q:hover { background: var(--bp-bg); }

.bp-faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease, padding .25s ease;
  color: var(--bp-muted);
}

.bp-faq-item.is-open .bp-faq-a {
  padding: 0 22px 18px;
  max-height: 600px;
}

/* ----- FINAL CTA BLOCK ----- */
.bp-final-cta { text-align: center; }

.bp-final-cta h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 12px;
}

.bp-final-cta p {
  color: rgba(255,255,255,.92);
  margin: 0 0 26px;
  font-size: 1.05rem;
}

.bp-final-cta .bp-cta-primary {
  background: #fff;
  color: var(--bp-green-dark) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  max-width: none;
  width: auto;
  padding: 18px 44px;
}

.bp-final-cta .bp-cta-primary:hover {
  background: #fff;
  color: var(--bp-text) !important;
  transform: translateY(-2px);
}

.bp-final-cta-sub {
  margin-top: 16px;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}

/* ----- RESPONSIVE ----- */
@media (max-width: 980px) {
  .bp-hero { grid-template-columns: 1fr; gap: 24px; padding: 24px 20px; }
  .bp-section { padding: 40px 20px; }
  .bp-usp-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .bp-usp-card { padding: 22px 16px; }
  .bp-size-content { grid-template-columns: 1fr; gap: 24px; }
  .bp-tiles-grid { grid-template-columns: repeat(3, 1fr); }
  .bp-steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .bp-trust-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 600px) {
  .bp-hero { padding: 16px 14px; gap: 18px; }
  .bp-section { padding: 32px 14px; }
  .bp-usp-grid { grid-template-columns: 1fr; }
  .bp-tiles-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .bp-tile { min-height: 90px; padding: 20px 10px; }
  .bp-steps { grid-template-columns: 1fr; gap: 28px; }
  .bp-cta-primary { padding: 14px 24px; font-size: 1.05rem; }
  .bp-configurator { padding: 20px 14px; }
  .bp-size-visual .bp-size-bar { padding: 40px 50px; font-size: 1.1rem; }
  .bp-size-visual .bp-size-bar::after { display: none; }
}

/* Bestehender Modified-Tab-Bereich darunter — kleiner Abstand */
.bp-page + .nav-tabs-container { margin-top: 24px; }
