/* =============================================================
   BX-OC.CSS — OpenCart integration layer for Blauer Express
   Loaded after blauerexpress.css in header.twig
   ============================================================= */

/* ---- OC global resets ---- */
body.bx {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  margin: 0;
}
body.bx a { text-decoration: none; color: inherit; }
body.bx #wrapper { display: flex; flex-direction: column; min-height: 100vh; }
body.bx #content { flex: 1; }

/* Bootstrap forces .container to width:1170px → content sits narrower/further right than
   the design (max-width:1240px). Restore the design width so logo/nav/actions align 1:1. */
body.bx .container { width: auto !important; max-width: 1240px; }

/* ---- Nav: override grid → flexbox so all items stay on one row ---- */
header.nav .nav-inner {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
header.nav .nav-inner .logo { flex-shrink: 0; }
header.nav .nav-inner .nav-links {
  flex: 1;
  min-width: 0;
  overflow: hidden; /* clip if too many categories */
}
header.nav .nav-inner .nav-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
/* #14 Navi-Inhalt bündig mit dem Seiteninhalt (Wunsch Axel 16.06.2026):
   .nav-inner ist ein Flex-Row (gap:24px). Bootstrap setzt auf .container die
   Clearfix-Pseudoelemente ::before/::after (content:" ";display:table) — die
   wurden als Flex-Items mitgezählt und schoben Logo 24px nach rechts + Warenkorb
   24px nach links. Entfernen → Logo bündig mit „M" (Menschlich), Warenkorb bündig
   mit der rechten Trust-Karte. Gleiche Wurzel wie Fix #3 (.product). */
header.nav .nav-inner::before,
header.nav .nav-inner::after { content: none; }

/* ---- Nav actions: icon buttons (design: only icons; hamburger mobile-only) ----
   Search + mobile menu use native <details>/<summary> (CSS-only, no inline JS). */
.nav-actions .icon-btn {
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}
/* Action icons (account link + the <summary> triggers) show on every breakpoint */
.nav-actions > a.icon-btn,
.nav-actions .bx-search > summary.icon-btn { display: inline-flex; }

/* Hide the native <details> disclosure marker on the icon triggers */
.nav-actions summary { list-style: none; cursor: pointer; }
.nav-actions summary::-webkit-details-marker { display: none; }
.nav-actions summary::marker { content: ""; }

/* Hamburger (mobile menu <details>) hidden on desktop, shown only on mobile */
.nav-actions .bx-mnav { display: none; }
.nav-actions .bx-mnav > summary.menu-btn { display: inline-flex; }
@media (max-width: 920px) {
  .nav-actions .bx-mnav { display: block; }
}

/* ---- Nav search: icon opens a slim field beside the icon, same row ---- */
.bx-search { position: relative; }
.bx-search-panel {
  position: absolute;
  top: 50%;
  right: calc(100% + 6px);
  transform: translateY(-50%);
  width: 300px;
  max-width: 52vw;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  z-index: 60;
  overflow: hidden;
}
.bx-search-panel-inner { display: flex; align-items: center; gap: 0; padding: 0; }
.bx-search-panel #search,
.bx-search-panel .input-group { flex: 1; display: flex; height: 38px; }
.bx-search-panel .form-control {
  flex: 1;
  height: 38px !important;
  padding: 6px 14px;
  font-size: 14px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}
body.bx .bx-search-panel .btn,
body.bx .bx-search-panel .btn-default {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  min-width: 38px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  color: var(--ink-2);
  line-height: 1;
  box-shadow: none;
}
.bx-search-panel .btn i { font-size: 14px; }
.bx-search-panel .btn:hover { color: var(--blue); }

/* ---- Cart button ---- */
.bx-cart-wrap { position: relative; }
/* Force white text/icon — body.bx a{color:inherit} otherwise overrides .cart-btn{color:#fff} */
body.bx .cart-btn,
body.bx .cart-btn .cart-label,
body.bx .cart-btn svg { color: #fff; }
.cart-count {
  font-size: 11px;
  font-weight: 700;
  padding: 1px 6px;
  background: rgba(255,255,255,.3);
  border-radius: 20px;
  white-space: nowrap;
}

/* ---- Nav dropdown (for categories with children) ---- */
.nav-link-wrap { position: relative; }
.nav-link-wrap .nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px 0;
  z-index: 50;
}
.nav-link-wrap:hover .nav-dropdown,
.nav-link-wrap:focus-within .nav-dropdown {
  display: flex;
  flex-direction: column;
}
.nav-link-wrap .nav-dropdown a {
  padding: 9px 16px;
  font-size: 13.5px;
  color: var(--ink-2);
  transition: background .12s, color .12s;
}
.nav-link-wrap .nav-dropdown a:hover {
  background: var(--bg-2);
  color: var(--blue-deep);
}
.nav-link-top {
  color: var(--ink-2);
  padding: 6px 0;
  font-size: 14px;
  font-weight: 500;
}

/* ---- Mobile nav drawer (shown by the .bx-mnav <details> when open) ---- */
.bx-mobile-nav {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  border-top: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  z-index: 60;
}
.bx-mobile-nav .container {
  padding: 12px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bx-mobile-nav a {
  display: block;
  padding: 11px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 10px;
  transition: background .12s, color .12s;
}
.bx-mobile-nav a:hover {
  background: var(--bg-2);
  color: var(--blue-deep);
}

/* ---- OC alert / notification area ---- */
body.bx #alert {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 320px;
  z-index: 9999;
}
body.bx #alert .alert {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-size: 14px;
}

/* ---- OC breadcrumb ---- */
body.bx .breadcrumb {
  background: none;
  padding: 14px 0;
  font-size: 13px;
  color: var(--muted);
}
body.bx .breadcrumb > li + li::before { content: "›"; padding: 0 8px; color: var(--muted); }
body.bx .breadcrumb a { color: var(--blue); }
body.bx .breadcrumb > .active { color: var(--ink-2); }

/* ---- OC default Bootstrap overrides ---- */
body.bx .btn-default { background: var(--bg-2); border-color: var(--line); color: var(--ink-2); }
body.bx .btn-primary { background: var(--blue); border-color: var(--blue); color: #fff; }
body.bx .btn-primary:hover { background: var(--blue-deep); border-color: var(--blue-deep); }
body.bx input.form-control,
body.bx select.form-control,
body.bx textarea.form-control {
  background: var(--bg-2);
  border-color: var(--line);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: none;
}
body.bx input.form-control:focus,
body.bx select.form-control:focus,
body.bx textarea.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}

/* ---- Product grid ---- */
body.bx .product-thumb {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s;
}
body.bx .product-thumb:hover { box-shadow: var(--shadow-md); }
body.bx .product-thumb .caption { padding: 14px 16px; }
body.bx .product-thumb h4 { font-size: 14px; font-weight: 600; margin: 0 0 6px; }
body.bx .product-thumb .price { font-size: 16px; font-weight: 700; color: var(--blue); }

/* ---- Pagination ---- */
body.bx .pagination > li > a,
body.bx .pagination > li > span {
  color: var(--blue);
  border-color: var(--line);
  background: var(--card);
}
body.bx .pagination > .active > a,
body.bx .pagination > .active > span {
  background: var(--blue);
  border-color: var(--blue);
}

/* =============================================================
   PRODUCT PAGE (product.twig) — OC integration
   The BX design CSS (blauerexpress.css) supplies the look;
   these rules wire OC data + fix mockup-vs-OC conflicts.
   ============================================================= */

/* ---- Real images in gallery (design used CSS pill-art) ---- */
body.bx .bx-product-wrap .hero-img .bx-main-image {
  display: grid; place-items: center; width: 100%; height: 100%; padding: 28px;
}
body.bx .bx-product-wrap .hero-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
body.bx .bx-product-wrap .thumb { padding: 4px; cursor: pointer; }
body.bx .bx-product-wrap .thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ---- Price block ---- */
.bx-price-block { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin: 4px 0 22px; }
.bx-price-now { font-family: 'Space Grotesk', sans-serif; font-size: 30px; font-weight: 700; color: var(--blue-deep); letter-spacing: -0.02em; }
.bx-price-was { font-size: 18px; color: var(--muted); text-decoration: line-through; }
.bx-price-tax { font-size: 12.5px; color: var(--muted); }

/* ---- Native OC options rendered in BX style ---- */
.bx-option { margin-bottom: 22px; }
.bx-option .text-danger { color: #b91c1c; font-size: 12.5px; margin-top: 6px; }
/* radio/checkbox labels behave like the mockup buttons */
body.bx .bx-product-wrap label.qty,
body.bx .bx-product-wrap label.strength { cursor: pointer; margin: 0; font-weight: inherit; }
body.bx .bx-product-wrap .qty-list { display: flex; flex-direction: column; gap: 9px; }

/* ---- Quantity row ---- */
.bx-qty-row { display: flex; align-items: center; gap: 12px; margin: 18px 0 6px; }
.bx-qty-row label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.bx-qty-row input[type="number"] { width: 84px; }

/* ---- Rating row ---- */
.bx-rating { display: flex; align-items: center; gap: 8px; margin-top: 8px; font-size: 13px; }
.bx-rating-link { color: var(--blue); }

/* ---- Description rich text (OC stores HTML) ---- */
.bx-richtext { font-size: 15px; line-height: 1.7; color: var(--ink-2); }
.bx-richtext h2, .bx-richtext h3 { font-family: 'Space Grotesk', sans-serif; color: var(--ink); letter-spacing: -0.02em; margin: 28px 0 12px; }
.bx-richtext p { margin: 0 0 14px; }
.bx-richtext ul, .bx-richtext ol { margin: 0 0 14px; padding-left: 22px; }
.bx-richtext img { max-width: 100%; height: auto; border-radius: 12px; }

/* ---- Tabs: OC uses Bootstrap show/hide; mockup .tab-content was a grid ---- */
body.bx .bx-product-wrap .tabs-nav { list-style: none; padding: 0; margin: 0 0 32px; }
body.bx .bx-product-wrap .tabs-nav li { list-style: none; margin: 0; }
body.bx .bx-product-wrap .tabs-nav .tab { display: block; }
body.bx .bx-product-wrap .tabs-nav li.active .tab { color: var(--ink); border-bottom-color: var(--blue); }
body.bx .bx-product-wrap .tab-content { display: block; grid-template-columns: none; gap: 0; }
body.bx .bx-product-wrap .tab-content > .tab-pane { display: none; }
body.bx .bx-product-wrap .tab-content > .tab-pane.active { display: block; }
body.bx .bx-product-wrap .tab-body { max-width: 820px; }

/* ---- Related / section titles ---- */
.related-section { padding: 8px 0 56px; }
.bx-section-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 24px; letter-spacing: -0.02em; margin: 0 0 22px; }
body.bx .related-section .pcard .p-img { aspect-ratio: 1.2/1; padding: 18px; }
body.bx .related-section .pcard .p-img img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* =============================================================
   CATEGORY PAGE (category.twig) — OC integration
   ============================================================= */

/* flex layout collapses cleanly when there is no left column */
body.bx .bx-category-wrap .cat-layout { display: flex; gap: 36px; align-items: flex-start; }
body.bx .bx-category-wrap .cat-layout .filters { flex: 0 0 248px; }
body.bx .bx-category-wrap .cat-layout .cat-results { flex: 1 1 auto; min-width: 0; }

/* category banner */
.cat-banner { margin: 8px 0 20px; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); }
.cat-banner img { width: 100%; height: auto; display: block; }

/* toolbar: sort + limit selects */
.cat-toolbar-controls { display: flex; gap: 14px; align-items: center; }
.bx-select-wrap { display: flex; align-items: center; gap: 7px; }
.bx-select-wrap label { font-size: 12.5px; color: var(--muted); white-space: nowrap; }
.bx-select-wrap select.form-control { width: auto; min-width: 130px; height: 36px; font-size: 13px; }

/* real images in product cards */
body.bx .bx-category-wrap .pcard .p-img { aspect-ratio: 1.2/1; padding: 18px; }
body.bx .bx-category-wrap .pcard .p-img a { display: grid; place-items: center; width: 100%; height: 100%; }
body.bx .bx-category-wrap .pcard .p-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
body.bx .bx-category-wrap .pcard .p-name a { color: inherit; }

/* pagination row */
.cat-pagination { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.bx-pag-results { font-size: 13px; color: var(--muted); }

/* sub-category refine chips */
.cat-refine { margin-top: 32px; }
.cat-refine h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px; margin: 0 0 12px; }
.refine-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.refine-chip { padding: 8px 14px; border: 1px solid var(--line); border-radius: 100px; background: var(--card); font-size: 13px; font-weight: 600; color: var(--ink-2); transition: border-color .15s, color .15s; }
.refine-chip:hover { border-color: var(--blue); color: var(--blue-deep); }

/* SEO/description bottom block on category */
.bx-category-wrap .seo { margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--line); }

/* =============================================================
   Login icon — currently very subtle (dark on white).
   Slight visibility bump until the next design pass.
   ============================================================= */
.nav-actions .icon-btn { color: var(--ink-2); border-radius: 9px; transition: background .14s, color .14s; }
.nav-actions .icon-btn:hover { background: var(--bg-2); color: var(--blue-deep); }

/* =============================================================
   CART PAGE (checkout/cart.twig) — OC integration
   ============================================================= */

/* real product image inside the thumb (design used CSS pill-art) */
body.bx .cart-page .ci-thumb a { display: grid; place-items: center; width: 100%; height: 100%; padding: 10px; }
body.bx .cart-page .ci-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
body.bx .cart-page .ci-name a { color: inherit; }
body.bx .cart-page .ci-name a:hover { color: var(--blue-deep); }
body.bx .cart-page .ci-meta span { display: inline; }
body.bx .cart-page .ci-oos { color: #b91c1c; font-weight: 600; }

/* stepper uses a real number input (OC needs the field) */
body.bx .cart-page .stepper .bx-qty-input {
  width: 46px; height: 38px; border: none; text-align: center;
  background: #fff; color: var(--ink); font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 14px; -moz-appearance: textfield; box-shadow: none;
}
body.bx .cart-page .stepper .bx-qty-input::-webkit-outer-spin-button,
body.bx .cart-page .stepper .bx-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
body.bx .cart-page .stepper .bx-qty-input:focus { outline: none; }

/* BX alerts */
body.bx .bx-alert { border-radius: 12px; padding: 13px 16px; font-size: 14px; margin: 0 0 16px; border: 1px solid var(--line); }
body.bx .bx-alert.ok  { background: #ecfdf3; border-color: #abefc6; color: #067647; }
body.bx .bx-alert.err { background: #fef3f2; border-color: #fecdca; color: #b42318; }
body.bx .bx-alert.info{ background: var(--bg-tint); color: var(--ink-2); }

/* native OC total modules are hidden — BX coupon box drives coupons */
body.bx .bx-cart-modules { display: none; }

/* coupon button uses type=button */
body.bx .cart-page .coupon button { cursor: pointer; }

@media (max-width: 860px) {
  body.bx .cart-page .cart-grid { grid-template-columns: 1fr; }
  body.bx .cart-page .summary { position: static; }
  body.bx .cart-page .cart-row { grid-template-columns: 72px 1fr; }
  body.bx .cart-page .ci-price { grid-column: 2; align-items: flex-start; text-align: left; margin-top: 6px; }
}

/* =============================================================
   CHECKOUT PAGE (checkout/checkout.twig) — OC integration
   BX skin over OpenCart's native AJAX accordion. The OC JS and
   panel structure stay intact; these rules give it the BX look.
   ============================================================= */
body.bx .checkout-page .co-steps .panel { background: none; border: none; box-shadow: none; margin: 0; }
body.bx .checkout-page .step-card { margin-bottom: 18px; }
body.bx .checkout-page .panel-heading { padding: 0; background: none; border: none; }
body.bx .checkout-page .panel-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; }
body.bx .checkout-page .panel-body { padding: 0; }
body.bx .checkout-page .form-group { margin-bottom: 14px; }
body.bx .checkout-page .radio, body.bx .checkout-page .checkbox { margin: 6px 0; }
body.bx .checkout-page #button-confirm { width: 100%; }

/* Responsive */
@media (max-width: 860px) {
  body.bx .bx-category-wrap .cat-layout { display: block; }
  body.bx .bx-category-wrap .cat-layout .filters { margin-bottom: 20px; }
  .cat-toolbar-controls { flex-wrap: wrap; }
  body.bx .checkout-page .checkout-grid { grid-template-columns: 1fr; }
  body.bx .checkout-page .summary { position: static; }
}

/* =============================================================
   ABGLEICH-FIXES 13.06.2026 (Cowork) — Produkt / Kategorie
   ============================================================= */

/* #3 Produktseiten-Layout: .product ist zugleich .container. Bootstraps
   Clearfix-Pseudoelemente (::before/::after, content:" ";display:table)
   werden im display:grid zu Geister-Grid-Feldern und schieben Galerie +
   Kaufbox in falsche Zellen (Bild breit rechts, Kaufbox schmal links,
   großer Leerraum). Pseudoelemente fürs Produkt-Grid neutralisieren →
   Galerie 360px links (sticky), Kaufbox breit rechts, eine Reihe. */
body.bx .product::before,
body.bx .product::after { content: none; }

/* #7 Kategorie linke Spalte: OpenCart-Kategorienmodul (Bootstrap .list-group)
   auf BX-Look bringen — kein Bootstrap-Blau, kein abgeschnittenes Aktiv-Element. */
body.bx .bx-category-wrap .filters #column-left { width: auto; padding: 0; float: none; }
body.bx .bx-category-wrap .filters .list-group { display: flex; flex-direction: column; gap: 4px; margin: 0; }
body.bx .bx-category-wrap .filters .list-group-item {
  border: none; border-radius: 10px; margin: 0; padding: 10px 12px;
  font-size: 14px; font-weight: 600; color: var(--ink-2); background: transparent; line-height: 1.3;
}
body.bx .bx-category-wrap .filters .list-group-item:hover { background: var(--bg-2); color: var(--ink); }
body.bx .bx-category-wrap .filters .list-group-item.active { background: var(--blue); color: #fff; }

/* #10 Leeres Slideshow-/Banner-Modul (#banner0), das OC ins Kategorie-Layout
   injiziert, ausblenden (nicht Teil des BX-Designs). Der verbleibende
   Konsolen-Fehler verschwindet, sobald das Modul im OC-Admin aus dem
   Kategorie-Layout entfernt wird (Design › Layouts › Category). */
body.bx .swiper-viewport { display: none; }

/* #11 Hex-Fallback für h1-Span-Blau — oklch() wird auf älteren Browsern/Safari-Versionen
   nicht gerendert, span bleibt dann schwarz. Erste Zeile = Fallback, zweite = modern. */
body.bx .buy-head h1 span { color: #3B5BDB; color: oklch(0.52 0.21 264); }

/* #12 Produkt-Titel KOMPLETT blau (Wunsch Axel) — bisher war nur der Klammer-Span
   "(Sildenafil)" blau, der Name "Viagra Generika" dunkel. Jetzt der ganze Titel im
   selben Blau wie der Span, Hex-Fallback zuerst. Gilt für alle Produkte. */
body.bx .buy-head h1 { color: #3B5BDB; color: oklch(0.52 0.21 264); }

/* #13 InfoBand-Höhe (Wunsch Axel: es geht um die HÖHE, nicht Breite) — das Design-Band
   hat 44px Polster oben/unten (Gesamthöhe ~234px). In der ausgelieferten blauerexpress.css
   fehlt dieses padding, dadurch war das Band nur 139px hoch (optisch gestaucht). Hier
   nachgezogen, damit die Trust-Leiste exakt die Design-Höhe bekommt. Gilt für alle Produkte. */
body.bx .band { padding: 44px 0; }

/* =============================================================
   KONTO-SEITEN (account/login|register|forgotten|account.twig)
   + INFOSEITEN / 404 / COOKIE-HINWEIS  (Cowork 16.06.2026)
   Basis-Klassen (auth-*, acc-side/nav/user, page-head, lead, field,
   form-grid, check-row, eyebrow) liefert blauerexpress.css; hier nur
   die OC-Integration + neue Hilfsklassen.
   ============================================================= */

/* einspaltiges Auth-Layout (Passwort vergessen, Registrierung) */
body.bx .auth-grid.one { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }

/* Registrierung: OC-Formularfelder im BX-Look (Feldnamen/JS unverändert) */
body.bx .bx-form .form-group { margin: 0 0 16px; }
body.bx .bx-form .form-grid .form-group { margin-bottom: 0; }
body.bx .bx-form .control-label { display: block; margin: 0 0 7px; font-size: 13px; font-weight: 600; color: var(--ink-2); text-align: left; }
body.bx .bx-form .form-control { width: 100%; height: 46px; padding: 0 14px; }
body.bx .bx-form textarea.form-control { height: auto; padding: 12px 14px; }
body.bx .bx-form .radio, body.bx .bx-form .checkbox { margin: 6px 0; }
body.bx .bx-form .text-danger { color: #b42318; font-size: 12.5px; margin-top: 6px; }
body.bx .bx-form .auth-submit { margin-top: 6px; }
body.bx .bx-form .check-row { margin: 14px 0 0; }

/* Konto-Übersicht: Schnellzugriff-Kacheln */
body.bx .acc-tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
body.bx .acc-tile { display: flex; flex-direction: column; gap: 8px; padding: 20px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); transition: box-shadow .18s, border-color .18s, transform .18s; }
body.bx .acc-tile:hover { box-shadow: var(--shadow-md); border-color: var(--blue); transform: translateY(-2px); }
body.bx .acc-tile .ti { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: var(--bg-tint); color: var(--blue-deep); }
body.bx .acc-tile .tt { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15.5px; color: var(--ink); }
body.bx .acc-tile .ts { font-size: 13px; color: var(--muted); line-height: 1.5; }
body.bx .acc-avatar svg { display: block; }

/* generische Inhaltsseite (Infoseiten) */
body.bx .bx-page { padding: 8px 0 64px; }
body.bx .bx-crumbs { padding: 16px 0 2px; font-size: 13px; color: var(--muted); display: flex; gap: 8px; align-items: center; }
body.bx .bx-crumbs a { color: var(--blue); }
body.bx .bx-page .page-head { margin: 6px 0 26px; }

/* Rechts-/Info-Fließtext (Inhalt aus OC-Admin) */
body.bx .bx-doc { max-width: 820px; font-size: 15px; line-height: 1.75; color: var(--ink-2); }
body.bx .bx-doc h1, body.bx .bx-doc h2, body.bx .bx-doc h3 { font-family: 'Space Grotesk', sans-serif; color: var(--ink); letter-spacing: -.02em; margin: 30px 0 12px; line-height: 1.25; }
body.bx .bx-doc h2 { font-size: 21px; }
body.bx .bx-doc h3 { font-size: 17px; }
body.bx .bx-doc p { margin: 0 0 14px; }
body.bx .bx-doc ul, body.bx .bx-doc ol { margin: 0 0 14px; padding-left: 22px; }
body.bx .bx-doc li { margin: 0 0 6px; }
body.bx .bx-doc a { color: var(--blue); text-decoration: underline; }
body.bx .bx-doc table { border-collapse: collapse; margin: 0 0 16px; width: 100%; }
body.bx .bx-doc th, body.bx .bx-doc td { border: 1px solid var(--line); padding: 8px 12px; text-align: left; font-size: 14px; }
body.bx .bx-doc strong { color: var(--ink); }

/* Buttons außerhalb des OC-Bootstrap (404-Seite) */
body.bx .bx-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 12px; background: var(--blue); color: #fff; font-weight: 600; font-size: 14.5px; border: 1px solid var(--blue); transition: background .15s; }
body.bx .bx-btn:hover { background: var(--blue-deep); border-color: var(--blue-deep); }
body.bx .bx-btn.ghost { background: transparent; color: var(--ink-2); border-color: var(--line); }
body.bx .bx-btn.ghost:hover { background: var(--bg-2); color: var(--blue-deep); }

/* 404 */
body.bx .bx-404 .nf-wrap { max-width: 620px; margin: 40px auto; text-align: center; }
body.bx .bx-404 .nf-code { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 92px; line-height: 1; color: var(--blue); letter-spacing: -.04em; }
body.bx .bx-404 h1 { font-family: 'Space Grotesk', sans-serif; margin: 8px 0 10px; }
body.bx .bx-404 .nf-wrap > p { color: var(--muted); font-size: 15px; margin: 0 auto 22px; max-width: 460px; }
body.bx .bx-404 .nf-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
body.bx .bx-404 .nf-cats { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; align-items: center; font-size: 13.5px; }
body.bx .bx-404 .nf-cats span { color: var(--muted); }
body.bx .bx-404 .nf-cats a { padding: 7px 13px; border: 1px solid var(--line); border-radius: 100px; color: var(--ink-2); font-weight: 600; transition: border-color .15s, color .15s; }
body.bx .bx-404 .nf-cats a:hover { border-color: var(--blue); color: var(--blue-deep); }

/* DSGVO-Cookie-Hinweis (footer.twig) */
body.bx .bx-cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9000; max-width: 760px; margin: 0 auto; background: var(--card); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-md); padding: 18px 20px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
body.bx .bx-cookie .ck-txt { flex: 1 1 320px; font-size: 13.5px; line-height: 1.55; color: var(--ink-2); }
body.bx .bx-cookie .ck-txt a { color: var(--blue); text-decoration: underline; }
body.bx .bx-cookie .ck-actions { display: flex; gap: 10px; flex-shrink: 0; }
body.bx .bx-cookie.hide { display: none; }

@media (max-width: 560px) {
  body.bx .bx-form .form-grid { grid-template-columns: 1fr; }
  body.bx .bx-cookie { flex-direction: column; align-items: stretch; }
  body.bx .bx-cookie .ck-actions .bx-btn { flex: 1; justify-content: center; }
}

/* =============================================================
   INHALTSSEITEN FAQ / RATGEBER / TESTPAKETE (Cowork 16.06.2026)
   Basis-Look liefert blauerexpress.css; hier nur Akkordeon-Mapping
   (<details> statt JS-".open") + OC-Integration.
   ============================================================= */

/* WICHTIG: Bootstrap-.container hat margin:auto; als Grid-Element + Flex-Kind von
   #wrapper (flex column) verhindert das den Stretch → die Seite schrumpft auf
   Inhaltsbreite. Grid-Inhaltsseiten daher explizit auf volle Breite zwingen. */
body.bx main.container.faq-page { width: 100% !important; }
/* Auto-Placement landete im OC-Render vertauscht (Seitenleiste rechts) → Spalten explizit setzen */
body.bx .faq-page > .faq-side { grid-column: 1; }
body.bx .faq-page > .faq-groups { grid-column: 2; }

/* FAQ-Akkordeon CSS-only: Design-".open"-Regeln auf <details open> mappen */
body.bx details.faq > summary.faq-q { list-style: none; cursor: pointer; outline: none; }
body.bx details.faq > summary.faq-q::-webkit-details-marker { display: none; }
body.bx details.faq > summary.faq-q::marker { content: ""; }
body.bx details.faq[open] { box-shadow: var(--shadow-sm); }
body.bx details.faq[open] > summary.faq-q .plus { transform: rotate(45deg); color: var(--blue-deep); }
body.bx details.faq[open] > .faq-a { display: block; }

/* Ratgeber/Testpakete: Tabellen-Scrollcontainer + Vergleichstabelle sicher umbrechen */
body.bx .table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
body.bx table.cmp { min-width: 640px; }

/* =============================================================
   BESTELLBESTÄTIGUNG (route=checkout/done) — Cowork 16.06.2026
   Der confirm-*-Block steht in der NEUEN blauerexpress.css, aber die
   ausgelieferte Basis-CSS ist älter (nur .co-line vorhanden). Daher
   hier nachziehen — verbatim aus dem Design, body.bx-präfixiert.
   Bootstrap-.container braucht volle Breite (margin:auto-Falle wie FAQ).
   ============================================================= */
body.bx main.container.confirm-page { width: 100% !important; padding: 12px 0 72px; max-width: 920px; }
body.bx .confirm-hero { text-align: center; padding: 24px 0 32px; }
body.bx .confirm-check { width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 22px; display: grid; place-items: center; color: #fff; background: linear-gradient(150deg, oklch(0.58 0.2 264), var(--blue-deep)); box-shadow: 0 12px 30px -8px rgba(40,80,200,.5), 0 0 0 8px var(--blue-soft); position: relative; }
body.bx .confirm-check::after { content: ""; position: absolute; inset: -8px; border-radius: 50%; border: 1.5px solid var(--accent-line); opacity: .7; }
body.bx .confirm-check svg { width: 38px; height: 38px; stroke-width: 2.6; }
body.bx .confirm-hero h1 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(28px,3.4vw,38px); letter-spacing: -0.04em; margin: 0 0 10px; }
body.bx .confirm-hero p { font-size: 15px; color: var(--muted); margin: 0 auto 20px; max-width: 46ch; }
body.bx .order-pill { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1.5px solid var(--line); border-radius: 100px; padding: 9px 10px 9px 18px; font-size: 13px; color: var(--muted); box-shadow: var(--shadow-card); }
body.bx .order-pill b { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); background: var(--blue-soft); border: 1px solid var(--blue-tint); padding: 5px 13px; border-radius: 100px; }
/* Status-Track */
body.bx .steps-track { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px 8px; box-shadow: var(--shadow-card); margin-bottom: 24px; }
body.bx .track-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; position: relative; }
body.bx .ts-ico { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-2); border: 1.5px solid var(--line); color: var(--muted); margin-bottom: 12px; position: relative; z-index: 1; transition: all .2s; }
body.bx .ts-ico svg { width: 20px; height: 20px; }
body.bx .track-step.active .ts-ico { background: linear-gradient(150deg, oklch(0.56 0.21 264), var(--blue-deep)); border-color: transparent; color: #fff; box-shadow: var(--shadow-btn); }
body.bx .ts-line { position: absolute; top: 23px; left: 60%; width: 80%; height: 2px; background: var(--line); z-index: 0; }
body.bx .track-step.active .ts-line { background: linear-gradient(90deg, var(--blue), var(--line)); }
body.bx .ts-t { font-size: 13.5px; font-weight: 700; color: var(--ink); line-height: 1.3; }
body.bx .track-step:not(.active) .ts-t { color: var(--ink-2); }
body.bx .ts-s { font-size: 12px; color: var(--muted); margin-top: 3px; line-height: 1.4; max-width: 22ch; }
/* Recap-Grid */
body.bx .confirm-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 18px; align-items: start; }
body.bx .confirm-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px; box-shadow: var(--shadow-card); }
body.bx .confirm-card h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 17px; letter-spacing: -0.02em; margin: 0 0 16px; }
body.bx .co-lines { display: flex; flex-direction: column; gap: 12px; margin-bottom: 6px; }
/* Mit Produktbild: Thumbnail + Info + Betrag */
body.bx .confirm-page .co-line { display: grid; grid-template-columns: 48px 1fr auto; gap: 12px; align-items: center; }
body.bx .co-thumb { width: 48px; height: 48px; border-radius: 11px; background: var(--bg-2); border: 1px solid var(--line); display: grid; place-items: center; position: relative; overflow: hidden; }
body.bx .co-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
body.bx .co-thumb .co-thumb-ph { color: var(--muted); display: grid; place-items: center; }
body.bx .co-qtybadge { position: absolute; top: -6px; right: -6px; min-width: 18px; height: 18px; border-radius: 100px; background: var(--ink); color: #fff; font-size: 10.5px; font-weight: 700; display: grid; place-items: center; padding: 0 5px; border: 2px solid #fff; }
body.bx .co-info { min-width: 0; }
body.bx .co-name { font-size: 13.5px; font-weight: 700; color: var(--ink); line-height: 1.25; }
body.bx .co-meta { font-size: 12px; color: var(--muted); }
body.bx .co-amt { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14.5px; letter-spacing: -0.02em; white-space: nowrap; }
body.bx .confirm-side { display: flex; flex-direction: column; gap: 18px; }
body.bx .detail-block { padding: 12px 0; border-top: 1px solid var(--line-2); }
body.bx .detail-block:first-of-type { border-top: none; padding-top: 0; }
body.bx .db-label { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
body.bx .db-value { font-size: 13.5px; color: var(--ink); line-height: 1.5; }
body.bx .confirm-mail { display: flex; gap: 11px; align-items: flex-start; background: var(--bg-tint); border: 1px solid var(--line); border-radius: 14px; padding: 15px 17px; font-size: 12.5px; color: var(--ink-2); line-height: 1.5; }
body.bx .confirm-mail svg { width: 18px; height: 18px; color: var(--blue-deep); flex-shrink: 0; margin-top: 1px; }
body.bx .confirm-mail b { color: var(--ink); font-weight: 700; }
body.bx .confirm-actions { display: flex; gap: 12px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
body.bx .confirm-actions .bx-btn.ghost { background: #fff; border: 1.5px solid var(--line); color: var(--ink-2); }
@media (max-width: 920px) {
  body.bx .confirm-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 560px) {
  body.bx .steps-track { grid-template-columns: 1fr; gap: 18px; }
  body.bx .ts-line { display: none; }
}

/* =============================================================
   KASSE — Rechnungsadresse-abweichend (Häkchen + zweiter Block)
   + Bestätigung Zahlungslink-Hinweis (Cowork 16.06.2026)
   ============================================================= */
body.bx .bx-diffbill { display: flex; align-items: center; gap: 11px; margin: 20px 0 0; cursor: pointer; font-size: 14px; color: var(--ink-2); user-select: none; }
body.bx .bx-diffbill input { position: absolute; opacity: 0; width: 0; height: 0; }
body.bx .bx-diffbill .db-box { width: 22px; height: 22px; border-radius: 7px; border: 1.5px solid var(--line); background: #fff; display: grid; place-items: center; color: #fff; flex-shrink: 0; transition: background .15s, border-color .15s; }
body.bx .bx-diffbill .db-box svg { opacity: 0; transition: opacity .12s; }
body.bx .bx-diffbill input:checked + .db-box { background: var(--blue); border-color: var(--blue); }
body.bx .bx-diffbill input:checked + .db-box svg { opacity: 1; }
body.bx .bx-diffbill input:focus-visible + .db-box { box-shadow: 0 0 0 3px var(--blue-soft); }
body.bx .bx-billing { margin-top: 16px; padding-top: 18px; border-top: 1px solid var(--line-2); }
body.bx .bx-billing[hidden] { display: none; }
body.bx .bx-billing .bill-head { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
body.bx .confirm-side .pay-note { margin-top: 7px; font-size: 12px; line-height: 1.45; color: var(--blue-deep); background: var(--blue-soft); border: 1px solid var(--blue-tint); border-radius: 9px; padding: 8px 10px; }

/* =============================================================
   KASSE eingeloggt-Banner + Bestätigung ConvertCard (Registrierungs-Vorschlag)
   Cowork 16.06.2026 — convert-* aus blauerexpress.css nachgezogen
   ============================================================= */
body.bx .bx-logged-note { display: flex; align-items: center; gap: 10px; background: var(--blue-soft); border: 1px solid var(--blue-tint); border-radius: 12px; padding: 11px 14px; margin: 0 0 18px; font-size: 13.5px; color: var(--ink-2); }
body.bx .bx-logged-note svg { color: var(--blue-deep); flex-shrink: 0; }
body.bx .bx-logged-note b { color: var(--ink); }

body.bx .convert-card { position: relative; overflow: hidden; background: linear-gradient(165deg, var(--bg-tint), #fff); border: 1px solid var(--blue-tint); border-radius: 22px; padding: 30px; box-shadow: var(--shadow-card); margin-top: 24px; }
body.bx .convert-card::after { content: ""; position: absolute; top: -40%; right: -15%; width: 55%; height: 80%; background: radial-gradient(circle, oklch(0.7 0.16 264 / .13), transparent 65%); pointer-events: none; }
body.bx .convert-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: center; position: relative; z-index: 1; }
body.bx .convert-card .eyebrow { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-deep); margin-bottom: 8px; }
body.bx .convert-card h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 22px; letter-spacing: -0.03em; margin: 0 0 8px; }
body.bx .convert-card .lead { font-size: 14px; color: var(--muted); margin: 0 0 16px; line-height: 1.55; max-width: 42ch; }
body.bx .convert-feats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
body.bx .convert-feats li { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--ink-2); line-height: 1.4; }
body.bx .convert-feats svg { color: var(--green); flex-shrink: 0; }
body.bx .convert-form { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px; box-shadow: var(--shadow-card); }
body.bx .convert-form .prefill { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--ink-2); background: var(--blue-soft); border: 1px solid var(--blue-tint); border-radius: 10px; padding: 9px 12px; margin-bottom: 14px; line-height: 1.4; }
body.bx .convert-form .prefill svg { color: var(--blue-deep); flex-shrink: 0; }
body.bx .convert-form .prefill b { color: var(--ink); font-weight: 700; }
body.bx .convert-form .field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
body.bx .convert-form .field label { font-size: 12.5px; font-weight: 700; color: var(--ink-2); }
body.bx .convert-form .field input { border: 1.5px solid var(--line); border-radius: 12px; padding: 13px 15px; font-family: inherit; font-size: 14.5px; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s; }
body.bx .convert-form .field input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
body.bx .convert-form .bx-btn { width: 100%; justify-content: center; }
body.bx .convert-note { font-size: 11.5px; color: var(--muted); margin-top: 11px; line-height: 1.45; text-align: center; }
@media (max-width: 760px) {
  body.bx .convert-grid { grid-template-columns: 1fr; gap: 22px; }
}

/* account/success — „Konto erfolgreich erstellt" im BX-Design (Cowork 16.06.2026) */
body.bx .confirm-hero .eyebrow { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-deep); margin-bottom: 8px; }
body.bx .auth-benefits { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
body.bx .auth-benefits li { display: flex; gap: 13px; align-items: flex-start; }
body.bx .auth-benefits li .bi { width: 38px; height: 38px; border-radius: 11px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--blue-deep); flex-shrink: 0; box-shadow: var(--shadow-sm); }
body.bx .auth-benefits li .bt { font-size: 14.5px; font-weight: 700; color: var(--ink); }
body.bx .auth-benefits li .bs { font-size: 13px; color: var(--muted); line-height: 1.45; margin-top: 1px; }
body.bx .auth-reassure { display: flex; gap: 11px; align-items: flex-start; max-width: 600px; margin: 24px auto 0; background: var(--bg-tint); border: 1px solid var(--line); border-radius: 13px; padding: 14px 16px; font-size: 12.5px; color: var(--ink-2); line-height: 1.5; }
body.bx .auth-reassure svg { color: var(--green); flex-shrink: 0; margin-top: 1px; }

/* =============================================================
   WARENKORB-TOAST (Produktseite) — Cowork 16.06.2026
   ============================================================= */
@keyframes bx-toast-in { from { transform: translateY(18px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes bx-toast-bar { from { transform: scaleX(1); } to { transform: scaleX(0); } }
#bx-toast-host { position: fixed; z-index: 9500; display: flex; flex-direction: column; gap: 12px; pointer-events: none; right: 24px; bottom: 24px; align-items: flex-end; }
body.bx .toast { pointer-events: auto; animation: bx-toast-in .25s var(--ease, ease) both; }
body.bx .toast.rich { width: 360px; max-width: calc(100vw - 32px); background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 20px 54px rgba(20,30,60,.20); overflow: hidden; }
body.bx .toast.rich .t-head { display: flex; align-items: center; gap: 9px; padding: 14px 16px 12px; border-bottom: 1px solid var(--line-2); }
body.bx .toast .t-check { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(150deg, #22A559, var(--green)); display: grid; place-items: center; color: #fff; flex-shrink: 0; }
body.bx .toast.rich .t-title { font-size: 14px; font-weight: 700; color: var(--ink); flex: 1; letter-spacing: -0.01em; }
body.bx .toast .t-close { background: none; border: none; color: var(--muted); cursor: pointer; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; flex-shrink: 0; transition: all .15s; }
body.bx .toast .t-close:hover { background: var(--bg-2); color: var(--ink); }
body.bx .toast.rich .t-body { display: flex; align-items: center; gap: 13px; padding: 14px 16px; }
body.bx .toast .t-thumb { width: 54px; height: 54px; border-radius: 12px; background: var(--bg-2); border: 1px solid var(--line); display: grid; place-items: center; overflow: hidden; flex-shrink: 0; }
body.bx .toast .t-thumb .pill-art { width: 72%; }
body.bx .toast .t-info { flex: 1; min-width: 0; }
body.bx .toast .t-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14.5px; letter-spacing: -0.01em; color: var(--ink); }
body.bx .toast .t-meta { font-size: 12px; color: var(--muted); margin-top: 2px; }
body.bx .toast .t-price { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px; letter-spacing: -0.02em; color: var(--ink); white-space: nowrap; }
body.bx .toast.rich .t-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; padding: 0 16px 16px; }
body.bx .toast .t-btn { padding: 11px 14px; border-radius: 11px; font-size: 13.5px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; gap: 7px; cursor: pointer; transition: all .16s; border: 1.5px solid transparent; text-decoration: none; }
body.bx .toast .t-btn.ghost { background: #fff; border-color: var(--line); color: var(--ink-2); }
body.bx .toast .t-btn.ghost:hover { border-color: var(--blue-tint); color: var(--blue-deep); }
body.bx .toast .t-btn.solid { background: linear-gradient(180deg, oklch(0.55 0.21 264), var(--blue)); color: #fff; box-shadow: var(--shadow-btn); }
body.bx .toast .t-btn.solid:hover { filter: brightness(1.06); }
body.bx .toast .t-progress { height: 3px; background: var(--blue-soft); overflow: hidden; }
body.bx .toast .t-progress span { display: block; height: 100%; width: 100%; transform-origin: left; background: linear-gradient(90deg, var(--blue), var(--blue-deep)); animation: bx-toast-bar 4s linear forwards; }

/* =============================================================
   LEERER WARENKORB — angereicherte Ansicht (Design-Paket 4 / be-cart.jsx)
   Basis-.cart-empty steht in blauerexpress.css; hier die .rich-Erweiterung:
   Sortiment-Button, Kategorie-Chips, „Beliebt bei unseren Kunden", Track-Link.
   Cowork 16.06.2026
   ============================================================= */
.cart-empty.rich{max-width:760px;padding:44px 40px}
.cart-empty .empty-actions{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-bottom:8px}
.cart-empty .empty-cats{display:flex;gap:8px;justify-content:center;flex-wrap:wrap;margin:28px 0 4px}
.cart-empty .empty-cats a{font-size:13px;font-weight:600;color:var(--ink-2);background:var(--bg-2);border:1px solid var(--line);border-radius:100px;padding:8px 15px;transition:all .15s}
.cart-empty .empty-cats a:hover{border-color:var(--blue);color:var(--blue-deep);background:var(--blue-soft)}
.empty-suggest{margin-top:34px;text-align:left}
.empty-suggest .es-head{display:flex;align-items:baseline;justify-content:space-between;gap:12px;margin-bottom:14px}
.empty-suggest .es-head h3{font-family:'Space Grotesk',sans-serif;font-weight:700;font-size:16px;letter-spacing:-0.02em;margin:0}
.empty-suggest .es-head a{font-size:13px;font-weight:600;color:var(--blue-deep);display:inline-flex;align-items:center;gap:5px}
.empty-suggest .es-head a svg{width:14px;height:14px}
.empty-suggest .es-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.es-card{display:flex;align-items:center;gap:13px;background:#fff;border:1px solid var(--line);border-radius:14px;padding:12px;text-align:left;transition:all .16s}
.es-card:hover{border-color:var(--blue-tint);box-shadow:var(--shadow-card);transform:translateY(-1px)}
.es-card .es-thumb{width:56px;height:56px;border-radius:11px;background:var(--grad-img);border:1px solid var(--line);display:grid;place-items:center;flex-shrink:0;overflow:hidden}
.es-card .es-thumb .pill-art{width:72%}
.es-card .es-info{flex:1;min-width:0}
.es-card .es-cat{font-size:11px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:var(--muted)}
.es-card .es-name{font-family:'Space Grotesk',sans-serif;font-weight:700;font-size:14.5px;letter-spacing:-0.01em;color:var(--ink);margin-top:1px}
.es-card .es-price{font-size:13px;color:var(--ink-2);margin-top:3px}
.es-card .es-price b{font-family:'Space Grotesk',sans-serif;color:var(--ink)}
.es-card .es-go{width:30px;height:30px;border-radius:9px;background:var(--blue-soft);color:var(--blue-deep);display:grid;place-items:center;flex-shrink:0}
.es-card .es-go svg{width:15px;height:15px}
.cart-empty .empty-track{margin-top:26px;font-size:13px;color:var(--muted)}
.cart-empty .empty-track a{color:var(--blue-deep);font-weight:600}
@media (max-width:600px){ .empty-suggest .es-grid{grid-template-columns:1fr} }

/* =============================================================
   BREADCRUMB — „Start" statt Haus-Icon + bündige Ausrichtung (Wunsch Axel 16.06.2026)
   (1) Auf Kategorie/Produkt ist der Breadcrumb ein eigener .container; .crumb{padding:18px 0 0}
       nullte das horizontale Padding → 28px links versetzt. Container-Polsterung wiederherstellen,
       damit der Breadcrumb bündig unter dem Seiteninhalt sitzt (Sortiment/Warenkorb sind schon ok).
   (2) OC rendert die Home-Krume als <i class="fa fa-home">-Icon → ausblenden und Text „Start" zeigen
       (nur wo das Icon wirklich steht; Sortiment hat bereits literalen „Start"-Text → :has-Scope).
   ============================================================= */
body.bx .container.crumb { padding: 18px 28px 0; }
@media (max-width: 680px) { body.bx .container.crumb { padding: 18px 18px 0; } }
body.bx .crumb a:has(> i.fa-home) i.fa-home { display: none; }
body.bx .crumb a:has(> i.fa-home)::after { content: "Start"; }
/* ---- BX-MOBILFIX (15.07.2026): Header lief mobil auf 502px Breite -> Menue-Knopf unerreichbar,
   Layout-Viewport gedehnt (weisser Streifen rechts, Cookie-Banner zu breit). Warenkorb-Text
   mobil ausblenden + Kopfleiste kompakt; overflow-x:clip als Sicherheitsnetz. Verifiziert 390/360/320px. */
html, body { overflow-x: clip; }
@media (max-width: 560px) {
  body.bx .nav-inner { gap: 8px !important; padding: 0 12px !important; }
  body.bx .cart-btn .cart-label { display: none !important; }
  body.bx .cart-btn { padding: 9px 10px !important; gap: 5px !important; }
  header.nav .nav-inner .nav-actions { gap: 2px !important; }
  body.bx .nav-actions .icon-btn { width: 30px !important; height: 30px !important; }
  body.bx .logo { gap: 6px !important; }
  body.bx .logo .word { font-size: 16px !important; }
  body.bx .logo .glyph { width: 26px !important; height: 26px !important; }
}
/* BX-MOBILFIX Teil 2: untere Kaufleiste (cartbar) lief mobil 21px raus -> Knopf angeschnitten */
@media (max-width: 560px) {
  body.bx .cartbar-inner { padding: 10px 12px !important; gap: 10px !important; }
  body.bx .cartbar-cta { flex: 1 1 auto !important; min-width: 0 !important; padding: 12px 10px !important; font-size: 14px !important; }
}
/* BX-MOBILFIX Teil 3 (15.07.2026): Handy-Menue als volle Zeilen ueber die Gesamtbreite (Axel-Feedback) */
@media (max-width: 920px) {
  body.bx .bx-mobile-nav .container { display: block !important; padding: 4px 0 10px !important; }
  body.bx .bx-mobile-nav .container a { display: block !important; width: 100% !important; box-sizing: border-box;
    padding: 14px 20px !important; font-size: 16px !important; border-bottom: 1px solid rgba(15,23,42,.08); }
  body.bx .bx-mobile-nav .container a:last-child { border-bottom: none; }
}
/* BX-MOBILFIX Teil 4 (15.07.2026): Such-Panel lag mobil links aus dem Bild (Desktop-Regel
   "Feld links neben der Lupe" passt nicht aufs Handy; auf iPhone von Axel entdeckt).
   Mobil jetzt volle Leiste unter der Kopfzeile. Safari+Chrome 430/390/320 verifiziert. */
@media (max-width: 560px) {
  body.bx .bx-search { position: static !important; }
  body.bx .bx-search-panel {
    position: absolute !important;
    top: 100% !important; left: 0 !important; right: 0 !important;
    transform: none !important;
    width: auto !important; max-width: none !important;
    border-radius: 0 0 14px 14px !important;
    z-index: 500;
  }
  body.bx .bx-search-panel-inner { padding: 4px 8px !important; }
}
/* BX-MOBILFIX Teil 5 (15.07.2026): Symbolgruppe (Lupe/Konto/Warenkorb/Menue) mobil nach
   rechts aussen (hing mittig neben dem Logo, weil das versteckte Desktop-Menue keinen
   Platz mehr einnimmt; Axel-Feedback). */
@media (max-width: 920px) {
  body.bx .nav-inner { padding-right: 16px !important; }
  body.bx .nav-actions { margin-left: auto !important; }
}
@media (max-width: 560px) {
  body.bx .nav-inner { padding-right: 12px !important; }
}
/* BX Teil 6 (15.07.2026): Kategorie-Kachel mit echtem Bild statt Icon (wenn im Admin gesetzt) */
.cat-ico.cat-ico-img { padding: 0; overflow: hidden; }
.cat-ico.cat-ico-img img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
