/* ================================================================
   BREEZI – Design System
   Clean black/white premium DTC aesthetic
   ================================================================ */

/* ── TOKENS ───────────────────────────────────────────────────── */
:root {
  --black:       #0A0A0A;
  --white:       #FFFFFF;
  --gray-50:     #F9F9F9;
  --gray-100:    #F2F2F2;
  --gray-200:    #E5E5E5;
  --gray-400:    #A0A0A0;
  --gray-600:    #666666;
  --gray-800:    #222222;
  --accent:      #FFE120;
  --accent-dark: #E6CA00;
  --cta:         #0A0A0A;
  --cta-hover:   #333333;
  --danger:      #E53E3E;
  --success:     #38A169;
  --gold:        #FFB800;

  --font-head: 'Roboto', system-ui, -apple-system, sans-serif;
  --font-body: 'Roboto', system-ui, -apple-system, sans-serif;

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 999px;

  --max-w:        1280px;
  --max-w-narrow: 760px;

  --sh-sm:  0 1px 4px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --sh-md:  0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --sh-lg:  0 16px 40px rgba(0,0,0,.12);
  --sh-xl:  0 32px 64px rgba(0,0,0,.16);

  --ease:      cubic-bezier(.4,0,.2,1);
  --ease-out:  cubic-bezier(0,0,.2,1);
  --dur:       180ms;
  --dur-slow:  360ms;
}

/* ── RESET ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: clip; }
body { font-family: var(--font-body); color: var(--black); background: var(--white); line-height: 1.6; overflow-x: clip; max-width: 100%; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
p { color: var(--gray-600); line-height: 1.7; }
strong { color: var(--black); }

/* ── TYPE SCALE ───────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--black);
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 2rem); }
h4 { font-size: 1.15rem; font-weight: 600; }

/* ── LAYOUT ───────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 768px) {
  .container { padding-left: 20px; padding-right: 20px; }
}
.container-narrow {
  max-width: var(--max-w-narrow);
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-muted  { color: var(--gray-600); }
.ml-auto     { margin-left: auto; }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9375rem;
  line-height: 1;
  white-space: nowrap;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-primary:hover { background: var(--gray-800); border-color: var(--gray-800); transform: translateY(-1px); box-shadow: var(--sh-md); }

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-white:hover { background: var(--gray-100); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,225,32,.3); }

.btn-lg  { padding: 18px 40px; font-size: 1rem; }
.btn-sm  { padding: 10px 20px; font-size: .85rem; }
.btn-block { width: 100%; }

/* ── BADGES ───────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge-black  { background: var(--black); color: var(--white); }
.badge-accent { background: var(--accent); color: var(--black); }
.badge-gold   { background: var(--gold); color: var(--black); }
.badge-outline{ border: 1.5px solid var(--gray-200); color: var(--gray-600); }


/* ══════════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ══════════════════════════════════════════════════════════════ */
.announcement-bar {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
  z-index: 100;
}
.announcement-track {
  display: flex;
  padding: 10px 0;
  overflow: hidden;
}
.announcement-items {
  display: flex;
  gap: 80px;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
  align-items: center;
}
.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .01em;
  flex-shrink: 0;
}
.announcement-dot { width: 4px; height: 4px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.announcement-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  padding: 6px;
  transition: color var(--dur) var(--ease);
  z-index: 2;
}
.announcement-close:hover { color: var(--white); }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ══════════════════════════════════════════════════════════════
   SITE HEADER
   ══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.scrolled { box-shadow: var(--sh-md); }

.header-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 24px;
}

.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-home-link,
.header-account {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  color: var(--gray-600);
  transition: all var(--dur) var(--ease);
  flex-shrink: 0;
}
.header-home-link:hover,
.header-account:hover {
  color: var(--black);
  background: var(--gray-100);
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.05em;
}
.site-logo img { height: 32px; width: auto; }

.primary-nav { flex: 1; display: flex; justify-content: center; align-items: center; gap: 4px; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list li a {
  display: block;
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-size: .9375rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all var(--dur) var(--ease);
}
.nav-list li a:hover { color: var(--black); background: var(--gray-100); }
.nav-list li.current-menu-item > a { color: var(--black); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  color: var(--gray-600);
  transition: all var(--dur) var(--ease);
  position: relative;
}
.header-icon-btn:hover { color: var(--black); background: var(--gray-100); }
.cart-count {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--black);
  color: white;
  font-size: .6rem;
  font-weight: 700;
  min-width: 16px; height: 16px;
  border-radius: 99px;
  display: flex; align-items: center; justify-content: center;
}
.cart-count:empty { display: none; }

.header-search-btn  { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--r-md); color: var(--gray-600); transition: all var(--dur) var(--ease); }
.header-search-btn:hover { color: var(--black); background: var(--gray-100); }
.header-cart { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--r-md); color: var(--gray-600); transition: all var(--dur) var(--ease); position: relative; }
.header-cart:hover { color: var(--black); background: var(--gray-100); }

.header-cta { display: flex; }

/* Search bar */
.header-search-bar { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease); }
.header-search-bar.open { max-height: 80px; border-bottom: 1px solid var(--gray-200); }
.header-search-bar .container { padding-top: 12px; padding-bottom: 12px; }
.header-search-bar input[type=search] {
  width: 100%;
  padding: 12px 20px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-full);
  font-size: .9375rem;
  outline: none;
  transition: border-color var(--dur) var(--ease);
}
.header-search-bar input[type=search]:focus { border-color: var(--black); }

/* Mobile */
.mobile-menu-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; border-radius: var(--r-md); }
.hamburger-line { width: 20px; height: 1.5px; background: var(--black); border-radius: 2px; transition: all var(--dur) var(--ease); }

.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 200;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
  overflow-y: auto;
}
.mobile-nav-overlay.open { transform: translateX(0); }
.mobile-nav-inner { padding: 24px; padding-top: 80px; }
.mobile-nav-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  background: var(--gray-100);
}
.mobile-nav-list { display: flex; flex-direction: column; }
.mobile-nav-list li a {
  display: block;
  padding: 16px 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  border-bottom: 1px solid var(--gray-100);
  font-family: var(--font-head);
}
.mobile-nav-cta { margin-top: 32px; }
.mobile-trust { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.mobile-trust span { font-size: .8rem; color: var(--gray-600); }

.overlay-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-slow) var(--ease);
}
.overlay-backdrop.visible { opacity: 1; pointer-events: all; }


/* ══════════════════════════════════════════════════════════════
   HERO SECTION – Clean, bold, editorial
   ══════════════════════════════════════════════════════════════ */
.hero-section {
  width: calc(100% - 80px);
  max-width: var(--max-w);
  min-height: calc(100vh - 120px);
  margin: 24px auto 0;
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--accent);
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 120px - 56px);
}

/* Left: Text */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .hero-content { padding: 60px 40px 60px 40px; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 24px;
}
.hero-eyebrow-dot { width: 6px; height: 6px; background: var(--black); border-radius: 50%; }

/* .hero-headline typography → unified subpage hero rule below */
.hero-headline-row {
  display: inline-flex;
  align-items: center;
  gap: .18em;
}
.hero-headline-pill {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  border-radius: var(--r-lg);
  padding: .02em .16em .08em;
  letter-spacing: -.03em;
  transform: rotate(-2deg);
  transform-origin: center;
}

.hero-sub {
  font-size: 1.0625rem;
  color: rgba(0,0,0,.6);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-proof {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,.15);
}
.hero-proof-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-proof-stars { display: flex; gap: 2px; }
.hero-proof-text { font-size: .875rem; color: rgba(0,0,0,.55); }
.hero-proof-text strong { color: var(--black); }
.hero-ebay-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(0,0,0,.55);
  font-size: .82rem;
  line-height: 1.3;
  text-decoration: none;
}
.hero-ebay-proof:hover { color: var(--black); }
.hero-ebay-proof strong {
  color: rgba(0,0,0,.76);
  font-weight: 800;
}

/* Right: Product Visual */
.hero-visual {
  position: relative;
  overflow: hidden;
  background: #FFE958;
}
/* ── HERO MEDIA STAGE ───────────────────────────────────────── */
.hero-media-stage {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 48px 40px 48px 48px;
  overflow: hidden;
}
.hero-media-kicker {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(0,0,0,.52);
  margin-bottom: 10px;
  display: block;
}
.hero-community-stats {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-community-num {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--black);
}
.hero-community-stars { display: flex; gap: 3px; margin-bottom: 4px; }
.hero-community-sub {
  font-size: .8rem;
  color: rgba(0,0,0,.55);
  line-height: 1.4;
  margin: 0;
}

/* Video card rail */
.hero-video-rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  /* fade right edge via mask */
  -webkit-mask-image: linear-gradient(to right, black 72%, transparent 100%);
  mask-image: linear-gradient(to right, black 72%, transparent 100%);
}
.hero-video-rail:active { cursor: grabbing; }
.hero-video-rail::-webkit-scrollbar { display: none; }
.hero-video-card {
  flex: 0 0 42%;
  scroll-snap-align: start;
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-video-ph {
  flex: 1;
  min-height: 140px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hv-ph-1 { background: linear-gradient(160deg, #1a1a1a, #2e2e2e); }
.hv-ph-2 { background: linear-gradient(160deg, #0d1a2e, #1a3a5c); }
.hv-ph-3 { background: linear-gradient(160deg, #1a100a, #3a2010); }
.hv-ph-4 { background: linear-gradient(160deg, #0a1a0a, #1a3020); }
.hero-video-play {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.hero-video-body {
  padding: 12px;
  background: #1c1c1c;
}
.hero-video-quote {
  font-size: .74rem;
  color: rgba(255,255,255,.82);
  line-height: 1.45;
  margin: 0 0 6px;
  font-style: italic;
}
.hero-video-name {
  font-size: .67rem;
  font-weight: 700;
  color: rgba(255,255,255,.38);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Proof grid */
.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hero-proof-grid div {
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(0,0,0,.12);
}
.hero-proof-grid strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
}
.hero-proof-grid span {
  display: block;
  margin-top: 4px;
  color: rgba(0,0,0,.55);
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.3;
}

/* Trust bar at bottom of hero */
.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.12);
  background: var(--black);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 20px;
  font-size: .8125rem;
  font-weight: 500;
  color: rgba(255,255,255,.86);
  border-right: 1px solid rgba(255,255,255,.14);
  transition: color var(--dur) var(--ease);
}
.hero-trust-item:last-child { border-right: none; }
.hero-trust-item:hover { color: var(--white); }
.hero-trust-icon { color: var(--white); flex-shrink: 0; }


/* ══════════════════════════════════════════════════════════════
   PHOTO STRIP
   ══════════════════════════════════════════════════════════════ */
.photo-strip {
  position: relative;
  overflow: hidden;
  padding: 48px 0;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
.photo-strip-track {
  display: flex;
  gap: 20px;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding: 2px 0;
}
.photo-strip-track:active { cursor: grabbing; }
.photo-strip-track::-webkit-scrollbar { display: none; }
.photo-strip-item { scroll-snap-align: start; }

.photo-strip-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(10, 10, 10, .08);
  transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.photo-strip-arrow:hover {
  background: var(--accent);
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 6px 18px rgba(10, 10, 10, .12);
}
.photo-strip-arrow--prev { left: 12px; }
.photo-strip-arrow--next { right: 12px; }
.photo-strip-item {
  width: 260px;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-xl);
  flex-shrink: 0;
  overflow: hidden;
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Fade edges */
.photo-strip-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  z-index: 2;
  pointer-events: none;
}
.photo-strip-fade--left  { left: 0;  background: linear-gradient(to right, var(--white), transparent); }
.photo-strip-fade--right { right: 0; background: linear-gradient(to left,  var(--white), transparent); }

@media (max-width: 768px) {
  .photo-strip-item { width: 160px; }
  .photo-strip-fade { width: 60px; }
  .photo-strip-arrow { width: 28px; height: 28px; }
  .photo-strip-arrow--prev { left: 6px; }
  .photo-strip-arrow--next { right: 6px; }
}

/* ══════════════════════════════════════════════════════════════
   SECTION UTILITIES
   ══════════════════════════════════════════════════════════════ */
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--black); }
.section-gray { background: var(--gray-50); }

.how-section,
.stats-section,
.benefit-section,
.section-gray,
.newsletter-section,
.upsell-section,
.shop-trust-strip,
.media-slider-section,
.lp-howto,
.lp-trust,
.lp-founder,
.gd-weight-guide,
.gd-materials,
.gd-founder,
.ml-feature-split,
.ml-ingredients,
.ml-founder {
  width: calc(100% - 80px) !important;
  max-width: var(--max-w) !important;
  margin: 24px auto !important;
  border-radius: var(--r-xl) !important;
  overflow: hidden !important;
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-sub { color: var(--gray-600); font-size: 1.05rem; max-width: 560px; }
.section-header { margin-bottom: 60px; }
.section-header-center { text-align: center; }
.section-header-center .section-sub { margin: 0 auto; }


/* ══════════════════════════════════════════════════════════════
   PRODUCT CARDS
   ══════════════════════════════════════════════════════════════ */
.products-grid-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
}
.products-grid-wrap::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 100px;
  background: linear-gradient(to right, transparent, var(--white));
  pointer-events: none;
  z-index: 2;
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
}
.products-grid {
  display: flex;
  gap: 2px;
  background: var(--gray-200);
  border: 2px solid var(--gray-200);
  border-radius: var(--r-xl);
  overflow: visible;
  /* scrolling handled by JS via transform or scrollLeft on inner track */
}
/* Actual scroll track inside the grid */
.products-grid-track {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  background: var(--gray-200);
}
.products-grid-track:active { cursor: grabbing; }
.products-grid-track::-webkit-scrollbar { display: none; }
.product-card {
  flex: 0 0 calc(33.333% - 2px);
  min-width: 280px;
  scroll-snap-align: start;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: background var(--dur) var(--ease);
}
.product-card:hover { background: var(--gray-50); }

.product-card-img {
  height: 280px;
  overflow: hidden;
  background: var(--gray-100);
  position: relative;
  display: block;
  flex-shrink: 0;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product-card:hover .product-card-img img { transform: scale(1.03); }
.product-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.pci-p1 { background: linear-gradient(145deg, #f0f4f8, #e2eaf4); }
.pci-p2 { background: linear-gradient(145deg, #f0faf8, #d4f0eb); }
.pci-p3 { background: linear-gradient(145deg, #fdf8f0, #f5e8d0); }
.pci-p4 { background: linear-gradient(145deg, #f0f5f0, #d8ecd8); }

.product-card-badges {
  position: absolute;
  top: 16px; left: 16px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.product-card-body { padding: 24px; }
.product-card-category {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.product-card-title { font-size: 1.15rem; margin-bottom: 8px; }
.product-card-desc { font-size: .875rem; color: var(--gray-600); margin-bottom: 16px; line-height: 1.6; }
.product-card-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 20px; }
.product-card-rating-text { font-size: .8rem; color: var(--gray-400); }
.product-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.product-card-price { font-size: 1.1rem; font-weight: 700; color: var(--black); }


/* ══════════════════════════════════════════════════════════════
   BRAND POSITIONING
   ══════════════════════════════════════════════════════════════ */
.brand-positioning-section {
  background: var(--white);
}
.brand-positioning-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 620px);
  gap: 86px;
  align-items: center;
}
.brand-positioning-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.brand-positioning-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 780px;
  margin-top: 24px;
}
.brand-positioning-copy p {
  font-size: 1.05rem;
  margin: 0;
}
.brand-positioning-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.breezi-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  max-width: 100%;
}
.brand-proof-badge {
  width: auto;
  justify-content: flex-start;
  margin: 20px 0 24px;
}
.breezi-proof-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
}
.breezi-proof-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -12px;
  background: linear-gradient(145deg, #d9e3e8, #748a96);
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.breezi-proof-avatar:first-child { margin-left: 0; }
.bpa-1 { background-image: url("/wp-content/uploads/avatars/bpa-1.jpg"); background-size: cover; background-position: center center; }
.bpa-2 { background-image: url("/wp-content/uploads/avatars/bpa-2.webp"); background-size: cover; background-position: center center; }
.bpa-3 { background-image: url("/wp-content/uploads/avatars/bpa-3.jpeg"); background-size: cover; background-position: center center; }
.bpa-4 { background-image: url("/wp-content/uploads/avatars/bpa-4.jpeg"); background-size: cover; background-position: center center; }
.bpa-5 { background-image: url("/wp-content/uploads/avatars/bpa-5.png"); background-size: cover; background-position: center center; }
.breezi-proof-separator {
  width: 1px;
  height: 40px;
  background: var(--gray-300);
}
.breezi-proof-copy {
  color: var(--black);
}
.breezi-proof-copy div {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  line-height: 1.3;
}
.breezi-proof-copy p {
  margin: 2px 0 0;
  color: var(--gray-600);
  font-size: .8rem;
  line-height: 1.4;
}
.breezi-proof-check {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1D9BF0;
  color: var(--white);
  font-size: .9rem;
  font-weight: 900;
  flex-shrink: 0;
}
.brand-positioning-visual {
  margin: 0;
  position: relative;
}
.brand-overlay-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 14px 20px;
  box-shadow: var(--sh-md);
  width: auto;
  z-index: 2;
  flex-wrap: wrap;
}
.brand-overlay-badge .breezi-proof-copy {
  flex: 1;
  min-width: 0;
}
.brand-overlay-badge .breezi-proof-copy div {
  font-size: .8rem;
  gap: 6px;
  flex-wrap: wrap;
  word-break: break-word;
}
.brand-overlay-badge .breezi-proof-copy p {
  font-size: .75rem;
  margin-top: 2px;
}
.brand-overlay-badge .breezi-proof-avatar {
  width: 36px;
  height: 36px;
  margin-left: -10px;
}
.brand-overlay-badge .breezi-proof-avatar:first-child { margin-left: 0; }
.brand-positioning-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  background:
    radial-gradient(circle at 72% 24%, rgba(255,255,255,.52), transparent 18%),
    linear-gradient(145deg, #0A0A0A 0%, #343434 44%, #FFE120 100%);
  box-shadow: var(--sh-md);
}
.brand-positioning-visual figcaption {
  margin-top: 16px;
  color: var(--gray-500);
  font-size: .85rem;
  font-weight: 700;
}
.brand-image-slider {
  position: relative;
  margin-top: 72px;
  overflow: hidden;
}
.brand-image-slider::before,
.brand-image-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(18vw, 220px);
  z-index: 2;
  pointer-events: none;
}
.brand-image-slider::before {
  left: 0;
  background: linear-gradient(90deg, var(--white) 0%, rgba(255,255,255,0) 100%);
}
.brand-image-slider::after {
  right: 0;
  background: linear-gradient(270deg, var(--white) 0%, rgba(255,255,255,0) 100%);
}
.brand-image-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 6px 0 18px;
  animation: brandImageSlide 34s linear infinite;
}
.brand-image-slider:hover .brand-image-track { animation-play-state: paused; }
.brand-image-card {
  position: relative;
  flex: 0 0 clamp(220px, 24vw, 360px);
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: var(--sh-sm);
}
.brand-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #ececec, #cfcfcf);
}
.brand-image-card-1 .brand-image-placeholder { background: linear-gradient(145deg, #111, #4d4d4d); }
.brand-image-card-2 .brand-image-placeholder { background: linear-gradient(145deg, #FFE120, #f3b84a); }
.brand-image-card-3 .brand-image-placeholder { background: linear-gradient(145deg, #f5f5f5, #b8c0c8); }
.brand-image-card-4 .brand-image-placeholder { background: linear-gradient(145deg, #0A0A0A, #FFE120); }
.brand-image-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 14px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(12px);
  color: var(--black);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
@keyframes brandImageSlide {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}


/* ══════════════════════════════════════════════════════════════
   COMMUNITY / UGC
   ══════════════════════════════════════════════════════════════ */
.community-section {
  background: var(--white);
}
.community-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.community-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 24px;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: var(--gray-800);
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: var(--sh-sm);
}
.community-card::before,
.community-card::after {
  content: "";
  position: absolute;
  inset: 0;
}
.community-card::before {
  background:
    radial-gradient(circle at 70% 22%, rgba(255,255,255,.32), transparent 24%),
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(0,0,0,.35));
}
.community-card::after {
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.72) 100%);
}
.community-card-1 { background: linear-gradient(145deg, #252525, #7a7460); }
.community-card-2 { background: linear-gradient(145deg, #111, #4d5b64); }
.community-card-3 { background: linear-gradient(145deg, #2b231f, #786b5e); }
.community-card-4 { background: linear-gradient(145deg, #161616, #4d584c); }
.community-card .hero-video-play {
  position: absolute;
  z-index: 3;
}
.community-card strong,
.community-card span {
  position: relative;
  z-index: 2;
}
.community-card strong {
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.25;
}
.community-card span {
  color: rgba(255,255,255,.68);
  font-size: .82rem;
  font-weight: 700;
}
.community-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}
.community-rating p { margin: 0; }


/* ══════════════════════════════════════════════════════════════
   USP GRID
   ══════════════════════════════════════════════════════════════ */
.usp-section {
  background: var(--white);
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  background: var(--gray-200);
}
.usp-item {
  background: var(--white);
  padding: 32px;
}
.usp-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--black);
  font-size: .9rem;
  font-weight: 900;
}
.usp-item h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.usp-item p {
  margin: 0;
  font-size: .9rem;
}




/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS – Dark section
   ══════════════════════════════════════════════════════════════ */
.how-section { background: var(--white); border: none; }
.how-section .section-title { color: var(--black); }
.how-section .section-sub { color: var(--black); }

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.how-step {
  background: var(--accent);
  padding: 40px 32px;
  border-radius: var(--r-xl);
  border: 1.5px solid rgba(0,0,0,.1);
  box-shadow: 0 16px 36px rgba(0,0,0,.05);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.how-step:hover {
  background: #FFE958;
  transform: translateY(-3px);
}
.how-step-num {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--black);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.how-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  margin-bottom: 20px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.how-step h3 { color: var(--black); font-size: 1.1rem; margin-bottom: 10px; }
.how-step p { color: var(--black); font-size: .9rem; line-height: 1.6; }


/* ══════════════════════════════════════════════════════════════
   BENEFIT SPLIT
   ══════════════════════════════════════════════════════════════ */
.benefit-section { background: var(--gray-50); }
.benefit-section,
.benefit-section + .section-gray {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  background: var(--white) !important;
}
.benefit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.benefit-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--gray-200);
}
.benefit-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.benefit-img-placeholder { width: 100%; height: 100%; background: linear-gradient(145deg, #e8f0fc, #c8daf8); }

.benefit-float-card {
  position: absolute;
  bottom: 24px; right: -20px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  box-shadow: var(--sh-lg);
  max-width: 240px;
}
.bfc-stars { display: flex; gap: 2px; margin-bottom: 8px; }
.bfc-text { font-size: .875rem; color: var(--black); line-height: 1.5; margin-bottom: 8px; font-style: italic; }
.bfc-author { font-size: .75rem; color: var(--gray-400); font-weight: 600; }

.benefit-list { display: flex; flex-direction: column; gap: 24px; margin: 32px 0 40px; }
.benefit-item { display: flex; gap: 16px; align-items: flex-start; }
.benefit-check {
  width: 24px; height: 24px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: white;
}
.benefit-item strong { display: block; margin-bottom: 4px; font-size: .9375rem; }
.benefit-item p { font-size: .875rem; margin: 0; }


/* ══════════════════════════════════════════════════════════════
   STATS
   ══════════════════════════════════════════════════════════════ */
.stats-section {
  background: transparent;
  padding: 0;
  border: none !important;
}
.stats-section .container {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: none;
  border-radius: 0;
  overflow: hidden;
}
.stat-item {
  padding: 48px 32px;
  text-align: center;
  background: var(--white);
}
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.03em;
}
.stat-number .stat-unit { color: var(--black); }
.stat-label { font-size: .875rem; color: rgba(0,0,0,.55); font-weight: 600; }


/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════ */
.testimonials-section {
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.testimonials-second-row-wrap {
  position: relative;
}
.testimonials-grid--row2 {
  margin-bottom: 0;
}
.testimonials-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}
.testimonials-third-row-wrap {
  display: none;
  margin-top: 20px;
}
.testimonials-third-row-wrap.visible {
  display: block;
}
.testimonials-more {
  text-align: center;
  padding-top: 24px;
}
.testimonials-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  padding: 0;
  transition: opacity var(--dur) var(--ease);
}
.testimonials-more-btn:hover { opacity: .6; }
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: all var(--dur) var(--ease);
}
.testimonial-card:hover { border-color: var(--black); box-shadow: var(--sh-md); transform: translateY(-2px); }
.testimonial-card.tc-featured {
  background: var(--black);
  border-color: var(--black);
}
.testimonial-card.tc-featured .tc-name,
.testimonial-card.tc-featured .tc-quote { color: var(--white); }
.testimonial-card.tc-featured .tc-role,
.testimonial-card.tc-featured .tc-verified { color: rgba(255,255,255,.5); }

.tc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.tc-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tc-featured .tc-avatar { background: rgba(255,255,255,.15); }
.tc-name { font-size: .9375rem; font-weight: 700; }
.tc-role { font-size: .8rem; color: var(--gray-400); }
.tc-stars { display: flex; gap: 2px; margin-left: auto; }
.tc-quote {
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 16px;
}
.tc-verified { font-size: .75rem; color: var(--gray-400); font-weight: 500; }

.testimonials-rating {
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  padding: 16px 0 0;
  background: transparent;
  border-radius: 0;
}
.tr-stars { display: flex; gap: 3px; }
.tr-text { font-size: .9375rem; color: var(--gray-600); }
.tr-text strong { color: var(--black); }


/* ══════════════════════════════════════════════════════════════
   CLOSING PITCH (pre-newsletter — editorial + action panel)
   ══════════════════════════════════════════════════════════════ */
.closing-pitch {
  padding: 72px 0 80px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.closing-pitch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 56px 72px;
  align-items: center;
}

.closing-pitch-title {
  margin-bottom: 20px;
}

.closing-pitch-lead {
  max-width: 480px;
}

.closing-pitch-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(10, 10, 10, .06);
}

.closing-pitch-panel-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.closing-pitch-thumb {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 6px;
  flex-shrink: 0;
}

.closing-pitch-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .45);
  margin-bottom: 4px;
}

.closing-pitch-price {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--black);
  line-height: 1.1;
}

.closing-pitch-price .woocommerce-Price-amount {
  font-weight: 900;
}

.closing-pitch-price del {
  font-size: .8em;
  opacity: .45;
  margin-right: 6px;
}

.closing-pitch-btn {
  width: 100%;
  justify-content: center;
}

.closing-pitch-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.closing-pitch-list li {
  position: relative;
  padding-left: 22px;
  font-size: .8125rem;
  color: var(--gray-600);
  line-height: 1.4;
}

.closing-pitch-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 225, 32, .25);
}

@media (max-width: 1024px) {
  .closing-pitch-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .closing-pitch-panel {
    max-width: 420px;
  }
}

@media (max-width: 768px) {
  .closing-pitch {
    padding: 56px 0 64px;
  }

  .closing-pitch-panel {
    max-width: none;
    padding: 24px 20px;
  }
}



/* ══════════════════════════════════════════════════════════════
   BLOG / WISSEN
   ══════════════════════════════════════════════════════════════ */

/* Archive hero layout */

.blog-hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(0, 520px);
  gap: 80px;
  align-items: start;
  min-height: 0;
  padding-bottom: 0;
}

.blog-hero-copy {
  display: flex;
  flex-direction: column;
  align-self: start;
}

.blog-page-hero-title {
  /* typography: unified hero heading rule */
}

.blog-page-hero-sub {
  max-width: 480px;
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 8px;
  opacity: 1;
}

.blog-page-hero .shop-hero-stats {
  margin-top: 32px;
}

.blog-hero-visual { position: relative; }

.blog-hero-img-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 420px;
  background: #EAF0F6;
  box-shadow: 0 24px 60px rgba(10,10,10,.1);
}

.blog-hero-img-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,.35) 0%, transparent 28%);
  pointer-events: none;
}

.blog-hero-img,
.blog-hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center calc(20% - 25px);
  display: block;
}

.blog-hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #0d1a2e 0%, #1a3a5c 50%, #FFE120 130%);
}

.blog-hero-img-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  font-size: .78rem;
  font-weight: 700;
  color: var(--black);
  box-shadow: 0 8px 24px rgba(10,10,10,.08);
}

/* Filter chips — shop swatch style */
.blog-filter-bar {
  background: var(--white);
  padding: clamp(36px, 4vw, 48px) 0 clamp(28px, 3vw, 36px);
}

.blog-filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--black);
  font-size: .875rem;
  font-weight: 600;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}

.blog-filter-chip:hover {
  border-color: var(--black);
  background: var(--gray-50, #fafafa);
}

.blog-filter-chip.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* Archive main */
.blog-archive-main {
  padding: 48px 0 96px;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--gray-200);
}

.blog-featured-img-wrap {
  position: relative;
  display: block;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.blog-featured-img,
.blog-featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-img-placeholder { width: 100%; height: 100%; }
.blog-ph-1 { background: linear-gradient(145deg,#0d1a2e,#1a3a5c); }
.blog-ph-2 { background: linear-gradient(145deg,#1a1a1a,#2d2d2d); }
.blog-ph-3 { background: linear-gradient(145deg,#1a1000,#3a2800); }
.blog-ph-4 { background: linear-gradient(145deg,#0f1a0f,#1a3a1a); }

.blog-featured-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
}

.blog-cat-chip {
  display: inline-block;
  background: var(--accent);
  color: var(--black);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-full);
}

.blog-meta {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  font-size: .8rem;
  color: var(--gray-400);
  margin-bottom: 14px;
}

.blog-featured-title {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-bottom: 16px;
}

.blog-featured-title a,
.blog-card-title a {
  color: var(--black);
}

.blog-featured-title a:hover,
.blog-card-title a:hover {
  color: var(--gray-800);
}

.blog-featured-excerpt {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--black);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  transition: gap var(--dur) var(--ease);
}

.blog-read-more:hover { gap: 10px; }
.blog-read-more-sm { font-size: .85rem; }

/* Grid cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--black);
}

.blog-card-img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-100);
}

.blog-card-img,
.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.blog-card:hover .blog-card-img,
.blog-card:hover .blog-card-img-wrap img {
  transform: scale(1.04);
}

.blog-card-img-wrap .blog-cat-chip {
  position: absolute;
  top: 12px;
  left: 12px;
}

.blog-card-body { padding: 24px; }

.blog-card-title {
  font-size: 1.1rem;
  margin: 8px 0 10px;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Pagination + empty */
.blog-pagination {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}

.blog-pagination .page-numbers {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-pagination .page-numbers li a,
.blog-pagination .page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  border-radius: var(--r-md);
  border: 1px solid var(--gray-200);
  font-weight: 600;
  font-size: .9rem;
  color: var(--black);
  transition: all var(--dur) var(--ease);
}

.blog-pagination .page-numbers li .current {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.blog-pagination .page-numbers li a:hover {
  border-color: var(--black);
}

.blog-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--gray-400);
  font-size: 1.1rem;
}

/* Single post */
.blog-single-page {
  background: var(--white);
}

.blog-single-header {
  padding: 28px 0 0;
}

.blog-single-header-shell {
  width: 100%;
}

.blog-single-header-shell .blog-breadcrumb {
  margin-bottom: 24px;
  font-size: .8125rem;
}

.blog-single-header-shell .blog-breadcrumb a {
  color: var(--black);
  opacity: .45;
  transition: opacity var(--dur) var(--ease);
}

.blog-single-header-shell .blog-breadcrumb a:hover {
  opacity: 1;
}

.blog-single-header-shell .breadcrumb-current {
  color: var(--gray-600);
}

.blog-single-intro {
  margin-bottom: 36px;
  max-width: 980px;
}

.blog-single-intro .blog-cat-chip,
.blog-single-intro .section-label {
  margin-bottom: 4px;
}

.blog-single-title {
  margin: 16px 0 18px;
  font-size: clamp(2.3rem, 4.8vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--black);
  max-width: 980px;
}

.blog-single-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
}

.blog-single-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  background: rgba(255,255,255,.82);
  color: var(--gray-600);
  font-size: .82rem;
  font-weight: 600;
}

.blog-single-meta-pill svg {
  flex-shrink: 0;
  opacity: .55;
}

.blog-single-lead {
  margin: 22px 0 0;
  padding: 18px 0 18px 20px;
  border-left: 4px solid var(--accent);
  font-size: 1.22rem;
  line-height: 1.72;
  color: rgba(10,10,10,.72);
  max-width: 920px;
}

.blog-single-hero-media {
  position: relative;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--gray-100);
  border: 1px solid rgba(10,10,10,.06);
  box-shadow: 0 28px 70px rgba(10,10,10,.1);
}

.blog-single-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.18) 0%, transparent 46%);
  pointer-events: none;
}

.blog-single-hero-image,
.blog-single-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-single-hero-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  font-size: .78rem;
  font-weight: 800;
  color: var(--black);
  box-shadow: 0 10px 28px rgba(10,10,10,.12);
}

.blog-single-body {
  padding: 0 0 56px;
}

.blog-single-body:not(.blog-single-body--with-sidebar) {
  padding-top: 40px;
}

.blog-single-body--with-sidebar {
  margin-top: -52px;
  position: relative;
  z-index: 2;
}

.blog-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.blog-single-body--with-sidebar .blog-single-layout {
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
}

.blog-single-main {
  min-width: 0;
}

.blog-single-content-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 52px) clamp(24px, 4vw, 56px);
  box-shadow: 0 22px 50px rgba(10,10,10,.06);
}

.blog-single-body--with-sidebar .blog-single-content-card {
  box-shadow: 0 28px 64px rgba(10,10,10,.08);
}

.blog-single-aside {
  position: sticky;
  top: 108px;
}

.blog-linked-products-aside {
  padding: 22px 20px;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 40px rgba(10,10,10,.05);
}

.blog-linked-products-aside-head {
  margin-bottom: 16px;
}

.blog-linked-products-aside-head h2 {
  margin: 8px 0 0;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 800;
}

.blog-linked-products-aside-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-linked-products-aside .blog-linked-product-mini {
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 16px;
}

.blog-linked-products-aside .blog-linked-product-mini-thumb,
.blog-linked-products-aside .blog-linked-product-mini-thumb img,
.blog-linked-products-aside .blog-linked-product-mini-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 11px;
}

.blog-single-content {
  font-size: 1.0625rem;
  line-height: 1.88;
  color: rgba(10,10,10,.88);
}

.blog-single-content > *:first-child { margin-top: 0; }

.blog-single-content > p:first-of-type {
  font-size: 1.125rem;
  line-height: 1.82;
  color: rgba(10,10,10,.92);
}

.blog-single-content p,
.blog-single-content ul,
.blog-single-content ol,
.blog-single-content blockquote,
.blog-single-content figure {
  margin-bottom: 1.5rem;
}

.blog-single-content h2,
.blog-single-content h3,
.blog-single-content h4 {
  color: var(--black);
  margin: 2.6rem 0 1rem;
  line-height: 1.14;
  letter-spacing: -0.02em;
  scroll-margin-top: 120px;
}

.blog-single-content h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  padding-top: 0;
  border-top: none;
  position: relative;
}

.blog-single-content h2::before {
  content: '';
  display: block;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
  margin-bottom: 14px;
}

.blog-single-content h2:first-child {
  margin-top: 0;
}

.blog-single-content h3 { font-size: clamp(1.28rem, 2vw, 1.6rem); }
.blog-single-content img { border-radius: var(--r-lg); }

.blog-single-content a {
  color: var(--black);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.blog-single-content a:hover {
  color: #8f7800;
}

.blog-single-content blockquote {
  padding: 24px 28px;
  border-left: 4px solid var(--accent);
  background: #fffdf3;
  border-radius: 0 20px 20px 0;
  color: var(--black);
  font-weight: 500;
}

.blog-single-content ul,
.blog-single-content ol {
  padding-left: 0;
  list-style: none;
}

.blog-single-content ul li,
.blog-single-content ol li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: .55rem;
}

.blog-single-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.blog-single-content ol {
  counter-reset: blog-ol;
}

.blog-single-content ol li {
  counter-increment: blog-ol;
}

.blog-single-content ol li::before {
  content: counter(blog-ol) '.';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--black);
  font-size: .92em;
}

.blog-single-content strong {
  color: var(--black);
  font-weight: 700;
}

.blog-single-footer-nav {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
}

.blog-single-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--black);
  font-size: .9rem;
  font-weight: 700;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.blog-single-back-btn:hover {
  border-color: var(--black);
  background: #fffdf3;
  transform: translateX(-2px);
}

.blog-linked-products-section {
  padding: 0 0 64px;
}

.blog-linked-products-head {
  margin-bottom: 24px;
  text-align: center;
}

.blog-linked-products-head h2 {
  margin: 10px 0 8px;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.12;
}

.blog-linked-products-head p {
  margin: 0 auto;
  max-width: 560px;
  color: var(--gray-600);
  font-size: .95rem;
}

.blog-linked-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.blog-linked-product-card {
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.blog-linked-product-card:hover {
  border-color: var(--black);
  box-shadow: 0 12px 32px rgba(10,10,10,.06);
}

.blog-linked-product-media {
  display: block;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #eef2f7, #f6f7f2);
}

.blog-linked-product-image,
.blog-linked-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-linked-product-body { padding: 18px 20px 20px; }

.blog-linked-product-body h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.blog-linked-product-body p {
  margin: 0 0 14px;
  font-size: .88rem;
  line-height: 1.55;
}

.blog-linked-product-footer {
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
}

.blog-linked-products-compact {
  padding: 0 0 48px;
}

.blog-linked-products-compact .container {
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
}

.blog-linked-products-compact-head {
  margin-bottom: 14px;
}

.blog-linked-products-compact-head h2 {
  margin: 8px 0 0;
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 800;
}

.blog-linked-products-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
}

.blog-linked-product-mini {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.blog-linked-product-mini:hover {
  border-color: var(--black);
  box-shadow: 0 10px 28px rgba(10,10,10,.06);
  transform: translateY(-1px);
}

.blog-linked-product-mini-thumb,
.blog-linked-product-mini-thumb img {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
}

.blog-linked-product-mini-placeholder {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--gray-100);
}

.blog-linked-product-mini-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.blog-linked-product-mini-copy strong {
  font-size: .92rem;
  line-height: 1.3;
  color: var(--black);
}

.blog-linked-product-mini-copy span {
  font-size: .85rem;
  color: var(--gray-600);
}

.blog-linked-product-mini-arrow {
  font-size: 1.1rem;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
}

.blog-linked-product-mini:hover .blog-linked-product-mini-arrow {
  color: var(--black);
  transform: translateX(2px);
}

.blog-single-cta-band {
  padding: 0 0 96px;
}

.blog-single-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 32px;
  border: 1px solid rgba(10,10,10,.08);
  border-radius: 24px;
  background: linear-gradient(180deg, #fffef9 0%, #faf9f5 100%);
  box-shadow: 0 8px 28px rgba(10,10,10,.04);
}

.blog-single-cta-copy { max-width: 620px; }

.blog-single-cta-copy h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.5rem, 2.5vw, 2.05rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.blog-single-cta-copy p {
  margin: 0;
  color: rgba(10,10,10,.68);
  line-height: 1.65;
  font-size: .96rem;
}

.blog-single-cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.blog-single-cta-trust {
  margin: 0;
  color: rgba(10,10,10,.45);
  font-size: .76rem;
  line-height: 1.45;
  text-align: right;
  max-width: 260px;
}

@media (max-width: 1100px) {
  .blog-single-body--with-sidebar .blog-single-layout {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 24px;
  }
  .blog-linked-products-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured-card { grid-template-columns: 1fr; gap: 28px; }
  .blog-hero-grid { grid-template-columns: 1fr; min-height: auto; }
}

@media (max-width: 900px) {
  .blog-single-body--with-sidebar {
    margin-top: 0;
  }

  .blog-single-body--with-sidebar .blog-single-layout {
    grid-template-columns: 1fr;
  }

  .blog-single-aside {
    position: static;
    order: 2;
  }

  .blog-single-main {
    order: 1;
  }

  .blog-linked-products-aside {
    padding: 18px 16px;
  }
}

@media (max-width: 768px) {
  .blog-single-header { padding-top: 16px; }
  .blog-single-title { font-size: clamp(1.95rem, 7vw, 2.6rem); }
  .blog-single-lead { font-size: 1.05rem; padding-left: 16px; }
  .blog-single-hero-media { margin-bottom: 24px; border-radius: 20px; }
  .blog-single-content-card { padding: 24px 20px; border-radius: 22px; }
  .blog-single-body { padding-bottom: 40px; }
  .blog-linked-products-row { max-width: 100%; }
  .blog-linked-products-compact { padding-bottom: 36px; }
  .blog-single-cta-band { padding-bottom: 64px; }
  .blog-single-cta-inner { flex-direction: column; align-items: stretch; padding: 24px 20px; border-radius: 22px; }
  .blog-single-cta-action { align-items: stretch; }
  .blog-single-cta-trust { text-align: left; max-width: none; }
  .blog-grid { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════════════════════
   LEGAL PAGES
   ══════════════════════════════════════════════════════════════ */
.legal-page {
  background: var(--gray-50);
  padding: 56px 0 96px;
}

.legal-page-shell {
  max-width: 820px;
}

.legal-page-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 56px);
  box-shadow: 0 12px 32px rgba(10,10,10,.04);
}

.legal-page-title {
  margin: 0 0 28px;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.legal-page-content {
  font-size: .98rem;
  line-height: 1.78;
  color: rgba(10,10,10,.86);
}

.legal-page-content > *:first-child { margin-top: 0; }

.legal-page-content h1,
.legal-page-content .legal-content-title {
  display: none;
}

.legal-page-content h2,
.legal-page-content h3 {
  margin: 2rem 0 .85rem;
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--black);
}

.legal-page-content h2:first-child,
.legal-page-content h3:first-child {
  margin-top: 0;
}

.legal-page-content p,
.legal-page-content ul,
.legal-page-content ol {
  margin: 0 0 1rem;
}

.legal-page-content ul,
.legal-page-content ol {
  padding-left: 1.25rem;
}

.legal-page-content li { margin-bottom: .35rem; }

.legal-page-content a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page-content a:hover { color: #8f7800; }

.legal-page-content strong { color: var(--black); }

.legal-page-content hr {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 1.75rem 0;
}

@media (max-width: 768px) {
  .legal-page { padding: 32px 0 64px; }
  .legal-page-card { padding: 24px 20px; border-radius: 20px; }
}

/* ══════════════════════════════════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════════════════════════════════ */
.newsletter-section {
  background: var(--black);
  padding: 72px 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.newsletter-title { color: var(--white); margin-bottom: 8px; }
.newsletter-sub { color: rgba(255,255,255,.5); }
.newsletter-input-wrap { display: flex; gap: 8px; }
.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--r-full);
  color: var(--white);
  font-size: .9375rem;
  transition: border-color var(--dur) var(--ease);
}
.newsletter-input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-input:focus { outline: none; border-color: var(--accent); }
.newsletter-form .btn-cta {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
  padding: 16px 32px;
  min-width: 180px;
}
.newsletter-form .btn-cta:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--black);
}
.newsletter-opt-in {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  cursor: pointer;
  font-size: .85rem;
  line-height: 1.5;
  color: rgba(255,255,255,.75);
}
.newsletter-opt-in input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}
.newsletter-opt-in strong { color: var(--accent); font-weight: 700; }
.newsletter-opt-in.is-joined {
  cursor: default;
  margin-top: 0;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: rgba(56, 161, 105, .15);
  border: 1px solid rgba(110, 231, 183, .35);
}
.newsletter-opt-in.is-joined input { cursor: default; }
.newsletter-opt-in.is-joined .newsletter-opt-in-text { color: #6EE7B7; }
.newsletter-form.is-joined .newsletter-legal-hint { margin-top: 12px; }
.newsletter-status {
  margin-top: 12px;
  font-size: .85rem;
  line-height: 1.5;
  color: rgba(255,255,255,.85);
}
.newsletter-status.is-success { color: #6EE7B7; }
.newsletter-status.is-error { color: #FCA5A5; }


/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  transition: padding-bottom var(--dur-slow) var(--ease-out);
}

@media (min-width: 769px) {
  body.sticky-atc-visible .site-footer {
    padding-bottom: var(--sticky-atc-height, 72px);
  }
}
.footer-top { padding: 80px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-top: 88px;
  padding-bottom: 72px;
}


.footer-logo .logo-text { color: var(--black); }
.footer-tagline { color: var(--gray-600); font-size: .9rem; margin-top: 12px; margin-bottom: 24px; line-height: 1.6; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: var(--r-md);
  background: var(--gray-50);
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur) var(--ease);
}
.footer-social a:hover { background: var(--accent); color: var(--black); border-color: var(--accent); }

.footer-heading {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links li a {
  font-size: .9rem;
  color: var(--gray-600);
  transition: color var(--dur) var(--ease);
}
.footer-links li a:hover { color: var(--black); }

.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding: 24px 0 0;
}

.footer-withdrawal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 12px 20px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.footer-withdrawal-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
  transform: translateY(-1px);
}

.footer-brand .footer-withdrawal-btn {
  margin-top: 24px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { color: var(--gray-600); font-size: .8rem; }
.payment-icons { display: flex; gap: 8px; align-items: center; }
.payment-icons img { height: 22px; filter: grayscale(1); opacity: .65; transition: opacity var(--dur) var(--ease), filter var(--dur) var(--ease); border-radius: 3px; }
.payment-icons img:hover { filter: none; opacity: 1; }

.footer-credit {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  padding: 16px 20px 20px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.footer-credit-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 16px;
  border-radius: var(--r-full);
  border: 1px solid var(--gray-200);
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(10, 10, 10, 0.04);
  transition:
    border-color var(--dur) var(--ease),
    background var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}

.footer-credit-link:hover {
  border-color: rgba(38, 87, 55, 0.55);
  background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  box-shadow: 0 10px 28px rgba(5, 5, 5, 0.14);
  transform: translateY(-1px);
}

.footer-credit-label {
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray-400);
  line-height: 1;
  transition: color var(--dur) var(--ease);
}

.footer-credit-link:hover .footer-credit-label {
  color: rgba(161, 161, 170, 0.92);
}

.footer-credit-link:hover .footer-credit-logo--default {
  display: none;
}

.footer-credit-link:hover .footer-credit-logo--hover {
  display: block;
}

@media (hover: none), (pointer: coarse) {
  .footer-credit-link:hover {
    border-color: var(--gray-200);
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    box-shadow: 0 1px 2px rgba(10, 10, 10, 0.04);
    transform: none;
  }

  .footer-credit-link:hover .footer-credit-label {
    color: var(--gray-400);
  }

  .footer-credit-link:hover .footer-credit-logo--default {
    display: block;
  }

  .footer-credit-link:hover .footer-credit-logo--hover {
    display: none;
  }
}

.footer-credit-logo {
  display: block;
  height: 11px;
  width: auto;
  flex-shrink: 0;
}

.footer-credit-logo--hover {
  display: none;
}

/* Fallback text payment icons */
.payment-pill {
  padding: 4px 10px;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  font-size: .7rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: .02em;
}


/* ══════════════════════════════════════════════════════════════
   PRODUCT PAGE
   ══════════════════════════════════════════════════════════════ */
.product-breadcrumb-bar {
  border-bottom: 1px solid var(--gray-200);
  padding: 14px 0;
}
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: .8125rem; color: var(--gray-400); flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--black); }
.bc-sep { opacity: .4; }

.single-product-section { padding: 60px 0 80px; }

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Gallery */
.product-gallery-col { position: sticky; top: 88px; }
.product-main-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 1;
  margin-bottom: 12px;
  position: relative;
}
.product-main-img { width: 100%; height: 100%; object-fit: contain; }
.product-img-placeholder { width: 100%; height: 100%; }
.product-gallery-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--black);
  color: white;
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: .75rem;
  font-weight: 700;
}
.product-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.product-thumb {
  width: 72px; height: 72px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 2px solid var(--gray-200);
  transition: border-color var(--dur) var(--ease);
  flex-shrink: 0;
  cursor: pointer;
}
.product-thumb.active, .product-thumb:hover { border-color: var(--black); }
.thumb-img { width: 100%; height: 100%; object-fit: cover; }

.gallery-trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.gtb-item {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px;
  background: var(--gray-50);
  border-radius: var(--r-md);
  border: 1px solid var(--gray-200);
  font-size: .8rem; font-weight: 600; color: var(--gray-600);
}

/* Info */
.product-info-col { display: flex; flex-direction: column; gap: 20px; }
.product-info-head,
.product-info-buy { display: flex; flex-direction: column; gap: 20px; }
.product-badges-row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.product-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: var(--r-full);
  font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.badge-ce { background: var(--gray-100); color: var(--gray-600); border: 1px solid var(--gray-200); }
.badge-sale-lg { background: var(--accent); color: var(--black); }
.product-title { font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.1; }
.product-proof-badge {
  margin-top: 12px;
  margin-bottom: 10px;
}
.product-proof-badge .breezi-proof-avatar {
  width: 48px;
  height: 48px;
}
.product-proof-badge .breezi-proof-avatars {
  min-width: 126px;
}
.product-proof-badge .breezi-proof-separator {
  height: 52px;
}
.product-proof-badge .breezi-proof-copy div {
  font-size: .98rem;
}
.product-proof-badge .breezi-proof-copy p {
  font-size: .86rem;
}

.product-rating-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.product-stars { display: flex; gap: 2px; }
.product-rating-link { font-size: .875rem; color: var(--gray-600); border-bottom: 1px solid var(--gray-200); padding-bottom: 1px; }
.product-rating-link:hover { color: var(--black); border-color: var(--black); }

.product-price-block {
  padding: 20px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.price-regular { font-size: 1rem; color: var(--gray-400); text-decoration: line-through; margin-right: 6px; }
.price-current { font-size: 2.25rem; font-weight: 800; color: var(--black); font-family: var(--font-head); letter-spacing: -.03em; }
.price-savings-badge {
  display: inline-flex;
  align-items: center;
  background: #FEF2F2;
  color: var(--danger);
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: .75rem;
  font-weight: 700;
  margin-left: 10px;
  vertical-align: middle;
}
.price-vat { font-size: .8rem; color: var(--gray-400); margin-top: 4px; }
.price-vat a { text-decoration: underline; text-underline-offset: 2px; }

/* Variable Product */
.product-variation-shell {
  margin-bottom: 10px;
}

.product-variation-shell .variations_form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-variation-shell .variation-selects-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.product-variation-shell:has(.variation-card-picker) table.variations {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: 0;
}

.product-variation-shell table.variations {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  margin: 0;
}

.product-variation-shell table.variations tbody,
.product-variation-shell table.variations tr {
  display: block;
}

.product-variation-shell table.variations td,
.product-variation-shell table.variations th {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  text-align: left;
}

.product-variation-shell table.variations th.label {
  margin-bottom: 8px;
}

.product-variation-shell table.variations th.label label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.product-variation-shell table.variations select {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  background: var(--white);
  color: var(--black);
  font-size: .98rem;
  font-weight: 500;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.product-variation-shell table.variations select:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(10,10,10,.06);
}

.variation-card-picker {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.variation-card-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.variation-card-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.variation-card-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.variation-card-options--weight {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.variation-card-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 88px;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 22px;
  background: var(--white);
  color: var(--black);
  text-align: center;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.variation-card-option:hover {
  border-color: var(--black);
}

.variation-card-option.active {
  border-color: var(--accent);
  background: rgba(255,225,32,.18);
  box-shadow: 0 0 0 1px var(--accent);
}

.variation-card-main {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.1;
}

.variation-card-sub {
  display: block;
  color: var(--gray-500);
  font-size: .82rem;
  font-weight: 500;
}

.variation-card-hint {
  margin: 0;
  color: var(--gray-500);
  font-size: .92rem;
  line-height: 1.65;
}

.product-variation-shell .reset_variations {
  display: inline-flex;
  margin-top: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-500);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-variation-shell .single_variation_wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-variation-shell .single_variation {
  padding: 18px 20px;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  background: var(--gray-50);
}

.product-variation-shell .woocommerce-variation-price .price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--black);
  font-family: var(--font-head);
  letter-spacing: -.03em;
}

.product-variation-shell .woocommerce-variation-description {
  margin-top: 6px;
  color: var(--gray-600);
  font-size: .92rem;
  line-height: 1.6;
}

.product-variation-shell .woocommerce-variation-add-to-cart {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.product-variation-shell .quantity input.qty {
  width: 72px;
  height: 58px;
  text-align: center;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  font-size: 1rem;
  font-weight: 600;
}

.product-variation-shell .single_add_to_cart_button {
  flex: 1;
  min-height: 58px;
  border: 1px solid var(--black);
  border-radius: var(--r-lg);
  background: var(--black);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.01em;
}

.product-variation-shell .single_add_to_cart_button:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  box-shadow: 0 10px 28px rgba(0,0,0,.16);
}

/* Bundle Picker */
.bundle-picker { display: flex; flex-direction: column; gap: 8px; }
.bundle-picker-label { font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 4px; }
.bundle-option { cursor: pointer; display: block; }
.bundle-option input { position: absolute; opacity: 0; pointer-events: none; }
.bundle-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  transition: all var(--dur) var(--ease);
  position: relative;
}
.bundle-option:has(input:checked) .bundle-card { border-color: var(--black); background: var(--gray-50); box-shadow: 0 0 0 1px var(--black); }
.bundle-popular .bundle-card { border-color: var(--accent); }
.bundle-option:has(input:checked).bundle-popular .bundle-card { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.bundle-pop-badge {
  position: absolute; top: -10px; left: 16px;
  background: var(--accent); color: white;
  font-size: .7rem; font-weight: 700;
  padding: 2px 10px; border-radius: var(--r-full);
  letter-spacing: .04em;
}
.bundle-qty { font-weight: 600; font-size: .9375rem; color: var(--black); }
.bundle-pieces { font-weight: 400; color: var(--gray-400); font-size: .875rem; }
.bundle-price-info { display: flex; align-items: center; gap: 8px; margin-top: 4px; flex-wrap: wrap; }
.bundle-price { font-weight: 700; font-size: 1.05rem; }
.bundle-per { font-size: .8rem; color: var(--gray-400); }
.bundle-save-chip { background: #FEF2F2; color: var(--danger); padding: 2px 8px; border-radius: var(--r-full); font-size: .72rem; font-weight: 700; }
.bundle-save-green { background: #F0FDF4; color: #16A34A; }

/* ATC Form */
.atc-row { display: flex; gap: 10px; align-items: stretch; }
.qty-wrap input[type=number] {
  width: 72px; height: 58px;
  text-align: center;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  font-size: 1rem; font-weight: 600;
  -moz-appearance: textfield;
  transition: border-color var(--dur) var(--ease);
}
.qty-wrap input[type=number]:focus { outline: none; border-color: var(--black); }
.qty-wrap input[type=number]::-webkit-outer-spin-button,
.qty-wrap input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; }
.btn-atc {
  flex: 1;
  height: 58px;
  border-radius: var(--r-lg);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.01em;
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}
.btn-atc:hover {
  background: var(--accent);
  color: var(--black);
  border-color: var(--black);
  box-shadow: 0 8px 24px rgba(255,225,32,.35);
}

.express-payment-row {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
  flex-wrap: wrap;
}
.ep-label { font-size: .8rem; color: var(--gray-400); }
.ep-icons { display: flex; gap: 6px; }
.ep-icon { padding: 4px 10px; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--r-sm); font-size: .72rem; font-weight: 600; color: var(--gray-600); }

/* Urgency */
.urgency-bar {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.urgency-viewers { display: flex; align-items: center; gap: 8px; font-size: .875rem; }
.urgency-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; flex-shrink: 0; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.urgency-stock { display: flex; align-items: center; gap: 6px; font-size: .875rem; font-weight: 600; color: var(--danger); }
.urgency-dispatch { display: flex; align-items: center; gap: 6px; font-size: .875rem; color: var(--success); font-weight: 500; }

/* Benefits */
.product-benefits { display: flex; flex-direction: column; gap: 10px; }
.product-benefits li { display: flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 500; }
.product-short-description {
  max-width: 640px;
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.65;
  margin: 18px 0 0;
}

/* Gewichtsdecke Sections */
.gd-problem-section,
.gd-feature-section,
.gd-weight-guide,
.gd-how-section,
.gd-material-section {
  padding: 88px 0;
}

.gd-problem-section {
  background: var(--gray-50);
}

.gd-section-intro {
  max-width: 760px;
  margin-bottom: 36px;
}

.gd-section-intro-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.gd-section-lead {
  margin-top: 14px;
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
}

.gd-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gd-problem-card,
.gd-how-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 28px 24px;
}

.gd-problem-num,
.gd-how-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--black);
  font-size: .82rem;
  font-weight: 800;
}

.gd-problem-card h3,
.gd-how-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.gd-problem-card p,
.gd-how-card p,
.gd-feature-item p,
.gd-weight-copy,
.gd-material-copy {
  margin: 0;
  color: var(--gray-600);
  font-size: .96rem;
  line-height: 1.65;
}

.gd-feature-grid,
.gd-material-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 56px;
  align-items: center;
}

.gd-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.gd-feature-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--gray-200);
  border-radius: 28px;
  background: var(--gray-50);
}

.gd-feature-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .8fr);
  gap: 28px;
  background: var(--black);
  color: var(--white);
  border-color: rgba(255,255,255,.08);
}

.gd-feature-card--featured h3,
.gd-feature-card--featured p,
.gd-feature-card--featured .gd-feature-detail {
  color: var(--white);
}

.gd-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--accent);
  color: var(--black);
  font-size: .95rem;
  font-weight: 800;
}

.gd-feature-card h3 {
  margin: 0;
  font-size: 1.12rem;
}

.gd-feature-card p {
  margin: 0;
  color: var(--gray-600);
  font-size: .96rem;
  line-height: 1.65;
}

.gd-feature-detail {
  margin-top: auto;
  color: var(--gray-500);
  font-size: .82rem;
  font-weight: 700;
}

.gd-layer-visual {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: stretch;
}

.gd-layer-visual span {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.84);
  font-size: .82rem;
  font-weight: 600;
}

.gd-feature-image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 32px;
  background: var(--gray-100);
}

.gd-feature-image,
.gd-feature-image--placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gd-feature-image--placeholder {
  background: linear-gradient(145deg, #edf1f5, #dce3ea);
}

.gd-feature-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: var(--r-full);
  background: var(--black);
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
}

.gd-feature-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.gd-feature-stat {
  padding: 18px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  background: var(--gray-50);
  text-align: center;
}

.gd-feature-stat-num {
  display: block;
  color: var(--black);
  font-size: 1.1rem;
  font-weight: 800;
}

.gd-feature-stat-label {
  display: block;
  margin-top: 4px;
  color: var(--gray-500);
  font-size: .76rem;
  font-weight: 600;
}

.gd-weight-guide {
  background: var(--accent);
}

.gd-weight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.gd-weight-card {
  padding: 30px 28px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 28px;
  background: rgba(255,255,255,.6);
}

.gd-weight-card--highlight {
  background: var(--white);
}

.gd-weight-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: var(--r-full);
  background: var(--black);
  color: var(--accent);
  font-size: .72rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.gd-weight-chip--soft {
  background: rgba(0,0,0,.08);
  color: var(--black);
}

.gd-weight-card h3 {
  margin-bottom: 8px;
  color: var(--black);
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
}

.gd-weight-size {
  margin: 0 0 12px;
  color: rgba(0,0,0,.64);
  font-size: .88rem;
  font-weight: 700;
}

.gd-weight-note {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.5);
  color: rgba(0,0,0,.72);
}

.gd-how-section {
  background: var(--white);
}

.gd-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gd-material-section {
  background: var(--gray-50);
}

.gd-material-card {
  padding: 34px;
  border: 1px solid var(--gray-200);
  border-radius: 28px;
  background: var(--white);
}

.gd-material-card--soft {
  background: #fffdf3;
}

.gd-material-title {
  margin: 12px 0 18px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.gd-material-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gd-material-list li {
  position: relative;
  padding-left: 22px;
  color: var(--gray-600);
}

.gd-material-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-dark);
}

.gd-material-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.gd-material-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--r-full);
  background: rgba(255,225,32,.34);
  color: var(--black);
  font-size: .82rem;
  font-weight: 700;
}

/* Sticky ATC */
.sticky-atc-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--accent);
  border-top: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 -8px 32px rgba(0,0,0,.14);
  z-index: 80;
  transform: translateY(100%);
  transition: transform var(--dur-slow) var(--ease-out);
}
.sticky-atc-bar.visible { transform: translateY(0); }
.sticky-atc-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px; gap: 20px;
}
.sticky-atc-info { display: flex; align-items: center; gap: 16px; }
.sticky-atc-name { font-weight: 700; font-size: .9375rem; }
.sticky-atc-price { font-weight: 800; font-size: 1.1rem; }
.sticky-atc-actions { display: flex; align-items: center; gap: 20px; }
.sticky-trust { display: flex; gap: 16px; }
.sticky-trust span { font-size: .8rem; color: rgba(0,0,0,.62); }
.sticky-atc-bar .btn {
  background: var(--black);
  color: var(--white);
}

/* Nasal Use Cases */
.nasal-usecases-section {
  padding: 80px 0;
  background: var(--white);
}
.nasal-usecases-layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 36px;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}
.nasal-usecases-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 100%;
}
.nasal-usecases-intro {
  flex: 0 0 auto;
}
.nasal-usecases-lead {
  margin: 16px 0 0;
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
}
.nasal-usecases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: start;
}
.nasal-usecases-visual {
  flex: 1 1 auto;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  padding: 18px;
}
.nasal-usecases-img,
.nasal-usecases-placeholder {
  width: 100%;
  height: 100%;
  max-height: 100%;
  display: block;
  border-radius: 0;
  background: var(--gray-100);
}
.nasal-usecases-img {
  object-fit: contain;
  background: var(--white);
}
.nasal-usecase-card {
  padding: 22px 22px 20px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 8px 24px rgba(10,10,10,.04);
}
.nasal-usecase-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}
.nasal-usecase-card p {
  margin: 0;
  color: var(--gray-600);
  font-size: .96rem;
  line-height: 1.65;
}
.nasal-usecase-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--gray-100);
  color: var(--black);
  flex-shrink: 0;
  margin-bottom: 18px;
}

/* Product Detail Accordion */
.product-info-accordion-section {
  padding: 32px 0 72px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}
.product-info-accordion-grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 48px;
  align-items: start;
}
.product-info-accordion-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}
.product-info-accordion-copy p {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 0;
}
.product-info-square-media {
  width: min(100%, 320px);
  aspect-ratio: 1;
  margin: 22px 0 20px;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}
.product-info-square-img,
.product-info-square-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-info-square-placeholder {
  background: linear-gradient(145deg, var(--gray-100), var(--gray-300));
}
.product-info-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-info-accordion {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.product-info-accordion[open] {
  border-color: var(--black);
  box-shadow: var(--sh-sm);
}
.product-info-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  color: var(--black);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}
.product-info-accordion summary::-webkit-details-marker { display: none; }
.product-info-accordion summary svg {
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}
.product-info-accordion[open] summary svg { transform: rotate(180deg); }
.product-info-accordion-body {
  padding: 0 24px 24px;
  border-top: 1px solid var(--gray-100);
}
.product-info-accordion-body p {
  margin: 16px 0 0;
  color: var(--gray-600);
  line-height: 1.75;
}
.product-info-accordion-body ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin-top: 18px;
}
.product-info-accordion-body li {
  display: flex;
  gap: 8px;
  color: var(--gray-600);
  font-size: .9rem;
}
.product-info-accordion-body li::before {
  content: "✓";
  color: var(--black);
  font-weight: 900;
}
.product-info-accordion-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: var(--gray-50);
  color: var(--gray-600);
  font-size: .875rem;
}

/* Product FAQ Section */
.product-faq-section {
  padding: 88px 0;
  background: var(--white);
}
.product-faq-header {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}
.product-faq-header h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  margin: 10px 0 18px;
}
.product-faq-header p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--gray-600);
  font-size: 1rem;
}
.product-faq-list {
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-faq-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.product-faq-item[open] {
  background: var(--white);
  border-color: var(--gray-300);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}
.product-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  color: var(--black);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}
.product-faq-item summary::-webkit-details-marker { display: none; }
.product-faq-item summary svg {
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}
.product-faq-item[open] summary svg { transform: rotate(180deg); }
.product-faq-item p {
  padding: 0 26px 24px;
  border-top: 1px solid var(--gray-100);
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
  padding-top: 16px;
}

/* Tabs */
.product-tabs-section { border-top: 1px solid var(--gray-200); padding-bottom: 80px; }
.tabs-nav { display: flex; border-bottom: 1.5px solid var(--gray-200); overflow-x: auto; scrollbar-width: none; }
.tabs-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 18px 24px;
  font-size: .9375rem; font-weight: 600;
  color: var(--gray-400);
  border-bottom: 2px solid transparent;
  margin-bottom: -1.5px;
  white-space: nowrap;
  transition: all var(--dur) var(--ease);
}
.tab-btn.active, .tab-btn:hover { color: var(--black); border-bottom-color: var(--black); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-body { padding: 48px 0; max-width: 760px; }
.tab-body h3 { margin-bottom: 20px; }
.tab-body p { margin-bottom: 16px; }
.tab-body ul { list-style: disc; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.tab-body ul li { color: var(--gray-600); }

.description-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 40px; }
.desc-cert-box { background: var(--gray-50); border-radius: var(--r-lg); padding: 24px; border: 1px solid var(--gray-200); }
.desc-cert-box h4 { margin-bottom: 16px; }
.cert-item { display: flex; align-items: center; gap: 10px; font-size: .875rem; font-weight: 500; padding: 8px 0; border-bottom: 1px solid var(--gray-200); }
.cert-item:last-child { border: none; }

.usage-steps { display: flex; flex-direction: column; gap: 24px; margin-bottom: 24px; }
.usage-step { display: flex; gap: 20px; align-items: flex-start; }
.us-num { width: 36px; height: 36px; background: var(--black); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .875rem; flex-shrink: 0; }
.us-content h4 { margin-bottom: 4px; }
.us-content p { font-size: .9rem; margin: 0; }
.usage-hint { display: flex; gap: 12px; background: #FFFBEB; border: 1px solid #FDE68A; border-radius: var(--r-md); padding: 16px; }
.usage-hint p { font-size: .875rem; margin: 0; color: #92400E; }

.faq-list { }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-weight: 600; font-size: .9375rem; cursor: pointer; list-style: none; color: var(--black); }
.faq-question::-webkit-details-marker { display: none; }
.faq-icon { transition: transform var(--dur) var(--ease); flex-shrink: 0; color: var(--gray-400); }
details[open] .faq-icon { transform: rotate(180deg); }
.faq-answer { padding: 0 0 20px; color: var(--gray-600); font-size: .9375rem; line-height: 1.7; }

.reviews-summary { display: flex; gap: 40px; align-items: center; padding: 32px; background: var(--gray-50); border-radius: var(--r-xl); margin-bottom: 40px; border: 1px solid var(--gray-200); }
.rs-score { text-align: center; flex-shrink: 0; }
.rs-number { font-family: var(--font-head); font-size: 3.5rem; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.rs-stars { display: flex; justify-content: center; gap: 2px; margin-bottom: 4px; }
.rs-count { font-size: .8rem; color: var(--gray-400); }
.rs-bars { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.rs-bar-row { display: flex; align-items: center; gap: 10px; }
.rs-bar-label { font-size: .8rem; font-weight: 600; width: 28px; text-align: right; flex-shrink: 0; }
.rs-bar-track { flex: 1; height: 6px; background: var(--gray-200); border-radius: 3px; overflow: hidden; }
.rs-bar-fill { height: 100%; background: var(--gold); border-radius: 3px; }
.rs-bar-pct { font-size: .8rem; color: var(--gray-400); width: 32px; }

/* Upsell */
.upsell-section { padding: 60px 0; background: var(--gray-50); }
.upsell-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.upsell-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--r-xl); overflow: hidden; transition: all var(--dur) var(--ease); }
.upsell-card:hover { border-color: var(--black); box-shadow: var(--sh-md); }
.upsell-img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.upsell-body { padding: 20px; }
.upsell-title { font-size: .9375rem; margin-bottom: 8px; }
.upsell-price { font-weight: 700; margin-bottom: 14px; }


/* ══════════════════════════════════════════════════════════════
   SHOP PAGE
   ══════════════════════════════════════════════════════════════ */
.shop-page-modern { padding: 0 0 72px; }
.woo-main.shop-page { padding-top: 0; padding-bottom: 0; }
.shop-page-inner { padding-top: 0; }

/* Hero layout */

/* 2-column grid */
.shop-hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(0, 520px);
  gap: 80px;
  align-items: start;
  min-height: 0;
  padding-bottom: 0;
}

/* Left copy */
.shop-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-self: start;
}

.shop-page-hero .breadcrumb {
  display: none;
}

.shop-page-hero-title {
  /* typography: unified hero heading rule */
}

.shop-page-hero-sub {
  max-width: 480px;
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
  opacity: 1;
}

.shop-page-hero .shop-hero-stats {
  margin-top: 28px;
}

/* Stat row */
.shop-hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
}
.shop-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.shop-hero-stat-num {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -.02em;
}
.shop-hero-stat-label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--black);
  opacity: .5;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.shop-hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* Right image card */
.shop-hero-visual {
  position: relative;
}

.shop-hero-img-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 420px;
  background: #EAF0F6;
  box-shadow: 0 24px 60px rgba(10,10,10,.1);
}

.shop-hero-img-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,.35) 0%,
    transparent 28%
  );
  pointer-events: none;
}

.shop-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.shop-hero-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  color: var(--black);
  font-size: .8rem;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}

.shop-hero-pills { display: none; }

/* Toolbar: swatches directly above products */
.shop-products-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding-top: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}
.shop-category-swatches {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
  padding: 2px 0;
}
.shop-category-swatches::-webkit-scrollbar { display: none; }
.shop-category-swatch {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--black);
  font-size: .875rem;
  font-weight: 600;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}
.shop-category-swatch:hover {
  border-color: var(--black);
  background: var(--gray-50, #fafafa);
}
.shop-category-swatch.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.shop-category-orb { display: none; }
.shop-category-label { font-size: inherit; line-height: 1; }
.shop-toolbar-meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.shop-result-count {
  font-size: .82rem;
  font-weight: 700;
  color: var(--black);
  opacity: .65;
  white-space: nowrap;
}
.shop-sort select {
  padding: 10px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-full);
  font-size: .875rem;
  background: var(--white);
  outline: none;
  min-width: 180px;
}

.shop-promo-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--r-lg);
  background: #fff7cc;
  border: 1px solid rgba(255,225,32,.45);
  color: var(--black);
  margin-bottom: 28px;
}
.shop-promo-bar svg { color: var(--black); opacity: .45; flex-shrink: 0; }
.shop-promo-bar span { font-size: .95rem; color: var(--black); }

/* Product grid – individual cards */
.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.shop-modern-product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.shop-modern-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(10,10,10,.08);
  border-color: rgba(10,10,10,.18);
}
.shop-modern-product-image {
  min-height: clamp(260px, 28vw, 340px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  overflow: hidden;
}
.shop-modern-img,
.shop-modern-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(28px, 4vw, 48px);
}
.shop-modern-img-placeholder {
  max-width: 180px;
  max-height: 180px;
  height: 180px;
  padding: 0;
  border: 2px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.42);
  border-radius: 18px;
}
.shop-modern-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: var(--r-full);
  background: var(--accent);
  color: var(--black);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.shop-modern-badge.badge-dark { background: var(--black); color: var(--white); }
.shop-modern-product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.5vw, 30px);
  background: var(--white);
}
.shop-modern-category {
  color: var(--black);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: .55;
}
.shop-modern-title {
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  line-height: 1.15;
  margin-bottom: 10px;
}
.shop-modern-title a { color: var(--black); }
.shop-modern-desc {
  color: var(--black);
  font-size: .92rem;
  line-height: 1.55;
  margin: 0 0 18px;
  opacity: .72;
}
.shop-modern-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.shop-modern-price {
  color: var(--black);
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  font-weight: 900;
}
.shop-modern-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.shop-modern-cart-button {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-full);
  background: var(--accent);
  color: var(--black);
  border: 1.5px solid rgba(0,0,0,.1);
}
.shop-modern-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: var(--r-full);
  background: var(--black);
  color: var(--white);
  font-size: .86rem;
  font-weight: 800;
  white-space: nowrap;
}
.shop-page .woocommerce-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* Stack guide */
.shop-stack-section {
  padding: 88px 0;
  background: var(--gray-50, #fafafa);
  border-top: 1px solid var(--gray-200);
}
.shop-stack-sub { margin: 0 auto; max-width: 620px; color: var(--black); opacity: .75; }
.shop-stack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.shop-stack-card {
  padding: 28px;
  border-radius: var(--r-xl);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
}
.shop-stack-card--nasal { background: #fffbe6; }
.shop-stack-card--blanket { background: #eef4f8; }
.shop-stack-card--melatonin { background: #f3f4f7; }
.shop-stack-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,255,255,.75);
  margin-bottom: 16px;
}
.shop-stack-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.shop-stack-card p { color: var(--black); opacity: .72; line-height: 1.6; margin-bottom: 16px; font-size: .94rem; }
.shop-stack-link { font-weight: 800; font-size: .88rem; color: var(--black); border-bottom: 2px solid var(--accent); padding-bottom: 2px; }

.shop-how-section { margin-top: 0; }
.shop-guarantee-band {
  padding: 56px 0;
  background: var(--black);
  color: var(--white);
}
.shop-guarantee-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.shop-guarantee-copy h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 10px 0 12px;
  line-height: 1.1;
}
.shop-guarantee-copy p { color: var(--white); opacity: .78; max-width: 520px; margin: 0; line-height: 1.6; }
.shop-guarantee-cta { flex-shrink: 0; white-space: nowrap; }

.shop-trust-strip { background: var(--white); border-top: 1.5px solid var(--gray-200); padding: 48px 0; }
.shop-trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.sts-item { display: flex; align-items: center; gap: 16px; }
.sts-item strong { display: block; font-size: .9rem; color: var(--black); }
.sts-item span { font-size: .8rem; color: var(--black); opacity: .65; }

/* ══════════════════════════════════════════════════════════════
   WOOCOMMERCE BASE
   ══════════════════════════════════════════════════════════════ */
.woo-main { padding: 60px 0; }
.woocommerce-notices-wrapper { margin-bottom: 24px; }
.woocommerce-message { background: #F0FDF4; border-left: 3px solid var(--success); border-radius: var(--r-md); padding: 14px 20px; }
.woocommerce-error { background: #FEF2F2; border-left: 3px solid var(--danger); border-radius: var(--r-md); padding: 14px 20px; list-style: none; }
.quantity .input-text { width: 72px !important; }


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .products-grid-track { flex-wrap: nowrap; }
  .brand-positioning-inner { grid-template-columns: 1fr; gap: 28px; }
  .brand-positioning-copy { margin-top: 32px; }
  .brand-positioning-side { gap: 22px; }
  .breezi-proof-badge { max-width: 100%; }
  .community-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .usp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nasal-usecases-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }
  .nasal-usecases-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 0;
  }
  .nasal-usecases-grid { grid-template-columns: 1fr; }
  .nasal-usecases-visual {
    flex: none;
    min-height: 0;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
  }
  .nasal-usecases-img,
  .nasal-usecases-placeholder {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 1;
    object-fit: contain;
    background: transparent;
    border-radius: var(--r-lg);
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 16px;
    padding-top: 56px;
    padding-bottom: 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 12px;
  }
  .footer-brand .footer-withdrawal-btn {
    margin-top: 12px;
    margin-bottom: 12px;
    width: auto;
    max-width: 100%;
  }
  .footer-col-info .footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-heading { margin-bottom: 14px; font-size: .65rem; }
  .footer-links { gap: 8px; }
  .footer-links li a { font-size: .79rem; line-height: 1.35; }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }
  .payment-icons { flex-wrap: wrap; gap: 6px; justify-content: center; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 40px; }
  .product-info-accordion-grid { grid-template-columns: 1fr; gap: 28px; }
  .shop-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-stack-grid { grid-template-columns: 1fr; }
  .shop-products-toolbar { flex-direction: column; align-items: stretch; }
  .shop-toolbar-meta { flex-direction: row; align-items: center; justify-content: space-between; width: 100%; }
  .shop-guarantee-inner { flex-direction: column; align-items: flex-start; }
  .how-section,
  .stats-section,
  .benefit-section,
  .section-gray,
  .newsletter-section,
  .upsell-section,
  .shop-trust-strip,
  .media-slider-section,
  .gd-problem-section,
  .gd-feature-section,
  .lp-howto,
  .lp-trust,
  .lp-founder,
  .gd-weight-guide,
  .gd-how-section,
  .gd-material-section,
  .ml-feature-split,
  .ml-ingredients,
  .ml-founder { width: calc(100% - 40px) !important; }
  .hero-section { width: calc(100% - 40px); min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-inner { min-height: auto; }
  .hero-visual { min-height: 400px; }
  .hero-trust-bar { grid-template-columns: repeat(2, 1fr); }
  .benefit-inner { grid-template-columns: 1fr; gap: 48px; }
  .benefit-img-wrap { max-height: 400px; }
  .gd-problem-grid,
  .gd-how-grid,
  .gd-weight-grid,
  .gd-feature-grid,
  .gd-material-grid,
  .gd-feature-stats { grid-template-columns: 1fr; }
  .gd-feature-card--featured { grid-column: auto; grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .how-section,
  .stats-section,
  .benefit-section,
  .section-gray,
  .newsletter-section,
  .upsell-section,
  .shop-trust-strip,
  .media-slider-section,
  .gd-problem-section,
  .gd-feature-section,
  .lp-howto,
  .lp-trust,
  .lp-founder,
  .gd-weight-guide,
  .gd-how-section,
  .gd-material-section,
  .ml-feature-split,
  .ml-ingredients,
  .ml-founder {
    width: calc(100% - 24px) !important;
    margin: 12px auto !important;
    border-radius: var(--r-lg) !important;
  }
  .hero-section { width: calc(100% - 24px); margin-top: 12px; border-radius: var(--r-lg); }
  .hero-content { padding: 60px 20px; }
  .breezi-proof-badge { flex-wrap: wrap; align-items: flex-start; gap: 12px; width: 100%; max-width: 100%; }
  .breezi-proof-separator { display: none; }
  .breezi-proof-avatars { min-width: unset; }
  .breezi-proof-avatar { width: 36px; height: 36px; margin-left: -10px; }
  .breezi-proof-copy { flex: 1; min-width: 0; }
  .breezi-proof-copy div { font-size: .8rem; flex-wrap: wrap; }
  .breezi-proof-copy p { font-size: .75rem; }
  .breezi-proof-separator { display: none; }
  .breezi-proof-copy div { font-size: .95rem; }
  .breezi-proof-copy p { font-size: .84rem; }
  /* Proof badge mobil: Avatare oben, Text darunter – zentriert */
  .product-proof-badge,
  .home-hero-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  .product-proof-badge .breezi-proof-avatars,
  .home-hero-proof .breezi-proof-avatars {
    min-width: unset;
    justify-content: center;
  }
  .product-proof-badge .breezi-proof-copy,
  .home-hero-proof .breezi-proof-copy {
    flex: none;
    width: 100%;
    text-align: center;
    max-width: none;
  }
  .product-proof-badge .breezi-proof-copy div,
  .home-hero-proof .breezi-proof-copy div {
    justify-content: center;
  }
  .hero-trust-bar { grid-template-columns: 1fr 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .nasal-usecases-section { padding: 48px 0; }
  .nasal-usecases-layout { gap: 16px; }
  .nasal-usecases-left { gap: 12px; min-height: 0; }
  .nasal-usecases-lead { margin-bottom: 0; }
  .nasal-usecases-grid { gap: 12px; margin-top: 0; }
  .nasal-usecase-card { padding: 18px; }
  .community-card { min-height: 300px; }
  .usp-grid { grid-template-columns: 1fr; }
  .community-rating { flex-direction: column; text-align: center; }
  .products-grid-track { flex-wrap: nowrap; }
  .product-card { flex: 0 0 85%; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 10px;
    row-gap: 14px;
    padding-top: 48px;
    padding-bottom: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 14px;
    margin-bottom: 2px;
  }
  .footer-social {
    margin-top: 2px;
  }
  .footer-brand .footer-withdrawal-btn {
    display: inline-flex;
    width: auto;
    max-width: 100%;
    margin-top: 12px;
    margin-bottom: 14px;
    padding: 11px 18px;
    font-size: .74rem;
    white-space: nowrap;
    line-height: 1.35;
  }
  .footer-col-info .footer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .footer-col-info .footer-links li a {
    display: block;
    line-height: 1.35;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: manual;
  }
  .footer-heading { margin-bottom: 12px; font-size: .65rem; }
  .footer-links { gap: 8px; }
  .footer-links li a { font-size: .78rem; line-height: 1.35; }
  .site-footer {
    padding-bottom: 0;
  }
  .footer-bottom {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }
  .footer-credit {
    margin-top: 24px;
    padding: 16px 16px 18px;
  }

  .footer-credit-link {
    padding: 7px 14px 7px 12px;
    gap: 8px;
  }

  .footer-credit-logo {
    height: 12px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }
  .payment-icons { flex-wrap: wrap; gap: 6px; justify-content: center; }
  .product-grid { grid-template-columns: 1fr; gap: 24px; min-width: 0; }
  /* Mobil: Titel/Badges/Proof/Beschreibung ÜBER dem Bild, Kauf-Block darunter */
  .product-info-col { display: contents; }
  .product-info-head { order: 1; min-width: 0; max-width: 100%; }
  .product-gallery-col { position: static; order: 2; min-width: 0; max-width: 100%; overflow: hidden; }
  .product-info-buy { order: 3; min-width: 0; max-width: 100%; }
  .product-thumbs { max-width: 100%; }
  .product-info-accordion-section { padding: 28px 0 48px; }
  .product-faq-section { padding: 0 0 48px; }
  .product-info-square-media {
    width: min(100%, 260px);
    margin-left: auto;
    margin-right: auto;
  }
  .product-info-accordion-body ul { grid-template-columns: 1fr; }
  .description-grid { grid-template-columns: 1fr; }
  .upsell-grid { grid-template-columns: 1fr 1fr; }
  .gd-problem-card,
  .gd-how-card,
  .gd-weight-card,
  .gd-material-card { padding: 24px 20px; border-radius: 22px; }
  .gd-problem-section,
  .gd-feature-section,
  .gd-weight-guide,
  .gd-how-section,
  .gd-material-section { padding: 64px 0; }
  .gd-feature-image-frame { border-radius: 24px; }
  .gd-feature-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: center;
    text-align: center;
  }
  .product-variation-shell .woocommerce-variation-add-to-cart { flex-direction: column; }
  .product-variation-shell .quantity input.qty { width: 100%; }
  .shop-trust-inner { grid-template-columns: 1fr 1fr; }
  .primary-nav { display: none; }
  .header-home-link,
  .header-account { display: none; }
  .mobile-menu-toggle { display: flex; }
  .header-cta { display: none; }
  .site-header .header-inner {
    padding-right: 10px;
    gap: 12px;
  }
  .header-actions {
    margin-left: auto;
    margin-right: 0;
    gap: 4px;
  }
  /* Sticky ATC-Bar auf Mobile komplett aus – normaler Warenkorb-Button reicht */
  .sticky-atc-bar { display: none !important; }
  .hero-visual { display: none; }
  .shop-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 0;
  }
  .home-page-hero .home-community-rail .hero-video-card {
    flex: 0 0 68%;
  }
  .shop-hero-visual { display: none; }
  .shop-page-hero-title {
    font-size: clamp(1.9rem, 5vw, 2.8rem);
  }
  .shop-hero-stats {
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .site-header .header-inner {
    padding-right: 6px;
    padding-left: 12px;
  }
  .header-actions { margin-right: 0; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .hero-content { padding: 48px 16px 40px; }
  .hero-trust-bar { grid-template-columns: 1fr; }
  .site-footer > .container,
  .site-footer .footer-bottom .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .footer-grid {
    gap: 24px;
    padding-top: 44px;
    padding-bottom: 28px;
  }
  .footer-tagline { margin-bottom: 18px; font-size: .85rem; }
  .footer-heading { margin-bottom: 10px; font-size: .62rem; letter-spacing: .08em; }
  .footer-links { gap: 6px; }
  .footer-links li a { font-size: .74rem; }
  .footer-brand .footer-withdrawal-btn {
    margin-top: 10px;
    margin-bottom: 12px;
    padding: 10px 16px;
    font-size: .7rem;
  }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .shop-products-grid { grid-template-columns: 1fr; }
  .shop-modern-product-card,
  .shop-modern-product-card:nth-child(2n),
  .shop-modern-product-card:nth-child(3n) { border-right: 0; }
  .shop-modern-product-card:nth-child(n+2) { border-top: 1.5px solid var(--gray-200); }
  .shop-category-swatches { justify-content: flex-start; padding-bottom: 40px; }
  .shop-category-orb { width: 82px; height: 82px; }
  .shop-category-orb svg { width: 26px; height: 26px; }
  .shop-modern-product-image { min-height: 300px; }
  .shop-modern-product-body { padding: 28px 24px; }
  .shop-modern-footer { align-items: flex-start; flex-direction: column; }
  .shop-modern-actions { width: 100%; }
  .shop-modern-button { flex: 1; }
  .upsell-grid { grid-template-columns: 1fr; }
  .atc-row { flex-direction: column; }
  .qty-wrap input[type=number] { width: 100%; }
  .reviews-summary { flex-direction: column; }
  .shop-trust-inner { grid-template-columns: 1fr; }
}

/* ── ANIMATIONS ───────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  [data-aos] { opacity: 0; transform: translateY(20px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
  [data-aos].aos-animate { opacity: 1; transform: none; }
}

.benefit-section,
.benefit-section + .section-gray {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  background: var(--white) !important;
}

/* Community media from breezi.me */
.hero-video-ph { overflow: hidden; }
.hero-video-ph .breezi-community-video,
.hero-video-ph .breezi-community-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-ph .hero-video-play {
  position: absolute;
  z-index: 2;
}

/* ── Real product/lifestyle images ──────────────────────── */
.brand-editorial-card {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: 32px;
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: 0 28px 70px rgba(0,0,0,.14);
}
.brand-editorial-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 28%;
}
.brand-editorial-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.58) 100%);
  pointer-events: none;
}
.brand-editorial-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--black);
  font-size: .78rem;
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
}
.brand-editorial-badge span {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--black);
}
.brand-editorial-product {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
}
.brand-editorial-product img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border-radius: 16px;
  background: var(--white);
}
.brand-editorial-product span {
  display: block;
  margin-bottom: 4px;
  color: rgba(0,0,0,.48);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.brand-editorial-product strong {
  display: block;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.25;
}
@media (max-width: 640px) {
  .brand-editorial-card { aspect-ratio: 4 / 3; }
  .brand-editorial-product {
    grid-template-columns: 68px 1fr;
    left: 14px;
    right: 14px;
    bottom: 14px;
    gap: 12px;
    padding: 12px;
  }
  .brand-editorial-product img { width: 68px; height: 68px; }
  .brand-editorial-product strong { font-size: .9rem; }
  .brand-editorial-badge { top: 14px; left: 14px; }
}
.photo-strip-item {
  overflow: hidden;
  border-radius: var(--r-md);
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.photo-strip-item:hover img { transform: scale(1.04); }


/* ══════════════════════════════════════════════════════════════
   SUBPAGE HEROES – unified left column (Kontakt reference)
   ══════════════════════════════════════════════════════════════ */
.contact-hero,
.about-hero-card,
.faq-page-hero,
.home-page-hero,
.blog-page-hero,
.shop-page-hero {
  background: var(--white);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--gray-200);
}

.contact-hero-inner,
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(0, 520px);
  gap: 80px;
  align-items: start;
}

.contact-hero-text,
.about-hero-content {
  display: flex;
  flex-direction: column;
  align-self: start;
  padding: 0;
  justify-content: flex-start;
}

.contact-eyebrow,
.about-hero-eyebrow,
.blog-page-hero .subpage-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .45);
  margin-bottom: 24px;
}

.contact-eyebrow-dot,
.about-hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-hl,
.about-hero-hl,
.hero-headline,
.blog-page-hero-title,
.shop-page-hero-title,
.faq-page-title {
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.02em;
  margin: 0 0 24px;
  color: var(--black);
}

.contact-hl,
.about-hero-hl {
  /* typography: see unified hero heading rule above */
}

.contact-hl em,
.about-hero-hl em,
.hero-headline em,
.blog-page-hero-title em,
.shop-page-hero-title em,
.faq-page-title em {
  color: var(--accent);
  font-style: normal;
}

.contact-sub,
.about-hero-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 480px;
  margin: 0;
}

.about-hero-card {
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
  border-radius: 0;
  display: block;
  overflow: visible;
}

.about-hero-grid {
  width: 100%;
  grid-template-columns: 1fr minmax(0, 520px);
}

.about-hero-hl {
  margin: 0 0 24px;
}

.about-hero-sub {
  margin-bottom: 24px;
}

.about-hero-visual {
  display: block;
  padding: 0;
  align-self: start;
}

.about-hero-img-wrap {
  height: 420px;
  aspect-ratio: auto;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(10, 10, 10, .1);
}

.about-hero-manifesto {
  margin-top: 0;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.faq-page-hero .section-label,
.faq-page-hero .subpage-hero-eyebrow {
  margin-bottom: 24px;
}

.faq-page-title {
  max-width: 640px;
}

.faq-page-sub {
  max-width: 480px;
  margin: 0;
}

.blog-hero-visual,
.shop-hero-visual,
.home-community-panel,
.contact-info-cards {
  align-self: start;
}

.subpage-hero--single .subpage-hero-copy {
  max-width: 720px;
}

@media (max-width: 1024px) {
  .contact-hero-inner,
  .blog-hero-grid,
  .shop-hero-grid,
  .home-page-hero .home-hero-inner,
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-hero,
  .about-hero-card,
  .faq-page-hero,
  .blog-page-hero,
  .shop-page-hero {
    padding: 56px 0 48px;
  }

  .blog-filter-bar {
    padding-top: 28px;
    padding-bottom: 24px;
  }

  .home-page-hero.contact-hero {
    padding-top: 88px;
    padding-bottom: 80px;
  }
}

/* Homepage product showcase */
.hp-product-section {
  padding-top: 88px;
  padding-bottom: 88px;
}

.hp-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px 72px;
  align-items: center;
}

.hp-product-visual {
  display: block;
  text-decoration: none;
  line-height: 0;
  border-radius: 20px;
  overflow: hidden;
  transition: opacity .25s var(--ease);
}

.hp-product-visual:hover {
  opacity: .94;
}

.hp-product-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.hp-product-img--placeholder {
  width: min(100%, 320px);
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  background: rgba(255, 255, 255, .45);
}

.hp-product-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hp-product-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--black);
}

.hp-product-lead {
  margin: 0 0 12px;
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--gray-600);
}

.hp-product-desc {
  margin: 0;
  max-width: 520px;
  font-size: .9375rem;
  line-height: 1.65;
  color: rgba(0, 0, 0, .58);
}

.hp-product-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 520px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hp-product-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  font-size: .72rem;
  line-height: 1.35;
  color: rgba(0, 0, 0, .52);
}

.hp-product-features svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: rgba(0, 0, 0, .55);
}

.hp-product-features strong {
  display: block;
  font-size: .78rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 2px;
}

.hp-product-buy {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 20px;
  margin-top: 32px;
}

.hp-product-price {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--black);
  line-height: 1;
}

.hp-product-price .woocommerce-Price-amount {
  font-weight: 900;
}

.hp-product-price del {
  opacity: .45;
  font-size: .85em;
  margin-right: 6px;
}

/* Abo-Zusatz (All Products for Subscriptions) in eigene, kleinere Zeile */
.hp-product-price .wcsatt-sub-options,
.closing-pitch-price .wcsatt-sub-options {
  display: inline;
  font-size: .6em;
  font-weight: 600;
  color: var(--muted, #64748b);
  letter-spacing: 0;
}
.hp-product-price .wcsatt-sub-options::before,
.closing-pitch-price .wcsatt-sub-options::before {
  content: "\A";
  white-space: pre;
}
.hp-product-price .wcsatt-dash,
.closing-pitch-price .wcsatt-dash {
  display: none;
}
.hp-product-price .wcsatt-sub-discount,
.closing-pitch-price .wcsatt-sub-discount {
  font-size: .6em;
  font-weight: 700;
  color: var(--muted, #64748b);
  letter-spacing: 0;
}

.hp-product-meta {
  margin: 16px 0 0;
  font-size: .78rem;
  color: rgba(0, 0, 0, .42);
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .hp-product-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hp-product-visual {
    border-radius: 16px;
  }

  .hp-product-img {
    border-radius: 16px;
  }

  .hp-product-features {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .hp-product-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hp-product-buy {
    flex-direction: column;
    align-items: stretch;
  }

  .hp-product-buy .btn {
    width: 100%;
    justify-content: center;
  }
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
}


/* Homepage hero — extra vertical breathing room */
.home-page-hero.contact-hero {
  padding-top: clamp(104px, 11vw, 148px);
  padding-bottom: clamp(96px, 10vw, 136px);
}

/* Homepage hero — Kontakt/Shop layout + open community stories */
@media (min-width: 1025px) {
  .home-page-hero .home-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
    align-items: center;
  }
}

.home-community-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: start;
  width: 100%;
}

.home-hero-proof {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.home-hero-proof .breezi-proof-avatar {
  width: 44px;
  height: 44px;
}

.home-hero-proof .breezi-proof-separator {
  height: 44px;
}

.home-hero-proof .breezi-proof-copy div {
  font-size: .9rem;
}

.home-hero-proof .breezi-proof-copy p {
  font-size: .8125rem;
  max-width: 280px;
}

.home-community-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-community-head .contact-eyebrow {
  margin-bottom: 0;
}

.home-community-caption {
  margin: 0;
  font-size: .9375rem;
  color: var(--gray-600);
  line-height: 1.55;
  max-width: 360px;
}

.home-community-slider {
  position: relative;
}

.home-community-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(10, 10, 10, .08);
  transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}

.home-community-arrow:hover {
  background: var(--accent);
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 6px 18px rgba(10, 10, 10, .12);
}

.home-community-arrow--prev { left: -14px; }
.home-community-arrow--next { right: -14px; }

.home-page-hero .home-community-rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding: 4px 2px 8px;
  margin: 0 -2px;
  -webkit-mask-image: linear-gradient(to right, black 78%, transparent 100%);
  mask-image: linear-gradient(to right, black 78%, transparent 100%);
}

.home-page-hero .home-community-rail:active {
  cursor: grabbing;
}

.home-page-hero .home-community-rail::-webkit-scrollbar {
  display: none;
}

.home-hero-trust-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin: 2px 0 0;
  font-size: .8125rem;
  color: rgba(0, 0, 0, .48);
  line-height: 1.4;
}

.home-hero-trust-meta strong {
  font-weight: 700;
  color: rgba(0, 0, 0, .72);
}

.home-hero-trust-sep {
  color: rgba(0, 0, 0, .22);
  user-select: none;
}

.home-page-hero .home-community-rail .hero-video-card {
  flex: 0 0 38%;
  min-width: 148px;
  scroll-snap-align: start;
  aspect-ratio: 9 / 14;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(10, 10, 10, .11);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}

.home-page-hero .home-community-rail .hero-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(10, 10, 10, .15);
}

.home-page-hero .home-community-rail .hero-video-ph {
  position: absolute;
  inset: 0;
  min-height: 0;
}

.home-page-hero .home-community-rail .hero-video-ph img,
.home-page-hero .home-community-rail .hero-video-ph video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-page-hero .home-community-rail .hero-video-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 52px 14px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .82) 100%);
}

.home-page-hero .home-community-rail .hero-video-quote {
  font-size: .72rem;
  line-height: 1.4;
  margin-bottom: 5px;
}

.home-page-hero .home-community-rail .hero-video-name {
  font-size: .62rem;
  color: rgba(255, 255, 255, .55);
}

.home-page-hero .home-community-rail .hero-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: rgba(255, 255, 255, .22);
  border: 1px solid rgba(255, 255, 255, .32);
  backdrop-filter: blur(8px);
}

.home-page-hero .home-community-rail .hero-video-card:hover .hero-video-play {
  transform: translate(-50%, -50%) scale(1.06);
}

@media (max-width: 1024px) {
  .home-community-arrow {
    display: none;
  }

  .home-page-hero .home-community-rail .hero-video-card {
    flex: 0 0 52%;
  }
}


/* ══════════════════════════════════════════════════════════════
   B2B GEWERBE (hidden page)
   ══════════════════════════════════════════════════════════════ */
.b2b-page {
  background: var(--white);
}

.b2b-page .b2b-hero.contact-hero {
  border-bottom: none;
  padding-bottom: 96px;
  overflow: visible;
}

.b2b-hero-inner {
  align-items: center;
  gap: 64px;
}

.b2b-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 8px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--gray-500);
}

.b2b-hero-meta-sep {
  color: var(--gray-300);
}

.b2b-hero-stage-wrap {
  position: relative;
  min-width: 0;
}

.b2b-hero-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 12px 0 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.b2b-hero-stage-glow {
  display: none;
}

.b2b-hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(10, 10, 10, .12));
  transform: none;
}

.b2b-hero-badge {
  position: absolute;
  left: 0;
  bottom: 8px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--black);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Showcase */
.b2b-showcase {
  padding: 24px 0 80px;
  margin-top: 0;
}

.b2b-showcase-head {
  margin-bottom: 32px;
}

.b2b-showcase-eyebrow {
  margin-bottom: 16px;
}

.b2b-showcase-title {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.05;
  color: var(--black);
}

.b2b-showcase-title em {
  font-style: normal;
  color: var(--black);
  background: linear-gradient(180deg, transparent 62%, var(--accent) 62%);
}

.b2b-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.b2b-showcase-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 28px 24px;
  border-radius: 24px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(10, 10, 10, .05);
}

.b2b-showcase-card--pack {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.b2b-showcase-card--content {
  border-color: rgba(255, 225, 32, .35);
  background: linear-gradient(180deg, #fffef5 0%, var(--white) 100%);
}

.b2b-showcase-kicker {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.b2b-showcase-card-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.1;
}

.b2b-showcase-card-copy {
  margin: 0;
  font-size: .875rem;
  line-height: 1.55;
  color: var(--gray-600);
}

.b2b-showcase-media {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 20px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.b2b-showcase-media--light {
  background: #fafafa;
}

.b2b-showcase-image {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
}

.b2b-showcase-bridge {
  display: grid;
  place-items: center;
  align-self: stretch;
  width: 92px;
  flex-shrink: 0;
  padding: 0 6px;
}

.b2b-showcase-bridge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.b2b-showcase-bridge-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--black);
  color: var(--accent);
  font-size: .95rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(10, 10, 10, .18);
}

.b2b-showcase-bridge-label {
  display: block;
  width: 56px;
  margin: 0;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--gray-500);
  text-align: center;
  line-height: 1.2;
  hyphens: manual;
  word-break: break-word;
}

/* Order section */
.b2b-order-section {
  padding-top: 8px;
  padding-bottom: 96px;
  border-top: 1px solid var(--gray-200);
}

.b2b-order-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
  gap: 56px 72px;
  align-items: start;
}

.b2b-tier-cards {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin: 32px 0 20px;
}

.b2b-tier-card {
  position: relative;
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 6px;
  min-height: 176px;
  padding: 16px 18px 18px;
  border: 2px solid var(--gray-200);
  border-radius: 20px;
  background: var(--white);
  box-sizing: border-box;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.b2b-tier-card:hover {
  border-color: var(--black);
  box-shadow: 0 12px 32px rgba(10, 10, 10, .07);
}

.b2b-tier-card.is-active {
  border-color: var(--black);
  background: var(--gray-50);
  box-shadow: 0 12px 32px rgba(10, 10, 10, .07);
}

.b2b-tier-card--popular {
  border-color: rgba(255, 225, 32, .8);
  background: linear-gradient(180deg, #fffef2 0%, var(--white) 100%);
}

.b2b-tier-card--popular.is-active {
  border-color: var(--accent);
  background: linear-gradient(180deg, #fffef2 0%, var(--white) 100%);
  box-shadow: 0 12px 32px rgba(255, 225, 32, .16);
}

.b2b-tier-card-badge-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 18px;
  margin: 0 0 8px;
  flex-shrink: 0;
}

.b2b-tier-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--black);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.2;
}

.b2b-tier-card-badge--ghost {
  visibility: hidden;
}

.b2b-tier-card-qty {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.b2b-tier-card-price {
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--black);
}

.b2b-tier-card-price .woocommerce-Price-amount {
  font-weight: 900;
}

.b2b-tier-card-per,
.b2b-tier-card-contents {
  font-size: .75rem;
  line-height: 1.35;
  color: var(--gray-500);
}

.b2b-tier-card-contents {
  margin-top: auto;
}

.b2b-order-note {
  margin: 0;
  font-size: .8125rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* Dark order panel */
.b2b-order-panel {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border-radius: 28px;
  background: var(--black);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 28px 72px rgba(10, 10, 10, .28);
  overflow: hidden;
}

.b2b-order-panel-accent {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 225, 32, .12) 0%, transparent 68%);
  pointer-events: none;
}

.b2b-order-panel--empty {
  color: rgba(255, 255, 255, .72);
}

.b2b-order-panel-head,
.b2b-order-form {
  position: relative;
  z-index: 1;
}

.b2b-order-panel-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.b2b-order-thumb {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 6px;
  flex-shrink: 0;
}

.b2b-order-kicker {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.b2b-order-product-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--white);
}

.b2b-order-product-desc {
  margin: 0;
  font-size: .8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .58);
}

.b2b-qty-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 8px;
}

.b2b-qty-row {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 8px;
  margin-bottom: 18px;
}

.b2b-qty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}

.b2b-qty-btn:hover {
  border-color: var(--accent);
  background: rgba(255, 225, 32, .12);
  color: var(--accent);
}

.b2b-qty-input {
  width: 100%;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  padding: 12px;
  font-size: 1.125rem;
  font-weight: 700;
  background: rgba(255, 255, 255, .04);
  color: var(--white);
}

.b2b-qty-input:focus {
  outline: none;
  border-color: var(--accent);
}

.b2b-price-live {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
}

.b2b-price-live-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.b2b-price-live-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

.b2b-price-tier-hint {
  margin: 0;
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent);
}

.b2b-price-live-main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.b2b-price-live-total-label {
  font-size: .875rem;
  color: rgba(255, 255, 255, .62);
}

.b2b-price-live-total {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--white);
  line-height: 1;
}

.b2b-price-live-total .woocommerce-Price-amount {
  font-weight: 900;
}

.b2b-price-live-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: .8125rem;
  color: rgba(255, 255, 255, .55);
}

.b2b-price-live-row strong {
  font-size: .9375rem;
  color: var(--white);
}

.b2b-submit-btn {
  margin-bottom: 12px;
}

.b2b-checkout-link {
  display: block;
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: transparent;
  color: rgba(255, 255, 255, .78);
  font-size: .875rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
}

.b2b-checkout-link:hover {
  border-color: rgba(255, 255, 255, .28);
  color: var(--white);
  background: rgba(255, 255, 255, .04);
}

.b2b-order-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.b2b-order-checklist li {
  position: relative;
  padding-left: 22px;
  font-size: .8125rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.4;
}

.b2b-order-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 225, 32, .18);
}

.b2b-checkout-notice {
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fff9d6;
  border: 1px solid rgba(255, 225, 32, .55);
  font-size: .875rem;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .b2b-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .b2b-hero-stage {
    min-height: 0;
    padding-top: 0;
  }

  .b2b-showcase-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .b2b-showcase-bridge {
    width: 100%;
    padding: 12px 0;
  }

  .b2b-showcase-bridge-inner {
    flex-direction: row;
    gap: 12px;
    width: auto;
  }

  .b2b-showcase-bridge-label {
    width: auto;
    max-width: none;
  }

  .b2b-order-grid {
    grid-template-columns: 1fr;
  }

  .b2b-tier-cards {
    flex-direction: column;
  }

  .b2b-tier-card {
    flex: 1 1 auto;
    width: 100%;
  }

  .b2b-order-panel {
    position: static;
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .b2b-hero {
    padding-bottom: 56px;
  }

  .b2b-hero-stage {
    min-height: 0;
    padding: 0;
  }

  .b2b-showcase {
    padding-bottom: 56px;
  }

  .b2b-showcase-card {
    padding: 22px 20px 20px;
  }

  .b2b-order-section {
    padding-bottom: 64px;
  }

  .b2b-order-panel {
    max-width: none;
    padding: 24px 20px;
    border-radius: 22px;
  }
}
/* B2B polish */
.b2b-page .contact-sub {
  max-width: 34rem;
}

.b2b-hero-meta {
  gap: 10px;
  margin-top: 12px;
}

.b2b-hero-meta > span:not(.b2b-hero-meta-sep) {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.b2b-hero-meta-sep {
  display: none;
}

.b2b-hero-image {
  max-width: 380px;
}

.b2b-showcase {
  padding-top: 32px;
  padding-bottom: 72px;
}

.b2b-showcase-grid {
  gap: 24px;
}

.b2b-showcase-card {
  min-height: 100%;
}

.b2b-showcase-media {
  min-height: 240px;
  padding: 24px;
}

.b2b-showcase-image {
  max-height: 220px;
  width: auto;
  max-width: 100%;
}

.b2b-showcase-bridge {
  width: 92px;
}

.b2b-order-copy .section-title {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.02;
}

.b2b-order-copy .section-title em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 62%, var(--accent) 62%);
}

.b2b-order-copy .section-sub {
  max-width: 38rem;
  margin-bottom: 0;
  line-height: 1.65;
}

.b2b-tier-cards {
  gap: 14px;
  margin-top: 36px;
}

.b2b-tier-card {
  min-height: 176px;
}

.b2b-tier-card:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

.b2b-order-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
}

.b2b-order-note::before {
  content: 'i';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--black);
  font-size: .72rem;
  font-weight: 900;
  line-height: 20px;
  text-align: center;
}

.b2b-order-section {
  padding-top: 72px;
}

.b2b-order-panel {
  padding: 30px;
  gap: 18px;
}

.b2b-order-panel-head {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  margin-bottom: 2px;
}

.b2b-qty-input {
  -moz-appearance: textfield;
  appearance: textfield;
}

.b2b-qty-input::-webkit-outer-spin-button,
.b2b-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.b2b-qty-btn:focus-visible,
.b2b-tier-card:focus-visible,
.b2b-checkout-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.b2b-submit-btn {
  min-height: 54px;
  font-size: 1rem;
  font-weight: 800;
}

.b2b-checkout-notice {
  color: var(--black);
}

@media (min-width: 1025px) {
  .b2b-order-grid {
    align-items: stretch;
  }

  .b2b-order-panel {
    align-self: stretch;
    justify-content: space-between;
  }
}

@media (max-width: 1024px) {
  .b2b-hero-meta > span:not(.b2b-hero-meta-sep) {
    font-size: .72rem;
  }

  .b2b-tier-cards {
    flex-direction: column;
  }

  .b2b-tier-card {
    flex: 1 1 auto;
    width: 100%;
  }
}



/* Form legal hints */
.form-legal-hint {
  margin: 12px 0 0;
  font-size: .78rem;
  line-height: 1.5;
  color: var(--gray-500);
}

.form-legal-hint a {
  color: var(--gray-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-legal-hint a:hover {
  color: var(--black);
}

.newsletter-legal-hint {
  margin-top: 10px;
  color: rgba(255, 255, 255, .42);
}

.newsletter-legal-hint a {
  color: rgba(255, 255, 255, .62);
}

.cf-legal-hint {
  margin-top: 14px;
}

.woo-main.shop-page.shop-page-modern {
  padding-top: 48px;
}

.shop-page-inner {
  padding-top: 0;
}


/* === BREEZI HERO OVERFLOW FIX === */
@media (max-width: 1024px) {
  .home-page-hero .home-hero-inner { grid-template-columns: minmax(0, 1fr); }
  .home-page-hero .home-hero-inner > * { min-width: 0; }
  .home-page-hero .home-community-rail,
  .home-page-hero .home-community-slider,
  .home-community-panel { max-width: 100%; min-width: 0; }
}

/* === BREEZI MOBILE REFINEMENTS === */
@media (max-width: 768px) {
  /* Vertical rhythm — desktop 100px section padding is far too tall on phones */
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
  .section-header { margin-bottom: 32px; }

  /* Hero headings — large desktop clamp minimums clip long German words */
  .contact-hl,
  .about-hero-hl,
  .hero-headline,
  .blog-page-hero-title,
  .shop-page-hero-title,
  .faq-page-title {
    font-size: clamp(2rem, 8.5vw, 2.7rem);
    line-height: 1.08;
  }

  /* Homepage hero — tighten spacing now that it stacks to one column */
  .home-page-hero.contact-hero {
    padding-top: 28px;
    padding-bottom: 40px;
  }
  .contact-hero-text { align-items: flex-start; }
  .contact-eyebrow { margin-bottom: 16px; }
  .contact-sub { font-size: 1rem; max-width: 100%; }
  .home-hero-actions { width: 100%; gap: 10px; }
  .home-hero-actions .btn { width: 100%; justify-content: center; }

  /* Community rail is swipeable on touch — drop the desktop arrows + edge mask */
  .home-community-arrow { display: none; }
  .home-page-hero .home-community-rail {
    -webkit-mask-image: none;
    mask-image: none;
  }

  /* Newsletter — stack input + button so the CTA is no longer clipped */
  .newsletter-section { padding: 48px 0; }
  .newsletter-inner { gap: 28px; }
  .newsletter-input-wrap { flex-direction: column; gap: 10px; }
  .newsletter-input,
  .newsletter-form .btn-cta { width: 100%; }
  .newsletter-form .btn-cta { justify-content: center; }

  /* Comfortable touch targets */
  .btn-lg { min-height: 48px; }
  .btn-cta { min-height: 48px; }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .newsletter-section {
    width: calc(100% - 16px) !important;
    margin: 8px auto !important;
    padding: 40px 0;
  }
  .newsletter-inner { gap: 24px; }
  .contact-hl,
  .about-hero-hl,
  .hero-headline,
  .blog-page-hero-title,
  .shop-page-hero-title,
  .faq-page-title {
    font-size: clamp(1.85rem, 9vw, 2.3rem);
  }
}

/* === MOBILE HORIZONTAL OVERFLOW GUARD === */
@media (max-width: 768px) {
  html, body {
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
  }

  .site-header,
  .site-footer,
  .single-product-section,
  .nasal-usecases-section,
  .product-info-accordion-section,
  .product-faq-section,
  main,
  #page {
    max-width: 100%;
    overflow-x: clip;
  }

  .container {
    max-width: 100%;
    min-width: 0;
  }

  /* Abgerundete Sections: nie breiter als Viewport */
  .how-section,
  .stats-section,
  .benefit-section,
  .section-gray,
  .newsletter-section,
  .upsell-section,
  .shop-trust-strip,
  .media-slider-section,
  .lp-howto,
  .lp-trust,
  .lp-founder,
  .gd-problem-section,
  .gd-feature-section,
  .gd-weight-guide,
  .gd-how-section,
  .gd-material-section,
  .ml-feature-split,
  .ml-ingredients,
  .ml-founder,
  .hero-section {
    max-width: calc(100% - 24px) !important;
    box-sizing: border-box;
  }

  .benefit-section,
  .benefit-section + .section-gray {
    overflow: hidden !important;
  }

  /* Slider/Stripes: horizontal scroll NUR innerhalb, nie Page-Overflow */
  .ms-track-wrap,
  .photo-strip-track,
  .products-grid-wrap,
  .community-grid-track {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .announcement-bar,
  .announcement-track {
    max-width: 100%;
    overflow: hidden;
  }

  img, video, iframe, svg, table {
    max-width: 100%;
  }

  .bundle-picker,
  .product-atc-form,
  .express-payment-row,
  .urgency-bar,
  .footer-grid,
  .newsletter-inner {
    max-width: 100%;
    min-width: 0;
  }
}
