/*
Theme Name: Goldene Brötchen
Theme URI: https://goldenebroetchen.de
Author: Goldene Brötchen
Description: Individuelles Theme für goldenebroetchen.de
Version: 1.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
Text Domain: goldene-broetchen
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #FDF6E7;
  --gold-dark: #8B6914;
  --brown: #2A1A0E;
  --brown-mid: #4A2E1A;
  --brown-light: #7A5038;
  --cream: #FAF7F2;
  --text: #1C1008;
  --text-muted: #7A6050;
  --bg: #FFFFFF;
  --border: #EDE5D8;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* =============================================
   NAVIGATION
   ============================================= */
.gb-nav {
  background: var(--brown);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.gb-nav__logo {
  font-family: 'DM Serif Display', serif;
  color: var(--gold);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.gb-nav__links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  align-items: center;
}

.gb-nav__links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.gb-nav__links a:hover { color: var(--gold); }

.gb-nav__tel {
  color: var(--gold-light) !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.5px !important;
  text-transform: none !important;
  font-weight: 500 !important;
}

.gb-nav__tel:hover { color: var(--gold) !important; }

.gb-nav__cta {
  background: var(--gold);
  color: var(--brown) !important;
  padding: 7px 16px;
  border-radius: 4px;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: none !important;
  transition: background 0.2s;
}

.gb-nav__cta:hover { background: var(--gold-light) !important; }

/* Hamburger (Mobile) */
.gb-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.gb-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.25s;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  background: var(--gold);
  color: var(--brown);
  padding: 12px 26px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  color: var(--brown);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.65);
  padding: 12px 26px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
  text-decoration: none;
}

.btn-ghost:hover {
  border-color: rgba(201,168,76,0.5);
  color: var(--gold-light);
}

.btn-primary-sm {
  background: var(--gold);
  color: var(--brown);
  padding: 9px 20px;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary-sm:hover { background: var(--gold-light); color: var(--brown); }

/* =============================================
   SECTION BASICS
   ============================================= */
.section-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
}

.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.section-divider {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin: 1rem 0 1.5rem;
  border-radius: 2px;
}

/* =============================================
   HERO
   ============================================= */
.gb-hero {
  background: var(--brown);
  background-size: cover;
  background-position: center top;
  padding: 5rem 2.5rem 0;
  overflow: hidden;
  position: relative;
}

.gb-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,10,4,0.88) 0%, rgba(26,10,4,0.65) 60%, rgba(26,10,4,0.45) 100%);
  pointer-events: none;
  z-index: 0;
}

.gb-hero__inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.gb-hero__content { padding-bottom: 4rem; }

.gb-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.gb-hero__title {
  font-family: 'DM Serif Display', serif;
  color: #FFFBF4;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.gb-hero__title em {
  color: var(--gold);
  font-style: italic;
}

.gb-hero__sub {
  color: rgba(255,255,255,0.45);
  font-size: 0.95rem;
  font-weight: 300;
  max-width: 440px;
  margin-bottom: 2.25rem;
}

.gb-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.gb-hero__visual {
  font-size: 8rem;
  line-height: 1;
  opacity: 0.18;
  padding-bottom: 2rem;
  user-select: none;
}

.gb-hero__stats {
  background: rgba(0,0,0,0.45);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  position: relative;
  z-index: 1;
}

.gb-hero__stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
}

.gb-stat {
  flex: 1;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  padding: 0 1rem;
}

.gb-stat:last-child { border-right: none; }

.gb-stat strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.gb-stat span {
  color: rgba(255,255,255,0.3);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* =============================================
   PROBE STRIP
   ============================================= */
.gb-probe-strip {
  background: var(--gold-pale);
  border-bottom: 1px solid #F0E4C4;
  padding: 1.1rem 2.5rem;
}

.gb-probe-strip__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.gb-probe-strip p {
  font-size: 0.88rem;
  color: var(--brown-mid);
}

.gb-probe-strip strong {
  font-weight: 600;
  color: var(--gold-dark);
}

/* =============================================
   LIEFERZEITEN
   ============================================= */
.gb-zeiten-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}

.gb-zeit-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
}

.gb-zeit-card h3 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}

.gb-zeit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}

.gb-zeit-row:last-child { border-bottom: none; }
.gb-zeit-row .label { color: var(--text-muted); font-weight: 400; }
.gb-zeit-row .value { color: var(--brown); font-weight: 600; font-size: 0.82rem; }

.gb-zeit-card--dark {
  background: var(--brown);
  border-color: var(--brown);
}

.gb-zeit-card--dark h3 { color: var(--gold-light); }
.gb-zeit-card--dark .gb-zeit-row { border-bottom-color: rgba(255,255,255,0.08); }
.gb-zeit-card--dark .label { color: rgba(255,255,255,0.45); }
.gb-zeit-card--dark .value { color: var(--gold-light); }

/* =============================================
   LIEFERGEBIET
   ============================================= */
.gb-liefergebiet-bg {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.gb-plz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.gb-plz-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.2s;
}

.gb-plz-item:hover { border-color: var(--gold); }

.gb-plz-badge {
  background: var(--gold);
  color: var(--brown);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.gb-plz-item span { font-size: 0.83rem; color: var(--brown-light); font-weight: 400; }

.gb-gebuehr-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 8px 16px;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--brown-mid);
  font-weight: 500;
}

.gb-gebuehr-info strong { color: var(--gold-dark); }

/* =============================================
   ÜBER UNS
   ============================================= */
.gb-ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
}

.gb-ueber-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.gb-bakery-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
}

.gb-bakery-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.gb-bakery-avatar {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--brown);
  flex-shrink: 0;
}

.gb-bakery-card h3 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 2px;
}

.gb-bakery-tag {
  font-size: 0.7rem;
  color: var(--gold-dark);
  font-weight: 500;
}

.gb-bakery-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.gb-bakery-card p:last-child { margin-bottom: 0; }

.gb-bakery-detail {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
  padding: 0.5rem 0;
  border-top: 1px solid var(--border);
}

.gb-bakery-detail strong { color: var(--brown); font-weight: 500; }

/* =============================================
   FAQ
   ============================================= */
.gb-faq-bg {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.gb-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: white;
  margin-top: 1.75rem;
}

.gb-faq-col { display: flex; flex-direction: column; }
.gb-faq-col:first-child { border-right: 1px solid var(--border); }

.gb-faq-item { border-bottom: 1px solid var(--border); }
.gb-faq-item:last-child { border-bottom: none; }

.gb-faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.15s;
}

.gb-faq-q:hover { background: var(--cream); }

.gb-faq-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-dark);
  font-size: 0.75rem;
  transition: transform 0.2s, background 0.2s;
}

.gb-faq-q.open .gb-faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--brown);
}

.gb-faq-a {
  display: none;
  padding: 0 1.25rem 1.1rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.75;
}

.gb-faq-a.open { display: block; }

/* =============================================
   KONTAKT
   ============================================= */
.gb-kontakt-bg { background: var(--brown); }
.gb-kontakt-bg .section-title { color: #FFFBF4; }
.gb-kontakt-bg .section-label { color: var(--gold-light); opacity: 0.8; }
.gb-kontakt-bg .section-divider { background: rgba(201,168,76,0.5); }

.gb-kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.gb-kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.gb-kontakt-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.gb-kontakt-info-icon {
  width: 36px;
  height: 36px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.gb-kontakt-info-text { padding-top: 2px; }

.gb-kontakt-info-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 3px;
}

.gb-kontakt-info-text a,
.gb-kontakt-info-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}

.gb-kontakt-info-text a:hover { color: var(--gold-light); }

.gb-kontakt-form { display: grid; gap: 1rem; }

.gb-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.gb-form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 7px;
}

.gb-form-group input,
.gb-form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 11px 14px;
  color: rgba(255,255,255,0.85);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
}

.gb-form-group input:focus,
.gb-form-group textarea:focus { border-color: rgba(201,168,76,0.5); }

.gb-form-group textarea { height: 110px; resize: vertical; }

.gb-form-group input::placeholder,
.gb-form-group textarea::placeholder { color: rgba(255,255,255,0.2); }

/* Erfolgsmeldung */
.gb-form-success {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  color: var(--gold-light);
  font-size: 0.88rem;
  display: none;
}

/* =============================================
   FOOTER
   ============================================= */
.gb-footer {
  background: #130B04;
  padding: 1.4rem 2.5rem;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.12);
}

.gb-footer p {
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
  font-weight: 300;
}

.gb-footer a {
  color: rgba(201,168,76,0.5);
  text-decoration: none;
}

.gb-footer a:hover { color: var(--gold); }

.gb-footer strong { color: rgba(201,168,76,0.4); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .gb-nav {
    padding: 0 1.25rem;
    flex-wrap: wrap;
    height: auto;
    min-height: 56px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .gb-nav__toggle { display: flex; }

  .gb-nav__links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 1rem 0;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .gb-nav__links.open { display: flex; }

  .gb-nav__links a {
    font-size: 0.85rem;
    padding: 0.25rem 0;
  }

  .gb-hero__inner { grid-template-columns: 1fr; }
  .gb-hero__visual { display: none; }
  .gb-hero { padding: 3rem 1.25rem 0; }
  .gb-hero__content { padding-bottom: 2.5rem; }

  .gb-hero__stats-inner { flex-wrap: wrap; }
  .gb-stat { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .gb-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }

  .gb-probe-strip { padding: 1rem 1.25rem; }
  .section-wrap { padding: 3rem 1.25rem; }

  .gb-zeiten-grid { grid-template-columns: 1fr; }
  .gb-ueber-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gb-faq-grid { grid-template-columns: 1fr; }
  .gb-faq-col:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .gb-kontakt-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gb-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gb-hero__title { font-size: 1.9rem; }
  .gb-hero__cta { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
}

/* =============================================
   ERFOLGS- UND FEHLERBOX
   ============================================= */
.gb-success-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #EBF7EE;
  border: 1px solid #6DBF85;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  animation: gb-fadein 0.4s ease;
}

.gb-success-icon {
  width: 32px;
  height: 32px;
  background: #6DBF85;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.gb-success-box strong {
  display: block;
  color: #1A5C2A;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.gb-success-box p {
  color: #2D7A3F;
  font-size: 0.85rem;
  font-weight: 300;
  margin: 0;
}

.gb-error-box {
  background: #FEF0EE;
  border: 1px solid #E08070;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  color: #8B3020;
  font-size: 0.88rem;
}

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

/* =============================================
   KONTAKTFORMULAR ERFOLGSBOX
   ============================================= */
.gb-form-success {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(109,191,133,0.12);
  border: 1px solid rgba(109,191,133,0.4);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  animation: gb-fadein 0.4s ease;
}

.gb-form-success strong {
  display: block;
  color: #6DBF85;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.gb-form-success p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 300;
  margin: 0;
}

/* =============================================
   PROBELIEFERUNGS-FORMULAR
   ============================================= */
.gb-form-section {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}

.gb-form-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 1.25rem;
}

.gb-form-hint {
  font-weight: 300;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.gb-broetchen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.gb-broetchen-card {
  position: relative;
  background: var(--cream);
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 1rem 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  user-select: none;
}

.gb-broetchen-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.gb-broetchen-card.selected {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.gb-broetchen-card.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.gb-broetchen-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.gb-broetchen-emoji {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.gb-broetchen-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--brown);
  line-height: 1.3;
}

.gb-broetchen-check-icon {
  display: none;
  position: absolute;
  top: 6px;
  right: 8px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  color: var(--brown);
  font-size: 0.7rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
}

.gb-broetchen-card.selected .gb-broetchen-check-icon {
  display: flex;
}

.gb-selection-count {
  font-size: 0.82rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin: 0;
}

.gb-probe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.gb-form-group--full {
  grid-column: 1 / -1;
}

.gb-form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.gb-form-group input,
.gb-form-group select,
.gb-form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
}

.gb-form-group input:focus,
.gb-form-group select:focus,
.gb-form-group textarea:focus {
  border-color: var(--gold);
  background: white;
}

/* =============================================
   FAQ ANIMATION
   ============================================= */
.gb-faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease, padding 0.3s ease;
  padding: 0 1.25rem;
  overflow: hidden;
}

.gb-faq-a-inner {
  overflow: hidden;
  font-size: 0.83rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.75;
}

.gb-faq-a.open {
  grid-template-rows: 1fr;
  padding: 0 1.25rem 1.1rem;
}

/* =============================================
   TRUSTBAR FIX
   ============================================= */
.gb-hero__stats {
  background: rgba(0,0,0,0.5);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 2.5rem;
  position: relative;
  z-index: 1;
  margin: 0 -2.5rem;
}

/* =============================================
   RESPONSIVE PROBELIEFERUNG
   ============================================= */
@media (max-width: 600px) {
  .gb-probe-grid { grid-template-columns: 1fr; }
  .gb-form-group--full { grid-column: 1; }
  .gb-broetchen-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
}

/* Sortiment Button auffälliger */
.btn-sortiment {
  background: var(--gold-pale);
  color: var(--gold-dark);
  padding: 12px 26px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
  text-decoration: none;
}
.btn-sortiment:hover {
  background: var(--gold);
  color: var(--brown);
  transform: translateY(-1px);
}

/* Broetchen Bilder in Karten */
.gb-broetchen-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 0.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Schwarzer Hintergrund bei Broetchen-Bildern ausblenden */
.gb-broetchen-card {
  background: #1A0F08;
}
.gb-broetchen-card.selected {
  background: #2A1A0E;
  border-color: var(--gold);
}
.gb-broetchen-name {
  color: #EDE5D8;
}
.gb-broetchen-img {
  mix-blend-mode: lighten;
}

/* Zaehler Buttons */
.gb-broetchen-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 0.6rem;
}
.gb-counter-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  padding: 0;
  line-height: 1;
}
.gb-counter-btn:hover:not(:disabled) {
  background: var(--gold);
  color: var(--brown);
}
.gb-counter-num {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  min-width: 20px;
  text-align: center;
}
.gb-card-active {
  border-color: var(--gold) !important;
  background: #2A1A0E !important;
}
.gb-card-active .gb-counter-num {
  color: var(--gold-light);
}
.gb-broetchen-name {
  color: #EDE5D8;
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 0.4rem;
}

/* =============================================
   BROETCHEN KARTEN FIX
   ============================================= */

/* Grid gleichmaessige Groesse */
.gb-broetchen-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  align-items: stretch;
}

.gb-broetchen-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 180px;
  padding: 1rem 0.75rem 0.75rem;
  cursor: default;
}

/* Bild */
.gb-broetchen-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Name — immer 2 Zeilen, kein Rauslaufen */
.gb-broetchen-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: #EDE5D8;
  text-align: center;
  line-height: 1.35;
  min-height: 2.7em;
  display: flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  hyphens: auto;
  padding: 0 4px;
  width: 100%;
}

/* Zaehler horizontal zentriert */
.gb-broetchen-counter {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 0.5rem;
  width: 100%;
}

/* Minus und Zahl besser sichtbar */
.gb-counter-btn {
  width: 30px;
  height: 30px;
  border: 2px solid var(--gold);
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
}

.gb-counter-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: #EDE5D8;
  min-width: 24px;
  text-align: center;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 2px 6px;
}

/* Mobile: 2 Spalten */
@media (max-width: 600px) {
  .gb-broetchen-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .gb-broetchen-img {
    width: 80px;
    height: 80px;
  }
}

/* Zaehler 0 heller, Karten gleichmaessig */
.gb-counter-num {
  color: #FFFFFF !important;
  background: rgba(255,255,255,0.15) !important;
}

/* Alle Karten gleiche Hoehe, Counter immer unten */
.gb-broetchen-card {
  height: 100%;
  box-sizing: border-box;
}

.gb-broetchen-grid {
  align-items: stretch !important;
  grid-auto-rows: 1fr;
}

/* Counter nie versetzt */
.gb-broetchen-counter {
  margin-top: auto !important;
  padding-top: 0.5rem;
}
