/** Shopify CDN: Minification failed

Line 1141:31 Expected ":"

**/
/* ============================================
   WIRTSCHAFTSFAKTEN — Shopify Theme
   Clean white, editorial, mono-price cards
   ============================================ */

*, *::before, *::after { box-sizing: border-box; }

:root {
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-soft: #ffffff;
  --color-text: #0a0a0a;
  --color-muted: #6b6b6b;
  --color-light: #a0a0a0;
  --color-border: #eaeaea;
  --color-border-soft: #f0f0f0;
  --color-accent: #0a0a0a;
  --color-price: #2e7d32;
  --radius: 12px;
  --radius-lg: 14px;
  --shadow-card: 0 1px 2px rgba(0,0,0,.04);
  --shadow-hover: 0 6px 24px rgba(0,0,0,.08);
  --container: 1300px;
  --font: 'Inter', 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

html { font-size: 16px; }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: #0a0a0a; color: #fff; padding: 10px 16px; z-index: 999;
}
.skip-link:focus { left: 10px; top: 10px; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .5em;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
h3 { font-size: 1.5rem; }
p { margin: 0 0 1em; }

/* ============================================
   BUTTON
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 28px;
  background: #0a0a0a;
  color: #fff;
  border: 1.5px solid #0a0a0a;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  transition: all .2s ease;
  cursor: pointer;
}
.btn:hover, .btn:focus {
  background: #fff;
  color: #0a0a0a;
}
.btn--soft {
  background: #fff;
  color: #0a0a0a;
  border-color: #e5e5e5;
}
.btn--soft:hover { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }
.btn--full { width: 100%; }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement {
  background: #0a0a0a;
  color: #fff;
  border-bottom: 1px solid #0a0a0a;
  overflow: hidden;
}
.announcement__track {
  display: flex;
  gap: 60px;
  padding: 10px 20px;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  width: max-content;
}
.announcement__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
}
.header__logo {
  justify-self: start;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.header__logo img { max-height: 56px; width: auto; }

.header__nav { justify-self: center; }
.header__nav-list {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}
.header__nav-item { position: relative; }
.header__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #0a0a0a;
  transition: color .2s;
}
.header__nav-link:hover { color: var(--color-muted); }
.header__nav-link .caret {
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px,-2px);
}

/* Dropdown */
.header__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .2s ease;
  z-index: 10;
}
.header__nav-item:hover > .header__submenu,
.header__nav-item:focus-within > .header__submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.header__submenu .header__submenu {
  top: 0;
  left: 100%;
  border-left: 1px solid var(--color-border);
}
.header__submenu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 14px;
  color: #0a0a0a;
  white-space: nowrap;
  transition: background .15s;
}
.header__submenu-link:hover { background: #fafafa; }

.header__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__icon {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 50%;
  color: #0a0a0a;
  background: transparent;
  border: none;
  transition: background .2s;
}
.header__icon:hover { background: #fafafa; }
.header__cart-count {
  background: #0a0a0a;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 4px;
  min-width: 20px;
  text-align: center;
}

/* Burger */
.header__burger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  padding: 8px;
}
.header__burger span {
  display: block;
  width: 100%; height: 2px;
  background: #0a0a0a;
  margin: 5px 0;
  transition: transform .3s;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s;
}
.mobile-drawer.is-open { opacity: 1; visibility: visible; }
.mobile-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 90vw);
  background: #fff;
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }
.mobile-drawer__close {
  background: none; border: none;
  font-size: 26px; float: right;
}
.mobile-drawer__list { list-style: none; padding: 0; margin: 40px 0 0; }
.mobile-drawer__list li { border-bottom: 1px solid var(--color-border); }
.mobile-drawer__list a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
}
.mobile-drawer__sublist {
  list-style: none;
  padding: 0 0 10px 16px;
  margin: 0;
}
.mobile-drawer__sublist a {
  padding: 10px 0;
  font-size: 14px;
  font-weight: 400;
  color: #555;
}

@media (max-width: 991px) {
  .header { grid-template-columns: auto 1fr auto; }
  .header__nav { display: none; }
  .header__burger { display: block; }
}

/* ============================================
   HERO BANNER
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img,
.hero__media svg {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 60%, transparent 100%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 20px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__content { max-width: 640px; }
.hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: 8px;
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  font-weight: 800;
}
.hero__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,.9);
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.6;
}
.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero .btn {
  background: #fff;
  border-color: #fff;
  color: #0a0a0a;
}
.hero .btn:hover { background: transparent; color: #fff; border-color: #fff; }
.hero .btn--soft { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.hero .btn--soft:hover { background: #fff; color: #0a0a0a; border-color: #fff; }
.hero--light .hero__title,
.hero--light .hero__subtitle,
.hero--light .hero__eyebrow { color: #0a0a0a; }
.hero--light .hero__eyebrow { border-bottom-color: rgba(0,0,0,.2); }
.hero--light .hero__overlay { background: linear-gradient(90deg, rgba(255,255,255,.7), transparent); }

@media (max-width: 767px) {
  .hero__inner { padding: 60px 20px; min-height: 400px; }
  .hero__buttons .btn { width: 100%; }
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-head {
  text-align: center;
  padding: 60px 20px 30px;
  max-width: 800px;
  margin: 0 auto;
}
.section-head__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 12px;
}
.section-head__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-head__text {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ============================================
   PRODUCT CARD — WIRTSCHAFTSFAKTEN / ASSERVAT
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  padding: 20px 0 60px;
}

@media (max-width: 767px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 12px 10px 40px;
  }
  .product-card__body { padding: 10px 12px 6px; }
  .product-card__title { font-size: 13px; line-height: 1.25; }
  .product-card__brand { font-size: 10px; margin-bottom: 6px; }
  .product-card__price { font-size: 14px; margin-bottom: 8px; }
  .product-card__price--compare { font-size: 11px; margin-left: 4px; }
  .product-card__meta { font-size: 9.5px; padding-top: 7px; line-height: 1.5; }
  .product-card__footer { padding: 0 12px 12px; }
  .product-card__btn { font-size: 10.5px; padding: 8px 10px; letter-spacing: 0.03em; }
  .product-card__media img { padding: 8px; }
}

.product-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: #d0d0d0;
  transform: translateY(-3px);
}
.product-card__media {
  display: block;
  background: #fafafa;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}
.product-card__media img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform .5s ease;
}
.product-card:hover .product-card__media img { transform: scale(1.04); }

.product-card__body {
  padding: 14px 18px 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.3;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.product-card__title a { color: inherit; }

.product-card__brand {
  font-size: 12px;
  color: var(--color-muted);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.product-card__price {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-price);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.product-card__price--compare {
  text-decoration: line-through;
  color: #0a0a0a;
  font-weight: 500;
  font-size: 14px;
  margin-left: 6px;
}

.product-card__meta {
  border-top: 1px dashed var(--color-border);
  padding-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-muted);
  letter-spacing: 0.02em;
  line-height: 1.7;
}
.product-card__meta-row { display: block; }
.product-card__meta-key { color: var(--color-light); }
.product-card__meta-val { color: #0a0a0a; }

.product-card__footer {
  margin-top: auto;
  padding: 0 18px 16px;
}
.product-card__btn {
  display: block;
  width: 100%;
  padding: 11px 20px;
  background: #fff;
  color: #0a0a0a;
  border: 1.5px solid #0a0a0a;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: all .2s ease;
  letter-spacing: 0.02em;
}
.product-card__btn:hover {
  background: #0a0a0a;
  color: #fff;
}

/* ============================================
   COLLECTION SLIDER
   ============================================ */
.slider {
  position: relative;
  padding: 20px 0 60px;
}
.slider__wrap { position: relative; }
.slider__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 20px 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.slider__track::-webkit-scrollbar { display: none; }
.slider__track > * {
  flex: 0 0 300px;
  scroll-snap-align: start;
}
.slider__nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 18px;
  z-index: 5;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
  transition: all .2s;
  color: #0a0a0a;
}
.slider__nav:hover { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }
.slider__nav--prev { left: 6px; }
.slider__nav--next { right: 6px; }

@media (max-width: 767px) {
  .slider__nav { display: none; }
  .slider__track > * { flex: 0 0 78%; }
}

/* ============================================
   VIDEO SLIDER 9:16 (WSF EDITS)
   ============================================ */
.video-slider { position: relative; padding: 20px 0 60px; }
.video-slider__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 20px 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.video-slider__track::-webkit-scrollbar { display: none; }
.video-slider__item {
  flex: 0 0 260px;
  aspect-ratio: 9 / 16;
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.video-slider__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.video-slider__item video,
.video-slider__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-slider__play {
  position: absolute;
  bottom: 14px;
  left: 14px;
  width: 42px; height: 42px;
  background: rgba(255,255,255,.95);
  color: #0a0a0a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.video-slider__caption {
  position: absolute;
  bottom: 14px;
  left: 66px;
  right: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
  pointer-events: none;
  text-shadow: 0 1px 3px rgba(0,0,0,.6);
}
.video-slider__stats {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .video-slider__item { flex: 0 0 60%; }
}

/* ============================================
   FOUNDER SECTION (image left, text right)
   ============================================ */
.founder {
  padding: 80px 20px;
  background: #fff;
}
.founder__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.founder__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fafafa;
  aspect-ratio: 4 / 5;
}
.founder__media img { width: 100%; height: 100%; object-fit: cover; }
.founder__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 14px;
}
.founder__name {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  line-height: 1.05;
}
.founder__role {
  font-size: 15px;
  color: var(--color-muted);
  margin-bottom: 28px;
}
.founder__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 24px;
}
.founder__stat-value {
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  line-height: 1;
}
.founder__stat-label {
  font-size: 11px;
  color: var(--color-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
}
.founder__text {
  color: #333;
  line-height: 1.7;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .founder { padding: 50px 20px; }
  .founder__grid { grid-template-columns: 1fr; gap: 30px; }
  .founder__stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

/* ============================================
   COLLECTION PAGE
   ============================================ */
.collection-hero {
  background: #fff;
  padding: 50px 20px 20px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.collection-hero__media {
  max-width: var(--container);
  margin: 0 auto 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21 / 9;
}
.collection-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.collection-hero__title { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 8px; letter-spacing: -0.02em; }
.collection-hero__desc { color: var(--color-muted); max-width: 700px; margin: 0 auto; }

.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 20px;
}
.collection-toolbar__count { font-size: 14px; color: var(--color-muted); }
.collection-toolbar select {
  padding: 8px 30px 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 60px 20px 30px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
}
.footer-col h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0a0a0a;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--color-muted);
  transition: color .2s;
  display: inline-block;
}
.footer-col a:hover { color: #0a0a0a; }
.footer-brand__name { font-size: 24px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 6px; }
.footer-brand__sub { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-muted); margin-bottom: 16px; }
.footer-brand__text { font-size: 14px; line-height: 1.7; color: var(--color-muted); margin-bottom: 20px; }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: var(--color-light);
  letter-spacing: 0.03em;
}
@media (max-width: 991px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ============================================
   PRODUCT PAGE
   ============================================ */
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 20px 60px;
  max-width: var(--container);
  margin: 0 auto;
}
.product__gallery img {
  width: 100%;
  border-radius: var(--radius-lg);
  background: #fafafa;
}
.product__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.product__thumbs img {
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 10px;
  transition: border-color .2s;
}
.product__thumbs img.is-active,
.product__thumbs img:hover { border-color: #0a0a0a; }

.product__breadcrumbs {
  font-size: 12px;
  color: var(--color-muted);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.product__breadcrumbs a { color: var(--color-muted); }
.product__breadcrumbs a:hover { color: #0a0a0a; }
.product__breadcrumbs span { color: #0a0a0a; }

.product__brand {
  font-size: 12px;
  color: var(--color-muted);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.product__title { font-size: clamp(1.5rem, 3vw, 2.25rem); margin: 4px 0 14px; letter-spacing: -0.02em; }
.product__reference { color: var(--color-light); font-size: 13px; margin-bottom: 4px; font-family: var(--font-mono); }

.product__price-row {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 20px;
}
.product__price {
  font-size: 26px; font-weight: 800; color: #2e7d32; letter-spacing: -0.02em;
}
.product__price--compare {
  font-size: 16px; color: var(--color-light); text-decoration: line-through;
}

.product__meta-box {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.9;
}
.product__meta-box strong { color: #0a0a0a; font-weight: 600; }

.product__desc { color: #333; line-height: 1.8; margin: 20px 0; }

.product__buy-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-top: 20px;
}
.product__qty {
  width: 70px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  text-align: center;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
}
.product__submit { flex: 1; }

.product__trust {
  display: flex; flex-direction: column; gap: 10px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0;
}
.product__trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #0a0a0a; }
.product__trust-item svg { flex-shrink: 0; }

@media (max-width: 767px) {
  .product { grid-template-columns: 1fr; }
}

/* ============================================
   PRODUCT ACCORDIONS
   ============================================ */
.product__accordion {
  border-top: 1px solid var(--color-border);
  padding: 0;
}
.product__accordion:last-of-type { border-bottom: 1px solid var(--color-border); }

.product__accordion > summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.product__accordion > summary::-webkit-details-marker { display: none; }
.product__accordion > summary::marker { content: ''; }

.product__accordion-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.product__accordion-icon::before,
.product__accordion-icon::after {
  content: '';
  position: absolute;
  background: #0a0a0a;
  transition: transform .25s ease;
}
.product__accordion-icon::before {
  top: 50%; left: 0; right: 0; height: 1.5px; margin-top: -0.75px;
}
.product__accordion-icon::after {
  left: 50%; top: 0; bottom: 0; width: 1.5px; margin-left: -0.75px;
}
.product__accordion[open] .product__accordion-icon::after { transform: scaleY(0); }

.product__accordion-body {
  padding: 4px 4px 20px;
  font-size: 14px;
  color: #333;
  line-height: 1.7;
}
.product__accordion-body ul { margin: 0 0 12px; padding-left: 20px; }
.product__accordion-body li { margin-bottom: 4px; }
.product__accordion-body h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #0a0a0a;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.6;
}
.product__accordion-body p { margin: 0 0 10px; }
.product__accordion-body p:last-child { margin-bottom: 0; }

/* Tables inside RTE (Größentabelle) */
.product__accordion-body table,
.product__desc table,
.rte table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 12px;
  font-size: 14px;
}
.product__accordion-body th,
.product__desc th,
.rte th {
  text-align: left;
  font-weight: 700;
  padding: 10px 12px;
  border-bottom: 1.5px solid #0a0a0a;
  color: #0a0a0a;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.product__accordion-body td,
.product__desc td,
.rte td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--color-border);
  color: #333;
}
.product__accordion-body tr:last-child td,
.product__desc tr:last-child td,
.rte tr:last-child td {
  border-bottom: none;
}
.product__accordion-body th:first-child,
.product__accordion-body td:first-child,
.product__desc th:first-child,
.product__desc td:first-child {
  font-weight: 700;
  color: #0a0a0a;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.no-results { padding: 60px 20px; text-align: center; color: var(--color-muted); }
.rte a { text-decoration: underline; }
.rte a:hover { color: var(--color-muted); }

/* Legal Pages */
.legal-page {
  max-width: 800px;
  margin: 40px auto 80px;
  padding: 0 20px;
  color: #0a0a0a;
  line-height: 1.7;
}
.legal-page h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
}
.legal-page h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 12px;
  letter-spacing: -0.01em;
}
.legal-page h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 24px 0 8px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.legal-page p { margin: 0 0 14px; color: #333; font-size: 15px; }
.legal-page ul { margin: 0 0 16px; padding-left: 22px; }
.legal-page li { margin-bottom: 6px; color: #333; font-size: 15px; }
.legal-page a { color: #0a0a0a; text-decoration: underline; }
.legal-page a:hover { color: #6b6b6b; }
.legal-page em { color: #6b6b6b; }
.legal-page__date {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eaeaea;
  font-size: 13px;
  color: #6b6b6b;
  font-style: italic;
}
/* ============================================
   STICKY HEADER — nur Header, Announcement scrollt weg
   ============================================ */

/* Announcement-Bar explizit NICHT sticky */
[id*="announcement"],
[id*="wsf-annc"],
.shopify-section-group-header-group > .shopify-section:first-child {
  position: static !important;s
  top: auto !important;
}

/* Nur der Header-Container sticky (nicht die ganze Group) */
.shopify-section-group-header-group > .shopify-section:last-child,
#shopify-section-header,
[id$="__header"] {
  position: sticky !important;
  top: 0 !important;
  z-index: 999 !important;
  background: #fff !important;
}

/* Overflow-Fixes gegen sticky-Killer */
html { overflow-x: clip; }
body { overflow-x: clip; overflow-y: visible; }
main, #MainContent { overflow: visible !important; }

/* Aktenstempel-Style — nutzbar für section-head__eyebrow wenn Text mit ~ startet */
.section-head__eyebrow.is-stamp,
.section-head__eyebrow[data-stamp="true"] {
  font-family: 'JetBrains Mono', ui-monospace, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #c00;
  border: 2px solid #c00;
  padding: 6px 14px;
  border-radius: 4px;
  transform: rotate(-2deg);
  background: transparent;
}