/** Shopify CDN: Minification failed

Line 33:48 Expected ":"

**/
/* ============================================================
   Yasora — Globale Basis & Design-Tokens
   Farben & Fonts werden in layout/theme.liquid aus den
   Theme-Settings als CSS-Variablen ausgespielt (siehe :root dort).
   Hier: statische Tokens (Radius, Spacing), Reset und Basis-Styles.
   ============================================================ */

:root {
  /* Radius & Spacing — CLAUDE.md §4 */
  --radius: 14px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-6: 48px;

  /* Layout-Hilfen */
  --wrap-max: 1200px;
  --header-h: 68px;

  /* ----------------------------------------------------------
     Übergangs-Aliasse (Kompatibilität)
     Die bereits gebauten Sections (yasora-sections.css) nutzen
     noch die alte Gold/Serif-Namensgebung. Damit nichts bricht
     und sofort im Lavendel-Look erscheint, werden die alten
     Token-Namen zentral auf die §4-Tokens gemappt.
     -> Werden in den Schritten 2–5 entfernt, sobald die jeweilige
        Section direkt auf die --color-*/--font-* Tokens migriert ist.
     ---------------------------------------------------------- */
  --ink: var(--color-text);
  --muted: var(--color-muted);
  --line: var(--color-border);
  --surface: var(--color-surface);
  --sand: var(--color-surface);
  --gold: var(--color-accent);
  --gold-bright: var(--color-accent);
  --sale: var(--color-sale);
  --serif: var(--font-heading);
  --sans: var(--font-body);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.2;
  margin: 0 0 var(--space-3);
  font-weight: 600;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 var(--space-3); }
a { color: var(--color-accent); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--color-accent-2); }
.muted { color: var(--color-muted); }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--wrap-max); margin: 0 auto; padding-left: var(--space-4); padding-right: var(--space-4); }
.section { padding: var(--space-6) 0; }
.center { text-align: center; }
.rte > :last-child { margin-bottom: 0; }

/* ---------- Skip-Link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--color-cta); color: var(--color-on-cta);
  padding: var(--space-2) var(--space-3); border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  padding: 14px 24px; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer; text-align: center;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .05s ease;
}
.btn:active { transform: translateY(1px); }
/* Primär-CTA: schwarz auf weiß (CLAUDE.md §4) */
.btn--primary,
.btn--gold { /* --gold ist Alt-Name; rendert jetzt als primärer CTA */
  background: var(--color-cta); color: var(--color-on-cta);
}
.btn--primary:hover,
.btn--gold:hover { background: var(--color-accent-2); color: var(--color-on-cta); }
.btn--ghost {
  background: transparent; color: var(--color-text); border-color: var(--color-border);
}
.btn--ghost:hover { border-color: var(--color-accent); color: var(--color-accent); }
.btn--lg { padding: 16px 28px; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: var(--radius);
  background: transparent; border: none; color: var(--color-text);
  cursor: pointer; position: relative;
}
.icon-btn:hover { color: var(--color-accent); }

/* ---------- Header ---------- */
.site-header { background: var(--color-bg); border-bottom: 1px solid var(--color-border); position: sticky; top: 0; z-index: 50; }
.site-header__inner {
  max-width: var(--wrap-max); margin: 0 auto;
  padding: 0 var(--space-4); min-height: var(--header-h);
  display: flex; align-items: center; gap: var(--space-3);
}
.site-header .logo { margin-right: auto; display: inline-flex; align-items: center; }
.site-header .nav { display: flex; gap: var(--space-4); }
.site-header .nav a { color: var(--color-text); font-weight: 500; font-size: .95rem; }
.site-header .nav a:hover,
.site-header .nav a[aria-current="page"] { color: var(--color-accent); }
.header__right { display: flex; align-items: center; gap: var(--space-2); }
.cart-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--color-accent); color: #fff;
  font-size: .68rem; font-weight: 700; line-height: 1;
  min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: 999px; display: flex; align-items: center; justify-content: center;
}
.burger { display: none; }
.mobile-nav { display: none; flex-direction: column; padding: var(--space-2) var(--space-4) var(--space-3); border-top: 1px solid var(--color-border); }
.mobile-nav a { padding: var(--space-3) 0; color: var(--color-text); border-bottom: 1px solid var(--color-border); }
.mobile-nav.is-open { display: flex; }
.lang-form select { border: 1px solid var(--color-border); border-radius: var(--radius); padding: 6px 10px; background: var(--color-bg); color: var(--color-text); }

@media (max-width: 900px) {
  .site-header .nav { display: none; }
  .burger { display: inline-flex; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--color-text); color: #d9d9d9; padding: var(--space-6) 0 var(--space-4); }
.footer__grid {
  max-width: var(--wrap-max); margin: 0 auto; padding: 0 var(--space-4);
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-4);
}
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: var(--space-3); }
.site-footer a { color: #d9d9d9; display: block; padding: 4px 0; font-size: .9rem; }
.site-footer a:hover { color: #fff; }
.footer__bottom {
  max-width: var(--wrap-max); margin: var(--space-4) auto 0; padding: var(--space-3) var(--space-4) 0;
  border-top: 1px solid rgba(255,255,255,.14); font-size: .82rem; color: #a8a8a8;
}
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- Preis-Komponente (snippets/price.liquid) ---------- */
.price { display: inline-flex; align-items: baseline; gap: var(--space-2); flex-wrap: wrap; font-family: var(--font-heading); }
.price__current { color: var(--color-sale); font-weight: 600; font-size: 1.15rem; }
.price__compare { color: var(--color-text); text-decoration: line-through; font-size: .95rem; }
.price__badge {
  font-family: var(--font-body); font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  color: var(--color-sale); background: color-mix(in srgb, var(--color-sale) 14%, transparent);
  border-radius: 999px; padding: 2px 8px;
}
.price--big .price__current { font-size: 1.9rem; }
.price--big .price__compare { font-size: 1.1rem; }

/* ---------- Trust-Icons (snippets/trust-icons.liquid) ---------- */
.trust-icons { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); margin-top: var(--space-4); }
.trust-icons__item { display: flex; align-items: center; gap: var(--space-2); font-size: .85rem; color: var(--color-muted); }
.trust-icons__item svg { width: 22px; height: 22px; color: var(--color-accent); flex-shrink: 0; }
@media (max-width: 480px) { .trust-icons { grid-template-columns: 1fr; } }

/* ---------- Payment-Icons (snippets/payment-icons.liquid) ---------- */
.payment-icons { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-3); }
.payment-icons__badge {
  display: inline-flex; align-items: center; justify-content: center;
  height: 26px; min-width: 44px; padding: 0 8px;
  background: #fff; border-radius: 6px; border: 1px solid var(--color-border);
  font-family: var(--font-body); font-size: .66rem; font-weight: 800; letter-spacing: .02em;
  color: var(--color-text);
}

/* ---------- Produktseite (Basis) ---------- */
.pdp__top { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--space-6); max-width: var(--wrap-max); margin: 0 auto; padding: var(--space-6) var(--space-4); }
.gallery__main img { width: 100%; border-radius: var(--radius); background: var(--color-surface); }
.gallery__thumbs { display: flex; gap: var(--space-2); margin-top: var(--space-2); flex-wrap: wrap; }
.gallery__thumbs button { width: 70px; height: 70px; padding: 0; border: 1px solid var(--color-border); border-radius: 10px; overflow: hidden; background: none; cursor: pointer; }
.gallery__thumbs button[aria-current="true"] { border-color: var(--color-accent); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pdp__subtitle { color: var(--color-muted); margin-top: calc(var(--space-2) * -1); }
.rating { display: flex; align-items: center; gap: var(--space-2); font-size: .85rem; color: var(--color-muted); margin-bottom: var(--space-3); }
.rating .stars { color: var(--color-accent); letter-spacing: 2px; }
.benefits { list-style: none; display: grid; gap: var(--space-2); margin: var(--space-3) 0; }
.benefits li { position: relative; padding-left: 26px; }
.benefits li::before { content: ""; position: absolute; left: 2px; top: .45em; width: 12px; height: 7px; border-left: 2px solid var(--color-accent); border-bottom: 2px solid var(--color-accent); transform: rotate(-45deg); }
.pdp__price { margin: var(--space-4) 0; }
.variant-row { display: grid; gap: var(--space-2); margin-bottom: var(--space-3); }
.variant-row select { padding: 12px; border: 1px solid var(--color-border); border-radius: var(--radius); background: var(--color-bg); }
.buy { display: flex; gap: var(--space-2); align-items: stretch; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; }
.qty button { width: 42px; height: 100%; background: var(--color-surface); border: none; cursor: pointer; font-size: 1.1rem; }
.qty input { width: 48px; text-align: center; border: none; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

@media (max-width: 860px) { .pdp__top { grid-template-columns: 1fr; gap: var(--space-4); } }

/* ---------- Sticky Mobile Buy-Bar ---------- */
.sticky-buy {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; align-items: center; justify-content: space-between; gap: var(--space-3);
  padding: var(--space-2) var(--space-4); background: var(--color-bg);
  border-top: 1px solid var(--color-border); box-shadow: 0 -4px 18px rgba(0,0,0,.06);
  transform: translateY(100%); transition: transform .25s ease;
}
.sticky-buy.is-visible { transform: translateY(0); }
@media (max-width: 860px) { .sticky-buy { display: flex; } }

/* ---------- Cards (Basis) ---------- */
.card { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; }
.card__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.card__body { padding: var(--space-3); }
.card__title { font-family: var(--font-heading); font-weight: 600; margin-bottom: var(--space-2); }

/* ---------- Before/After (generisches Grundgerüst, optionaler Hook) ---------- */
.ba { position: relative; overflow: hidden; border-radius: var(--radius); user-select: none; touch-action: none; }
.ba__after { position: absolute; inset: 0; clip-path: inset(0 50% 0 0); }
.ba__divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; transform: translateX(-50%); pointer-events: none; }
