/* ============================================================
   B3 Design — MINT LAMA / MINT-AGENTS Storefront
   Source: ~/projects/mintlama-mockups-2026/design/mockups/B3_*.html
   Dedupliziert aus B3_homepage.html, B3_category.html, B3_product.html
   Stand: 2026-05-03
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --mint:        #7BC3B8;
  --mint-dark:   #5EA89C;
  --mint-deep:   #2C5550;
  --dark:        #0E1A1F;
  --ice:         #EEF3F4;
  --ice-2:       #DCE5E7;
  --gray:        #555;
  --gray-light:  #8A9499;
  --border-light:#d8e0e2;
  --white:       #ffffff;
  --gold:        #C9A95C;
  --green:       #5fa86b;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============== SCROLL-IN ANIMATION ============== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.47s; }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * {
    opacity: 1; transform: none; transition: none;
  }
}

/* ============== TRUST RIBBON (oberste Leiste, mint-deep BG) ============== */
.b3-trust-ribbon {
  background: var(--mint-deep);
  color: var(--ice);
  padding: 10px 0;
  font-size: 12px;
  overflow: hidden;
}
.b3-trust-ribbon-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.b3-trust-items {
  display: flex;
  gap: 30px;
  align-items: center;
  letter-spacing: 0.5px;
}
.b3-trust-items span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.b3-trust-items .b3-star { color: var(--gold); }

/* ============== TOP BAR (Sprache/Login) ============== */
.b3-top-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 8px 0;
  font-size: 12px;
}
.b3-top-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}
.b3-top-bar a, .b3-top-bar div {
  color: var(--gray);
  cursor: pointer;
}

/* ============== HEADER (Logo + Nav + Icons, sticky) ============== */
.b3-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}
.b3-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.b3-logo img { height: 50px; }
.b3-main-nav { display: flex; justify-content: center; }
.b3-main-nav > ul {
  list-style: none;
  display: flex;
  gap: 36px;
}
.b3-main-nav > ul > li > a {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 0;
  display: block;
  transition: color 0.2s;
}
.b3-main-nav > ul > li > a:hover { color: var(--mint); }

.b3-header-right {
  display: flex;
  gap: 16px;
  align-items: center;
}
.b3-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: var(--dark);
  position: relative;
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.b3-icon-btn:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 2px;
  border-radius: 4px;
}
.b3-cart-count {
  position: absolute;
  top: -2px;
  right: -8px;
  background: var(--mint);
  color: var(--white);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ============== HERO (Homepage Video) ============== */
.b3-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
  background: var(--dark);
}
.b3-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============== USP BAR (Versand/Garantie/Lager/Bestpreis mit SVG-Icons) ============== */
.b3-usp-bar {
  background: var(--mint);
  color: var(--white);
  padding: 36px 0;
}
.b3-usp-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.b3-usp-item .b3-usp-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
}
.b3-usp-item .b3-usp-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--white);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.b3-usp-item h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.b3-usp-item p {
  font-size: 13px;
  opacity: 0.95;
  line-height: 1.5;
}

/* USP Bar — Compact (PDP) */
.b3-usp-bar.b3-usp-bar--compact {
  padding: 22px 0;
}
.b3-usp-bar--compact .b3-usp-grid {
  gap: 20px;
}
.b3-usp-bar--compact .b3-usp-item-compact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.b3-usp-item-compact .b3-usp-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  margin: 0;
}
.b3-usp-item-compact .b3-usp-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.b3-usp-item-compact .b3-usp-text {
  text-align: left;
}
.b3-usp-item-compact h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.2;
  margin: 0;
}
.b3-usp-item-compact p {
  font-size: 11px;
  opacity: 0.9;
  line-height: 1.3;
}

/* ============== AWARD STRIP (Innovation Award) ============== */
.b3-award-strip {
  background: var(--dark);
  color: var(--ice);
  padding: 16px 0;
  text-align: center;
}
.b3-award-strip-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.b3-award-strip .b3-gold { color: var(--gold); }

/* ============== DARK / LIGHT SECTIONS ============== */
.b3-dark-section { background: var(--dark); color: var(--ice); }
.b3-dark-section h2 { color: var(--ice); }
.b3-dark-section h2 .b3-accent { color: var(--mint); }
.b3-dark-section p { color: rgba(238,243,244,0.85); }
.b3-dark-section strong { color: var(--mint); }
.b3-light-section { background: var(--ice); color: var(--dark); }

/* ============== INTRO SECTION (Homepage) ============== */
.b3-intro-section { padding: 90px 24px; }
.b3-intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.b3-intro-inner h1 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
  line-height: 1;
}
.b3-intro-inner p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--gray);
}

/* ============== INNOVATION SECTION (Homepage) ============== */
.b3-innovation-section { padding: 100px 24px; }
.b3-innovation-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.b3-innovation-text .b3-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--mint);
  color: var(--mint);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 600;
}
.b3-innovation-text h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}
.b3-innovation-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.b3-innovation-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}
.b3-innovation-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.b3-innovation-img .b3-db-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--mint);
  color: var(--dark);
  padding: 14px 22px;
  border-radius: 6px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.b3-innovation-img .b3-db-badge small {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 700;
}

/* ============== BUTTONS ============== */
.b3-btn-mint {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--mint);
  color: var(--dark);
  padding: 16px 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.3s;
  margin-top: 16px;
  min-height: 52px;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.b3-btn-mint:hover {
  background: var(--ice);
  transform: translateX(4px);
}
.b3-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--dark);
  color: var(--ice);
  padding: 16px 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.3s;
  margin-top: 16px;
  min-height: 52px;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.b3-btn-dark:hover {
  background: var(--mint);
  color: var(--dark);
  transform: translateX(4px);
}

/* ============== PRODUCTS SECTION (Homepage) ============== */
.b3-products-section { padding: 100px 24px; }
.b3-products-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.b3-products-inner h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}
.b3-products-inner .b3-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 50px;
}
.b3-product-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.b3-product-row-4 { grid-template-columns: repeat(4, 1fr); }

.b3-product-card {
  background: var(--white);
  overflow: hidden;
  transition: all 0.3s;
  text-align: center;
  border-radius: 8px;
  border: 1px solid var(--border-light);
}
.b3-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(14,26,31,0.08);
}
.b3-product-card .b3-img-wrap {
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.b3-product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--ice-2);
  transition: transform 0.5s;
}
.b3-product-card:hover img { transform: scale(1.04); }
.b3-product-card h3 {
  padding: 18px 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

/* ============== REVIEWS SECTION (alle Seiten, dark) ============== */
.b3-reviews-section { padding: 90px 24px; }
.b3-reviews-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.b3-reviews-header {
  text-align: center;
  margin-bottom: 50px;
}
.b3-reviews-header .b3-stars {
  color: var(--gold);
  font-size: 26px;
  letter-spacing: 5px;
  margin-bottom: 16px;
}
.b3-reviews-header .b3-rating {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ice);
}
.b3-reviews-header .b3-meta {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
  font-weight: 600;
}
.b3-reviews-header .b3-meta span { color: var(--mint); }

.b3-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.b3-review-card {
  background: rgba(123,195,184,0.06);
  border: 1px solid rgba(123,195,184,0.15);
  padding: 28px;
  border-radius: 8px;
  transition: all 0.3s;
}
.b3-review-card:hover {
  border-color: var(--mint);
  transform: translateY(-4px);
}
.b3-review-card .b3-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.b3-review-card blockquote {
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--ice);
}
.b3-review-card .b3-reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(123,195,184,0.15);
}
.b3-reviewer-avatar {
  width: 40px;
  height: 40px;
  background: var(--mint);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.b3-reviewer-info .b3-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ice);
}
.b3-reviewer-info .b3-source {
  font-size: 12px;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 4px;
}
.b3-reviews-cta {
  text-align: center;
  margin-top: 40px;
}
.b3-reviews-cta a {
  color: var(--mint);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid var(--mint);
  padding-bottom: 4px;
  display: inline-block;
  transition: gap 0.3s;
}
.b3-reviews-cta a:hover {
  color: var(--ice);
  border-color: var(--ice);
}

/* ============== HOLIDAY SECTION (Homepage) ============== */
.b3-holiday-section { padding: 100px 24px; }
.b3-holiday-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.b3-holiday-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 8px;
}
.b3-holiday-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.b3-holiday-text h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}
.b3-holiday-text p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ============== CLOSING SECTION (Homepage, dark) ============== */
.b3-closing-section {
  text-align: center;
  padding: 100px 24px;
}
.b3-closing-inner {
  max-width: 800px;
  margin: 0 auto;
}
.b3-closing-section h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.1;
}
.b3-closing-section .b3-swiss {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 16px 0 24px;
  letter-spacing: 4px;
  font-size: 13px;
  color: var(--mint);
  font-weight: 700;
  text-transform: uppercase;
}
.b3-closing-section .b3-swiss::before,
.b3-closing-section .b3-swiss::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--mint);
}
.b3-closing-section p {
  font-size: 16px;
  line-height: 1.8;
}

/* ============== CATEGORY HERO (Image + Title overlay) ============== */
.b3-cat-hero {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: var(--dark);
}
.b3-cat-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.b3-cat-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--ice);
  text-align: center;
  padding: 0 24px;
}
.b3-cat-hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  line-height: 1;
}
.b3-cat-hero .b3-count {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 600;
}
.b3-breadcrumb-floating {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 13px;
  color: rgba(238,243,244,0.85);
  z-index: 2;
}
.b3-breadcrumb-floating a { color: var(--mint); }
.b3-breadcrumb-floating .b3-sep {
  margin: 0 8px;
  opacity: 0.5;
}

/* ============== CATEGORY: FILTER BAR ============== */
.b3-filter-bar {
  background: var(--ice);
  padding: 0 24px 30px;
}
.b3-filter-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
}
.b3-filter-left {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.b3-filter-chip {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 8px 16px;
  font-size: 13px;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.2s;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}
.b3-filter-chip:hover {
  border-color: var(--mint);
  color: var(--mint-dark);
}
.b3-filter-chip.active {
  background: var(--mint);
  color: var(--white);
  border-color: var(--mint);
}
.b3-sort-select {
  padding: 8px 16px;
  font-size: 13px;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  background: var(--white);
  cursor: pointer;
  font-family: inherit;
  min-height: 36px;
}

/* ============== CATEGORY: PRODUCT GRID (Light) ============== */
.b3-cat-products-section {
  background: var(--ice);
  padding: 30px 24px 80px;
}
.b3-product-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.b3-cat-card {
  background: var(--white);
  transition: all 0.3s;
  text-align: left;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.b3-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(14,26,31,0.1);
}
.b3-cat-card .b3-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ice-2);
  position: relative;
}
.b3-cat-card .b3-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.b3-cat-card:hover .b3-img-wrap img { transform: scale(1.04); }

.b3-product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--mint);
  color: var(--white);
  padding: 5px 12px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 2;
}
.b3-product-info { padding: 22px 24px; }
.b3-product-info h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.b3-product-meta {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 14px;
}
.b3-product-meta strong {
  color: var(--dark);
  font-weight: 600;
}
.b3-product-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--mint-deep);
}

/* ============== CATEGORY INFO (SEO Text) ============== */
.b3-info-section {
  background: var(--ice);
  padding: 90px 24px;
}
.b3-info-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.b3-info-inner h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 50px;
}
.b3-info-inner h2:first-child { margin-top: 0; }
.b3-info-inner h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 30px;
  color: var(--mint-deep);
}
.b3-info-inner p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 14px;
}
.b3-info-inner ul {
  margin: 14px 0 14px 24px;
  color: var(--gray);
  line-height: 1.9;
}
.b3-info-inner strong {
  color: var(--dark);
  font-weight: 600;
}
.b3-info-inner a { color: var(--mint-dark); }

/* ============== PRODUCT MAIN (PDP, Light) ============== */
.b3-product-main-section {
  background: var(--ice);
  padding: 30px 24px 80px;
}
.b3-breadcrumb {
  max-width: 1400px;
  margin: 0 auto 24px;
  font-size: 13px;
  color: var(--gray);
}
.b3-breadcrumb a { color: var(--mint-dark); }
.b3-breadcrumb .b3-sep {
  margin: 0 8px;
  opacity: 0.5;
}
.b3-breadcrumb .b3-current {
  color: var(--dark);
  font-weight: 600;
}

.b3-product-main {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

/* PDP Gallery */
.b3-gallery-main {
  aspect-ratio: 1;
  background: var(--white);
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  position: relative;
}
.b3-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.b3-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border-light);
  color: var(--dark);
  font-size: 28px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.2s, transform 0.2s;
  font-family: inherit;
  line-height: 1;
}
.b3-gallery-nav:hover {
  background: var(--mint);
  color: var(--white);
}
.b3-gallery-nav--prev { left: 12px; }
.b3-gallery-nav--next { right: 12px; }
.b3-gallery-nav:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 2px;
}
.b3-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  gap: 6px;
  max-height: 300px;
  overflow-y: auto;
}
.b3-gallery-thumb {
  aspect-ratio: 1;
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: border-color 0.2s;
}
@media (max-width: 600px) {
  .b3-gallery-thumbs {
    grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
    gap: 4px;
    max-height: 180px;
  }
}
.b3-gallery-thumb.active { border-color: var(--mint); }
.b3-gallery-thumb:hover { border-color: var(--mint-dark); }
.b3-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PDP Info Right */
.b3-product-info-pdp h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 12px;
}
.b3-availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(95,168,107,0.12);
  color: var(--green);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 8px;
}
.b3-availability::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}
.b3-availability--out {
  color: #b04545;
  background: rgba(176,69,69,0.10);
}
.b3-availability--out::before { background: #b04545; }

.b3-delivery-info {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 16px;
}

.b3-product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 13px;
}
.b3-product-rating .b3-stars {
  color: var(--gold);
  letter-spacing: 2px;
}
.b3-product-rating .b3-count {
  color: var(--gray);
}
.b3-product-rating .b3-count a {
  color: var(--mint-dark);
}

.b3-lbs-callout {
  background: var(--dark);
  color: var(--ice);
  padding: 18px 22px;
  border-radius: 8px;
  margin: 20px 0 28px;
  font-size: 14px;
}
.b3-lbs-callout strong { color: var(--mint); }
.b3-lbs-callout a {
  color: var(--mint);
  text-decoration: underline;
  font-weight: 600;
}

.b3-short-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}
.b3-short-desc strong { color: var(--dark); }

.b3-scope-list {
  background: var(--white);
  padding: 20px 24px;
  border-radius: 8px;
  margin: 16px 0 24px;
  border: 1px solid var(--border-light);
}
.b3-scope-list h2 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  font-weight: 700;
  color: var(--dark);
}
.b3-scope-list ul {
  list-style: none;
  font-size: 14px;
  padding: 0;
  margin: 0;
}
.b3-scope-list li {
  padding: 5px 0 5px 26px;
  position: relative;
  color: var(--gray);
  line-height: 1.5;
}
.b3-scope-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--mint);
  font-weight: 700;
}

.b3-specs-quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 13px;
}
.b3-spec-item {
  background: var(--white);
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  word-break: break-word;
}
.b3-spec-item .b3-label {
  color: var(--gray-light);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.b3-spec-item .b3-value { font-weight: 600; }

.b3-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}
.b3-price {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: var(--mint-deep);
}
.b3-price-tax {
  font-size: 13px;
  color: var(--gray);
}

.b3-qty-cart {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.b3-qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}
.b3-qty-selector button {
  background: var(--white);
  border: none;
  width: 44px;
  height: 52px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
}
.b3-qty-selector button:hover { background: var(--ice); }
.b3-qty-selector input {
  width: 50px;
  text-align: center;
  height: 52px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
}
.b3-add-to-cart {
  background: var(--dark);
  color: var(--ice);
  border: none;
  height: 52px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 8px;
  font-family: inherit;
}
.b3-add-to-cart:hover {
  background: var(--mint);
  color: var(--dark);
  transform: translateY(-1px);
}
.b3-add-to-cart:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 2px;
}

/* ============== PDP TABS ============== */
.b3-tabs-section {
  background: var(--ice);
  padding: 60px 24px;
}
.b3-tabs-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.b3-tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border-light);
  flex-wrap: wrap;
}
.b3-tab-btn {
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  cursor: pointer;
  background: transparent;
  border: none;
  border-bottom: 4px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: inherit;
  min-height: 48px;
  position: relative;
}
.b3-tab-btn:hover {
  color: var(--mint-dark);
  background: rgba(123,195,184,0.06);
}
.b3-tab-btn.active {
  color: var(--mint-deep);
  border-color: var(--mint);
  background: var(--white);
  font-weight: 700;
}
.b3-tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--mint);
}
.b3-tab-btn:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: -4px;
}
.b3-tab-content { display: none; padding: 40px 0; }
.b3-tab-content.active { display: block; }

.b3-tab-content h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 30px 0 14px;
}
.b3-tab-content h2:first-child { margin-top: 0; }
.b3-tab-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--mint-deep);
}
.b3-tab-content p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 14px;
}
.b3-tab-content strong { color: var(--dark); }
.b3-tab-content a { color: var(--mint-dark); }

.b3-specs-table {
  width: 100%;
  max-width: 800px;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}
.b3-specs-table tr { border-bottom: 1px solid var(--border-light); }
.b3-specs-table tr:last-child { border-bottom: none; }
.b3-specs-table td { padding: 14px 20px; }
.b3-specs-table td:first-child {
  font-weight: 600;
  width: 40%;
  color: var(--gray);
}

.b3-faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
}
.b3-faq-item summary {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 4px 0;
}
.b3-faq-item summary::-webkit-details-marker { display: none; }
.b3-faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--mint);
  transition: transform 0.2s;
}
.b3-faq-item[open] summary::after {
  content: '−';
}
.b3-faq-item .b3-faq-a {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
  padding-top: 8px;
}

/* ============== RELATED PRODUCTS (PDP, Light) ============== */
.b3-related-section {
  background: var(--ice);
  padding: 80px 24px;
}
.b3-related-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.b3-related-inner h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
.b3-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.b3-related-card {
  background: var(--white);
  text-align: center;
  transition: transform 0.3s;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.b3-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(14,26,31,0.08);
}
.b3-related-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--ice-2);
}
.b3-related-card h3 {
  padding: 16px 12px 4px;
  font-size: 16px;
  font-weight: 700;
}
.b3-related-card .b3-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--mint-deep);
  padding-bottom: 16px;
}

/* ============== FOOTER (mint-deep) ============== */
.b3-footer {
  background: var(--mint-deep);
  color: var(--ice);
  padding: 60px 0 30px;
}
.b3-footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.b3-footer-col h2 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.b3-footer-col ul { list-style: none; }
.b3-footer-col li { margin-bottom: 8px; }
.b3-footer-col a {
  font-size: 14px;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.b3-footer-col a:hover {
  opacity: 1;
  color: var(--mint);
}
.b3-footer-bottom {
  max-width: 1400px;
  margin: 40px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(238,243,244,0.15);
  text-align: center;
  font-size: 13px;
  opacity: 0.7;
}

/* ============== MOBILE STICKY ADD-TO-CART (PDP) ============== */
.b3-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 12px 16px;
  z-index: 90;
  box-shadow: 0 -4px 20px rgba(14,26,31,0.1);
  align-items: center;
  gap: 12px;
}
.b3-mobile-cta .b3-mobile-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--mint-deep);
  flex-shrink: 0;
}
.b3-mobile-cta .b3-add-to-cart {
  flex: 1;
  height: 48px;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 900px) {
  .b3-main-nav { display: none; }
  .b3-header-inner {
    grid-template-columns: auto auto;
    gap: 16px;
  }
  .b3-intro-inner h1 { font-size: 36px; }
  .b3-innovation-inner,
  .b3-holiday-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .b3-usp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .b3-product-row,
  .b3-product-row-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .b3-reviews-grid { grid-template-columns: 1fr; }
  .b3-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .b3-trust-items {
    gap: 16px;
    font-size: 11px;
  }
  .b3-cat-hero h1 { font-size: 40px; }
  .b3-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .b3-product-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .b3-related-grid { grid-template-columns: repeat(2, 1fr); }
  .b3-specs-quick { grid-template-columns: 1fr; }

  /* Mobile Sticky-Cart aktivieren */
  .b3-mobile-cta { display: flex; }
  /* Padding unten damit Cart nicht ueber Inhalt liegt */
  body.b3-pdp-page { padding-bottom: 80px; }
}

/* ============== B3 ABOVE-FOLD BLOCK (PDP, aus DOCX-Import) ============== */
.b3-above-fold-block {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 24px;
}
.b3-above-fold-block h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin: 16px 0 8px;
}
.b3-above-fold-block h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin: 8px 0 2px;
  text-transform: none;
  letter-spacing: 0;
}
.b3-above-fold-block h3:first-of-type {
  font-size: 16px;
  font-weight: 700;
  color: var(--mint-deep);
  margin-top: 0;
}
.b3-above-fold-block p {
  margin: 4px 0 8px;
}

/* ============== B3 TAB-CONTENT (PDP-Tab "Artikelbeschreibung") ============== */
.b3-tab-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--mint-deep);
  margin: 24px 0 12px;
  text-transform: none;
  letter-spacing: 0;
}
.b3-tab-content h3:first-child {
  margin-top: 0;
}
.b3-tab-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin: 18px 0 10px;
}

@media (max-width: 600px) {
  .b3-product-grid { grid-template-columns: 1fr; }
  .b3-trust-ribbon-inner {
    flex-direction: column;
    gap: 8px;
  }
  .b3-trust-items {
    flex-wrap: wrap;
    justify-content: center;
  }
  .b3-intro-section,
  .b3-innovation-section,
  .b3-holiday-section,
  .b3-products-section { padding: 60px 20px; }
  .b3-reviews-section,
  .b3-info-section { padding: 60px 20px; }
}

/* ====================================================== */
/* B3 PATCH 2026-05-04 — Filter-Padding, USP-Trenner,      */
/* Group-Header bei 'Alle'-Filter                           */
/* ====================================================== */

/* 1) Filter-Bar — Abstand zum schwarzen Award-Banner */
.b3-filter-bar {
  padding: 28px 24px 30px;
}

/* 2) USP-Items — dezente vertikale Trennstriche */
.b3-usp-grid > .b3-usp-item:not(:last-child),
.b3-usp-grid > .b3-usp-item-compact:not(:last-child) {
  position: relative;
}
.b3-usp-grid > .b3-usp-item:not(:last-child)::after,
.b3-usp-grid > .b3-usp-item-compact:not(:last-child)::after {
  content: ;
  position: absolute;
  top: 18%;
  bottom: 18%;
  right: -15px;
  width: 1px;
  background: rgba(255,255,255,0.22);
  pointer-events: none;
}
@media (max-width: 768px) {
  .b3-usp-grid > .b3-usp-item:not(:last-child)::after,
  .b3-usp-grid > .b3-usp-item-compact:not(:last-child)::after {
    top: auto;
    bottom: -10px;
    left: 18%;
    right: 18%;
    width: auto;
    height: 1px;
  }
}

/* 3) Group-Header bei Alle-Filter */
.b3-cat-group-header {
  max-width: 1400px;
  margin: 28px auto 14px;
  padding: 26px 24px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--border-light, #e5e7eb);
}
.b3-cat-group-header.b3-cat-group-header--first {
  border-top: none;
  padding-top: 4px;
  margin-top: 6px;
}
.b3-cat-group-header h2 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--dark, #111);
  margin: 0;
}
.b3-cat-group-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.4px;
  color: var(--gray, #666);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
.b3-cat-group-link:hover {
  color: var(--mint-dark, #0a8f7a);
}
.b3-cat-group-count {
  font-weight: 500;
}
.b3-cat-group-arrow {
  font-size: 14px;
  transition: transform 0.2s;
}
.b3-cat-group-link:hover .b3-cat-group-arrow {
  transform: translateX(3px);
}

/* Mehrere Grids untereinander — sauberer Abstand */
.b3-cat-products-section .b3-product-grid + .b3-cat-group-header {
  margin-top: 56px;
}

/* ====================================================== */
/* B3 PATCH 2026-05-04 (PDP) — Lieferumfang + Specs Row    */
/* ====================================================== */

.b3-info-row {
  margin: 16px 0 24px;
}
.b3-info-row .b3-scope-list,
.b3-info-row .b3-specs-quick {
  margin: 0;
}

/* Paired-Mode: Lieferumfang + Specs nebeneinander */
.b3-info-row--paired {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}
.b3-info-row--paired .b3-scope-list {
  padding: 16px 18px;
}
.b3-info-row--paired .b3-scope-list h2 {
  font-size: 12px;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}
.b3-info-row--paired .b3-scope-list ul {
  font-size: 13px;
  line-height: 1.55;
}
.b3-info-row--paired .b3-specs-quick {
  /* untereinander statt 2-spaltig */
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(60px, auto);
  gap: 8px;
  align-content: start;
}
.b3-info-row--paired .b3-spec-item {
  padding: 10px 12px;
  min-height: 60px;
}
.b3-info-row--paired .b3-spec-item .b3-label {
  font-size: 10px;
  letter-spacing: 0.6px;
}
.b3-info-row--paired .b3-spec-item .b3-value {
  font-size: 13px;
  line-height: 1.25;
}

/* Mobile: untereinander, Specs bleiben 2-Spalten */
@media (max-width: 768px) {
  .b3-info-row--paired {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ====================================================== */
/* B3 PATCH 2026-05-04 (Tab Beschreibung) — h3 Sub-Headings */
/* ====================================================== */
.b3-desc-content {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
}
.b3-desc-content > div,
.b3-desc-content > p {
  margin: 0 0 14px;
}
.b3-desc-content h2,
.b3-desc-content h3,
.b3-desc-content h4 {
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.3px;
  margin: 28px 0 12px;
  line-height: 1.3;
}
.b3-desc-content h2 { font-size: 22px; }
.b3-desc-content h3 { font-size: 18px; }
.b3-desc-content h4 { font-size: 16px; text-transform: uppercase; letter-spacing: 0.6px; }
.b3-desc-content h2:first-child,
.b3-desc-content h3:first-child,
.b3-desc-content h4:first-child {
  margin-top: 0;
}
.b3-desc-content ul,
.b3-desc-content ol {
  padding-left: 22px;
  margin: 0 0 14px;
}
.b3-desc-content ul li,
.b3-desc-content ol li {
  margin-bottom: 6px;
}
.b3-desc-content strong { color: var(--dark); }
.b3-desc-content em { font-style: italic; }
.b3-desc-content a {
  color: var(--mint-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.b3-desc-content a:hover { color: var(--dark); }

/* ====================================================== */
/* B3 PATCH 2026-05-04 (Pages) — Cart/Checkout/Voucher/Legal/Search */
/* ====================================================== */

.b3-page {
  background: var(--ice);
  min-height: 60vh;
  padding: 40px 24px 80px;
}
.b3-page-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.b3-page-inner--narrow { max-width: 800px; }
.b3-page-inner--medium { max-width: 960px; }
.b3-page-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 24px;
  letter-spacing: 0.3px;
}
.b3-page-title--center { text-align: center; }
.b3-page-lead {
  font-size: 15px;
  color: var(--gray);
  margin: 0 0 28px;
  line-height: 1.6;
}

/* Card */
.b3-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 26px 28px;
  margin-bottom: 18px;
}
.b3-card h2 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--dark);
}
.b3-card h2:not(:first-child) { margin-top: 24px; }

/* Form */
.b3-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.b3-form-row--3 { grid-template-columns: 100px 1fr 1fr; }
@media (max-width: 600px) {
  .b3-form-row, .b3-form-row--3 { grid-template-columns: 1fr; }
}
.b3-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.b3-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--gray);
}
.b3-input,
.b3-select,
.b3-textarea {
  padding: 10px 14px;
  font-size: 14px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  background: var(--white);
  color: var(--dark);
  font-family: inherit;
  transition: border-color 0.2s;
}
.b3-input:focus,
.b3-select:focus,
.b3-textarea:focus {
  outline: none;
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(112, 200, 184, 0.15);
}
.b3-textarea { resize: vertical; min-height: 80px; }
.b3-help {
  font-size: 12px;
  color: var(--gray-light);
  margin: 4px 0 0;
}

/* Notice */
.b3-notice {
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 16px;
  border: 1px solid var(--border-light);
}
.b3-notice--info    { background: #f0fdfa; color: #0a665a; border-color: #c8efe7; }
.b3-notice--warn    { background: #fffbeb; color: #92580c; border-color: #fde68a; }
.b3-notice--error   { background: #fef2f2; color: #991b1b; border-color: #fca5a5; }
.b3-notice--success { background: #f0fdf4; color: #14532d; border-color: #bbf7d0; }

/* Empty */
.b3-empty {
  text-align: center;
  padding: 60px 24px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
}
.b3-empty-icon {
  font-size: 48px;
  margin-bottom: 12px;
  opacity: 0.6;
}
.b3-empty-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 8px;
}
.b3-empty-text { color: var(--gray); margin: 0 0 20px; }

/* Stepper */
.b3-stepper {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  gap: 8px;
  flex-wrap: wrap;
}
.b3-stepper-step {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 4px;
}
.b3-stepper-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 12px;
  left: calc(50% + 16px);
  right: calc(-50% + 16px);
  height: 2px;
  background: var(--border-light);
}
.b3-stepper-step--done:not(:last-child)::after,
.b3-stepper-step--active:not(:last-child)::after {
  background: var(--mint);
}
.b3-stepper-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--border-light);
  border: 2px solid var(--border-light);
  z-index: 1;
}
.b3-stepper-step--active .b3-stepper-circle {
  background: var(--mint);
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(112, 200, 184, 0.18);
}
.b3-stepper-step--done .b3-stepper-circle {
  background: var(--mint);
  border-color: var(--mint);
}
.b3-stepper-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray);
  margin-top: 8px;
  text-align: center;
  letter-spacing: 0.3px;
}
.b3-stepper-step--active .b3-stepper-label,
.b3-stepper-step--done .b3-stepper-label {
  color: var(--dark);
  font-weight: 600;
}

/* Cart Layout */
.b3-cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}
@media (max-width: 900px) {
  .b3-cart-layout { grid-template-columns: 1fr; }
}

/* Cart Item */
.b3-cart-item {
  display: grid;
  grid-template-columns: 90px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.b3-cart-item:last-child { border-bottom: 0; }
.b3-cart-item-thumb {
  width: 90px;
  height: 90px;
  background: var(--ice);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.b3-cart-item-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.b3-cart-item-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  margin-bottom: 4px;
  display: block;
}
.b3-cart-item-name:hover { color: var(--mint-dark); }
.b3-cart-item-variant {
  font-size: 12px;
  color: var(--gray-light);
  margin-bottom: 4px;
}
.b3-cart-item-unit { font-size: 13px; color: var(--gray); }
.b3-cart-item-qty { display: flex; align-items: center; gap: 4px; }
.b3-qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-light);
  background: var(--white);
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  color: var(--dark);
}
.b3-qty-btn:hover { border-color: var(--mint); color: var(--mint-dark); }
.b3-qty-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.b3-qty-input {
  width: 44px;
  height: 28px;
  text-align: center;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
}
.b3-cart-item-price-cell {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}
.b3-cart-item-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}
.b3-cart-item-remove {
  background: none;
  border: 0;
  color: var(--gray-light);
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}
.b3-cart-item-remove:hover { color: #991b1b; }
@media (max-width: 600px) {
  .b3-cart-item { grid-template-columns: 80px 1fr; gap: 12px; }
  .b3-cart-item-qty,
  .b3-cart-item-price-cell {
    grid-column: 2 / -1;
    justify-self: start;
    text-align: left;
    align-items: flex-start;
  }
}

/* Cart Summary */
.b3-summary {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 22px 24px;
  position: sticky;
  top: 20px;
}
.b3-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 14px;
}
.b3-summary-lines {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  font-size: 13px;
  color: var(--gray);
}
.b3-summary-lines .num { font-weight: 500; color: var(--dark); }
.b3-summary-free {
  display: inline-block;
  margin-left: 6px;
  color: #16a34a;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.b3-progress-text { font-size: 12px; color: var(--gray); margin: 14px 0 6px; }
.b3-progress-bar {
  background: var(--border-light);
  border-radius: 999px;
  height: 5px;
  overflow: hidden;
}
.b3-progress-bar > div { background: var(--mint); height: 100%; transition: width 0.3s; }

/* Coupon */
.b3-coupon-form { display: flex; gap: 8px; }
.b3-coupon-form .b3-input { flex: 1; }

/* Actions */
.b3-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  gap: 12px;
  flex-wrap: wrap;
}
.b3-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 1px solid var(--border-light);
  background: var(--white);
  border-radius: 6px;
  color: var(--dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.b3-btn-back:hover { border-color: var(--mint); color: var(--mint-dark); }

/* Voucher Amount */
.b3-voucher-amounts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.b3-voucher-amounts label { cursor: pointer; }
.b3-voucher-amounts input[type="radio"] { display: none; }
.b3-voucher-amount-card {
  padding: 14px 8px;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  transition: all 0.2s;
  background: var(--white);
}
.b3-voucher-amounts input:checked + .b3-voucher-amount-card,
.b3-voucher-amount-card.is-active {
  border-color: var(--mint);
  background: rgba(112, 200, 184, 0.08);
}
@media (max-width: 600px) {
  .b3-voucher-amounts { grid-template-columns: repeat(3, 1fr); }
}

/* Voucher Code Display */
.b3-code-display {
  background: linear-gradient(135deg, var(--mint), var(--mint-dark, #0a8f7a));
  color: var(--white);
  padding: 22px 28px;
  border-radius: 10px;
  margin: 20px 0;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 22px;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-align: center;
  word-break: break-all;
}

/* Order Summary Table */
.b3-order-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 4px 0 0;
}
.b3-order-table tr { border-bottom: 1px solid var(--border-light); }
.b3-order-table tr:last-child { border-bottom: 0; }
.b3-order-table td { padding: 10px 0; vertical-align: top; }
.b3-order-table td:last-child { text-align: right; white-space: nowrap; }
.b3-order-table .b3-order-total td {
  border-top: 2px solid var(--dark);
  padding-top: 14px;
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
}

/* Search Hero */
.b3-search-hero {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.b3-search-hero .b3-input { flex: 1; font-size: 16px; padding: 12px 16px; }

/* Content Card */
.b3-content-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 32px 36px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark);
}
.b3-content-card h2 { font-size: 20px; margin: 24px 0 12px; color: var(--dark); }
.b3-content-card h3 { font-size: 17px; margin: 20px 0 10px; color: var(--dark); }
.b3-content-card p { margin: 0 0 14px; }
.b3-content-card ul, .b3-content-card ol { margin: 0 0 14px; padding-left: 22px; }
.b3-content-card a { color: var(--mint-dark); }

/* Status Hero */
.b3-status-hero { text-align: center; padding: 40px 24px 24px; }
.b3-status-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(112, 200, 184, 0.15);
  color: var(--mint-dark, #0a8f7a);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 12px;
}
.b3-status-icon--success { background: rgba(34, 197, 94, 0.15); color: #16a34a; }

/* B3 Checkout — Toggle Rechnungsadresse */
.b3-checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-top: 18px;
  padding: 12px 14px;
  background: var(--ice);
  border-radius: 6px;
  font-size: 14px;
  color: var(--dark);
  user-select: none;
}
.b3-checkbox-row input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: var(--mint);
  cursor: pointer;
}
.b3-checkbox-row:hover { background: rgba(112, 200, 184, 0.08); }

/* ====================================================== */
/* B3 PATCH 2026-05-04 — Mobile Hamburger + Off-Canvas Drawer */
/* ====================================================== */

/* Burger-Button: Default ausgeblendet (nur Mobile) */
.b3-burger {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.b3-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.b3-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.b3-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.b3-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer (Mobile-Off-Canvas) */
.b3-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  visibility: hidden;
}
.b3-drawer[aria-hidden="false"] {
  pointer-events: auto;
  visibility: visible;
}
.b3-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.25s;
}
.b3-drawer[aria-hidden="false"] .b3-drawer-backdrop {
  opacity: 1;
}
.b3-drawer-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(82vw, 340px);
  background: var(--white);
  box-shadow: 2px 0 16px rgba(0,0,0,0.18);
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.b3-drawer[aria-hidden="false"] .b3-drawer-panel {
  transform: translateX(0);
}
.b3-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-light);
}
.b3-drawer-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--dark);
}
.b3-drawer-close {
  background: none;
  border: 0;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--gray);
  padding: 0 4px;
}
.b3-drawer-close:hover { color: var(--dark); }
.b3-drawer-nav {
  flex: 1;
  padding: 14px 20px 30px;
}
.b3-drawer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.b3-drawer-nav > ul > li > a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-bottom: 1px solid var(--border-light);
}
.b3-drawer-nav > ul > li > a:hover,
.b3-drawer-nav > ul > li > a:active {
  color: var(--mint-dark, #0a8f7a);
}
.b3-drawer-divider {
  height: 1px;
  background: var(--border-light);
  margin: 18px 0;
}
.b3-drawer-secondary li a {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  text-decoration: none;
}
.b3-drawer-secondary li a:hover { color: var(--mint-dark, #0a8f7a); }

/* Mobile Breakpoint: Burger zeigen, Drawer aktivieren */
@media (max-width: 900px) {
  .b3-burger { display: flex; }
  .b3-header-inner {
    grid-template-columns: auto 1fr auto auto !important;
  }
}

/* Body lock when drawer open */
body.b3-drawer-open {
  overflow: hidden;
}

/* ====================================================== */
/* B3 PATCH 2026-05-04 — Mobile-Fixes (Logo + Reveal + Cart) */
/* ====================================================== */

/* === 1) LOGO: nicht verzerren auf Mobile === */
.b3-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.b3-logo img {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
@media (max-width: 600px) {
  .b3-logo img { height: 40px; max-width: 150px; }
}

/* === 2) REVEAL-ANIMATION auf Mobile abschalten === */
/* User scrollt schnell, Animation triggert verzögert -> wirkt wie leerer Viewport.
   Auf Mobile ist Animation kaum wahrnehmbar und lohnt sich nicht. */
@media (max-width: 900px) {
  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* === 3) CART MOBILE — Stepper kompakt, Summary nicht sticky, bessere Item-Layout === */

/* Stepper: auf Mobile horizontal scrollbar oder kompakter */
@media (max-width: 600px) {
  .b3-stepper {
    gap: 4px;
    margin-bottom: 24px;
  }
  .b3-stepper-step {
    min-width: 70px;
    flex: 1 1 70px;
  }
  .b3-stepper-label {
    font-size: 10px;
    letter-spacing: 0.2px;
  }
  .b3-stepper-circle {
    width: 18px;
    height: 18px;
  }
  .b3-stepper-step:not(:last-child)::after {
    top: 9px;
    left: calc(50% + 12px);
    right: calc(-50% + 12px);
  }
}

/* Cart-Layout: 1-spaltig auf Mobile, Summary nicht mehr sticky */
@media (max-width: 900px) {
  .b3-cart-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .b3-summary {
    position: static;
  }
}

/* Cart-Item Mobile: cleaner 2-Reihen-Layout */
@media (max-width: 600px) {
  .b3-cart-item {
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto auto;
    gap: 10px 12px;
    padding: 14px 0;
  }
  .b3-cart-item-thumb {
    width: 70px;
    height: 70px;
    grid-row: 1 / span 2;
  }
  .b3-cart-item-name {
    font-size: 14px;
    line-height: 1.3;
  }
  .b3-cart-item-unit {
    font-size: 12px;
  }
  /* Quantity + Price in 2. Reihe nebeneinander */
  .b3-cart-item-qty {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }
  .b3-cart-item-price-cell {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    align-items: flex-end;
    text-align: right;
  }
  .b3-cart-item-price { font-size: 15px; }
  .b3-qty-btn { width: 32px; height: 32px; }
  .b3-qty-input { width: 40px; height: 32px; }
}

/* Cart-Card Mobile: weniger Padding */
@media (max-width: 600px) {
  .b3-card {
    padding: 18px 16px;
  }
  .b3-card h2 {
    font-size: 14px;
    margin-bottom: 12px;
  }
}

/* Summary Mobile: kompakter */
@media (max-width: 600px) {
  .b3-summary {
    padding: 18px 16px;
  }
  .b3-summary-total {
    font-size: 18px;
  }
}

/* Action-Bar Mobile: untereinander, full-width Buttons */
@media (max-width: 600px) {
  .b3-actions {
    flex-direction: column-reverse;
    gap: 10px;
  }
  .b3-actions .b3-btn-mint,
  .b3-actions .b3-btn-back {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    justify-content: center;
  }
}

/* Coupon-Form Mobile: Button unter Input */
@media (max-width: 600px) {
  .b3-coupon-form {
    flex-direction: column;
    gap: 8px;
  }
  .b3-coupon-form .b3-btn-mint {
    width: 100%;
  }
}

/* Touch-Target Mindestgröße — iOS HIG = 44x44 */
@media (max-width: 900px) {
  .b3-icon-btn,
  .b3-btn-mint,
  .b3-btn-dark,
  .b3-btn-back {
    min-height: 44px;
  }
}

/* ====================================================== */
/* B3 PATCH 2026-05-04 — Layout-Polish (Cart-Mobile, Boards 4+3, Reveal) */
/* ====================================================== */

/* === HOMEPAGE BOARDS: 4+3 mit gleicher Card-Breite === */
.b3-product-row-3-centered {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.b3-product-row-3-centered > .b3-product-card {
  flex: 0 0 calc(25% - 18px);
  max-width: calc(25% - 18px);
}
@media (max-width: 1000px) {
  .b3-product-row-3-centered > .b3-product-card {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
  }
  .b3-product-row-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 700px) {
  .b3-product-row-3-centered > .b3-product-card {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
  .b3-product-row-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 460px) {
  .b3-product-row-3-centered > .b3-product-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .b3-product-row-4 {
    grid-template-columns: 1fr;
  }
}

/* === CART MOBILE: 3-Zeilen-Grid (Body / Qty / Price) — kein Overlap mehr === */
@media (max-width: 600px) {
  .b3-cart-item {
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto auto auto;
    gap: 8px 12px;
    padding: 14px 0;
  }
  .b3-cart-item-thumb {
    grid-column: 1;
    grid-row: 1 / span 3;
    align-self: start;
  }
  /* Body (Name/Variant/Unit) Zeile 1 */
  .b3-cart-item > div:not([class]),
  .b3-cart-item > div:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  /* Qty Zeile 2 (linksbündig) */
  .b3-cart-item-qty {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    margin-top: 4px;
  }
  /* Price-Cell Zeile 3 (rechtsbündig) */
  .b3-cart-item-price-cell {
    grid-column: 2;
    grid-row: 3;
    justify-self: end;
    text-align: right;
    align-items: flex-end;
    flex-direction: row;
    gap: 12px;
    align-self: end;
  }
  .b3-cart-item-price { font-size: 16px; font-weight: 700; }
}

/* === REVEAL-ANIMATION: auf Mobile sanfter (nur translate, kein opacity-fade) === */
/* Vorher war es komplett aus. Jetzt: Content sofort sichtbar, kleine Bewegung beim Eintreten. */
@media (max-width: 900px) {
  .reveal {
    opacity: 1 !important;
    transform: translateY(15px);
    transition: transform 0.4s ease-out;
  }
  .reveal.visible { transform: translateY(0); }

  .reveal-stagger > * {
    opacity: 1 !important;
    transform: translateY(12px);
    transition: transform 0.35s ease-out;
  }
  .reveal-stagger.visible > * { transform: translateY(0); }
  /* Kürzere Stagger-Delays auf Mobile */
  .reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.02s; }
  .reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.06s; }
  .reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.10s; }
  .reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.14s; }
  .reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.18s; }
  .reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.22s; }
  .reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.26s; }
}


/* ====================================================== */
/* B3 PATCH 2026-05-04 — Reveal-Animation NUR auf Mobile aus */
/* ====================================================== */
@media (max-width: 900px) {
  .reveal,
  .reveal-stagger,
  .reveal-stagger > *,
  .reveal.visible,
  .reveal-stagger.visible > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* ====================================================== */
/* B3 PATCH 2026-05-05 — Variant-Selector im PDP          */
/* ====================================================== */
.b3-variant-selector {
  margin: 18px 0 22px;
  padding: 16px 18px;
  background: var(--ice);
  border-radius: 8px;
  border: 1px solid var(--border-light);
}
.b3-variant-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gray);
  margin: 0 0 12px;
}
.b3-variant-cards {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}
.b3-variant-cards::-webkit-scrollbar { height: 6px; }
.b3-variant-cards::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 3px;
}
.b3-variant-card {
  flex: 0 0 auto;
  width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 6px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  text-decoration: none;
  color: var(--dark);
  transition: all 0.2s;
}
.b3-variant-card:hover,
.b3-variant-card:focus {
  border-color: var(--mint);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(112, 200, 184, 0.15);
}
.b3-variant-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 4px;
  background: var(--ice);
}
.b3-variant-placeholder {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gray-light);
  background: var(--ice);
  border-radius: 4px;
}
.b3-variant-name {
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  line-height: 1.25;
  color: var(--dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 600px) {
  .b3-variant-card { width: 78px; }
  .b3-variant-card img,
  .b3-variant-placeholder { width: 60px; height: 60px; }
}

/* ====================================================== */
/* B3 PATCH 2026-05-05 — Variant-Pills (Groesse + Farbe)  */
/* ====================================================== */
.b3-variant-group {
  margin: 14px 0;
}
.b3-variant-group + .b3-variant-group {
  margin-top: 12px;
}
.b3-variant-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 8px;
  text-transform: none;
  letter-spacing: 0;
}
.b3-variant-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.b3-variant-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.15s;
  cursor: pointer;
  user-select: none;
}
.b3-variant-pill:hover {
  border-color: var(--mint);
  color: var(--mint-dark);
}
.b3-variant-pill.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
  cursor: default;
}
.b3-variant-pill.active:hover {
  background: var(--dark);
  color: var(--white);
}
.b3-variant-pill.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}
.b3-variant-pill.disabled:hover {
  border-color: var(--border-light);
  color: var(--dark);
}

/* Alte Card-Selector-Klassen abschalten falls noch sichtbar */
.b3-variant-selector,
.b3-variant-cards,
.b3-variant-card,
.b3-variant-name,
.b3-variant-placeholder,
.b3-variant-title { display: none !important; }

