/* ═══════════════════════════════════════════════════════════════
   AtemFlow Shop — zentrales Stylesheet
   Markenwelt: tiefes Petrol, Gold, Spectral-Serife, Glas-Karten.
   ═══════════════════════════════════════════════════════════════ */

/* ── Spectral, lokal ausgeliefert (DSGVO-konform) ── */
@font-face { font-family: "Spectral"; src: url("../fonts/spectral-v15-latin-300.woff2") format("woff2"); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: "Spectral"; src: url("../fonts/spectral-v15-latin-regular.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Spectral"; src: url("../fonts/spectral-v15-latin-italic.woff2") format("woff2"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "Spectral"; src: url("../fonts/spectral-v15-latin-500.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Spectral"; src: url("../fonts/spectral-v15-latin-600.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }

:root {
  --teal-deep: #0F2B33;
  --teal-dark: #1A4857;
  --teal-mid: #1A5C6B;
  --gold-dark: #C2A45A;
  --gold-mid: #D4B96E;
  --gold-light: #E8D49F;
  --text-light: #F5F3F3;
  --text-muted: #E0E2EA;
  --text-subtle: #A8B8C4;
  --text-hint: #8A9CAA;
  --font: "Spectral", Georgia, serif;
  --glass: linear-gradient(135deg, rgba(26,72,87,0.55) 0%, rgba(15,43,51,0.70) 50%, rgba(26,72,87,0.60) 100%);
  --glass-border: 0.5px solid rgba(212,185,110,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.6;
  background:
    radial-gradient(ellipse 60% 40% at 50% 10%, rgba(212,185,110,0.10), transparent 65%),
    linear-gradient(180deg, #0B2228 0%, var(--teal-deep) 45%, #0A1F25 100%);
  background-color: var(--teal-deep);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

a { color: var(--gold-light); }

img { max-width: 100%; height: auto; }

/* ── Gold hairline ─────────────────────────────── */
.hairline {
  height: 1px; width: 100%; border: 0;
  background: linear-gradient(90deg,
    transparent, rgba(212,185,110,0.30) 25%,
    rgba(232,212,159,0.45) 50%,
    rgba(212,185,110,0.30) 75%, transparent);
}

.section-label {
  font-size: 14px; font-weight: 600;
  letter-spacing: 2.4px; text-transform: uppercase;
  color: rgba(212,185,110,0.65);
}

/* ── Header ────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,34,40,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 0.5px solid rgba(212,185,110,0.16);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 24px;
}
.wordmark {
  font-size: 26px; font-weight: 600; letter-spacing: 0.4px;
  color: var(--text-light); text-decoration: none;
}
.wordmark em { font-style: italic; font-weight: 500; color: var(--gold-mid); }
.main-nav { display: flex; gap: 36px; align-items: center; }
.main-nav a {
  color: var(--text-subtle); text-decoration: none;
  font-size: 16px; letter-spacing: 0.3px;
  transition: color 180ms ease;
}
.main-nav a:hover { color: var(--gold-light); }
.main-nav .back-link {
  font-size: 13px; font-style: italic;
  color: var(--text-hint);
}
.main-nav .back-link:hover { color: var(--text-subtle); }
.cart-btn {
  display: flex; align-items: center; gap: 8px;
  color: var(--gold-mid); text-decoration: none; font-size: 15px;
  border: 0.5px solid rgba(212,185,110,0.35);
  padding: 8px 16px; border-radius: 999px;
  transition: background 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}
.cart-btn:hover { background: rgba(212,185,110,0.10); border-color: rgba(212,185,110,0.6); }
.atemflow-cart-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: 999px;
  background: rgba(212,185,110,0.18);
  font-size: 12.5px; font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* ── Buttons ───────────────────────────────────── */
.btn-gold,
.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce #place_order,
.wc-block-components-button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-mid) 50%, var(--gold-light) 100%);
  box-shadow: 0 6px 18px rgba(212,185,110,0.25);
  color: var(--teal-deep) !important; font-family: var(--font);
  font-size: 17px; font-weight: 600; letter-spacing: 0.4px;
  line-height: 1.2;
  text-decoration: none; border: 0; cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.btn-gold:hover,
.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce #place_order:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(212,185,110,0.35);
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-mid) 50%, var(--gold-light) 100%);
  color: var(--teal-deep) !important;
}
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px; border-radius: 12px;
  background: transparent;
  border: 0.5px solid rgba(212,185,110,0.4);
  color: var(--gold-light); font-family: var(--font);
  font-size: 17px; font-weight: 500; letter-spacing: 0.4px;
  text-decoration: none; cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}
.btn-ghost:hover { background: rgba(212,185,110,0.08); border-color: rgba(212,185,110,0.7); }

/* ── Hero (Startseite) ─────────────────────────── */
.hero {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 60px; align-items: center;
  padding-top: 110px; padding-bottom: 90px;
}
.hero h1 {
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.12; font-weight: 400; letter-spacing: 0.3px;
  text-wrap: balance;
  margin: 26px 0 0;
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--gold-light); }
.hero p.lead {
  margin-top: 30px;
  font-size: 21px; line-height: 1.6; font-weight: 300;
  color: var(--text-subtle); max-width: 520px;
  text-wrap: pretty;
}
.hero-ctas { display: flex; gap: 18px; margin-top: 44px; flex-wrap: wrap; }

/* ── Atemwelle ─────────────────────────────────── */
.welle-stage {
  position: relative;
  width: 100%; max-width: 560px; height: 380px;
  margin: 0 auto;
}
.welle-stage canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.breath-label {
  position: absolute; top: 2%; left: 0; right: 0;
  text-align: center;
  font-size: 18px; font-style: italic; font-weight: 400;
  letter-spacing: 3px; color: var(--gold-light);
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 600ms ease;
  pointer-events: none;
}
.breath-counter {
  position: absolute; bottom: 8%; left: 0; right: 0;
  text-align: center;
  font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-hint); font-weight: 500;
}
.breath-counter strong { color: rgba(212,185,110,0.8); font-weight: 600; }

/* ── Trust row ─────────────────────────────────── */
.trust {
  padding-top: 26px; padding-bottom: 26px;
  display: flex; justify-content: center; gap: 56px; flex-wrap: wrap;
}
.trust span {
  font-size: 15px; color: var(--text-subtle);
  display: flex; align-items: center; gap: 10px;
  letter-spacing: 0.3px;
}
.trust svg { width: 16px; height: 16px; stroke: var(--gold-mid); flex-shrink: 0; }

/* ── Sektionen (Startseite) ────────────────────── */
section.block { padding-top: 90px; padding-bottom: 90px; }
.block-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.block-head h2 {
  font-size: 40px; font-weight: 400; line-height: 1.18;
  letter-spacing: 0.3px; margin-top: 20px;
  text-wrap: balance;
}
.block-head h2 em { font-style: italic; color: var(--gold-light); }
.block-head .hairline { max-width: 240px; margin: 28px auto 0; }

/* ── Glas-Karten ───────────────────────────────── */
.glass {
  border-radius: 22px;
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: var(--glass-border);
}

/* ── Kategorie-Karten (4 Stück, brechen flexibel um) ── */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.cat-card {
  padding: 40px 28px 36px;
  text-align: center; text-decoration: none; color: inherit;
  display: block;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.cat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,185,110,0.45);
  box-shadow: 0 24px 50px rgba(0,0,0,0.35);
}
.cat-card svg { width: 92px; height: 92px; margin-bottom: 26px; }
.cat-card h3 { font-size: 26px; font-weight: 500; letter-spacing: 0.3px; }
.cat-card p {
  margin-top: 14px; font-size: 16.5px; line-height: 1.55;
  color: var(--text-subtle); font-weight: 300;
}
.cat-card .price-hint {
  display: inline-block; margin-top: 22px;
  font-size: 14px; font-style: italic; color: var(--gold-mid);
  letter-spacing: 0.5px;
}

/* ── Zitat ─────────────────────────────────────── */
.quote { text-align: center; max-width: 760px; margin: 0 auto; }
.quote blockquote {
  font-size: 30px; font-weight: 300; font-style: italic;
  line-height: 1.45; color: var(--text-muted);
  text-wrap: balance;
}
.quote cite {
  display: block; margin-top: 26px;
  font-size: 15px; font-style: normal; letter-spacing: 1.8px;
  text-transform: uppercase; color: rgba(212,185,110,0.60);
}
.quote .hairline { max-width: 200px; margin: 36px auto 0; }

/* ── Gutschein-Banner ──────────────────────────── */
.block-voucher { padding-top: 10px; }
.voucher {
  border-radius: 28px; padding: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.voucher .btn-gold { flex-shrink: 0; }
.voucher-label { margin-bottom: 18px; }
.voucher h3 { font-size: 36px; font-weight: 400; line-height: 1.18; text-wrap: balance; }
.voucher h3 em { font-style: italic; color: var(--gold-light); }
.voucher p { margin-top: 16px; font-size: 17.5px; color: var(--text-subtle); font-weight: 300; max-width: 480px; line-height: 1.55; }

/* ── Footer ────────────────────────────────────── */
.site-footer { padding: 70px 0 50px; margin-top: 60px; }
.footer-grid {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 48px; margin-top: 50px; flex-wrap: wrap;
}
.footer-brand { max-width: 300px; }
.footer-brand .wordmark { font-size: 22px; }
.footer-brand p {
  margin-top: 16px; font-size: 14.5px; line-height: 1.6;
  color: var(--text-hint); font-weight: 300;
}
.footer-col h5 {
  font-size: 13px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(212,185,110,0.55);
  margin-bottom: 18px;
}
.footer-col a {
  display: block; color: var(--text-subtle); text-decoration: none;
  font-size: 15px; margin-bottom: 11px; font-weight: 300;
  transition: color 180ms ease;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-hint { font-size: 13px; color: var(--text-hint); font-style: italic; max-width: 220px; display: block; }
.pay-badges { display: flex; gap: 10px; flex-wrap: wrap; max-width: 280px; }
.pay-badges span {
  font-size: 12.5px; padding: 6px 12px; border-radius: 6px;
  border: 0.5px solid rgba(168,184,196,0.3);
  color: var(--text-subtle); letter-spacing: 0.4px;
}
.footer-sep { margin-top: 50px; }
.footer-bottom {
  margin-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13.5px; color: var(--text-hint); flex-wrap: wrap; gap: 12px;
}
.footer-claim { font-style: italic; }

/* ── Inhaltsseiten (Impressum, AGB, …) ─────────── */
.content-wrap { padding-top: 70px; padding-bottom: 70px; max-width: 860px; }
.content-title { font-size: 42px; font-weight: 400; }
.content-title-line { max-width: 240px; margin: 28px 0 40px; }
.content-body h2 { font-size: 28px; font-weight: 500; margin: 40px 0 14px; }
.content-body h3 { font-size: 22px; font-weight: 500; margin: 32px 0 12px; }
.content-body p, .content-body ul, .content-body ol { margin-bottom: 18px; color: var(--text-muted); font-weight: 300; }
.content-body ul, .content-body ol { padding-left: 24px; }

/* ═══════════════════════════════════════════════════════════════
   WooCommerce
   ═══════════════════════════════════════════════════════════════ */

.woo-wrap { padding-top: 60px; padding-bottom: 80px; }

/* Seitentitel (Shop, Kategorie, Warenkorb …) */
.woocommerce-products-header__title,
.woo-wrap h1.entry-title,
.woo-wrap .page-title {
  font-size: 42px; font-weight: 400; letter-spacing: 0.3px;
  margin-bottom: 36px;
}

/* Kategorie-Beschreibung */
.term-description { color: var(--text-subtle); font-weight: 300; max-width: 640px; margin-bottom: 36px; }

/* ── Produkt-Grid (Shop / Kategorie / Shortcodes) ── */
.woocommerce ul.products {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  list-style: none; margin: 0; padding: 0;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product {
  width: auto !important; float: none !important; margin: 0 !important;
  border-radius: 22px;
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: var(--glass-border);
  padding: 28px;
  display: flex; flex-direction: column;
  text-align: left;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-5px);
  border-color: rgba(212,185,110,0.45);
  box-shadow: 0 24px 50px rgba(0,0,0,0.35);
}
.woocommerce ul.products li.product a img {
  border-radius: 14px; margin-bottom: 20px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 22px; font-weight: 500; letter-spacing: 0.2px;
  color: var(--text-light); padding: 0;
  line-height: 1.3;
}
.woocommerce ul.products li.product .woocommerce-loop-product__link { text-decoration: none; }
.woocommerce ul.products li.product .price {
  margin-top: 12px;
  font-size: 21px; font-weight: 500;
  color: var(--gold-light) !important;
  font-variant-numeric: tabular-nums;
}
.woocommerce ul.products li.product .price del { color: var(--text-hint); opacity: 1; }
.woocommerce ul.products li.product .price ins { text-decoration: none; }
.woocommerce ul.products li.product .button {
  margin-top: 20px; align-self: flex-start;
  padding: 11px 22px; font-size: 15.5px;
}
.woocommerce ul.products li.product .onsale {
  position: absolute; top: 16px; right: 16px; left: auto;
  background: var(--gold-mid); color: var(--teal-deep);
  border-radius: 999px; font-weight: 600;
  min-height: 0; line-height: 1; padding: 8px 14px;
  margin: 0;
}
.woocommerce ul.products li.product { position: relative; }

/* Germanized-Zusatzinfos in der Produktkarte (MwSt-Hinweis etc.) */
.woocommerce ul.products li.product .wc-gzd-additional-info,
.woocommerce ul.products li.product .legal-price-info {
  font-size: 12.5px; color: var(--text-hint); font-style: italic;
  margin-top: 6px;
}

/* Sortier-Dropdown */
.woocommerce .woocommerce-ordering { float: right; margin-bottom: 28px; }
.woocommerce .woocommerce-ordering select { padding: 10px 14px; }

/* Pagination */
.woocommerce nav.woocommerce-pagination { margin-top: 48px; text-align: center; }
.woocommerce nav.woocommerce-pagination ul {
  border: 0; display: inline-flex; gap: 8px;
}
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; border-radius: 10px;
  border: 0.5px solid rgba(212,185,110,0.3);
  color: var(--text-subtle); background: transparent;
}
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: rgba(212,185,110,0.12); color: var(--gold-light);
}

/* ── Produkt-Einzelseite ───────────────────────── */
.woocommerce div.product { color: var(--text-light); }
.woocommerce div.product .product_title {
  font-size: 40px; font-weight: 400; line-height: 1.15;
}
.woocommerce div.product p.price {
  font-size: 30px; color: var(--gold-light); font-weight: 500;
  margin: 18px 0 6px;
  font-variant-numeric: tabular-nums;
}
.woocommerce div.product p.price del { color: var(--text-hint); opacity: 1; }
.woocommerce div.product p.price ins { text-decoration: none; }
.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--text-subtle); font-weight: 300; font-size: 18px;
  margin-top: 18px;
}
.woocommerce div.product div.images img { border-radius: 18px; }
.woocommerce div.product form.cart { margin-top: 30px; }
.woocommerce div.product form.cart .button { font-size: 18px; padding: 16px 36px; }

/* Germanized auf der Produktseite: MwSt./Lieferzeit/Versand-Hinweise */
.woocommerce div.product .wc-gzd-additional-info {
  font-size: 14px; color: var(--text-hint); font-style: italic;
  margin: 2px 0;
}

/* Tabs (Beschreibung / Bewertungen) */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0; margin: 56px 0 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before { border-bottom: 0.5px solid rgba(212,185,110,0.25); }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent; border: 0; border-radius: 0;
  margin: 0 28px 0 0; padding: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: var(--text-subtle); font-weight: 500; padding: 14px 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--gold-light); }
.woocommerce div.product .woocommerce-tabs .panel {
  margin-top: 32px; color: var(--text-muted); font-weight: 300;
}
.woocommerce div.product .woocommerce-tabs .panel h2 { font-size: 26px; font-weight: 500; margin-bottom: 16px; }

/* ── Formularfelder (Kasse, Konto, Login) ──────── */
input[type="text"], input[type="email"], input[type="tel"],
input[type="password"], input[type="number"], input[type="search"],
select, textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  font-family: var(--font);
  font-size: 16px;
  color: var(--text-light);
  background: rgba(10, 31, 37, 0.65);
  border: 0.5px solid rgba(168,184,196,0.35);
  border-radius: 10px;
  padding: 13px 16px;
  width: 100%;
  transition: border-color 180ms ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(212,185,110,0.65);
}
::placeholder { color: var(--text-hint); }
select option { background: var(--teal-deep); color: var(--text-light); }
.woocommerce form .form-row label { color: var(--text-subtle); font-size: 14.5px; margin-bottom: 4px; }
.woocommerce form .form-row { margin-bottom: 14px; }

/* Select2 (Länder-Dropdown der Kasse) */
.select2-container--default .select2-selection--single {
  background: rgba(10, 31, 37, 0.65);
  border: 0.5px solid rgba(168,184,196,0.35);
  border-radius: 10px; height: 48px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--text-light); line-height: 46px; padding-left: 16px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow { height: 46px; }
.select2-dropdown {
  background: var(--teal-deep);
  border: 0.5px solid rgba(168,184,196,0.35);
  color: var(--text-light);
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: rgba(212,185,110,0.2); color: var(--text-light);
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  background: rgba(10, 31, 37, 0.65); color: var(--text-light);
  border: 0.5px solid rgba(168,184,196,0.35);
}

/* ── Warenkorb & Kasse ─────────────────────────── */
.woocommerce table.shop_table {
  border: var(--glass-border);
  border-radius: 18px;
  background: var(--glass);
  border-collapse: separate; border-spacing: 0;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-top: 0; border-bottom: 0.5px solid rgba(212,185,110,0.14);
  padding: 16px 18px;
  color: var(--text-muted);
}
.woocommerce table.shop_table th { color: var(--text-subtle); font-weight: 600; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; }
.woocommerce table.shop_table tbody tr:last-child td,
.woocommerce table.shop_table tfoot tr:last-child td,
.woocommerce table.shop_table tfoot tr:last-child th { border-bottom: 0; }
.woocommerce-cart table.cart img { width: 72px; border-radius: 10px; }
.woocommerce a.remove {
  color: var(--text-hint) !important;
  font-weight: 400;
}
.woocommerce a.remove:hover { background: transparent; color: #E08A8A !important; }

.woocommerce .cart_totals h2, .woocommerce #order_review_heading,
.woocommerce-billing-fields h3, .woocommerce-additional-fields h3 {
  font-size: 26px; font-weight: 500; margin: 32px 0 18px;
}

/* Kasse: Bestellübersicht als Glaskarte */
.woocommerce-checkout #order_review {
  border-radius: 18px;
}

/* Coupon-Feld */
.woocommerce-cart table.cart td.actions .coupon .input-text {
  width: 180px; margin-right: 10px;
}

/* ── Hinweise / Meldungen ──────────────────────── */
.woocommerce-message, .woocommerce-info, .woocommerce-error,
.woocommerce-noreviews, p.no-comments {
  background: var(--glass);
  border: var(--glass-border);
  border-top: 2px solid var(--gold-mid);
  border-radius: 12px;
  color: var(--text-muted);
  padding: 16px 20px 16px 52px;
}
.woocommerce-message::before, .woocommerce-info::before { color: var(--gold-mid); }
.woocommerce-error { border-top-color: #E08A8A; }
.woocommerce-error::before { color: #E08A8A; }
.woocommerce-message .button, .woocommerce-info .button {
  padding: 9px 18px; font-size: 14px;
}

/* ── Germanized: rechtliche Checkboxen & Hinweise ── */
.wc-gzd-checkbox-placeholder, .legal {
  color: var(--text-subtle); font-size: 14.5px;
}
.woocommerce-checkout .legal a { color: var(--gold-light); }
.wc-gzd-order-submit .wc-gzd-legal-checkbox-text { color: var(--text-subtle); }
.checkout .shipping-costs-info, .checkout .tax-info { color: var(--text-hint); font-size: 13.5px; }

/* ── Konto-Bereich ─────────────────────────────── */
.woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; }
.woocommerce-MyAccount-navigation li { margin-bottom: 4px; }
.woocommerce-MyAccount-navigation li a {
  display: block; padding: 11px 16px; border-radius: 10px;
  color: var(--text-subtle); text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}
.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover {
  background: rgba(212,185,110,0.10); color: var(--gold-light);
}
.woocommerce-MyAccount-content { color: var(--text-muted); font-weight: 300; }

/* ── Breadcrumb ────────────────────────────────── */
.woocommerce .woocommerce-breadcrumb {
  color: var(--text-hint); font-size: 14px; margin-bottom: 28px;
}
.woocommerce .woocommerce-breadcrumb a { color: var(--text-subtle); text-decoration: none; }
.woocommerce .woocommerce-breadcrumb a:hover { color: var(--gold-light); }

/* ── Startseite: Produkt-Sektion ───────────────── */
.front-products-more { text-align: center; margin-top: 44px; }

/* ── Sterne & Rating-Zeile (Hero) ──────────────── */
.stars { color: var(--gold-mid); letter-spacing: 3px; font-size: 17px; }
.rating-row {
  display: flex; align-items: center; gap: 14px;
  margin-top: 34px;
  font-size: 15px; color: var(--text-subtle);
  flex-wrap: wrap;
}
.rating-row strong { color: var(--gold-light); font-weight: 600; }

/* ── Themen-Chips ──────────────────────────────── */
.block-topics { padding-bottom: 30px; }
.topic-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.topic-chip {
  display: block; text-decoration: none;
  padding: 24px 26px;
  border-radius: 16px;
  border: 0.5px solid rgba(212,185,110,0.25);
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}
.topic-chip:hover {
  border-color: rgba(212,185,110,0.55);
  background: rgba(212,185,110,0.06);
  transform: translateY(-3px);
}
.topic-chip strong {
  display: block;
  font-size: 20px; font-weight: 500; color: var(--text-light);
}
.topic-chip span {
  display: block; margin-top: 8px;
  font-size: 14.5px; font-weight: 300; line-height: 1.45;
  color: var(--text-subtle);
}

/* ── Flaggschiff-Kurs ──────────────────────────── */
.block-feature { padding-top: 30px; }
.feature {
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden; border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.feature-visual {
  position: relative; min-height: 420px;
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(212,185,110,0.20), transparent 68%),
    linear-gradient(160deg, var(--teal-mid) 0%, var(--teal-dark) 50%, var(--teal-deep) 100%);
  display: flex; align-items: center; justify-content: center;
}
.feature-visual svg { width: 200px; height: 200px; }
.feature-body { padding: 56px 56px 50px; display: flex; flex-direction: column; align-items: flex-start; }
.feature-body h3 {
  font-size: 38px; font-weight: 400; line-height: 1.15; margin-top: 18px;
  text-wrap: balance;
}
.feature-body h3 em { font-style: italic; color: var(--gold-light); }
.feature-body p {
  margin-top: 22px; font-size: 18px; line-height: 1.6;
  color: var(--text-subtle); font-weight: 300; flex: 1;
}
.feature-meta { display: flex; align-items: baseline; gap: 18px; margin-top: 30px; }
.price-big { font-size: 34px; font-weight: 500; color: var(--gold-light); font-variant-numeric: tabular-nums; }
.price-note { font-size: 13px; color: var(--text-hint); font-style: italic; }
.feature-body .btn-gold { margin-top: 26px; }
.guarantee-note {
  display: flex; align-items: center; gap: 10px;
  margin-top: 18px;
  font-size: 14.5px; font-style: italic;
  color: var(--text-subtle);
}
.guarantee-note svg {
  width: 16px; height: 16px; flex-shrink: 0;
  color: var(--gold-mid);
}

/* ── Zahlenleiste (Umfrage) ────────────────────── */
.stats-bar {
  display: flex; align-items: stretch; justify-content: center;
  gap: 0; margin-top: 56px;
}
.stat { flex: 1; text-align: center; padding: 0 28px; max-width: 340px; }
.stat-num {
  font-size: 52px; font-weight: 300; font-style: italic;
  color: var(--gold-mid); line-height: 1.1;
}
.stat-label {
  margin-top: 10px;
  font-size: 14.5px; line-height: 1.5; font-weight: 300;
  color: var(--text-subtle);
}
.stat-sep { width: 1px; background: rgba(212,185,110,0.20); }

/* ── Audio-Karten (Hörprobe & Stimmen) ─────────── */
.audio-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px; max-width: 760px; margin: 0 auto;
}
.audio-card { padding: 40px 40px 36px; }
.audio-kicker {
  font-size: 13px; font-weight: 600; letter-spacing: 1.8px;
  text-transform: uppercase; color: rgba(212,185,110,0.65);
}
.audio-card h3 {
  margin-top: 14px;
  font-size: 25px; font-weight: 500; line-height: 1.3;
}
.audio-card p {
  margin-top: 12px;
  font-size: 16px; font-weight: 300; line-height: 1.55;
  color: var(--text-subtle);
}
.audio-card audio {
  width: 100%; margin-top: 24px;
  accent-color: #D4B96E;
  border-radius: 999px;
}

/* ── Testimonial-Karten ────────────────────────── */
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.testi-card { padding: 36px 34px 32px; margin: 0; }
.testi-card .stars { font-size: 15px; }
.testi-card blockquote {
  margin-top: 18px;
  font-size: 19px; font-weight: 300; font-style: italic;
  line-height: 1.55; color: var(--text-muted);
}
.testi-card figcaption {
  margin-top: 18px;
  font-size: 13.5px; letter-spacing: 1.8px; text-transform: uppercase;
  color: rgba(212,185,110,0.65); font-weight: 600;
}

/* ── Maria / Founder ───────────────────────────── */
.block-founder { padding-top: 20px; }
.founder {
  display: flex; align-items: center; gap: 52px;
  padding: 56px 64px;
  border-radius: 28px;
  max-width: 920px; margin: 0 auto;
}
.founder-portrait {
  flex-shrink: 0;
  width: 150px; height: 150px; border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, rgba(232,212,159,0.35), transparent 60%),
    linear-gradient(160deg, var(--teal-mid) 0%, var(--teal-dark) 60%, var(--teal-deep) 100%);
  border: 0.5px solid rgba(212,185,110,0.45);
  box-shadow: 0 0 40px rgba(212,185,110,0.15);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.founder-portrait img { width: 100%; height: 100%; object-fit: cover; }
.founder-initial {
  font-size: 60px; font-weight: 400; font-style: italic;
  color: var(--gold-light);
}
.founder-body p + p { margin-top: 12px; }
.founder-promise {
  margin-top: 22px;
  padding: 18px 22px;
  border-left: 2px solid var(--gold-mid);
  border-radius: 0 12px 12px 0;
  background: rgba(212,185,110,0.07);
  font-size: 15.5px; font-weight: 300; line-height: 1.6;
  color: var(--text-muted);
}
.founder-promise strong {
  color: var(--gold-light); font-weight: 600;
}
.founder-signature {
  margin-top: 24px;
  font-size: 30px; font-style: italic; font-weight: 400;
  color: var(--gold-mid);
  letter-spacing: 0.5px;
}
.founder-body h3 { font-size: 32px; font-weight: 400; margin-top: 16px; }
.founder-body h3 em { font-style: italic; color: var(--gold-light); }
.founder-body p {
  margin-top: 16px;
  font-size: 17px; font-weight: 300; line-height: 1.6;
  color: var(--text-subtle);
}

/* ── FAQ ───────────────────────────────────────── */
.block-faq .block-head { margin-bottom: 40px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 0.5px solid rgba(212,185,110,0.18);
}
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 22px 36px 22px 4px;
  font-size: 19px; font-weight: 500;
  color: var(--text-light);
  position: relative;
  transition: color 180ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 8px; top: 50%;
  transform: translateY(-50%);
  font-size: 26px; font-weight: 300;
  color: var(--gold-mid);
  transition: transform 200ms ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--gold-light); }
.faq-item p {
  padding: 0 36px 24px 4px;
  font-size: 16px; font-weight: 300; line-height: 1.6;
  color: var(--text-subtle);
}

/* ── Finaler CTA ───────────────────────────────── */
.block-final { padding-top: 30px; }
.final-cta { text-align: center; max-width: 640px; margin: 0 auto; }
.final-cta h2 {
  font-size: 42px; font-weight: 400; line-height: 1.18;
  text-wrap: balance;
}
.final-cta h2 em { font-style: italic; color: var(--gold-light); }
.final-cta .btn-gold { margin-top: 36px; }
.final-gift {
  margin-top: 22px;
  font-size: 15px; font-style: italic; color: var(--text-hint);
}
.final-gift a { color: var(--gold-mid); text-decoration: none; }
.final-gift a:hover { color: var(--gold-light); }

/* ── Scroll-Flow: Elemente atmen sich ein ──────── */
/* Initialzustand nur, wenn JS bereit ist (html.flow-ready) —
   ohne JS bleibt alles sofort sichtbar. */
html.flow-ready [data-flow] {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms ease;
  transition-delay: var(--flow-delay, 0ms);
  will-change: opacity, transform, filter;
}
html.flow-ready [data-flow].flow-in {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Hairlines zeichnen sich von der Mitte aus */
html.flow-ready .hairline[data-flow-line] {
  transform: scaleX(0);
  transition: transform 1300ms cubic-bezier(0.22, 1, 0.36, 1) 150ms;
}
html.flow-ready .hairline[data-flow-line].flow-line-in {
  transform: scaleX(1);
}

/* Hairlines atmen danach ganz leise im 4–6-Rhythmus weiter */
@media (prefers-reduced-motion: no-preference) {
  .hairline { animation: hairline-breathe 10s ease-in-out infinite; }
}
@keyframes hairline-breathe {
  0%, 100% { opacity: 0.72; }
  40%      { opacity: 1; }
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 70px; padding-bottom: 80px; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .welle-stage { height: 300px; }
  .cat-grid { grid-template-columns: 1fr; }
  .woocommerce ul.products { grid-template-columns: 1fr 1fr; }
  .voucher { flex-direction: column; text-align: center; padding: 48px 32px; }
  .wrap { padding: 0 24px; }
  .main-nav { display: none; }
  .rating-row { justify-content: center; }
  .feature { grid-template-columns: 1fr; }
  .feature-visual { min-height: 280px; }
  .feature-body { padding: 40px 32px 36px; }
  .stats-bar { flex-direction: column; gap: 36px; }
  .stat-sep { display: none; }
  .founder { flex-direction: column; text-align: center; padding: 44px 32px; gap: 32px; }
  .final-cta h2 { font-size: 34px; }
}
@media (max-width: 640px) {
  .woocommerce ul.products { grid-template-columns: 1fr; }
  .header-inner { height: 64px; }
  .wordmark { font-size: 22px; }
}
