/** Shopify CDN: Minification failed

Line 79:0 All "@import" rules must come first

**/
/* ==========================================================================
   BodyReset Custom Styles V3
   assets/custom-bodyreset.css
   Exakt nach CLAUDE_CODE_MASTERPROMPT_V3 Design-System
   ========================================================================== */

/* ==========================================================================
   1. CUSTOM PROPERTIES — V3 Design Tokens
   ========================================================================== */

:root {
  /* Primär — Vertrauen + Seriosität */
  --color-primary: #475D82;
  --color-primary-light: #5A7199;
  --color-primary-dark: #344563;

  /* Akzent — CTAs, Aktionen */
  --color-accent: #C67E43;
  --color-accent-hover: #B06D35;
  --color-accent-light: #D4945E;

  /* Wellness-Grün — Gesundheit, Natur */
  --color-wellness: #8BA888;
  --color-wellness-light: #A8C4A5;
  --color-wellness-dark: #6E8E6B;

  /* Hintergründe — Warm, nicht kalt-weiss */
  --color-bg-primary: #FDFBF7;
  --color-bg-secondary: #F5F1EB;
  --color-bg-tertiary: #EDE8E0;
  --color-bg-dark: #2B3E5C;

  /* Text */
  --color-text-primary: #3D3D3D;
  --color-text-secondary: #6B6B6B;
  --color-text-light: #6E6E6E; /* von #9A9A9A abgedunkelt -> WCAG AA (>=4.5:1) fuer Fliesstext */
  --color-text-inverse: #FDFBF7;

  /* Funktional */
  --color-success: #6E8E6B;
  --color-sale: #C44D3F;
  --color-border: #E5E0D8;
  --color-border-light: #F0ECE6;

  /* Schatten */
  --shadow-soft: 0 2px 12px rgba(59, 59, 59, 0.06);
  --shadow-medium: 0 4px 20px rgba(59, 59, 59, 0.10);
  --shadow-lift: 0 8px 30px rgba(59, 59, 59, 0.12);

  /* Radien */
  --radius-small: 6px;
  --radius-medium: 10px;
  --radius-large: 16px;
  --radius-round: 50%;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typografie */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: -apple-system, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-accent: var(--font-heading);

  /* Scroll Progress */
  --scroll-progress: 0%;
}

/* ==========================================================================
   2. GOOGLE FONTS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

/* ==========================================================================
   3. V3 TYPOGRAPHY SYSTEM
   ========================================================================== */

.custom-section h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 2.625rem); /* 42px max */
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

.custom-section h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2rem); /* 32px max */
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
  margin-bottom: 0.5em;
}

.custom-section h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.125rem, 3vw, 1.5rem); /* 24px max */
  line-height: 1.25;
  color: var(--color-text-primary);
}

/* Subtitle */
.br-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.125rem; /* 18px */
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* Body */
.custom-section p,
.custom-section li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem; /* 16px */
  line-height: 1.7;
  color: var(--color-text-primary);
}

/* Body Small */
.br-text-small {
  font-size: 0.875rem; /* 14px */
  line-height: 1.6;
}

/* Caption */
.br-caption {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem; /* 12px */
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
}

/* ==========================================================================
   4. V3 BUTTON SYSTEM
   ========================================================================== */

/* Primary CTA */
.br-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem; /* 16px */
  font-weight: 600;
  text-decoration: none;
  text-transform: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.br-btn-primary:hover {
  background: var(--color-accent-hover);
  transform: scale(0.98);
  box-shadow: var(--shadow-medium);
  color: #fff;
}

.br-btn-primary:active {
  transform: scale(0.96);
}

.br-btn-primary:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Secondary */
.br-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: none;
  border: 1.5px solid var(--color-primary);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.br-btn-secondary:hover {
  background: var(--color-primary);
  color: #fff;
}

.br-btn-secondary:active {
  transform: scale(0.98);
}

.br-btn-secondary:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Ghost */
.br-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.br-btn-ghost:hover {
  color: var(--color-accent);
}

.br-btn-ghost:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ==========================================================================
   5. V3 MICRO-INTERACTIONS
   ========================================================================== */

/* Card hover */
.br-card-hover {
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.br-card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

/* Image zoom */
.br-img-zoom {
  overflow: hidden;
  border-radius: var(--radius-medium);
}

.br-img-zoom img {
  transition: transform var(--transition-smooth);
}

.br-img-zoom:hover img {
  transform: scale(1.03);
}

/* Link hover */
.custom-section a:not([class]) {
  text-underline-offset: 4px;
  transition: color var(--transition-fast);
}

.custom-section a:not([class]):hover {
  color: var(--color-accent);
}

/* Scroll-Reveal: translateY(20px) → 0, opacity 0 → 1, stagger 100ms */
.br-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.br-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Image-Reveal: clip-path wipe */
.br-reveal {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.8s ease-out;
}

.br-reveal.is-visible {
  clip-path: inset(0 0 0 0);
}

/* Custom cursor on product images */
.custom-featured-picks__image a,
.custom-categories__card a {
  cursor: crosshair;
}

/* ==========================================================================
   6. SCROLL PROGRESS BAR
   ========================================================================== */

.br-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--scroll-progress);
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ==========================================================================
   7. TRUST TICKER — V3 Spec 1.4
   Height: 44px, bg: --color-primary, text white 14px
   Animation: translateX(0) → translateX(-50%), 25s linear infinite
   ========================================================================== */

.custom-trust-ticker {
  background: var(--color-primary);
  height: 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}

.custom-trust-ticker__track {
  display: flex;
  animation: ticker-scroll 25s linear infinite;
  width: max-content;
}

.custom-trust-ticker__content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.custom-trust-ticker__item {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.875rem; /* 14px */
  font-weight: 500;
  padding: 0 4px;
}

.custom-trust-ticker__dot {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.25rem;
  padding: 0 12px;
  user-select: none;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pause on hover for accessibility */
.custom-trust-ticker:hover .custom-trust-ticker__track {
  animation-play-state: paused;
}

/* ==========================================================================
   8. "SO FUNKTIONIERT BODYRESET" — V3 Spec 1.5
   Icons: 64px round, bg: --color-wellness-light
   Connected by horizontal line with dots
   Stagger: 200ms
   bg: --color-bg-primary
   ========================================================================== */

.custom-how-it-works {
  padding: 80px 0;
  background: var(--color-bg-primary);
}

.custom-how-it-works__inner {
  max-width: var(--normal-page-width, 1200px);
  margin: 0 auto;
  padding: 0 24px;
}

.custom-how-it-works__header {
  text-align: center;
  margin-bottom: 56px;
}

.custom-how-it-works__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 480px;
  margin: 0 auto;
}

.custom-how-it-works__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}

.custom-how-it-works__step {
  text-align: center;
  flex: 1;
  max-width: 300px;
  padding: 0 16px;
}

/* 64px round icon with --color-wellness-light bg */
.custom-how-it-works__icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: var(--radius-round);
  background: var(--color-wellness-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.custom-how-it-works__step:hover .custom-how-it-works__icon-wrap {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.custom-how-it-works__icon {
  font-size: 1.75rem;
  line-height: 1;
}

.custom-how-it-works__title {
  margin-bottom: 8px;
}

.custom-how-it-works__text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* Connector line with dot between steps */
.custom-how-it-works__connector {
  display: flex;
  align-items: center;
  padding-top: 32px; /* vertically center with icon */
  flex-shrink: 0;
  width: 48px;
}

.custom-how-it-works__connector-line {
  flex: 1;
  height: 1.5px;
  background: var(--color-border);
}

.custom-how-it-works__connector-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-round);
  background: var(--color-accent);
  flex-shrink: 0;
}

/* CTA area */
.custom-how-it-works__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ==========================================================================
   9. STARTER-SET PRICING TABLE — V3 Spec 1.6
   bg: --color-bg-secondary (#F5F1EB)
   Featured: scale(1.02), 3px --color-accent top border, --shadow-lift
   Ribbon: 45° rotated, --color-accent bg
   ========================================================================== */

.custom-starter-sets {
  padding: 80px 0;
  background: var(--color-bg-secondary);
}

.custom-starter-sets__header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 24px;
}

.custom-starter-sets__header p {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.custom-starter-sets__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--normal-page-width, 1200px);
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}

.custom-starter-sets__card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-large);
  border: 1px solid var(--color-border-light);
  overflow: visible;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}

.custom-starter-sets__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

/* Featured: scale(1.02), gold top border, --shadow-lift */
.custom-starter-sets__card--featured {
  transform: scale(1.02);
  border-top: 3px solid var(--color-accent);
  box-shadow: var(--shadow-lift);
  z-index: 2;
}

.custom-starter-sets__card--featured:hover {
  transform: scale(1.02) translateY(-4px);
}

/* Ribbon badge — 45° rotated */
.custom-starter-sets__ribbon {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 100px;
  height: 100px;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}

.custom-starter-sets__ribbon span {
  display: block;
  position: absolute;
  top: 18px;
  right: -28px;
  width: 140px;
  padding: 6px 0;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transform: rotate(45deg);
}

/* Top bar (hidden by default, gold on featured) */
.custom-starter-sets__top-bar {
  display: none;
}

/* Product image (1:1 square) */
.custom-starter-sets__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-large) var(--radius-large) 0 0;
}

.custom-starter-sets__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.custom-starter-sets__card:hover .custom-starter-sets__img {
  transform: scale(1.03);
}

.custom-starter-sets__content {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.custom-starter-sets__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.custom-starter-sets__ideal {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-style: italic;
  margin-bottom: 16px;
  display: block;
}

.custom-starter-sets__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

.custom-starter-sets__price-current {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
}

.custom-starter-sets__price-compare {
  font-size: 0.875rem;
  color: var(--color-text-light);
  text-decoration: line-through;
}

.custom-starter-sets__price-note {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  display: block;
}

.custom-starter-sets__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex: 1;
  text-align: left;
}

.custom-starter-sets__features li {
  font-size: 0.875rem;
  color: var(--color-text-primary);
  padding: 7px 0;
  padding-left: 24px;
  position: relative;
  border-bottom: 1px solid var(--color-border-light);
}

.custom-starter-sets__features li:last-child {
  border-bottom: none;
}

.custom-starter-sets__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.custom-starter-sets__cta {
  margin-top: auto;
}

.custom-starter-sets__cta .br-btn-primary {
  width: 100%;
  text-align: center;
}

/* ==========================================================================
   10. SHOP BY GOAL — V3 Spec 1.7
   2x2 grid tiles
   bg tiles: --color-bg-primary, border: --color-border
   hover: border --color-accent, translateY(-4px)
   bg section: --color-bg-primary
   ========================================================================== */

.custom-shop-by-goal {
  padding: 80px 0;
  background: var(--color-bg-primary);
}

.custom-shop-by-goal__inner {
  max-width: var(--normal-page-width, 1200px);
  margin: 0 auto;
  padding: 0 24px;
}

.custom-shop-by-goal__header {
  text-align: center;
  margin-bottom: 48px;
}

.custom-shop-by-goal__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.custom-shop-by-goal__tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 28px;
  background: var(--color-bg-primary);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-large);
  text-decoration: none;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  position: relative;
}

.custom-shop-by-goal__tile:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.custom-shop-by-goal__icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 16px;
}

.custom-shop-by-goal__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 8px;
  line-height: 1.25;
}

.custom-shop-by-goal__text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 12px;
}

.custom-shop-by-goal__arrow {
  font-size: 1.125rem;
  color: var(--color-accent);
  margin-top: auto;
  transition: transform var(--transition-fast);
}

.custom-shop-by-goal__tile:hover .custom-shop-by-goal__arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   11. TESTIMONIALS — WALL OF LOVE (V3 Spec 1.8)
   bg: --color-bg-secondary
   Masonry, quote mark --color-accent 30% opacity
   ========================================================================== */

.custom-testimonials {
  padding: 80px 0;
  background: var(--color-bg-secondary);
}

.custom-testimonials__header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 24px;
}

.custom-testimonials__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.custom-testimonials__subheading {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto 16px;
}

.custom-testimonials__stars-header {
  font-size: 1.75rem;
  color: var(--color-accent);
  letter-spacing: 4px;
}

.custom-testimonials__masonry {
  columns: 3;
  column-gap: 20px;
  max-width: var(--normal-page-width, 1200px);
  margin: 0 auto;
  padding: 0 24px;
}

.custom-testimonials__card {
  break-inside: avoid;
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--radius-large);
  overflow: hidden;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  border: 1px solid var(--color-border-light);
}

.custom-testimonials__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.custom-testimonials__card-inner {
  padding: 28px 24px;
  position: relative;
}

/* Featured card (Jacky) */
.custom-testimonials__card--featured {
  border: 2px solid var(--color-accent);
}

.custom-testimonials__card--featured .custom-testimonials__card-inner {
  padding: 32px 28px;
}

.custom-testimonials__card--featured .custom-testimonials__text {
  font-size: 1.0625rem;
  line-height: 1.7;
}

.custom-testimonials__featured-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: rgba(198, 126, 67, 0.08);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent-hover);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.custom-testimonials__featured-icon {
  font-size: 0.8rem;
}

/* Rating card */
.custom-testimonials__card--rating .custom-testimonials__card-inner {
  padding-top: 20px;
}

.custom-testimonials__rating-stars {
  font-size: 1.5rem;
  color: var(--color-accent);
  letter-spacing: 3px;
  margin-bottom: 4px;
}

.custom-testimonials__rating-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-success);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Quote mark — --color-accent, 30% opacity */
.custom-testimonials__quote-mark {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.3;
  position: absolute;
  top: 12px;
  left: 20px;
}

.custom-testimonials__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-primary);
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.custom-testimonials__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.custom-testimonials__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-round);
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.custom-testimonials__card--featured .custom-testimonials__avatar {
  background: var(--color-accent);
}

.custom-testimonials__avatar--image {
  overflow: hidden;
  padding: 0;
}

.custom-testimonials__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-round);
}

.custom-testimonials__author-info {
  display: flex;
  flex-direction: column;
}

.custom-testimonials__author-name {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: 0.875rem;
}

.custom-testimonials__author-detail {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

.custom-testimonials__author-stars {
  color: var(--color-accent);
  font-size: 0.75rem;
  letter-spacing: 2px;
}

/* ==========================================================================
   12. FEATURED PICKS — V3 Spec 1.9
   bg: --color-bg-primary
   ========================================================================== */

.custom-featured-picks {
  padding: 80px 0;
  background: var(--color-bg-primary);
}

.custom-featured-picks__header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 24px;
}

.custom-featured-picks__badge-text {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.custom-featured-picks__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--normal-page-width, 1200px);
  margin: 0 auto;
  padding: 0 24px;
}

.custom-featured-picks__card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-large);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.custom-featured-picks__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.custom-featured-picks__image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.custom-featured-picks__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.custom-featured-picks__card:hover .custom-featured-picks__image img {
  transform: scale(1.03);
}

.custom-featured-picks__recommended {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.custom-featured-picks__quick-add {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-round);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition-smooth);
  opacity: 0;
  transform: translateY(8px);
  z-index: 2;
}

.custom-featured-picks__card:hover .custom-featured-picks__quick-add {
  opacity: 1;
  transform: translateY(0);
}

.custom-featured-picks__quick-add:hover {
  background: var(--color-accent);
  transform: scale(1.1);
}

.custom-featured-picks__quick-add:active {
  transform: scale(0.95);
}

.custom-featured-picks__info {
  padding: 16px;
}

.custom-featured-picks__title {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.custom-featured-picks__title a {
  color: inherit;
  text-decoration: none;
}

.custom-featured-picks__title a:hover {
  color: var(--color-primary);
}

.custom-featured-picks__price {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.9375rem;
}

/* ==========================================================================
   13. NEWSLETTER — V3 Spec 1.10
   Gradient: --color-bg-primary → --color-bg-secondary
   ========================================================================== */

.custom-newsletter {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
}

.custom-newsletter__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

.custom-newsletter__mockup {
  display: flex;
  justify-content: center;
}

.custom-newsletter__pdf {
  width: 220px;
  background: #fff;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-lift), 8px 8px 0 rgba(198, 126, 67, 0.1);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--color-border-light);
  transition: transform var(--transition-smooth);
}

.custom-newsletter__pdf:hover {
  transform: translateY(-4px) rotate(-1deg);
}

.custom-newsletter__pdf-header {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-accent);
}

.custom-newsletter__pdf-logo {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 700;
}

.custom-newsletter__pdf-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}

.custom-newsletter__pdf-subtitle {
  font-size: 0.8125rem;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 16px;
}

.custom-newsletter__pdf-decoration {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 1.5rem;
  opacity: 0.6;
}

.custom-newsletter__content {
  max-width: 500px;
}

.custom-newsletter__subtitle {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

.custom-newsletter__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.custom-newsletter__benefits li {
  font-size: 0.9375rem;
  color: var(--color-text-primary);
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}

.custom-newsletter__benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.custom-newsletter__form-row {
  display: flex;
  gap: 12px;
}

.custom-newsletter__input {
  flex: 1;
  padding: 16px 18px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  color: var(--color-text-primary);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.custom-newsletter__input::placeholder {
  color: var(--color-text-light);
}

.custom-newsletter__input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(198, 126, 67, 0.1);
}

.custom-newsletter__submit {
  white-space: nowrap;
}

.custom-newsletter__privacy {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-top: 10px;
}

/* ==========================================================================
   14. CATEGORY NAVIGATION
   bg: --color-bg-primary
   ========================================================================== */

.custom-categories {
  padding: 80px 0;
  background: var(--color-bg-primary);
}

.custom-categories__header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 24px;
}

.custom-categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--normal-page-width, 1200px);
  margin: 0 auto;
  padding: 0 24px;
}

.custom-categories__card {
  position: relative;
  border-radius: var(--radius-large);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.custom-categories__card a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.custom-categories__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.custom-categories__card:hover img {
  transform: scale(1.03);
}

.custom-categories__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.08) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background var(--transition-smooth);
}

.custom-categories__card:hover .custom-categories__overlay {
  background: linear-gradient(to top, rgba(52, 69, 99, 0.7) 0%, rgba(52, 69, 99, 0.12) 60%, transparent 100%);
}

.custom-categories__label {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   15. PRODUCT PAGE ENHANCEMENTS
   ========================================================================== */

.br-product-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border-light);
}

.br-product-trust__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
}

.br-product-trust__check {
  color: var(--color-success);
  font-weight: 700;
}

/* Sticky ATC Mobile */
.br-sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 12px 16px;
  box-shadow: 0 -2px 12px rgba(59, 59, 59, 0.1);
  z-index: 99;
  display: none;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--color-border-light);
}

.br-sticky-atc.is-visible {
  display: flex;
}

.br-sticky-atc__info {
  flex: 1;
  min-width: 0;
}

.br-sticky-atc__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.br-sticky-atc__price {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-primary);
}

.br-sticky-atc__btn {
  padding: 12px 24px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.br-sticky-atc__btn:hover {
  background: var(--color-accent-hover);
}

.br-sticky-atc__btn:active {
  transform: scale(0.98);
}

/* Product tabs */
.br-product-tabs {
  border-bottom: 2px solid var(--color-border-light);
  display: flex;
  gap: 0;
  margin-bottom: 24px;
}

.br-product-tabs__tab {
  padding: 12px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-light);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition-fast);
}

.br-product-tabs__tab:hover {
  color: var(--color-text-primary);
}

.br-product-tabs__tab.is-active {
  color: var(--color-text-primary);
  border-bottom-color: var(--color-accent);
}

.br-product-tabs__content {
  display: none;
}

.br-product-tabs__content.is-active {
  display: block;
}

/* ==========================================================================
   16. CART DRAWER + FREE SHIPPING BAR
   ========================================================================== */

.br-free-shipping {
  padding: 14px 20px;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-medium);
  margin-bottom: 16px;
}

.br-free-shipping__text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 8px;
  text-align: center;
}

.br-free-shipping__text--success {
  color: var(--color-success);
  font-weight: 600;
}

.br-free-shipping__bar {
  height: 6px;
  background: var(--color-border);
  border-radius: 3px;
  overflow: hidden;
}

.br-free-shipping__progress {
  height: 100%;
  background: var(--color-accent);
  border-radius: 3px;
  transition: width 0.6s ease;
  max-width: 100%;
}

.br-free-shipping__progress--complete {
  background: var(--color-wellness);
}

/* ==========================================================================
   17. WHATSAPP — V3 Spec 1.12
   56px round, --color-success bg, expand on hover
   Appear after 5s AND 30% scroll
   ========================================================================== */

.br-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--color-success);
  color: #fff;
  width: 56px;
  height: 56px;
  padding: 0;
  justify-content: center;
  border-radius: var(--radius-round);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-medium);
  transition: all var(--transition-slow);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  overflow: hidden;
  white-space: nowrap;
}

.br-whatsapp.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.br-whatsapp:hover {
  width: auto;
  border-radius: 28px;
  padding: 0 20px;
  gap: 10px;
  transform: translateY(-2px) scale(1);
  box-shadow: var(--shadow-lift);
  color: #fff;
}

.br-whatsapp__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.br-whatsapp__text {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.br-whatsapp:hover .br-whatsapp__text {
  opacity: 1;
  max-width: 200px;
}

/* ==========================================================================
   18. BACK TO TOP
   ========================================================================== */

.br-back-to-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-round);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-smooth);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  z-index: 99;
}

.br-back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.br-back-to-top:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

.br-back-to-top:active {
  transform: scale(0.95);
}

/* ==========================================================================
   19. COLLECTION PAGES
   ========================================================================== */

.br-badge-sale {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-sale);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.br-badge-new {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.main-collection .product-card,
.collection-product-card {
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  border-radius: var(--radius-medium);
}

.main-collection .product-card:hover,
.collection-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.main-collection .product-card img,
.collection-product-card img {
  transition: transform var(--transition-smooth);
}

.main-collection .product-card:hover img,
.collection-product-card:hover img {
  transform: scale(1.03);
}

/* ==========================================================================
   20. ABOUT PAGE — V3 Spec Seite 4
   ========================================================================== */

/* --- 20.1 About Hero (Spec 4.1) --- */
.custom-about-hero {
  position: relative;
  height: 50vh;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-bg-dark);
}

.custom-about-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.custom-about-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-about-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.30);
  z-index: 1;
}

.custom-about-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 700px;
}

.custom-about-hero__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.custom-about-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.custom-about-hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
  max-width: 550px;
  margin: 0 auto;
}

/* --- 20.2 About Story (Spec 4.2) --- */
.custom-about-story {
  padding: 80px 0;
  background: var(--color-bg-primary);
}

.custom-about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--normal-page-width, 1200px);
  margin: 0 auto;
  padding: 0 24px;
}

.custom-about-story__image {
  border-radius: var(--radius-large);
  overflow: hidden;
}

.custom-about-story__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-large);
}

.custom-about-story__image-placeholder {
  aspect-ratio: 4 / 5;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-large);
  overflow: hidden;
}

.custom-about-story__placeholder-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  fill: var(--color-bg-secondary);
  background: var(--color-bg-secondary);
}

.custom-about-story__placeholder-svg svg {
  width: 100%;
  height: 400px;
  fill: #c8c8c8;
}

.custom-about-story__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.custom-about-story__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.custom-about-story__text {
  color: var(--color-text-primary);
  font-size: 1rem;
  line-height: 1.7;
}

.custom-about-story__text p {
  margin-bottom: 16px;
}

.custom-about-story__text p:last-child {
  margin-bottom: 0;
}

/* --- 20.3 About Numbers (Spec 4.3) --- */
.custom-about-numbers {
  padding: 64px 0;
  background: var(--color-primary);
}

.custom-about-numbers__inner {
  max-width: var(--normal-page-width, 1200px);
  margin: 0 auto;
  padding: 0 24px;
}

.custom-about-numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.custom-about-numbers__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.custom-about-numbers__value {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.custom-about-numbers__label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* --- 20.4 About Method (Spec 4.4) --- */
.custom-about-method {
  padding: 80px 0;
  background: var(--color-bg-secondary);
}

.custom-about-method__inner {
  max-width: var(--normal-page-width, 1200px);
  margin: 0 auto;
  padding: 0 24px;
}

.custom-about-method__header {
  text-align: center;
  margin-bottom: 48px;
}

.custom-about-method__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.custom-about-method__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.custom-about-method__card {
  background: #fff;
  border-radius: var(--radius-large);
  padding: 32px 28px;
  border: 1px solid var(--color-border-light);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.custom-about-method__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.custom-about-method__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-round);
  background: var(--color-wellness-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.custom-about-method__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.custom-about-method__tagline {
  font-size: 0.9375rem;
  color: var(--color-accent);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.5;
}

.custom-about-method__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.custom-about-method__text p {
  margin: 0;
}

/* --- 20.5 About Timeline (Spec 4.5) --- */
.custom-about-timeline {
  padding: 80px 0;
  background: var(--color-bg-primary);
}

.custom-about-timeline__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.custom-about-timeline__header {
  text-align: center;
  margin-bottom: 56px;
}

.custom-about-timeline__line {
  position: relative;
  padding: 0;
}

/* Vertical center line */
.custom-about-timeline__line::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--color-border);
  transform: translateX(-50%);
}

.custom-about-timeline__entry {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  width: 50%;
}

.custom-about-timeline__entry:last-child {
  margin-bottom: 0;
}

/* Left entries: right-aligned text */
.custom-about-timeline__entry--left {
  justify-content: flex-end;
  padding-right: 36px;
  margin-left: 0;
  text-align: right;
}

/* Right entries: left-aligned text */
.custom-about-timeline__entry--right {
  justify-content: flex-start;
  padding-left: 36px;
  margin-left: 50%;
}

/* Dot on center line */
.custom-about-timeline__dot {
  position: absolute;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: var(--radius-round);
  background: var(--color-accent);
  border: 3px solid var(--color-bg-primary);
  box-shadow: 0 0 0 2px var(--color-accent);
  z-index: 2;
}

.custom-about-timeline__entry--left .custom-about-timeline__dot {
  right: -7px;
}

.custom-about-timeline__entry--right .custom-about-timeline__dot {
  left: -7px;
}

.custom-about-timeline__card {
  max-width: 320px;
}

.custom-about-timeline__year {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.custom-about-timeline__text {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* --- 20.6 About Quote (Spec 4.7) --- */
.custom-about-quote {
  padding: 80px 0;
  background: var(--color-bg-primary);
}

.custom-about-quote__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.custom-about-quote__blockquote {
  margin: 0 0 32px 0;
  position: relative;
}

.custom-about-quote__mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.3;
  display: block;
  margin-bottom: -16px;
}

.custom-about-quote__text {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.4;
  max-width: 650px;
  margin: 0 auto 16px;
}

.custom-about-quote__author {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  font-style: normal;
}

.custom-about-quote__cta {
  margin-top: 8px;
}

/* ==========================================================================
   21. FOOTER V2 — Dark bg: --color-bg-dark (#2B3E5C)
   ========================================================================== */

.custom-footer-v2 {
  background: var(--color-bg-dark);
}

.custom-footer-v2__quote {
  padding: 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-footer-v2__quote-inner {
  max-width: var(--normal-page-width, 1200px);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.custom-footer-v2__blockquote {
  margin: 0;
  position: relative;
}

.custom-footer-v2__quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.3;
  display: block;
  margin-bottom: -16px;
}

.custom-footer-v2__blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  color: var(--color-text-inverse);
  font-weight: 700;
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto 16px;
}

.custom-footer-v2__blockquote cite {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(253, 251, 247, 0.6);
  font-style: normal;
}

.custom-footer-v2__trust {
  padding: 24px 0;
}

.custom-footer-v2__trust-inner {
  max-width: var(--normal-page-width, 1200px);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.custom-footer-v2__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: rgba(253, 251, 247, 0.7);
}

/* Legacy compat */
.br-footer-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 24px;
}

.br-footer-trust__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
}

/* ==========================================================================
   21. MOBILE RESPONSIVE
   ========================================================================== */

@media screen and (max-width: 989px) {
  /* How it works: stack */
  .custom-how-it-works__steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .custom-how-it-works__connector {
    width: auto;
    height: 32px;
    flex-direction: column;
    padding-top: 0;
  }

  .custom-how-it-works__connector-line {
    width: 1.5px;
    height: 100%;
    flex: 1;
  }

  .custom-how-it-works__step {
    max-width: 400px;
  }

  /* Starter Sets: 2 cols */
  .custom-starter-sets__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .custom-starter-sets__card--featured {
    transform: none;
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .custom-starter-sets__card--featured:hover {
    transform: translateY(-4px);
  }

  /* Shop by goal: keep 2x2 */

  /* Testimonials: 2 cols */
  .custom-testimonials__masonry {
    columns: 2;
  }

  /* Featured picks: 2 cols */
  .custom-featured-picks__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Categories: 2 cols */
  .custom-categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Newsletter: stack */
  .custom-newsletter__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .custom-newsletter__content {
    max-width: none;
  }

  .custom-newsletter__benefits {
    text-align: left;
    max-width: 360px;
    margin: 0 auto 24px;
  }

  .custom-newsletter__form-row {
    max-width: 480px;
    margin: 0 auto;
  }

  /* About: Story stack */
  .custom-about-story__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .custom-about-story__image {
    max-width: 500px;
    margin: 0 auto;
  }

  /* About: Numbers 2x2 */
  .custom-about-numbers__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* About: Method stack */
  .custom-about-method__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  /* About: Timeline — left-aligned */
  .custom-about-timeline__line::before {
    left: 7px;
  }

  .custom-about-timeline__entry {
    width: 100%;
    margin-left: 0;
  }

  .custom-about-timeline__entry--left,
  .custom-about-timeline__entry--right {
    justify-content: flex-start;
    padding-left: 36px;
    padding-right: 0;
    text-align: left;
  }

  .custom-about-timeline__entry--left .custom-about-timeline__dot,
  .custom-about-timeline__entry--right .custom-about-timeline__dot {
    left: 0;
    right: auto;
  }
}

@media screen and (max-width: 749px) {
  /* Trust ticker */
  .custom-trust-ticker__item {
    font-size: 0.8125rem;
  }

  /* How it works */
  .custom-how-it-works__icon-wrap {
    width: 56px;
    height: 56px;
  }

  .custom-how-it-works__icon {
    font-size: 1.5rem;
  }

  /* Starter sets: 1 col */
  .custom-starter-sets__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
  }

  .custom-starter-sets__card--featured {
    max-width: none;
  }

  /* Shop by goal: 1 col */
  .custom-shop-by-goal__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Testimonials: 1 col */
  .custom-testimonials__masonry {
    columns: 1;
    padding: 0 16px;
  }

  /* Featured picks: 2 cols tight */
  .custom-featured-picks__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 16px;
  }

  .custom-featured-picks__quick-add {
    opacity: 1;
    transform: translateY(0);
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  /* Categories: 1 col */
  .custom-categories__grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 16px;
  }

  .custom-categories__card {
    aspect-ratio: 16/7;
  }

  /* Newsletter: form stacks */
  .custom-newsletter__form-row {
    flex-direction: column;
  }

  .custom-newsletter__inner {
    padding: 0 16px;
  }

  .custom-newsletter__pdf {
    width: 180px;
  }

  /* WhatsApp */
  .br-whatsapp {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }

  .br-whatsapp__icon {
    width: 22px;
    height: 22px;
  }

  /* Back to top */
  .br-back-to-top {
    bottom: 16px;
    left: 16px;
    width: 40px;
    height: 40px;
  }

  /* About: Hero smaller */
  .custom-about-hero {
    height: 40vh;
    min-height: 280px;
  }

  /* About: Numbers 2x2 tighter */
  .custom-about-numbers__grid {
    gap: 16px;
  }

  .custom-about-numbers__value {
    font-size: 2rem;
  }

  /* About: Method */
  .custom-about-method__card {
    padding: 24px 20px;
  }

  /* About: Timeline — left-aligned */
  .custom-about-timeline__line::before {
    left: 7px;
  }

  .custom-about-timeline__entry {
    width: 100%;
    margin-left: 0;
  }

  .custom-about-timeline__entry--left,
  .custom-about-timeline__entry--right {
    justify-content: flex-start;
    padding-left: 36px;
    padding-right: 0;
    text-align: left;
  }

  .custom-about-timeline__entry--left .custom-about-timeline__dot,
  .custom-about-timeline__entry--right .custom-about-timeline__dot {
    left: 0;
    right: auto;
  }

  /* About: padding reduction */
  .custom-about-story,
  .custom-about-numbers,
  .custom-about-method,
  .custom-about-timeline,
  .custom-about-quote {
    padding: 48px 0;
  }

  /* Footer */
  .custom-footer-v2__quote {
    padding: 32px 0;
  }

  .custom-footer-v2__trust-inner {
    gap: 16px;
    padding: 0 16px;
  }

  /* Sticky ATC mobile */
  .br-sticky-atc.is-visible {
    display: flex;
  }

  /* Section padding reduction */
  .custom-how-it-works,
  .custom-starter-sets,
  .custom-shop-by-goal,
  .custom-testimonials,
  .custom-featured-picks,
  .custom-categories,
  .custom-newsletter {
    padding: 48px 0;
  }
}

/* Desktop: hide sticky ATC */
@media screen and (min-width: 750px) {
  .br-sticky-atc {
    display: none !important;
  }
}

/* ==========================================================================
   21.5 HERO OVERLAY (Horizon-native Hero Section Override)
   ========================================================================== */

/* Left-to-right gradient overlay for hero text readability */
.hero .hero__media-grid::after,
.hero .hero__media::after,
.hero .section-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(30, 40, 55, 0.75) 0%,
    rgba(30, 40, 55, 0.55) 35%,
    rgba(30, 40, 55, 0.2) 60%,
    transparent 80%
  );
  z-index: 1;
  pointer-events: none;
}

/* Ensure hero text sits above the overlay */
.hero .section-blocks,
.hero .hero__content,
.hero .hero__content-wrapper {
  position: relative;
  z-index: 2;
}

/* Hero text positioning — more space from left edge */
.hero .hero__content-wrapper {
  padding-left: clamp(40px, 8vw, 120px) !important;
  max-width: 600px;
}

@media screen and (max-width: 749px) {
  .hero .hero__content-wrapper {
    padding-left: 24px !important;
    max-width: 100%;
  }
}

/* ==========================================================================
   27. COLLECTION PAGE ENHANCEMENTS
   ========================================================================== */

/* 27a: Collection Header */
.collection-hero__title,
.collection__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--color-primary);
}

.collection__description {
  max-width: 700px;
  margin: 8px auto 24px;
  color: var(--color-text-light);
  font-size: 16px;
  text-align: center;
}

/* 27b: Filter Bar */
.facets-container {
  border-bottom: 1px solid #E8E4DE;
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.active-facets__button {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-accent);
  border-radius: 20px;
  color: var(--color-accent);
  font-size: 13px;
  padding: 4px 12px;
}

/* 27c: Product Cards */
.card-wrapper:hover .card__media img {
  transform: scale(1.03);
  transition: transform 0.4s ease;
}

.price-item--sale {
  color: var(--color-accent);
  font-weight: 700;
}

.price-item--regular {
  text-decoration: line-through;
  color: var(--color-text-light);
  font-size: 14px;
}

/* 27d: Sort Dropdown */
.facet-filters__sort select,
.collection-filters__sort select {
  border: 1px solid #E8E4DE;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  background: white;
}

/* ==========================================================================
   22. GLOBAL ENHANCEMENTS
   ========================================================================== */

html {
  scroll-behavior: smooth;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .br-fade-in {
    opacity: 1;
    transform: none;
  }

  .br-reveal {
    clip-path: none;
  }

  .custom-trust-ticker__track {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Focus styles */
.custom-section *:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Placeholder SVGs */
.custom-section .placeholder-svg {
  background: var(--color-bg-secondary);
  fill: rgba(52, 69, 99, 0.12);
  width: 100%;
  height: 100%;
}

/* WhatsApp offset when sticky ATC visible */
@media screen and (max-width: 749px) {
  body:has(.br-sticky-atc.is-visible) .br-whatsapp {
    bottom: 80px;
  }
}

/* Print styles */
@media print {
  .br-whatsapp,
  .custom-trust-ticker,
  .custom-newsletter,
  .br-sticky-atc,
  .br-scroll-progress,
  .br-back-to-top {
    display: none !important;
  }
}

/* ==========================================================================
   23. PRODUCT BADGES (Collection + Product Cards)
   ========================================================================== */

.br-product-badges {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
  pointer-events: none;
}

.br-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
  border-radius: var(--radius-small);
  text-transform: uppercase;
  white-space: nowrap;
}

.br-badge--sale {
  background: var(--color-sale);
  color: #fff;
}

.br-badge--bio {
  background: var(--color-wellness);
  color: #fff;
}

.br-badge--new {
  background: var(--color-primary);
  color: #fff;
}

/* ==========================================================================
   24. PRODUCT TRUST ICONS (below Buy Button)
   ========================================================================== */

/* Add breathing room above product section */
.product-information {
  padding-top: 40px;
}

/* Constrain product media so title + price + ATC are above the fold */
@media screen and (min-width: 750px) {
  .product-information__media {
    max-height: calc(100vh - 200px);
    overflow: hidden;
  }

  .product-information__media img,
  .product-information__media model-viewer,
  .product-information__media video {
    max-height: calc(100vh - 200px);
    object-fit: contain;
    width: 100%;
  }
}

@media screen and (max-width: 749px) {
  .product-information__media {
    max-height: 350px;
    overflow: hidden;
  }

  .product-information__media img {
    max-height: 350px;
    object-fit: contain;
    width: 100%;
  }
}

/* Hide Shop Pay / dynamic checkout buttons (irrelevant for Swiss market) */
.shopify-payment-button,
[data-shopify="payment-button"],
.dynamic-checkout__content {
  display: none !important;
}

.br-product-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 0;
  margin-top: 12px;
  border-top: 1px solid var(--color-border, #E5E2DE);
}

.br-product-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--color-text-light, #6B6B6B);
  letter-spacing: 0.02em;
}

.br-product-trust__svg {
  flex-shrink: 0;
  color: var(--color-wellness, #8BA888);
}

/* ==========================================================================
   25. PRODUCT TABS
   ========================================================================== */

.custom-product-tabs {
  padding: 32px 0;
}

.custom-product-tabs__inner {
  max-width: var(--layout-max-width, 1200px);
  margin: 0 auto;
  padding: 0 var(--layout-gutter, 24px);
}

.br-product-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--color-border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.br-product-tabs__tab {
  padding: 12px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.br-product-tabs__tab:hover {
  color: var(--color-primary);
}

.br-product-tabs__tab.is-active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.br-product-tabs__panels {
  padding-top: 24px;
}

.br-product-tabs__content {
  display: none;
}

.br-product-tabs__content.is-active {
  display: block;
}

.br-product-tabs__rte {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-primary);
}

.br-product-tabs__rte h2,
.br-product-tabs__rte h3,
.br-product-tabs__rte h4 {
  margin-bottom: 12px;
  color: var(--color-text-primary);
}

.br-product-tabs__rte p {
  margin-bottom: 16px;
}

.br-product-tabs__rte ul,
.br-product-tabs__rte ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.br-product-tabs__placeholder {
  color: var(--color-text-light);
  font-style: italic;
}

.br-product-tabs__placeholder-box {
  padding: 24px;
  background: #f9f7f4;
  border-radius: 8px;
  text-align: center;
  color: var(--color-text-secondary, #6B6B6B);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

.br-product-tabs__placeholder-box strong {
  color: var(--color-text-primary, #3D3D3D);
  font-size: 1rem;
}

.br-product-tabs__placeholder-box p {
  margin-bottom: 8px;
}

.br-product-tabs__placeholder-box p:last-child {
  margin-bottom: 0;
}

.br-product-tabs__placeholder-box a {
  color: var(--color-primary, #475D82);
  font-weight: 500;
  text-decoration: none;
}

.br-product-tabs__placeholder-box a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   26. PRODUCT BUNDLE UPSELL
   ========================================================================== */

.custom-product-bundle {
  padding: 0 0 32px;
}

.custom-product-bundle__inner {
  max-width: var(--layout-max-width, 1200px);
  margin: 0 auto;
  padding: 24px;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-large);
  border: 1px solid var(--color-border-light);
}

.custom-product-bundle__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.custom-product-bundle__title {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
}

.custom-product-bundle__badge {
  display: none;
}

.custom-product-bundle__items {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.custom-product-bundle__item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.custom-product-bundle__img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-small);
  flex-shrink: 0;
}

.custom-product-bundle__name {
  font-size: 0.875rem;
  color: var(--color-text-primary);
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

a.custom-product-bundle__name:hover {
  color: var(--color-primary);
}

.custom-product-bundle__plus {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-light);
  flex-shrink: 0;
}

.custom-product-bundle__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border-light);
}

.custom-product-bundle__pricing {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-product-bundle__price-total {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.custom-product-bundle__btn {
  flex-shrink: 0;
}

/* ==========================================================================
   27. PRODUCT UPSELL ("Kunden kauften auch")
   ========================================================================== */

.custom-product-upsell {
  padding: 32px 0 40px;
  background: var(--color-bg-primary);
}

.custom-product-upsell__inner {
  max-width: var(--layout-max-width, 1200px);
  margin: 0 auto;
  padding: 0 var(--layout-gutter, 24px);
}

.custom-product-upsell__heading {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 24px;
}

.custom-product-upsell__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.custom-product-upsell__card {
  background: #fff;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.custom-product-upsell__card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.custom-product-upsell__image {
  position: relative;
  overflow: hidden;
}

.custom-product-upsell__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.custom-product-upsell__card:hover .custom-product-upsell__img {
  transform: scale(1.03);
}

.custom-product-upsell__quick-add {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  border: none;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.custom-product-upsell__card:hover .custom-product-upsell__quick-add {
  opacity: 1;
  transform: translateY(0);
}

.custom-product-upsell__quick-add:hover {
  background: var(--color-primary-dark);
}

.custom-product-upsell__info {
  padding: 12px 14px;
}

.custom-product-upsell__title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary);
  text-decoration: none;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-product-upsell__title:hover {
  color: var(--color-primary);
}

.custom-product-upsell__price {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.custom-product-upsell__price--sale {
  font-weight: 700;
  color: var(--color-sale);
  margin-right: 6px;
}

.custom-product-upsell__price--compare {
  text-decoration: line-through;
  color: var(--color-text-light);
  font-size: 0.8125rem;
}

/* ==========================================================================
   28. STICKY ADD TO CART (Mobile)
   ========================================================================== */

.br-sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: none;
}

.br-sticky-atc.is-visible {
  transform: translateY(0);
}

.br-sticky-atc__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  max-width: var(--layout-max-width, 1200px);
  margin: 0 auto;
}

.br-sticky-atc__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.br-sticky-atc__name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-primary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.br-sticky-atc__price {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-primary);
}

.br-sticky-atc__form {
  flex-shrink: 0;
}

.br-sticky-atc__btn {
  padding: 10px 20px;
  font-size: 0.8125rem;
  white-space: nowrap;
}

/* ==========================================================================
   29. COLLECTION PAGE OVERRIDES
   ========================================================================== */

/* Badge positioning on collection product cards */
.collection .product-card,
.main-collection .product-card {
  position: relative;
}

/* German filter labels */
.facets__label,
.facets__summary {
  font-size: 0.875rem;
  font-weight: 600;
}

/* ==========================================================================
   30. CART DRAWER ENHANCEMENTS
   ========================================================================== */

.br-cart-drawer-upsell {
  padding: 12px var(--cart-drawer-padding, 20px);
  border-top: 1px solid var(--color-border-light);
}

.br-cart-drawer-upsell__heading {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 10px;
}

.br-cart-drawer-upsell__items {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.br-cart-drawer-upsell__item {
  flex: 0 0 120px;
  text-decoration: none;
}

.br-cart-drawer-upsell__img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-small);
  margin-bottom: 6px;
}

.br-cart-drawer-upsell__name {
  font-size: 0.75rem;
  color: var(--color-text-primary);
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.br-cart-drawer-upsell__price {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* Responsive: Product Upsell grid */
@media screen and (max-width: 989px) {
  .custom-product-upsell__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .custom-product-bundle__items {
    flex-direction: column;
    align-items: flex-start;
  }

  .custom-product-bundle__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .custom-product-bundle__btn {
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 749px) {
  .custom-product-upsell__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .custom-product-upsell__heading {
    font-size: 1.25rem;
  }

  .br-product-tabs__tab {
    padding: 10px 14px;
    font-size: 0.8125rem;
  }

  .custom-product-bundle__inner {
    padding: 16px;
  }

  /* Sticky ATC visible on mobile */
  .br-sticky-atc {
    display: flex;
  }

  .br-sticky-atc.is-visible {
    display: flex;
  }

  /* Product trust: wrap tighter */
  .br-product-trust {
    gap: 6px;
    font-size: 0.75rem;
  }
}

/* Announcement bar: 32px height, single message */
.header-announcements {
  max-height: 32px;
}

.header-announcements .announcement-bar__item {
  padding-block: 6px;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
}

/* ==========================================================================
   23. SHOP HERO — Collection-List Header
   ========================================================================== */

.custom-shop-hero {
  background: var(--color-bg-secondary);
  padding: 48px 0 40px;
  text-align: center;
}

.custom-shop-hero__eyebrow {
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 12px;
}

.custom-shop-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 12px;
  line-height: 1.2;
}

.custom-shop-hero__subtitle {
  color: var(--color-text-light);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================================================
   24. SHOP GOALS COMPACT — "Shop nach Ziel" Kacheln
   ========================================================================== */

.custom-shop-goals-compact {
  padding: 40px 0;
}

.custom-shop-goals-compact__heading {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin: 0 0 24px;
}

.custom-shop-goals-compact__track {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.custom-shop-goals-compact__tile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: #fff;
  border: 1px solid #E8E4DE;
  border-radius: 12px;
  text-decoration: none;
  color: var(--color-text);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
  flex: 0 0 auto;
}

.custom-shop-goals-compact__tile:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.custom-shop-goals-compact__icon {
  font-size: 24px;
  line-height: 1;
}

.custom-shop-goals-compact__label {
  font-weight: 600;
  font-size: 15px;
}

.custom-shop-goals-compact__arrow {
  color: var(--color-accent);
  font-size: 18px;
  transition: transform 0.3s ease;
}

.custom-shop-goals-compact__tile:hover .custom-shop-goals-compact__arrow {
  transform: translateX(4px);
}

/* Mobile: horizontal scroll */
@media screen and (max-width: 749px) {
  .custom-shop-goals-compact__track {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
  }

  .custom-shop-goals-compact__track::-webkit-scrollbar {
    display: none;
  }

  .custom-shop-goals-compact__tile {
    padding: 12px 16px;
  }

  .custom-shop-goals-compact__label {
    font-size: 14px;
  }
}

/* ==========================================================================
   25. FEATURED COLLECTIONS — Priorisierte Kacheln
   ========================================================================== */

.custom-shop-fc {
  padding: 40px 0 48px;
}

.custom-shop-fc__heading {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin: 0 0 32px;
}

.custom-shop-fc__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Large tiles: span full column */
.custom-shop-fc__tile--large {
  min-height: 320px;
}

/* Small tiles: 3 in a row */
.custom-shop-fc__tile--small {
  min-height: 200px;
}

/* When we have exactly 5 blocks: first 2 large (row 1), next 3 small (row 2) */
.custom-shop-fc__grid .custom-shop-fc__tile--small:nth-child(n+3) {
  grid-column: auto;
}

/* Force 3-column for small tiles row */
.custom-shop-fc__grid {
  grid-template-columns: repeat(6, 1fr);
}

.custom-shop-fc__tile--large {
  grid-column: span 3;
}

.custom-shop-fc__tile--small {
  grid-column: span 2;
}

.custom-shop-fc__tile {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}

.custom-shop-fc__img-wrap {
  position: absolute;
  inset: 0;
}

.custom-shop-fc__img,
.custom-shop-fc__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-shop-fc__placeholder {
  fill: #c8c8c8;
  background: var(--color-bg-secondary);
}

.custom-shop-fc__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.custom-shop-fc__tile:hover .custom-shop-fc__overlay {
  background: rgba(0, 0, 0, 0.2);
}

.custom-shop-fc__tile:hover .custom-shop-fc__img {
  transform: scale(1.03);
  transition: transform 0.4s ease;
}

.custom-shop-fc__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 24px;
}

.custom-shop-fc__title {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  margin: 0 0 4px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.custom-shop-fc__count {
  font-size: 14px;
  opacity: 0.85;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Tablet */
@media screen and (max-width: 989px) {
  .custom-shop-fc__tile--large {
    min-height: 260px;
  }

  .custom-shop-fc__tile--small {
    min-height: 180px;
  }
}

/* Mobile: single column */
@media screen and (max-width: 749px) {
  .custom-shop-fc__grid {
    grid-template-columns: 1fr;
  }

  .custom-shop-fc__tile--large,
  .custom-shop-fc__tile--small {
    grid-column: span 1;
    min-height: 200px;
  }
}

/* ==========================================================================
   26. ALL COLLECTIONS — Alle Kategorien Grid
   ========================================================================== */

.custom-shop-all {
  padding: 48px 0 64px;
  background: var(--color-bg-secondary);
}

.custom-shop-all__heading {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin: 0 0 32px;
}

.custom-shop-all__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.custom-shop-all__card {
  display: block;
  text-decoration: none;
  color: var(--color-text);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-shop-all__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.custom-shop-all__img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.custom-shop-all__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.custom-shop-all__card:hover .custom-shop-all__img {
  transform: scale(1.03);
}

.custom-shop-all__placeholder {
  width: 100%;
  height: 100%;
  fill: #c8c8c8;
  background: var(--color-bg-secondary);
}

.custom-shop-all__info {
  padding: 16px;
}

.custom-shop-all__title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 4px;
}

.custom-shop-all__count {
  font-size: 13px;
  color: var(--color-text-light);
}

/* Tablet: 2 columns */
@media screen and (max-width: 989px) {
  .custom-shop-all__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* Mobile: 1 column */
@media screen and (max-width: 749px) {
  .custom-shop-all__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .custom-shop-all {
    padding: 40px 0 48px;
  }
}

/* ==========================================================================
   28. COLLECTION NAVIGATION — Sticky Pill Bar
   ========================================================================== */

.custom-collection-nav {
  position: sticky;
  top: var(--header-height, 64px);
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
}

.custom-collection-nav__track {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.custom-collection-nav__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text-primary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.custom-collection-nav__pill:hover {
  border-color: var(--color-accent);
  background: rgba(198, 126, 67, 0.06);
  color: var(--color-accent);
}

.custom-collection-nav__pill--active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  font-weight: 600;
}

.custom-collection-nav__pill--active:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: #fff;
}

.custom-collection-nav__icon {
  font-size: 16px;
  line-height: 1;
}

/* Mobile: horizontal scroll, no wrap */
@media screen and (max-width: 749px) {
  .custom-collection-nav__track {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 4px;
  }

  .custom-collection-nav__track::-webkit-scrollbar {
    display: none;
  }

  .custom-collection-nav__pill {
    font-size: 13px;
    padding: 7px 16px;
  }
}

/* ==========================================================================
   29. PRODUCT DESCRIPTION EXCERPT (upper sidebar)
   ========================================================================== */

/* 29. (removed — description block removed from product.json template) */

/* ==========================================================================
   30. CROSS-SELL CARDS (Recommendations API)
   ========================================================================== */

.custom-cross-sells {
  padding: 32px 0 40px;
}

.custom-cross-sells__inner {
  max-width: var(--layout-max-width, 1200px);
  margin: 0 auto;
  padding: 0 var(--layout-gutter, 24px);
}

.custom-cross-sells__heading {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary, #3D3D3D);
  margin-bottom: 24px;
}

.custom-cross-sells__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cross-sell-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--color-border, #E5E2DE);
  overflow: hidden;
  text-align: center;
  padding-bottom: 16px;
  transition: box-shadow 0.2s ease;
}

.cross-sell-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.cross-sell-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.cross-sell-card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.cross-sell-card__title {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 12px 12px 4px;
  color: var(--color-text-primary, #3D3D3D);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.cross-sell-card__price {
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0 12px 12px;
}

.cross-sell-card__compare-price {
  text-decoration: line-through;
  color: var(--color-text-light, #6B6B6B);
  font-weight: 400;
  margin-right: 8px;
  font-size: 0.8125rem;
}

.cross-sell-card__atc {
  background: var(--color-accent, #C67E43);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cross-sell-card__atc:hover {
  background: var(--color-accent-hover, #B06D35);
}

.cross-sell-card__atc:disabled {
  opacity: 0.7;
  cursor: default;
}

@media screen and (max-width: 989px) {
  .custom-cross-sells__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 749px) {
  .custom-cross-sells__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .custom-cross-sells__grid::-webkit-scrollbar {
    display: none;
  }

  .cross-sell-card {
    min-width: 200px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

/* === BODYRESET HEADER-SUCHLEISTE (Desktop, Galaxus-Style) === */
@media (min-width: 990px) {
  /* Suchleiste-Button optisch als breites Eingabefeld - NUR im Header */
  .header__column--right .header-actions__action[aria-label="Suchen"] {
    width: 480px;
    height: 42px;
    padding: 0 14px 0 42px;
    border: 1px solid var(--color-border, #d4d4d4);
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.7);
    justify-content: flex-start;
    align-items: center;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    position: relative;
  }

  .header__column--right .header-actions__action[aria-label="Suchen"]:hover {
    background-color: rgba(255, 255, 255, 1);
    border-color: var(--color-foreground, #333);
  }

  /* Lupe innen links */
  .header__column--right .header-actions__action[aria-label="Suchen"] .svg-wrapper {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
  }

  .header__column--right .header-actions__action[aria-label="Suchen"] svg {
    width: 18px;
    height: 18px;
  }

  /* Placeholder-Text */
  .header__column--right .header-actions__action[aria-label="Suchen"]::after {
    content: "Wonach suchst du?";
    color: var(--color-foreground-muted, #888);
    font-size: 0.95rem;
    font-family: var(--font-body--family);
    font-weight: 400;
    pointer-events: none;
  }

  .header__column--right .header-actions__action[aria-label="Suchen"] .hidden {
    display: none;
  }

  /* Rechte Spalte als Flex: Suche links (dehnt sich), CHF/Icons rechts */
  .header__column--right {
    display: flex !important;
    align-items: center;
    gap: 16px;
    flex: 1 1 auto;
    margin-left: auto;
  }

  /* Suchleiste zentrieren: nimmt den freien Raum links UND rechts gleichmässig */
  .header__column--right .header-actions__action[aria-label="Suchen"] {
    order: -10;
    margin-left: auto;
    margin-right: auto;
    flex: 0 0 480px;
  }

  /* CHF + andere Icons explizit nach rechts */
  .header__column--right .dropdown-localization,
  .header__column--right dropdown-localization-component {
    order: 10 !important;
  }

  .header__column--right shopify-account,
  .header__column--right cart-button-component,
  .header__column--right .header-actions__action:not([aria-label="Suchen"]) {
    order: 11 !important;
  }

  /* Wenn das Such-Modal offen ist, Header-Suchleiste verstecken */
  body:has(search-modal[open]) .header__column--right .header-actions__action[aria-label="Suchen"],
  body:has(dialog[open]) .header__column--right .header-actions__action[aria-label="Suchen"],
  body:has([aria-modal="true"]) .header__column--right .header-actions__action[aria-label="Suchen"] {
    visibility: hidden;
  }

  /* Den abgeschnittenen "Löschen"-Button im Such-Modal verstecken */
  .predictive-search__reset-button {
    display: none !important;
  }
}
