/* ============================================================
   beeMore – Design v2 (mobile-first)
   Inspiriert von modernen Imkerei-Shops: hell, klar, produktnah
   ============================================================ */
/* Outfit lokal gehostet (DSGVO: kein Google-Fonts-CDN) – Variable Font 100–900 */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/outfit-var.woff2') format('woff2');
}
:root {
  --honey: #f2a900;
  --honey-deep: #d18f00;
  --honey-soft: #fff3d6;
  --ink: #23201c;
  --ink-soft: #6f6a61;
  --green: #3e6b48;
  --green-soft: #e8f1ea;
  --red: #c0442c;
  --cream: #fbf6ed;
  --white: #fff;
  --line: #ece4d4;
  --radius: 0;
  --radius-s: 0;
  --shadow: 0 4px 20px rgba(35, 32, 28, .08);
  --shadow-lg: 0 10px 32px rgba(35, 32, 28, .14);
  --nav-h: 60px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 1rem;
  padding-bottom: 64px; /* Platz für mobile Bottom-Nav */
}

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; margin-bottom: .5em; text-wrap: balance; }
h1 { font-size: clamp(1.7rem, 5.5vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 4.5vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 3.5vw, 1.35rem); }
p { margin-bottom: 1em; }
img { max-width: 100%; display: block; }
a { color: var(--green); }
button { font-family: inherit; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 1rem; }

/* ---------- Announcement-Bar ---------- */
.announce {
  background: var(--ink); color: var(--honey-soft);
  text-align: center; font-size: .82rem; padding: .45rem 1rem; font-weight: 500;
  letter-spacing: .02em;
}
.announce strong { color: var(--honey); }

/* ---------- Header ---------- */
.site-header {
  background: var(--white); position: sticky; top: 0; z-index: 90;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: .8rem;
  height: var(--nav-h); padding: 0 1rem; max-width: 1160px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: .55rem; text-decoration: none; min-width: 0; }
.brand-logo { height: 38px; width: auto; }
.brand-name { font-size: 1.35rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; white-space: nowrap; }
.brand-name span { color: var(--honey); }

.main-nav { display: none; }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: .4rem; }
.icon-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 0; border: none; background: transparent;
  font-size: 1.35rem; cursor: pointer; text-decoration: none; color: var(--ink);
}
.icon-btn:active { background: var(--honey-soft); }
.cart-count {
  position: absolute; top: 3px; right: 1px; background: var(--honey); color: var(--white);
  border-radius: 0; font-size: .68rem; font-weight: 700; min-width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}

/* Mobile-Menü (Off-Canvas) */
.mobile-menu { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.mobile-menu.open { visibility: visible; }
.mobile-menu .backdrop {
  position: absolute; inset: 0; background: rgba(20, 16, 10, .5);
  opacity: 0; transition: opacity .25s;
}
.mobile-menu.open .backdrop { opacity: 1; }
.mobile-menu .panel {
  position: absolute; top: 0; bottom: 0; right: 0; width: min(320px, 86vw);
  background: var(--white); padding: 1.2rem; overflow-y: auto;
  transform: translateX(100%); transition: transform .25s ease;
  display: flex; flex-direction: column; gap: .2rem;
}
.mobile-menu.open .panel { transform: translateX(0); }
.mobile-menu .panel a {
  display: block; padding: .85rem .6rem; text-decoration: none; color: var(--ink);
  font-weight: 600; font-size: 1.05rem; border-bottom: 1px solid var(--line);
}
.mobile-menu .close-btn {
  align-self: flex-end; background: none; border: none; font-size: 1.6rem; cursor: pointer; padding: .3rem .6rem;
}

/* Mobile Bottom-Navigation */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
  background: var(--white); border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(5, 1fr);
  padding: .3rem 0 max(.3rem, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 16px rgba(35, 32, 28, .07);
}
.bottom-nav a {
  display: flex; flex-direction: column; align-items: center; gap: .1rem;
  text-decoration: none; color: var(--ink-soft); font-size: .64rem; font-weight: 600;
  padding: .25rem 0; position: relative;
}
.bottom-nav a .bn-icon { font-size: 1.25rem; line-height: 1.2; }
.bottom-nav a .bn-icon svg { display: block; margin: 2px auto; }
.bottom-nav a.active { color: var(--honey-deep); }
.bottom-nav .cart-count { top: -2px; right: calc(50% - 20px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--honey); color: var(--ink); font-weight: 700;
  padding: .8rem 1.7rem; border-radius: 0; border: none; cursor: pointer;
  text-decoration: none; font-size: 1rem; transition: transform .12s, background .15s, box-shadow .15s;
  min-height: 48px;
}
.btn:hover { background: var(--honey-deep); color: var(--white); }
.btn:active { transform: scale(.97); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #000; }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: #315539; }
.btn-outline { background: transparent; border: 2px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-light-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-light-outline:hover { background: var(--white); color: var(--ink); }
.btn-sm { padding: .5rem 1.1rem; font-size: .9rem; min-height: 40px; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: var(--white);
  background: linear-gradient(160deg, rgba(25, 20, 12, .72) 0%, rgba(25, 20, 12, .35) 60%), url('/assets/img/banner.jpg?v=3') center/cover;
  padding: clamp(4rem, 12vw, 8rem) 1rem;
}
@media (max-width: 700px) {
  .hero {
    background: linear-gradient(160deg, rgba(25, 20, 12, .74) 0%, rgba(25, 20, 12, .38) 65%), url('/assets/img/banner-mobile.jpg?v=3') center/cover;
  }
}
.hero-inner { max-width: 1160px; margin: 0 auto; }
.hero .eyebrow {
  display: inline-block; background: var(--honey); color: var(--ink);
  font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 0; margin-bottom: 1rem;
}
.hero h1 { max-width: 620px; text-shadow: 0 2px 14px rgba(0, 0, 0, .35); }
.hero p { max-width: 520px; font-size: clamp(1rem, 2.5vw, 1.2rem); margin-bottom: 1.6rem; text-shadow: 0 1px 8px rgba(0, 0, 0, .4); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- USP-Leiste ---------- */
.usp-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.usp-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  padding: 1.2rem 1rem; max-width: 1160px; margin: 0 auto;
}
.usp { display: flex; align-items: center; gap: .7rem; font-size: .85rem; font-weight: 600; line-height: 1.35; }
.usp .u-icon {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 0;
  background: var(--honey-soft); display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}

/* ---------- Sektionen ---------- */
.section { padding: clamp(2.5rem, 7vw, 4.5rem) 0; }
.section-white { background: var(--white); }
.section-green { background: var(--green); color: var(--white); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2rem; }
.section-head .eyebrow {
  color: var(--honey-deep); font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; font-size: .8rem;
}
.section-head p { color: var(--ink-soft); }
.section-green .section-head p { color: #d7e4da; }

/* ---------- Produktkarten ---------- */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
.card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; display: flex; flex-direction: column; position: relative;
  transition: transform .15s, box-shadow .15s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-img-wrap { position: relative; background: var(--honey-soft); }
.card-img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.badge {
  position: absolute; top: .7rem; left: .7rem; z-index: 2;
  background: var(--green); color: var(--white); font-size: .68rem; font-weight: 700;
  padding: .25rem .7rem; border-radius: 0; letter-spacing: .03em;
}
.badge-sale { background: var(--red); }
.badge-new { background: var(--honey); color: var(--ink); }
.card-body { padding: .9rem .9rem 1.1rem; display: flex; flex-direction: column; flex: 1; gap: .35rem; }
.card-body h3 { font-size: 1rem; margin: 0; }
.card-body h3 a { color: var(--ink); text-decoration: none; }
.card-tag { font-size: .74rem; color: var(--ink-soft); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.price-row { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; margin-top: auto; }
.price { font-size: 1.15rem; font-weight: 800; color: var(--ink); }
.price-old { text-decoration: line-through; color: var(--ink-soft); font-size: .9rem; }
.price-kg { font-size: .74rem; color: var(--ink-soft); width: 100%; }
.stock-note { font-size: .78rem; color: var(--green); font-weight: 600; }
.stock-out { color: var(--red); }
.card .btn { margin-top: .5rem; }

/* ---------- Set-Builder ---------- */
.builder-hero {
  background: linear-gradient(145deg, var(--ink) 0%, #4a3a1e 100%);
  color: var(--white); border-radius: var(--radius); padding: clamp(1.5rem, 5vw, 3rem);
  display: flex; flex-direction: column; gap: 1rem;
}
.builder-hero h2 { color: var(--honey); }
.builder-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
.builder-item {
  display: flex; flex-direction: column; background: var(--white);
  border: 2px solid var(--line); text-align: center; overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.builder-item.has-qty { border-color: var(--honey); box-shadow: var(--shadow); }
.builder-item img { width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--honey-soft); }
.builder-item .bi-info { padding: .7rem .7rem .5rem; flex: 1; }
.builder-item .bi-info strong { display: block; font-size: .95rem; }
.builder-item .bi-info small { color: var(--ink-soft); font-size: .78rem; }
.builder-item .bi-qtyline { font-size: .78rem; font-weight: 700; color: var(--honey-deep); min-height: 1.2em; margin-bottom: .4rem; }
.stepper {
  display: flex; align-items: stretch; justify-content: center; gap: 0;
  border: 2px solid var(--line); margin: 0 auto .9rem; background: var(--white);
}
.stepper button {
  width: 46px; height: 44px; border: none; background: var(--white);
  font-size: 1.3rem; font-weight: 700; cursor: pointer; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.stepper button:active { background: var(--honey-soft); }
.stepper .qty {
  min-width: 46px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.05rem;
  border-left: 2px solid var(--line); border-right: 2px solid var(--line);
}
.builder-status {
  position: sticky; bottom: 72px; z-index: 60;
  background: var(--ink); color: var(--white); box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.builder-status .bs-bar { height: 6px; background: #3f3931; }
.builder-status .bs-bar span { display: block; height: 100%; width: 0; background: var(--honey); transition: width .3s ease; }
.builder-status .bs-row { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; padding: .9rem 1.1rem; }
.builder-status .bs-info { flex: 1; min-width: 150px; }
.builder-status .bs-count { font-weight: 800; color: var(--honey); font-size: 1.05rem; }
.builder-status .bs-price { font-size: .85rem; color: #d9d2c4; }
.size-toggle { display: flex; align-items: stretch; border: 2px solid var(--ink); background: var(--white); }
.size-toggle label {
  flex: 1; margin: 0; padding: .85rem .6rem; text-align: center; cursor: pointer; font-weight: 700;
  color: var(--ink); transition: background .15s;
  display: flex; flex-direction: column; justify-content: center;
}
.size-toggle label + label { border-left: 2px solid var(--ink); }
.size-toggle input { display: none; }
.size-toggle label.checked { background: var(--honey); }
.size-toggle small { display: block; font-weight: 500; color: var(--ink-soft); font-size: .78rem; }
.size-toggle label.checked small { color: var(--ink); }

/* ---------- Story / Bild-Text ---------- */
.split { display: grid; gap: 1.5rem; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split .content h2 { margin-bottom: .8rem; }

/* ---------- FAQ / Akkordeon (auch Honig-ABC) ---------- */
.faq { max-width: 760px; margin: 0 auto; }
details.acc {
  background: var(--white); border-radius: var(--radius-s); margin-bottom: .6rem;
  border: 1px solid var(--line); overflow: hidden;
}
details.acc summary {
  cursor: pointer; list-style: none; padding: 1rem 1.1rem; font-weight: 700;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  min-height: 48px;
}
details.acc summary::-webkit-details-marker { display: none; }
details.acc summary::after { content: '+'; font-size: 1.3rem; color: var(--honey-deep); flex: 0 0 auto; }
details.acc[open] summary::after { content: '–'; }
details.acc .acc-body { padding: 0 1.1rem 1.1rem; color: var(--ink-soft); }
details.acc .acc-body p:last-child { margin-bottom: 0; }

/* Honig-ABC */
.abc-nav { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; margin-bottom: 2rem; }
.abc-nav a {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 1px solid var(--line); border-radius: 0;
  text-decoration: none; font-weight: 700; color: var(--ink);
}
.abc-nav a.off { opacity: .35; pointer-events: none; }
.abc-letter {
  font-size: 2rem; color: var(--honey-deep); border-bottom: 2px solid var(--honey);
  margin: 2rem 0 1rem; scroll-margin-top: 80px;
}

/* ---------- Blog ---------- */
.blog-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.blog-card img { aspect-ratio: 5/2; object-fit: cover; width: 100%; height: auto; }
.blog-meta { font-size: .78rem; color: var(--ink-soft); font-weight: 600; display: flex; gap: .8rem; flex-wrap: wrap; }

/* Artikel */
.post-hero-wrap { max-width: 900px; margin: 1.5rem auto 0; padding: 0 1rem; }
.post-hero-wrap picture { display: block; }
.post-hero {
  width: 100%; height: auto; aspect-ratio: 2/1; object-fit: cover;
  border-radius: var(--radius); box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}
.post-head { max-width: 760px; margin: 1.2rem auto 0; padding: 0 1rem; }
.post-head-card { padding: .2rem 0 0; }
.post-body { max-width: 720px; margin: 0 auto; padding: 2rem 1rem 0; font-size: 1.05rem; }
.post-body h2 {
  font-size: 1.45rem; margin-top: 2em; padding-left: .8rem;
  border-left: 4px solid var(--honey);
}
.post-body h4 { margin-top: 1.4em; }
.post-body ul, .post-body ol { margin: 0 0 1.2em 1.3em; }
.post-body li { margin-bottom: .4em; }
.post-body blockquote {
  background: var(--honey-soft); border-radius: var(--radius-s); padding: 1rem 1.2rem;
  margin-bottom: 1.2em; font-style: italic;
}
.lead { font-size: 1.15rem; color: var(--ink-soft); }
.post-cta {
  background: var(--green); color: var(--white); border-radius: var(--radius);
  padding: 1.5rem; margin: 2.5rem 0; text-align: center;
}
.post-cta h3 { color: #fff3d6; }
.share-row { display: flex; gap: .6rem; flex-wrap: wrap; margin: 1.5rem 0; }
.share-row a {
  display: inline-flex; align-items: center; gap: .4rem; text-decoration: none;
  background: var(--white); border: 1px solid var(--line); color: var(--ink);
  padding: .5rem 1rem; border-radius: 0; font-size: .85rem; font-weight: 600;
}
.toc {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-s);
  padding: 1rem 1.2rem; margin-bottom: 1.5rem; font-size: .95rem;
}
.toc strong { display: block; margin-bottom: .4rem; }
.toc a { display: block; padding: .2rem 0; text-decoration: none; }

/* ---------- Tabellen & Formulare ---------- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.nice { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-s); overflow: hidden; box-shadow: var(--shadow); }
table.nice th, table.nice td { padding: .75rem .9rem; text-align: left; border-bottom: 1px solid var(--line); font-size: .92rem; }
table.nice th { background: var(--ink); color: var(--white); font-weight: 600; white-space: nowrap; }

.form-grid { display: grid; grid-template-columns: 1fr; gap: .9rem; }
label { font-weight: 600; display: block; margin-bottom: .3rem; font-size: .92rem; }
input[type=text], input[type=email], input[type=tel], input[type=number], input[type=password], textarea, select {
  width: 100%; padding: .8rem .9rem; border: 2px solid var(--line); border-radius: var(--radius-s);
  font-size: 1rem; font-family: inherit; background: var(--white); min-height: 48px;
}
textarea { min-height: 110px; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--honey); }
.qty-input { width: 72px; text-align: center; }

.payment-option {
  border: 2px solid var(--line); border-radius: var(--radius-s); padding: 1rem;
  margin-bottom: .8rem; cursor: pointer; background: var(--white); display: flex; gap: .8rem; align-items: flex-start;
}
.payment-option.selected { border-color: var(--honey); background: var(--honey-soft); }
.payment-option input { margin-top: .35rem; }
.pay-badge {
  display: inline-block; background: var(--green); color: var(--white);
  font-size: .7rem; font-weight: 800; letter-spacing: .03em;
  padding: .18rem .6rem; border-radius: 0; vertical-align: middle; margin-left: .35rem;
}
.qr-pay {
  display: flex; gap: 1rem; align-items: center; margin-top: 1.2rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-s); padding: 1rem;
}
.qr-pay img { flex: 0 0 auto; border-radius: 0; image-rendering: pixelated; }
.qr-pay p { margin: 0; font-size: .9rem; color: var(--ink-soft); }

.alert { padding: 1rem 1.1rem; border-radius: var(--radius-s); margin-bottom: 1.2rem; font-size: .95rem; }
.alert-success { background: var(--green-soft); color: var(--green); border: 1px solid var(--green); }
.alert-error { background: #fbe9e5; color: var(--red); border: 1px solid var(--red); }
.alert-info { background: var(--honey-soft); color: #7a5c10; border: 1px solid var(--honey); }

.summary-box { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.3rem; }
.summary-box .row { display: flex; justify-content: space-between; gap: 1rem; padding: .3rem 0; font-size: .95rem; }
.summary-box .total { border-top: 2px solid var(--honey); margin-top: .5rem; padding-top: .7rem; font-weight: 800; font-size: 1.15rem; }

.checkout-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }

/* Warenkorb-Zeilen (mobile: Karten statt Tabelle) */
.cart-line {
  display: flex; gap: .9rem; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: .9rem; margin-bottom: .8rem; align-items: center; flex-wrap: wrap;
}
.cart-line img { width: 70px; height: 70px; object-fit: cover; border-radius: var(--radius-s); }
.cart-line .cl-info { flex: 1; min-width: 140px; }
.cart-line .cl-info strong { font-size: .95rem; display: block; }
.cart-line .cl-info small { color: var(--ink-soft); }
.cart-line .cl-price { font-weight: 800; white-space: nowrap; }
.cart-line .remove { color: var(--red); text-decoration: none; font-size: 1.2rem; padding: .4rem; }

/* ---------- Produktdetail ---------- */
.product-detail { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
.product-detail .pd-img img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.pd-buy { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.3rem; }
.pd-facts { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0; }
.pd-facts span {
  background: var(--honey-soft); border-radius: 0; padding: .3rem .8rem;
  font-size: .78rem; font-weight: 600;
}
.pd-desc { margin-top: 1.5rem; }
.pd-desc h2 { font-size: 1.3rem; margin-top: 1.5em; }

/* ---------- Bewertungen / Zitate ---------- */
.quote-grid { display: grid; gap: 1rem; }
.quote { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.3rem; }
.quote .stars { color: var(--honey); letter-spacing: .1em; margin-bottom: .5rem; }
.quote footer { margin-top: .6rem; font-size: .85rem; color: var(--ink-soft); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cfc9be; margin-top: 3rem; font-size: .93rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; padding: 2.5rem 1rem 1.5rem; max-width: 1160px; margin: 0 auto; }
.site-footer h3 { color: var(--honey); font-size: .95rem; text-transform: uppercase; letter-spacing: .05em; }
.site-footer a { color: #cfc9be; text-decoration: none; display: block; padding: .22rem 0; }
.site-footer a:hover { color: var(--honey); }
/* Widerrufsbutton im Footer (EU-Vorgabe: ständig verfügbar, deutlich erkennbar) */
.site-footer a.footer-widerruf {
  display: inline-block; margin: .45rem 0; padding: .5rem 1rem;
  border: 2px solid var(--honey); color: var(--honey); font-weight: 600;
  text-align: center;
}
.site-footer a.footer-widerruf:hover { background: var(--honey); color: var(--ink); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); padding: 1.1rem 1rem; font-size: .8rem; text-align: center; }
.footer-bottom a { display: inline; text-decoration: underline; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 84px; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: var(--white); padding: .8rem 1.4rem; border-radius: 0;
  font-weight: 600; font-size: .92rem; box-shadow: var(--shadow-lg); z-index: 300;
  opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Diverses / Admin ---------- */
.card-desc { color: var(--ink-soft); font-size: .9rem; }
.admin-nav { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.admin-nav a {
  background: var(--white); border: 1px solid var(--line); border-radius: 0;
  padding: .45rem 1rem; text-decoration: none; color: var(--ink); font-weight: 600; font-size: .9rem;
}
.admin-nav a:hover { border-color: var(--honey); }
.trust { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .trust { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   Tablet & Desktop
   ============================================================ */
@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(auto-fit, minmax(210px, 250px)); justify-content: center; gap: 1.2rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card img { aspect-ratio: 16/9; }
  .quote-grid { grid-template-columns: repeat(3, 1fr); }
  .usp-grid { grid-template-columns: repeat(4, 1fr); }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
  .builder-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 240px)); justify-content: center; }
}

@media (min-width: 900px) {
  body { padding-bottom: 0; }
  .bottom-nav { display: none; }
  .builder-status { bottom: 16px; }
  .main-nav { display: flex; gap: 1.6rem; margin-left: 2rem; }
  .main-nav a {
    text-decoration: none; color: var(--ink); font-weight: 600; font-size: .95rem;
    padding: .3rem 0; border-bottom: 2px solid transparent;
  }
  .main-nav a:hover { border-color: var(--honey); }
  .menu-toggle { display: none; }
  .product-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 270px)); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .checkout-grid { grid-template-columns: 1.6fr 1fr; gap: 2rem; }
  .product-detail { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Cookie-Consent-Banner ---------- */
.consent-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 400;
  background: var(--white); border-top: 4px solid var(--honey);
  box-shadow: 0 -6px 24px rgba(35, 32, 28, .18); padding: 1.1rem 1rem calc(1.1rem + env(safe-area-inset-bottom));
}
.consent-inner { max-width: 760px; margin: 0 auto; font-size: .9rem; }
.consent-inner p { margin: .5rem 0 .8rem; color: var(--ink-soft); line-height: 1.55; }
.consent-inner a { color: var(--honey-deep); }
.consent-cat { display: block; margin: .25rem 0; font-size: .88rem; font-weight: 600; }
.consent-cat input { margin-right: .45rem; }
.consent-actions { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: .9rem; }
.consent-actions .btn { padding: .55rem 1.2rem; font-size: .9rem; }
