/* ============================================================
   RefurbPro24 — B2B-Shop Design-System
   Brand: #0b2f61 (dunkelblau) · Akzent: #f5b800 (warmes Gold)
   ============================================================ */
:root {
  --brand: #0b2f61;
  --brand-2: #163e7c;
  --brand-dark: #06204a;
  --accent: #f5b800;
  --text: #1a1a1a;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --border: #e5e7eb;
  --green: #0e9f6e;
  --green-bg: #e6f7f1;
  --yellow: #b45309;
  --yellow-bg: #fdf3d7;
  --blue: #1d4ed8;
  --blue-bg: #e8eefc;
  --shadow-sm: 0 2px 6px rgba(11, 47, 97, .08);
  --shadow-md: 0 8px 24px rgba(11, 47, 97, .12);
  --shadow-lg: 0 20px 60px rgba(11, 47, 97, .18);
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   Topbar + Header
   ============================================================ */
.topbar {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  color: #fff;
  padding: 9px 0;
  font-size: 13px;
  text-align: center;
  letter-spacing: .3px;
}
.topbar strong { color: var(--accent); }

header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo-wrap { display: flex; align-items: center; gap: 13px; }
.logo-wrap img {
  width: 50px; height: 50px;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.logo-wrap .brand-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.logo-wrap .brand-text span { opacity: .55; }

nav.main-nav { display: flex; align-items: center; gap: 26px; }
nav.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
nav.main-nav a:hover { color: var(--brand); }
nav.main-nav a.active { color: var(--brand); border-bottom-color: var(--accent); }

.header-cta { display: flex; align-items: center; gap: 12px; }

/* Burger-Button + Mobile-Navigation (sichtbar unter 1020px) */
.burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  flex: 0 0 auto;
}
.burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--brand);
  margin: 4px auto;
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.burger.offen span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.offen span:nth-child(2) { opacity: 0; }
.burger.offen span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.mobile-nav.offen { display: block; }
.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  border-top: 1px solid var(--bg-soft);
}
.mobile-nav a span { color: var(--muted); font-weight: 400; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--brand); background: var(--bg-soft); }
@media (min-width: 1021px) {
  .mobile-nav { display: none !important; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all .2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1.3;
}
.btn svg { flex: 0 0 auto; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover {
  background: var(--brand-dark); color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline { background: transparent; color: var(--brand); border: 2px solid var(--brand); }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover {
  background: #1faa52; color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
}
.btn-gold { background: var(--accent); color: var(--brand-dark); font-weight: 700; }
.btn-gold:hover { background: #ffd34a; color: var(--brand-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost-white { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.btn-ghost-white:hover { background: rgba(255,255,255,.22); color: #fff; }
.btn-large { padding: 16px 34px; font-size: 16px; border-radius: 12px; }
.btn-block { width: 100%; }

/* ============================================================
   Hero (Startseite)
   ============================================================ */
section.hero {
  background: linear-gradient(160deg, #fff 0%, var(--bg-soft) 50%, #e8eef9 100%);
  padding: 72px 0 84px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; top: -10%; right: -5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(11,47,97,.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; bottom: -10%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,184,0,.06) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(11,47,97,.08);
  color: var(--brand);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: .3px;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}
.hero h1 {
  font-size: clamp(34px, 5.5vw, 54px);
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--accent); }
.hero .lead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  margin-bottom: 34px;
  max-width: 700px;
  margin-left: auto; margin-right: auto;
}
.hero-actions {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 26px;
}

/* Hero-Suche */
.hero-search {
  max-width: 620px;
  margin: 0 auto 44px;
  position: relative;
}
.hero-search input {
  width: 100%;
  padding: 17px 56px 17px 24px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 16px;
  font-family: inherit;
  box-shadow: var(--shadow-md);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.hero-search input:focus { border-color: var(--brand); box-shadow: var(--shadow-lg); }
.hero-search button {
  position: absolute; right: 7px; top: 7px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.hero-search button:hover { background: var(--brand-dark); }
.hero-search button svg { width: 19px; height: 19px; fill: #fff; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}
.trust-item { text-align: center; padding: 14px 8px; }
.trust-item .num {
  font-size: 28px; font-weight: 800;
  color: var(--brand); letter-spacing: -1px;
}
.trust-item .lbl {
  font-size: 12px; color: var(--muted);
  text-transform: uppercase; letter-spacing: .5px;
  margin-top: 4px;
}

/* ============================================================
   Sections / Titel
   ============================================================ */
section.section { padding: 76px 0; }
section.section.soft { background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%); }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title .eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  color: var(--accent);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-title h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--brand);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.2;
}
.section-title p { color: var(--muted); margin-top: 12px; font-size: 17px; }
.section-foot { text-align: center; margin-top: 40px; }

/* Kategorie-Karten */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.cat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform .25s, border-color .25s, box-shadow .25s;
  display: block;
}
.cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.cat-card .icon { font-size: 38px; margin-bottom: 12px; line-height: 1; }
.cat-card h3 { color: var(--brand); font-size: 17px; margin-bottom: 4px; font-weight: 700; }
.cat-card p { color: var(--muted); font-size: 13px; }

/* ============================================================
   Produkt-Karten
   ============================================================ */
.produkt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px;
}
.produkt-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}
.produkt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #c9d4e8;
}
.produkt-card a.card-link { display: flex; flex-direction: column; flex: 1; color: inherit; }
.produkt-card .img-wrap {
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.produkt-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .3s;
  padding: 14px;
}
.produkt-card:hover .img-wrap img { transform: scale(1.045); }
.produkt-card .img-wrap .placeholder {
  font-size: 44px; opacity: .25;
}
.produkt-card .card-body {
  padding: 16px 18px 18px;
  display: flex; flex-direction: column;
  gap: 8px; flex: 1;
}
.produkt-card .kategorie {
  font-size: 11px; font-weight: 700;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px;
}
.produkt-card h3 {
  font-size: 15px; font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 42px;
}
.produkt-card .preis-zeile {
  margin-top: auto;
  display: flex; align-items: baseline; gap: 7px;
}
.produkt-card .preis {
  font-size: 20px; font-weight: 800;
  color: var(--brand); letter-spacing: -0.5px;
}
.produkt-card .preis-hinweis { font-size: 12px; color: var(--muted); }

/* Verfügbarkeits-Badges */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  white-space: nowrap;
  width: fit-content;
}
.badge .bdot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.badge-green  { background: var(--green-bg);  color: var(--green); }
.badge-yellow { background: var(--yellow-bg); color: var(--yellow); }
.badge-blue   { background: var(--blue-bg);   color: var(--blue); }
.badge-gray   { background: #f1f2f4;          color: var(--muted); }

/* ============================================================
   Katalog: Filter + Toolbar
   ============================================================ */
.katalog-kopf {
  background: linear-gradient(160deg, #fff 0%, var(--bg-soft) 100%);
  padding: 44px 0 28px;
  border-bottom: 1px solid var(--border);
}
.katalog-kopf h1 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.8px;
  margin-bottom: 6px;
}
.katalog-kopf .untertitel { color: var(--muted); font-size: 15px; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
}
.filter-bar form.suche {
  position: relative;
  flex: 1 1 240px;
  max-width: 340px;
}
.filter-bar form.suche input {
  width: 100%;
  padding: 10px 40px 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: #fff;
  transition: border-color .2s;
}
.filter-bar form.suche input:focus { border-color: var(--brand); }
.filter-bar form.suche button {
  position: absolute; right: 4px; top: 4px;
  width: 32px; height: 32px;
  border: none; background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.filter-bar form.suche button svg { width: 16px; height: 16px; fill: var(--muted); }

.filter-select {
  appearance: none;
  -webkit-appearance: none;
  padding: 10px 38px 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236b7280'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat right 10px center / 18px;
  font-size: 14px;
  font-family: inherit;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  outline: none;
  transition: border-color .2s;
}
.filter-select:focus, .filter-select:hover { border-color: var(--brand); }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 13px; font-weight: 600;
  color: var(--text);
  transition: all .2s;
}
.chip:hover { border-color: var(--brand); color: var(--brand); }
.chip.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.chip .x { opacity: .7; font-weight: 400; }

.katalog-main { padding: 36px 0 76px; }
.treffer-zeile {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  margin-bottom: 22px;
}
.treffer-zeile .anzahl { color: var(--muted); font-size: 14px; }
.treffer-zeile .anzahl strong { color: var(--text); }

.leer-state {
  text-align: center;
  padding: 70px 20px;
  background: var(--bg-soft);
  border-radius: 20px;
}
.leer-state .icon { font-size: 52px; margin-bottom: 14px; }
.leer-state h2 { color: var(--brand); font-size: 22px; margin-bottom: 8px; }
.leer-state p { color: var(--muted); margin-bottom: 22px; }

/* Pagination */
.pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 6px; margin-top: 44px; flex-wrap: wrap;
}
.pagination a, .pagination span.aktuell, .pagination span.dots {
  min-width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 8px;
  border-radius: 10px;
  font-size: 14px; font-weight: 600;
}
.pagination a { border: 1px solid var(--border); background: #fff; color: var(--text); }
.pagination a:hover { border-color: var(--brand); color: var(--brand); }
.pagination span.aktuell { background: var(--brand); color: #fff; }
.pagination span.dots { color: var(--muted); }

/* ============================================================
   Produkt-Detail
   ============================================================ */
.breadcrumbs {
  padding: 18px 0 0;
  font-size: 13px;
  color: var(--muted);
  display: flex; flex-wrap: wrap; gap: 7px; align-items: center;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--brand); }
.breadcrumbs .sep { opacity: .5; }
.breadcrumbs .hier { color: var(--text); font-weight: 600; }

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 48px;
  padding: 28px 0 60px;
  align-items: start;
}

/* Galerie */
.galerie .hauptbild {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 20px;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.galerie .hauptbild img {
  width: 100%; height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  padding: 26px;
}
.galerie .hauptbild .placeholder { font-size: 84px; opacity: .22; }
.galerie .thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.galerie .thumbs button {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: var(--bg-soft);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  transition: border-color .2s, transform .2s;
}
.galerie .thumbs button:hover { transform: translateY(-2px); }
.galerie .thumbs button.active { border-color: var(--brand); }
.galerie .thumbs button img {
  width: 100%; height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  padding: 6px;
}

/* Info-Spalte */
.detail-info .kategorie-tag {
  font-size: 12px; font-weight: 700;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 10px; display: block;
}
.detail-info h1 {
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.8px;
  line-height: 1.25;
  margin-bottom: 14px;
}
.detail-info .meta-zeile {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  margin-bottom: 20px;
}
.detail-info .sku-tag {
  font-size: 12px;
  color: var(--muted);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
}
.preis-box {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 22px;
}
.preis-box .preis {
  font-size: 34px; font-weight: 800;
  color: var(--brand);
  letter-spacing: -1px;
  line-height: 1.1;
}
.preis-box .preis .ab { font-size: 16px; font-weight: 600; color: var(--muted); margin-right: 6px; }
.preis-box .mwst { font-size: 12px; color: var(--muted); margin-top: 4px; }
.preis-box .b2b-hinweis {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #d4dae6;
  font-size: 13.5px;
  color: var(--text);
  display: flex; gap: 8px; align-items: flex-start;
}
.preis-box .b2b-hinweis .ic { color: var(--accent); flex: 0 0 auto; }

/* Mengen-Auswahl auf der Produktseite */
.menge-zeile {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.menge-label { font-size: 14px; font-weight: 700; color: var(--text); }
.menge-stepper {
  display: inline-flex; align-items: center; gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.menge-stepper button {
  width: 40px; height: 40px;
  border: none; background: var(--bg-soft);
  font-size: 19px; font-weight: 700;
  color: var(--brand);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.menge-stepper button:hover { background: var(--brand); color: #fff; }
.menge-stepper b {
  min-width: 46px;
  text-align: center;
  font-size: 16px; font-weight: 700;
}
.menge-bestand { font-size: 12.5px; color: var(--green); font-weight: 600; }

.liste-hinweis {
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  margin: -2px 0 2px;
}
.liste-hinweis a { font-weight: 600; text-decoration: underline; }

.cta-stack { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.cta-neben { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ebay-link-zeile { text-align: center; font-size: 13.5px; color: var(--muted); margin-bottom: 26px; }
.ebay-link-zeile a { font-weight: 600; text-decoration: underline; }

.detail-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-bottom: 28px;
}
.detail-trust .t {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}
.detail-trust .t strong { display: block; color: var(--brand); font-size: 13px; }

.beschreibung h2 {
  font-size: 18px; font-weight: 700; color: var(--brand);
  margin-bottom: 10px;
}
.beschreibung p, .beschreibung div {
  font-size: 15px; color: var(--text); line-height: 1.7;
}
.beschreibung .specs { margin-top: 16px; }
.specs-row {
  display: flex; gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.specs-row .k { color: var(--muted); min-width: 130px; flex: 0 0 auto; }
.specs-row .v { font-weight: 600; }

/* ============================================================
   B2B-Sektion
   ============================================================ */
.b2b-band {
  background: var(--brand);
  color: #fff;
  border-radius: 24px;
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.b2b-band::after {
  content: "";
  position: absolute; top: -30%; right: -10%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(245,184,0,.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.b2b-band h2 {
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}
.b2b-band h2 .gold { color: var(--accent); }
.b2b-band p { color: rgba(255,255,255,.85); font-size: 16px; margin-bottom: 12px; }
.b2b-band .vorteile { list-style: none; margin: 18px 0 26px; }
.b2b-band .vorteile li {
  padding: 7px 0 7px 32px;
  position: relative;
  color: rgba(255,255,255,.92);
  font-size: 15px;
}
.b2b-band .vorteile li::before {
  content: "✓";
  position: absolute; left: 0; top: 6px;
  width: 22px; height: 22px;
  background: var(--accent);
  color: var(--brand-dark);
  border-radius: 50%;
  font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.b2b-band .aktion { display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 1; }
.b2b-band .aktion .hinweis { font-size: 13px; color: rgba(255,255,255,.65); text-align: center; }

/* ============================================================
   Schluss-CTA-Box
   ============================================================ */
.cta-box {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  border-radius: 24px;
  padding: 60px 40px;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-box::after {
  content: "";
  position: absolute; top: -40%; right: -8%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(245,184,0,.16) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  margin-bottom: 14px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.cta-box p {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  margin-bottom: 30px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.contact-row {
  margin-top: 30px;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 15px;
  color: rgba(255,255,255,.9);
}
.contact-row a { color: #fff; text-decoration: underline; }
.contact-row a:hover { color: var(--accent); }

/* ============================================================
   Footer
   ============================================================ */
footer.site-footer {
  background: var(--brand-dark);
  color: rgba(255,255,255,.7);
  padding: 56px 0 24px;
  font-size: 14px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col p, .footer-col li { margin-bottom: 6px; line-height: 1.7; }
.footer-col ul { list-style: none; }
.footer-col a { color: rgba(255,255,255,.7); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.impressum-row { display: flex; gap: 12px; padding: 3px 0; }
.impressum-row .key { color: rgba(255,255,255,.5); min-width: 130px; font-size: 13px; flex: 0 0 auto; }
.impressum-row .val { color: rgba(255,255,255,.9); }

/* ============================================================
   Rechtsseiten (Impressum / Datenschutz)
   ============================================================ */
.rechtsseite { padding-top: 48px; padding-bottom: 76px; max-width: 800px; }
.rechtsseite h1 {
  font-size: clamp(28px, 4vw, 38px);
  color: var(--brand);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 28px;
}
.rechtsseite h2 {
  font-size: 20px; color: var(--brand); font-weight: 700;
  margin: 32px 0 10px;
}
.rechtsseite h3 { font-size: 16px; color: var(--brand); font-weight: 700; margin: 20px 0 6px; }
.rechtsseite p, .rechtsseite li { font-size: 15px; line-height: 1.75; margin-bottom: 10px; }
.rechtsseite ul { padding-left: 22px; margin-bottom: 12px; }

/* ============================================================
   Cookie-/Datenschutz-Hinweis
   ============================================================ */
.cookie-notice {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 999;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  display: none;
  gap: 18px;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
}
.cookie-notice.sichtbar { display: flex; }
.cookie-notice p { font-size: 13.5px; color: var(--text); line-height: 1.55; flex: 1; }
.cookie-notice p a { text-decoration: underline; }
.cookie-notice .btn { flex: 0 0 auto; }

/* ============================================================
   Landing: Hero-Chips, Schritte, Proof, FAQ
   ============================================================ */
.hero-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin: -26px auto 36px;
  max-width: 760px;
}
.hero-chips .chip { background: rgba(255,255,255,.85); backdrop-filter: blur(4px); }
.hero-chips .chip-mehr { border-color: var(--brand); color: var(--brand); font-weight: 700; }

.schritt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1020px;
  margin: 0 auto;
}
.schritt {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 26px 26px;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.schritt:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.schritt-nr {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: var(--accent);
  font-size: 21px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.schritt h3 { color: var(--brand); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.schritt p { color: var(--muted); font-size: 14.5px; line-height: 1.65; }
.schritt p strong { color: var(--text); }
.schritt-pfeil {
  position: absolute;
  left: -19px; top: 42px;
  font-size: 22px;
  color: var(--accent);
  font-weight: 800;
  background: transparent;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}
.proof-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.proof-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.proof-wert {
  font-size: 38px; font-weight: 800;
  color: var(--brand);
  letter-spacing: -1.5px;
  line-height: 1.1;
}
.proof-wert span { font-size: 19px; color: var(--muted); font-weight: 700; }
.proof-stars { color: var(--accent); font-size: 17px; letter-spacing: 2px; margin: 6px 0 8px; }
.proof-lbl { color: var(--muted); font-size: 13px; line-height: 1.45; }

.faq-container { max-width: 800px; }
.faq-liste { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 17px 20px;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--brand);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg-soft);
  position: relative;
  transition: transform .2s, background .2s;
}
/* Plus als exakt zentrierte Balken (kein Schriftzeichen -> immer mittig) */
.faq-plus::before, .faq-plus::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: var(--brand);
  border-radius: 1px;
  transition: background .2s;
}
.faq-plus::before { width: 12px; height: 2px; }
.faq-plus::after  { width: 2px;  height: 12px; }
.faq-item[open] .faq-plus { transform: rotate(45deg); background: var(--accent); }
.faq-item[open] .faq-plus::before,
.faq-item[open] .faq-plus::after { background: var(--brand-dark); }
.faq-antwort {
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ============================================================
   Netto-Preise
   ============================================================ */
.netto-tag {
  font-size: 15px; font-weight: 700;
  color: var(--green);
  background: var(--green-bg);
  padding: 3px 10px;
  border-radius: 999px;
  vertical-align: middle;
}
.netto-mini { font-size: 11px; font-weight: 700; color: var(--green); }

/* ============================================================
   eBay-Beschreibung (Sandbox-iframe)
   ============================================================ */
.ebay-beschreibung { padding: 14px 0 60px; }
.ebay-beschreibung iframe {
  width: 100%;
  min-height: 220px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 18px;
  box-sizing: border-box;
}
.ebay-beschreibung .beschreibung-text {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 26px;
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================================
   Anfrageliste
   ============================================================ */
.card-add {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.92);
  color: var(--brand);
  font-size: 20px; font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all .2s;
}
.card-add:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: scale(1.08);
}

.anfrage-fab {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 500;
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  transition: transform .2s, background .2s;
}
.anfrage-fab.sichtbar { display: inline-flex; }
.anfrage-fab:hover { background: var(--brand-dark); color: #fff; transform: translateY(-2px); }
.anfrage-fab b {
  background: var(--accent);
  color: var(--brand-dark);
  min-width: 22px; height: 22px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
  padding: 0 6px;
}

.rp24-toast {
  position: fixed;
  left: 50%; bottom: 84px;
  transform: translateX(-50%) translateY(16px);
  z-index: 600;
  background: var(--brand-dark);
  color: #fff;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  max-width: 90vw;
  text-align: center;
}
.rp24-toast.sichtbar { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.rp24-toast a { color: var(--accent); text-decoration: underline; white-space: nowrap; }

/* Sammelanfrage-Tipp im Katalog */
.sammel-tipp {
  background: var(--bg-soft);
  border: 1px dashed #c9d4e8;
  border-radius: 12px;
  padding: 11px 18px;
  font-size: 13.5px;
  color: var(--text);
  margin-bottom: 20px;
}
.sammel-tipp a { font-weight: 600; text-decoration: underline; }
.sammel-tipp .plus-demo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--brand);
  font-weight: 700;
  font-size: 14px;
  vertical-align: middle;
  margin: 0 2px;
}

.anfrage-seite { padding-top: 44px; padding-bottom: 76px; max-width: 900px; }
.anfrage-seite h1 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.8px;
  margin-bottom: 8px;
}
.anfrage-intro { color: var(--muted); font-size: 15px; margin-bottom: 28px; max-width: 640px; }
.anfrage-tabelle {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.anfrage-pos {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto 34px;
  grid-template-areas: "info preis menge entf";
  align-items: center;
  gap: 8px 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.anfrage-pos:last-child { border-bottom: none; }
.pos-info { grid-area: info; min-width: 0; }
.pos-info a {
  display: block;
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--text);
}
.pos-info a:hover { color: var(--brand); }
.pos-sku { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.pos-preis {
  grid-area: preis;
  font-weight: 700;
  font-size: 15px;
  color: var(--brand);
  white-space: nowrap;
}
.pos-preis small { color: var(--green); font-size: 10.5px; font-weight: 700; }
.pos-menge { grid-area: menge; }
.anfrage-pos .stepper { display: inline-flex; align-items: center; gap: 9px; }
.anfrage-pos .stepper button {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  color: var(--brand);
}
.anfrage-pos .stepper button:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.anfrage-pos .stepper b { min-width: 18px; text-align: center; font-size: 15px; }
.anfrage-pos .entf {
  grid-area: entf;
  justify-self: end;
  border: none; background: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 15px;
  padding: 6px;
}
.anfrage-pos .entf:hover { color: #b91c1c; }
.anfrage-summe { margin: 18px 2px 24px; font-size: 16px; }
.anfrage-summe span { color: var(--muted); font-size: 13px; }
.anfrage-aktionen { display: flex; gap: 12px; flex-wrap: wrap; }
.anfrage-hinweis { margin-top: 18px; color: var(--muted); font-size: 13px; max-width: 640px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1020px) {
  nav.main-nav { display: none; }
  .burger { display: block; }
}
@media (max-width: 860px) {
  .detail-grid { grid-template-columns: 1fr; gap: 30px; }
  .b2b-band { grid-template-columns: 1fr; padding: 38px 26px; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .schritt-grid { grid-template-columns: 1fr; max-width: 460px; }
  .schritt-pfeil { display: none; }
}
@media (max-width: 640px) {
  .header-cta .desktop-only { display: none; }
  /* Kompakter WhatsApp-Button im Header (eine Zeile, kleiner) */
  .header-cta .btn-whatsapp {
    padding: 9px 14px;
    font-size: 13px;
    white-space: nowrap;
  }
  .header-cta .btn-whatsapp .wa-lang { display: none; }
  .logo-wrap img { width: 42px; height: 42px; }
  .logo-wrap .brand-text { font-size: 17px; }
  header.site-header { padding: 10px 0; }

  /* ===== Mobile-Proportionen: kompakter, ausgewogener, kürzer ===== */
  section.hero { padding: 38px 0 46px; }
  section.section { padding: 40px 0; }
  .hero h1 { font-size: clamp(28px, 8.5vw, 34px); letter-spacing: -1px; }
  .hero-badge { font-size: 10.5px; padding: 7px 13px; margin-bottom: 18px; }
  .hero .lead { font-size: 15px; margin-bottom: 24px; }
  .hero-search { margin-bottom: 28px; }
  .hero-search input { padding: 14px 52px 14px 20px; font-size: 15px; }
  .hero-search button { width: 38px; height: 38px; top: 6px; right: 6px; }
  .hero-chips { margin: -16px auto 26px; gap: 6px; }
  .hero-chips .chip { font-size: 12px; padding: 6px 12px; }
  /* Nur 3 Kategorie-Chips + "Alles ansehen" zeigen */
  .hero-chips .chip:nth-child(n+4):not(.chip-mehr) { display: none; }
  .hero-actions { gap: 10px; margin-bottom: 16px; }
  .hero-actions .btn-large { width: 100%; padding: 14px 20px; font-size: 15px; }
  .trust-strip { gap: 2px; }
  .trust-item { padding: 10px 4px; }
  .trust-item .num { font-size: 22px; }
  .trust-item .lbl { font-size: 10.5px; }

  .section-title { margin-bottom: 26px; }
  .section-title h2 { font-size: 24px; }
  .section-title p { font-size: 14.5px; margin-top: 8px; }
  .section-foot { margin-top: 26px; }

  /* Kategorien: 2 Spalten, kompakte Karten -> halbe Höhe */
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-card { padding: 18px 12px; border-radius: 12px; }
  .cat-card .icon { font-size: 28px; margin-bottom: 8px; }
  .cat-card h3 { font-size: 14px; }
  .cat-card p { font-size: 11.5px; }

  /* Bestseller auf der Startseite: mobil nur 4 statt 8 */
  .bestseller-grid .produkt-card:nth-child(n+5) { display: none; }

  /* Bewertungs-Kacheln: 2x2 statt 4 untereinander */
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .proof-card { padding: 18px 10px; border-radius: 14px; }
  .proof-wert { font-size: 28px; }
  .proof-stars { font-size: 14px; margin: 4px 0 6px; }
  .proof-lbl { font-size: 11.5px; }

  .schritt { padding: 22px 20px 20px; }
  .schritt-nr { width: 38px; height: 38px; font-size: 18px; margin-bottom: 12px; }
  .b2b-band .vorteile li { font-size: 14px; }
  .cta-box { padding: 38px 22px; }
  .cta-box p { font-size: 15px; margin-bottom: 24px; }
  .faq-item summary { padding: 14px 16px; font-size: 14.5px; }
  .faq-antwort { padding: 0 16px 14px; font-size: 14px; }
  .produkt-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
  .produkt-card h3 { font-size: 14px; min-height: 40px; }
  .produkt-card .preis { font-size: 17px; }
  .produkt-card .card-body { padding: 12px 13px 14px; }
  .cta-neben { grid-template-columns: 1fr; }
  /* Anfrageliste: Positionen als zweizeilige Karten */
  .anfrage-pos {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "info  entf"
      "preis menge";
    padding: 13px 14px;
    gap: 10px 12px;
  }
  .anfrage-pos .entf { align-self: start; }
  .pos-menge { justify-self: end; }
  .anfrage-aktionen .btn { width: 100%; }
  .anfrage-fab span { display: none; }
  .impressum-row { flex-direction: column; gap: 2px; }
  .impressum-row .key { min-width: 0; }
  .cookie-notice { flex-direction: column; align-items: stretch; text-align: center; }
}
