/* ═══════════════════════════════════════════════════════════════
   INSERT-PLAY SHOP — eigenständiges Vanilla-Stylesheet
   Brand-Tokens identisch zur Hauptsite (Gold/Teal/Navy).
   ═══════════════════════════════════════════════════════════════ */
:root {
  --gold: #EDA803;
  --gold-2: #F2C44A;
  --gold-dark: #D57101;
  --teal: #5BFEDD;
  --teal-dark: #34C2A8;
  --navy: #001520;
  --navy-mid: #04222E;
  --navy-light: #0A3140;
  --white: #FFFFFF;
  --gray: #8FA3B1;
  --text-light: #C8D8E4;

  --p1: 8, 16, 26;
  --p2: 13, 27, 42;
  --p3: 19, 34, 49;
  --p4: 27, 48, 68;
  --surface: 255, 255, 255;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 18px 50px rgba(0, 0, 0, .45);
  --maxw: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', system-ui, -apple-system, sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.cond { font-family: 'Barlow Condensed', 'Barlow', sans-serif; }

/* ── Animierter Hintergrund (Orbs + Grain) ── */
.orb {
  position: fixed; border-radius: 50%; filter: blur(90px);
  opacity: .07; pointer-events: none; z-index: 0;
  animation: orbFloat 24s ease-in-out infinite;
}
.orb-1 { width: 620px; height: 620px; background: var(--teal); top: -12%; left: -6%; }
.orb-2 { width: 540px; height: 540px; background: var(--gold); bottom: -14%; right: -8%; animation-delay: -8s; }
.orb-3 { width: 420px; height: 420px; background: var(--teal); top: 46%; right: 24%; animation-delay: -4s; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.06); }
  66% { transform: translate(-24px, 24px) scale(.96); }
}
body::after {
  content: ''; position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}
.shell { position: relative; z-index: 2; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.ico { width: 1em; height: 1em; display: inline-block; vertical-align: middle; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

/* ── Announcement Bar ── */
.topbar {
  background: rgba(var(--p1), .92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(var(--surface), .05);
  font-size: 12.5px; letter-spacing: .04em; color: var(--text-light);
  text-align: center; padding: 8px 16px;
}
.topbar b { color: var(--gold); }

/* ── Header ── */
.hd {
  position: sticky; top: 0; z-index: 50;
  background: rgba(var(--p1), .82); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(var(--surface), .06);
}
.hd-in { display: flex; align-items: center; gap: 26px; height: 70px; }
.brand { display: flex; align-items: baseline; gap: 9px; font-weight: 900; font-size: 22px; letter-spacing: .02em; text-transform: uppercase; }
.brand .b-mark { color: var(--gold); }
.brand .b-shop {
  font-size: 12px; font-weight: 700; letter-spacing: .18em; color: var(--navy);
  background: var(--teal); padding: 3px 8px; border-radius: 5px; transform: translateY(-2px);
}
.hd-nav { display: flex; gap: 22px; margin-left: 8px; }
.hd-nav a { font-size: 14px; font-weight: 600; color: var(--text-light); padding: 6px 2px; position: relative; transition: color .2s; }
.hd-nav a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gold); transition: width .25s; }
.hd-nav a:hover { color: var(--white); }
.hd-nav a:hover::after { width: 100%; }
.hd-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.search {
  display: flex; align-items: center; gap: 8px; background: rgba(var(--surface), .05);
  border: 1px solid rgba(var(--surface), .09); border-radius: 999px; padding: 8px 14px; color: var(--gray);
  transition: border-color .25s, background .25s; min-width: 210px;
}
.search:focus-within { border-color: rgba(91, 254, 221, .4); background: rgba(91, 254, 221, .05); }
.search .ico { font-size: 16px; }
.search input { background: none; border: none; outline: none; color: var(--white); font-size: 14px; width: 100%; }
.search input::placeholder { color: var(--gray); }
.icon-btn {
  position: relative; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; font-size: 19px; color: var(--text-light);
  border: 1px solid rgba(var(--surface), .09); background: rgba(var(--surface), .04); transition: all .2s;
}
.icon-btn:hover { color: var(--white); border-color: rgba(91, 254, 221, .35); background: rgba(91, 254, 221, .07); }
.cart-count {
  position: absolute; top: -4px; right: -4px; min-width: 19px; height: 19px; padding: 0 5px;
  background: var(--gold); color: var(--navy); font-size: 11px; font-weight: 800; border-radius: 999px;
  display: grid; place-items: center; box-shadow: 0 0 0 2px var(--navy);
}
.nav-toggle { display: none; font-size: 22px; color: var(--white); }

/* ── Hero ── */
.hero { position: relative; padding: 84px 0 56px; text-align: center; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(91, 254, 221, .14), transparent 70%),
              radial-gradient(ellipse 50% 40% at 82% 92%, rgba(237, 168, 3, .1), transparent 60%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--teal);
  background: rgba(91, 254, 221, .1); border: 1px solid rgba(91, 254, 221, .25);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 24px;
}
.hero-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 10px var(--teal); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.7); } }
.hero h1 { font-size: clamp(40px, 6.5vw, 76px); font-weight: 900; line-height: .98; letter-spacing: -.02em; text-transform: uppercase; }
.hero h1 .g { background: linear-gradient(120deg, var(--gold-2), var(--gold-dark)); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; }
.hero p { max-width: 600px; margin: 22px auto 0; font-size: 17px; color: var(--text-light); }
.hero-cta { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 13px 30px; border-radius: var(--radius-sm); font-weight: 700; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; transition: all .22s; }
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 0 0 0 rgba(237, 168, 3, 0); }
.btn-gold:hover { background: #FFD740; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(237, 168, 3, .3); }
.btn-ghost { border: 1.5px solid rgba(var(--surface), .2); color: var(--white); }
.btn-ghost:hover { border-color: var(--teal); background: rgba(91, 254, 221, .08); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

/* ── Section heading ── */
.sec { padding: 56px 0; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
.sec-tag { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); }
.sec-head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 900; text-transform: uppercase; letter-spacing: -.01em; margin-top: 6px; }
.sec-head h2 em { font-style: normal; color: var(--gold); }

/* ── Category chips ── */
.chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600;
  padding: 9px 18px; border-radius: 999px; color: var(--text-light);
  background: rgba(var(--surface), .04); border: 1px solid rgba(var(--surface), .09); transition: all .2s;
}
.chip .ico { font-size: 15px; }
.chip:hover { color: var(--white); border-color: rgba(91, 254, 221, .3); }
.chip.is-active { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ── Product grid ── */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(265px, 1fr)); gap: 22px; }
.card {
  position: relative; isolation: isolate; --mx: 50%; --my: 50%;
  background: rgba(var(--p3), .6); backdrop-filter: blur(6px);
  border: 1px solid rgba(var(--surface), .07); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .3s, border-color .3s, box-shadow .3s;
}
.card::after {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0; transition: opacity .4s;
  background: radial-gradient(320px circle at var(--mx) var(--my), rgba(237, 168, 3, .14), transparent 60%);
}
.card:hover { transform: translateY(-6px); border-color: rgba(91, 254, 221, .25); box-shadow: var(--shadow); }
.card:hover::after { opacity: 1; }
.card-media {
  position: relative; aspect-ratio: 4 / 3; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(var(--p4), .9), rgba(var(--p2), .9));
  border-bottom: 1px solid rgba(var(--surface), .06); overflow: hidden;
}
.card-media::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 35%, rgba(91, 254, 221, .12), transparent 60%); }
.card-media .ico { font-size: 64px; color: var(--gold); opacity: .85; filter: drop-shadow(0 6px 18px rgba(237, 168, 3, .25)); transition: transform .35s; }
.card:hover .card-media .ico { transform: scale(1.08) rotate(-3deg); }
.badge {
  position: absolute; top: 12px; left: 12px; z-index: 2; font-size: 11px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
}
.badge-new { background: var(--teal); color: var(--navy); }
.badge-sale { background: var(--gold-dark); color: var(--white); }
.badge-hot { background: #C51C28; color: var(--white); }
.fav { position: absolute; top: 10px; right: 10px; z-index: 2; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-size: 16px; color: var(--white); background: rgba(0, 21, 32, .5); backdrop-filter: blur(4px); transition: all .2s; }
.fav:hover, .fav.is-on { color: #F697A4; background: rgba(0, 21, 32, .8); }
.card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.card-cat { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); }
.card-title { font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: .01em; margin: 6px 0 4px; }
.card-desc { font-size: 13.5px; color: var(--text-light); line-height: 1.5; }
.stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; margin-top: 10px; }
.stars span { color: var(--gray); margin-left: 6px; }
.card-foot { margin-top: auto; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { display: flex; flex-direction: column; }
.price .now { font-size: 21px; font-weight: 800; color: var(--white); }
.price .was { font-size: 13px; color: var(--gray); text-decoration: line-through; }
.add {
  display: inline-flex; align-items: center; gap: 7px; background: rgba(237, 168, 3, .12);
  color: var(--gold); border: 1px solid rgba(237, 168, 3, .3); padding: 10px 16px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; transition: all .2s;
}
.add:hover { background: var(--gold); color: var(--navy); }
.add .ico { font-size: 16px; }

/* ── Feature/Trust row ── */
.trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2px; border: 1px solid rgba(var(--surface), .07); border-radius: var(--radius); overflow: hidden; background: rgba(var(--surface), .03); }
.trust-item { display: flex; gap: 14px; align-items: center; padding: 26px; background: rgba(var(--p2), .55); }
.trust-ico { width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px; display: grid; place-items: center; font-size: 22px; color: var(--teal); background: rgba(91, 254, 221, .1); }
.trust-item h4 { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; }
.trust-item p { font-size: 13px; color: var(--text-light); }

/* ── Newsletter ── */
.news { text-align: center; background: rgba(var(--p2), .5); border: 1px solid rgba(var(--surface), .07); border-radius: var(--radius); padding: 48px 28px; position: relative; overflow: hidden; }
.news::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(237, 168, 3, .1), transparent 70%); pointer-events: none; }
.news h2 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 900; text-transform: uppercase; position: relative; }
.news p { color: var(--text-light); margin: 12px auto 24px; max-width: 480px; position: relative; }
.news-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; position: relative; flex-wrap: wrap; }
.news-form input { flex: 1; min-width: 200px; background: rgba(var(--surface), .05); border: 1px solid rgba(var(--surface), .12); border-radius: var(--radius-sm); padding: 14px 18px; color: var(--white); font-size: 15px; outline: none; }
.news-form input:focus { border-color: var(--teal); }

/* ── Footer ── */
.ft { border-top: 1px solid rgba(var(--surface), .07); margin-top: 40px; padding: 40px 0 28px; color: var(--gray); font-size: 13.5px; }
.ft-in { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.ft a:hover { color: var(--teal); }
.ft-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ── Cart Drawer ── */
.scrim { position: fixed; inset: 0; z-index: 90; background: rgba(0, 8, 14, .6); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.scrim.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; z-index: 100; height: 100%; width: 400px; max-width: 92vw;
  background: linear-gradient(180deg, rgba(10, 22, 32, .98), rgba(4, 16, 24, .98)); backdrop-filter: blur(16px);
  border-left: 1px solid rgba(var(--surface), .09); box-shadow: -20px 0 60px rgba(0, 0, 0, .5);
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4, 0, .2, 1); display: flex; flex-direction: column;
}
.drawer.is-open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid rgba(var(--surface), .08); }
.drawer-head h3 { font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; }
.drawer-head .ico { font-size: 22px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 14px 24px; }
.ci { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(var(--surface), .06); }
.ci-media { width: 64px; height: 64px; flex-shrink: 0; border-radius: 10px; display: grid; place-items: center; font-size: 26px; color: var(--gold); background: linear-gradient(150deg, rgba(var(--p4), .9), rgba(var(--p2), .9)); }
.ci-info { flex: 1; min-width: 0; }
.ci-info h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; }
.ci-info .ci-cat { font-size: 11.5px; color: var(--teal); text-transform: uppercase; letter-spacing: .08em; }
.ci-info .ci-price { font-size: 15px; font-weight: 800; margin-top: 4px; }
.qty { display: inline-flex; align-items: center; gap: 0; margin-top: 8px; border: 1px solid rgba(var(--surface), .14); border-radius: 7px; overflow: hidden; }
.qty button { width: 26px; height: 26px; display: grid; place-items: center; font-size: 16px; color: var(--text-light); }
.qty button:hover { background: rgba(var(--surface), .08); color: var(--white); }
.qty span { width: 30px; text-align: center; font-size: 14px; font-weight: 700; }
.ci-rm { align-self: flex-start; color: var(--gray); font-size: 17px; transition: color .2s; }
.ci-rm:hover { color: #F697A4; }
.cart-empty { text-align: center; color: var(--gray); padding: 60px 20px; }
.cart-empty .ico { font-size: 48px; opacity: .4; margin-bottom: 14px; }
.drawer-foot { padding: 20px 24px 26px; border-top: 1px solid rgba(var(--surface), .08); }
.cart-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14px; color: var(--text-light); }
.cart-row.total { font-size: 19px; font-weight: 800; color: var(--white); margin: 14px 0 18px; }
.cart-note { font-size: 12px; color: var(--gray); text-align: center; margin-top: 12px; }

/* ── State pages (coming-soon / maintenance) ── */
.state { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 40px 24px; position: relative; }
.state-card { max-width: 620px; position: relative; z-index: 2; }
.state .logo { font-size: 26px; font-weight: 900; text-transform: uppercase; letter-spacing: .02em; margin-bottom: 30px; }
.state .logo .b-mark { color: var(--gold); }
.state .logo .b-shop { font-size: 13px; background: var(--teal); color: var(--navy); padding: 3px 9px; border-radius: 5px; letter-spacing: .16em; }
.state h1 { font-size: clamp(40px, 8vw, 84px); font-weight: 900; line-height: .98; text-transform: uppercase; letter-spacing: -.02em; }
.state h1 .g { background: linear-gradient(120deg, var(--gold-2), var(--gold-dark)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.state p { color: var(--text-light); font-size: 18px; margin: 22px auto 0; max-width: 460px; }
.countdown { display: flex; gap: 14px; justify-content: center; margin: 38px 0; flex-wrap: wrap; }
.cd-box { min-width: 86px; padding: 18px 10px; border-radius: var(--radius); background: rgba(var(--p3), .6); border: 1px solid rgba(var(--surface), .08); backdrop-filter: blur(6px); }
.cd-box b { display: block; font-size: 40px; font-weight: 900; line-height: 1; color: var(--gold); font-variant-numeric: tabular-nums; }
.cd-box span { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gray); margin-top: 6px; display: block; }
.state-actions { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.spinner { width: 54px; height: 54px; margin: 0 auto 28px; border-radius: 50%; border: 4px solid rgba(91, 254, 221, .15); border-top-color: var(--teal); animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Toast ── */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 120%); z-index: 200; background: var(--teal); color: var(--navy); font-weight: 700; font-size: 14px; padding: 13px 22px; border-radius: 999px; box-shadow: 0 12px 40px rgba(0, 0, 0, .4); transition: transform .35s cubic-bezier(.4, 0, .2, 1); display: flex; align-items: center; gap: 8px; }
.toast.is-show { transform: translate(-50%, 0); }

/* ── Responsive ── */
@media (max-width: 880px) {
  .hd-nav, .search { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .sec { padding: 40px 0; }
  .hero { padding: 56px 0 40px; }
}
@media (prefers-reduced-motion: reduce) {
  .orb, .spinner { animation: none; }
  .card:hover { transform: none; }
}

/* ═══════════════════════════════════════════════════════════════
   SHOP v2 — Logo-Header, i18n-Switcher, Kategorie/Produkt/Warenkorb,
   Login, Footer, Breadcrumb. Erweitert das Basis-Stylesheet oben.
   ═══════════════════════════════════════════════════════════════ */

/* Logo im Header/Footer */
.brand-logo { display: inline-flex; align-items: center; gap: 9px; }
.brand-logo img { height: 30px; width: auto; display: block; }
.brand-logo .b-shop { font-size: 11px; font-weight: 800; letter-spacing: .18em; color: var(--navy); background: var(--teal); padding: 3px 7px; border-radius: 5px; }

/* Sprach-Switcher */
.lang { position: relative; }
.lang-cur { display: inline-flex; align-items: center; gap: 3px; font-size: 13px; font-weight: 700; color: var(--text-light); padding: 8px 10px; border-radius: 8px; border: 1px solid rgba(var(--surface), .09); background: rgba(var(--surface), .04); }
.lang-cur .ico { font-size: 14px; }
.lang-cur:hover { color: var(--white); }
.lang-menu { position: absolute; top: calc(100% + 8px); right: 0; background: rgba(10, 22, 32, .98); backdrop-filter: blur(14px); border: 1px solid rgba(var(--surface), .1); border-radius: 10px; padding: 6px; display: none; flex-direction: column; min-width: 84px; box-shadow: var(--shadow); z-index: 60; }
.lang.is-open .lang-menu { display: flex; }
.lang-opt { text-align: left; padding: 8px 12px; border-radius: 7px; font-size: 13px; font-weight: 600; color: var(--text-light); }
.lang-opt:hover { background: rgba(var(--surface), .07); color: var(--white); }
.lang-opt.is-active { color: var(--gold); }
.icon-btn.sm { width: 38px; height: 38px; font-size: 17px; }

/* Mobile-Nav */
@media (max-width: 880px) {
  .hd-nav { position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; gap: 0; background: rgba(8, 18, 28, .98); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(var(--surface), .08); padding: 8px 28px 16px; display: none; }
  .hd-nav.is-open { display: flex; }
}

/* Toast-Fehlervariante */
.toast.is-err { background: #C51C28; color: #fff; }

/* Hero-Visual (Home) */
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; text-align: left; }
.hero-grid .hero-cta { justify-content: flex-start; }
.hero-visual { position: relative; min-height: 360px; display: grid; place-items: center; }
.hero-stage { position: relative; width: 300px; height: 300px; }
.hv-card { position: absolute; border-radius: 18px; background: rgba(var(--p3), .8); border: 1px solid rgba(var(--surface), .1); backdrop-filter: blur(8px); display: grid; place-items: center; box-shadow: var(--shadow); animation: hvFloat 7s ease-in-out infinite; }
.hv-card .ico { font-size: 56px; color: var(--gold); }
.hv-1 { width: 200px; height: 200px; left: 50px; top: 50px; z-index: 2; }
.hv-1 .ico { font-size: 84px; }
.hv-2 { width: 120px; height: 120px; left: -10px; top: 10px; animation-delay: -2s; }
.hv-2 .ico { color: var(--teal); }
.hv-3 { width: 110px; height: 110px; right: -14px; bottom: 6px; animation-delay: -4s; }
.hv-glow { position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(237, 168, 3, .2), transparent 60%); filter: blur(30px); }
@keyframes hvFloat { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(1deg); } }
@media (max-width: 820px) { .hero-grid { grid-template-columns: 1fr; text-align: center; } .hero-grid .hero-cta { justify-content: center; } .hero-visual { min-height: 280px; } }

/* Kategorie-Kacheln (Home) */
.cat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.cat-card { display: flex; align-items: center; gap: 14px; padding: 22px; border-radius: var(--radius); background: rgba(var(--p2), .55); border: 1px solid rgba(var(--surface), .08); transition: all .25s; }
.cat-card:hover { border-color: rgba(91, 254, 221, .3); transform: translateY(-4px); box-shadow: var(--shadow); }
.cat-ico { width: 50px; height: 50px; flex-shrink: 0; border-radius: 12px; display: grid; place-items: center; font-size: 24px; color: var(--gold); background: rgba(237, 168, 3, .1); }
.cat-card h3 { font-size: 18px; font-weight: 700; text-transform: uppercase; flex: 1; }
.cat-arrow { font-size: 18px; color: var(--teal); transition: transform .25s; }
.cat-card:hover .cat-arrow { transform: translateX(4px); }

/* Breadcrumb */
.crumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray); margin-bottom: 22px; flex-wrap: wrap; }
.crumb a { color: var(--text-light); display: inline-flex; align-items: center; }
.crumb a:hover { color: var(--teal); }
.crumb .ico { font-size: 15px; }
.crumb .sep { font-size: 13px; color: var(--gray); }
.crumb > span:last-child { color: var(--white); }

/* Page head */
.page-head { padding: 40px 0 8px; }
.page-head h1 { font-size: clamp(30px, 5vw, 52px); font-weight: 900; text-transform: uppercase; letter-spacing: -.01em; }
.page-head h1 em { font-style: normal; color: var(--gold); }
.empty-msg { color: var(--text-light); padding: 40px 0; text-align: center; }

/* Kategorie-Layout */
.cat-layout { display: grid; grid-template-columns: 230px 1fr; gap: 32px; align-items: start; padding-bottom: 60px; }
.cat-aside { position: sticky; top: 86px; background: rgba(var(--p2), .5); border: 1px solid rgba(var(--surface), .07); border-radius: var(--radius); padding: 22px; }
.cat-aside h4 { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.filter-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 22px; }
.filter-list a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px; font-size: 14px; color: var(--text-light); transition: all .2s; }
.filter-list a .ico { font-size: 16px; color: var(--gray); }
.filter-list a:hover { background: rgba(var(--surface), .05); color: var(--white); }
.filter-list a.is-active { background: rgba(237, 168, 3, .12); color: var(--gold); }
.filter-list a.is-active .ico { color: var(--gold); }
.cat-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.cat-bar .count { font-size: 14px; color: var(--gray); }
.sort { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-light); }
.sort select { background: rgba(var(--surface), .05); border: 1px solid rgba(var(--surface), .12); color: var(--white); border-radius: 8px; padding: 9px 12px; font-size: 13px; font-family: inherit; cursor: pointer; }
@media (max-width: 760px) { .cat-layout { grid-template-columns: 1fr; } .cat-aside { position: static; } }

/* Produkt-Detail */
.pd { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; padding-bottom: 30px; }
.pd-media { border-radius: var(--radius); background: linear-gradient(150deg, rgba(var(--p4), .9), rgba(var(--p2), .9)); border: 1px solid rgba(var(--surface), .08); aspect-ratio: 1 / 1; display: grid; place-items: center; position: relative; overflow: hidden; }
.pd-media::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 40%, rgba(91, 254, 221, .14), transparent 60%); }
.pd-media-inner { position: relative; display: grid; place-items: center; }
.pd-media .ico { font-size: 160px; color: var(--gold); filter: drop-shadow(0 12px 30px rgba(237, 168, 3, .3)); }
.pd-media .badge { top: 18px; left: 18px; }
.pd-info > .card-cat { font-size: 12px; }
.pd-info h1 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 900; text-transform: uppercase; letter-spacing: -.01em; margin: 6px 0 10px; }
.pd-price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin: 18px 0; }
.pd-price .now { font-size: 34px; font-weight: 900; color: var(--white); }
.pd-price .was { font-size: 18px; color: var(--gray); text-decoration: line-through; }
.pd-price .pd-netto { font-size: 12px; color: var(--gray); width: 100%; }
.pd-desc { font-size: 16px; line-height: 1.7; color: var(--text-light); }
.pd-stock { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--teal); margin: 18px 0; }
.pd-stock .ico { font-size: 16px; }
.pd-buy { display: flex; gap: 14px; align-items: center; margin: 8px 0 30px; flex-wrap: wrap; }
.qty { display: inline-flex; align-items: center; border: 1px solid rgba(var(--surface), .16); border-radius: 8px; overflow: hidden; }
.qty button { width: 30px; height: 32px; display: grid; place-items: center; color: var(--text-light); font-size: 15px; }
.qty button:hover { background: rgba(var(--surface), .08); color: var(--white); }
.qty span { min-width: 34px; text-align: center; font-weight: 700; }
.qty.big button { width: 46px; height: 50px; font-size: 18px; }
.qty.big span { min-width: 44px; font-size: 17px; }
.pd-spec-h { font-size: 14px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.pd-specs { width: 100%; border-collapse: collapse; }
.pd-specs th, .pd-specs td { text-align: left; padding: 11px 0; border-bottom: 1px solid rgba(var(--surface), .08); font-size: 14px; }
.pd-specs th { color: var(--gray); font-weight: 600; width: 45%; }
.pd-specs td { color: var(--white); }
@media (max-width: 760px) { .pd { grid-template-columns: 1fr; gap: 26px; } .pd-media .ico { font-size: 110px; } }

/* Warenkorb-Seite */
.wk-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; padding-bottom: 60px; }
.wk-list { border: 1px solid rgba(var(--surface), .08); border-radius: var(--radius); overflow: hidden; }
.wk-head { display: grid; grid-template-columns: 1fr 120px 120px 110px; gap: 12px; padding: 14px 20px; font-size: 11.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--gray); background: rgba(var(--surface), .04); }
.wk-row { display: grid; grid-template-columns: 64px 1fr 120px 120px 110px; gap: 12px; align-items: center; padding: 18px 20px; border-top: 1px solid rgba(var(--surface), .06); }
.wk-media { width: 64px; height: 64px; border-radius: 10px; display: grid; place-items: center; font-size: 28px; color: var(--gold); background: linear-gradient(150deg, rgba(var(--p4), .9), rgba(var(--p2), .9)); }
.wk-main { min-width: 0; }
.wk-cat { font-size: 11.5px; color: var(--teal); text-transform: uppercase; letter-spacing: .08em; }
.wk-name { display: block; font-size: 17px; font-weight: 700; text-transform: uppercase; margin: 2px 0 6px; }
.wk-rm { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray); }
.wk-rm:hover { color: #F697A4; }
.wk-unit { font-size: 14px; color: var(--text-light); }
.wk-sum { font-size: 17px; font-weight: 800; text-align: right; }
.wk-head span:nth-child(1) { grid-column: span 1; }
.wk-summary { position: sticky; top: 86px; background: rgba(var(--p2), .55); border: 1px solid rgba(var(--surface), .08); border-radius: var(--radius); padding: 26px; }
.wk-summary h3 { font-size: 20px; font-weight: 800; text-transform: uppercase; margin-bottom: 18px; }
.wk-summary .btn { margin-top: 18px; }
.wk-empty { text-align: center; padding: 80px 20px; color: var(--gray); }
.wk-empty .ico { font-size: 64px; opacity: .4; margin-bottom: 18px; }
.wk-empty .btn { margin-top: 22px; }
@media (max-width: 820px) {
  .wk-layout { grid-template-columns: 1fr; }
  .wk-head { display: none; }
  .wk-row { grid-template-columns: 56px 1fr auto; grid-template-areas: "m main sum" "m qty qty"; row-gap: 12px; }
  .wk-media { grid-area: m; } .wk-main { grid-area: main; } .wk-sum { grid-area: sum; } .wk-row .qty { grid-area: qty; }
  .wk-unit { display: none; }
}

/* Footer v2 */
.ft { padding: 56px 0 28px; }
.ft-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 30px; border-bottom: 1px solid rgba(var(--surface), .07); }
.ft-brand p { margin-top: 14px; max-width: 280px; font-size: 13.5px; color: var(--gray); line-height: 1.6; }
.ft-col h4 { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.ft-col a { display: block; padding: 5px 0; color: var(--gray); font-size: 14px; }
.ft-col a:hover { color: var(--teal); }
.ft-net { font-size: 12px; color: var(--gray); line-height: 1.6; margin: 22px 0 0; max-width: 880px; }
.ft-bottom { margin-top: 18px; font-size: 13px; color: var(--gray); }
@media (max-width: 760px) { .ft-grid { grid-template-columns: 1fr 1fr; } }

/* Login / Auth */
.auth { min-height: calc(100vh - 70px); display: grid; place-items: center; padding: 50px 20px; }
.auth-card { width: 100%; max-width: 440px; background: rgba(var(--p2), .6); border: 1px solid rgba(var(--surface), .09); border-radius: 18px; padding: 36px; backdrop-filter: blur(10px); box-shadow: var(--shadow); position: relative; z-index: 2; }
.auth-logo { display: flex; justify-content: center; margin-bottom: 18px; }
.auth-card h1 { font-size: 26px; font-weight: 900; text-transform: uppercase; text-align: center; }
.auth-sub { text-align: center; color: var(--text-light); font-size: 14px; margin: 8px 0 22px; }
.auth-tabs { display: flex; gap: 4px; background: rgba(var(--surface), .05); border-radius: 10px; padding: 4px; margin-bottom: 22px; }
.auth-tab { flex: 1; padding: 10px; border-radius: 7px; font-size: 14px; font-weight: 700; color: var(--text-light); }
.auth-tab.is-active { background: var(--gold); color: var(--navy); }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--text-light); margin-bottom: 6px; }
.field input { width: 100%; background: rgba(var(--surface), .05); border: 1px solid rgba(var(--surface), .12); border-radius: 9px; padding: 13px 15px; color: var(--white); font-size: 15px; font-family: inherit; outline: none; transition: border-color .2s; }
.field input:focus { border-color: var(--teal); }
.auth-row { display: flex; justify-content: flex-end; margin: -4px 0 18px; }
.auth-row a { font-size: 13px; color: var(--teal); }
.auth-sep { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--gray); font-size: 12px; }
.auth-sep::before, .auth-sep::after { content: ''; flex: 1; height: 1px; background: rgba(var(--surface), .1); }
.auth-google { width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 13px; border-radius: 9px; border: 1px solid rgba(var(--surface), .16); color: var(--white); font-weight: 600; font-size: 14px; background: rgba(var(--surface), .04); transition: all .2s; }
.auth-google:hover { background: rgba(var(--surface), .08); border-color: rgba(91, 254, 221, .3); }
.auth-google .ico { font-size: 18px; color: var(--teal); }
.auth-b2b { text-align: center; font-size: 12px; color: var(--gray); margin-top: 18px; }
.auth-pane { display: none; } .auth-pane.is-active { display: block; }

/* ═══ SHOP v3 — Produktbilder, Galerie/Video, Farben, Tabs, Kategorie-Baum ═══ */

/* Produktbilder in Karten / Drawer / Warenkorb */
.card-media.has-img { background: #fff; }
.card-img { width: 100%; height: 100%; object-fit: cover; }
.ci-media.has-img, .wk-media.has-img { background: #fff; overflow: hidden; }
.ci-media.has-img img, .wk-media.has-img img { width: 100%; height: 100%; object-fit: cover; }

/* Kategorie-Baum (Sidebar) */
.filter-tree { display: flex; flex-direction: column; gap: 2px; }
.ct-link { display: flex; align-items: center; gap: 9px; padding: 8px 10px; border-radius: 8px; font-size: 14px; color: var(--text-light); transition: all .18s; }
.ct-link .ico { font-size: 15px; color: var(--gray); flex-shrink: 0; }
.ct-link:hover { background: rgba(var(--surface), .05); color: var(--white); }
.ct-link.is-active { background: rgba(237, 168, 3, .12); color: var(--gold); font-weight: 700; }
.ct-link.is-active .ico { color: var(--gold); }
.ct-link.d1 { padding-left: 22px; font-size: 13.5px; }
.ct-link.d2 { padding-left: 36px; font-size: 13px; color: var(--gray); }
.ct-children { display: none; }
.ct-children.is-open { display: block; }
.filter-tree > .ct-link.d0 + .ct-children { display: block; } /* Hauptkategorien immer aufgeklappt */

/* Produkt: Galerie + Video */
.pd-media { background: none !important; border: none !important; aspect-ratio: auto !important; display: block !important; }
.pd-stage { position: relative; aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; background: #fff; display: grid; place-items: center; border: 1px solid rgba(var(--surface), .08); }
.pd-stage img, .pd-stage video { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.pd-stage .badge { top: 16px; left: 16px; z-index: 2; }
.pd-noimg { width: 100%; height: 100%; display: grid; place-items: center; background: linear-gradient(150deg, rgba(var(--p4), .9), rgba(var(--p2), .9)); }
.pd-noimg .ico { font-size: 140px; color: var(--gold); }
.pd-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.pd-thumb { width: 70px; height: 70px; border-radius: 10px; overflow: hidden; border: 2px solid rgba(var(--surface), .1); background: #fff; padding: 0; transition: border-color .2s; }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb:hover { border-color: rgba(91, 254, 221, .4); }
.pd-thumb.is-active { border-color: var(--gold); }
.pd-thumb.pd-vid { display: grid; place-items: center; background: rgba(var(--p3), .9); color: var(--teal); font-size: 22px; }

/* Farb-Swatches */
.pd-colors { margin: 18px 0; }
.pd-colors-l { font-size: 13px; color: var(--text-light); }
.pd-colors-l b { color: var(--white); }
.pd-swatches { display: flex; gap: 10px; margin-top: 10px; }
.pd-swatch { width: 34px; height: 34px; border-radius: 50%; background: var(--sw); border: 2px solid rgba(var(--surface), .2); box-shadow: 0 0 0 2px transparent; transition: box-shadow .2s, transform .15s; }
.pd-swatch:hover { transform: scale(1.08); }
.pd-swatch.is-active { box-shadow: 0 0 0 2px var(--navy), 0 0 0 4px var(--white); }

/* Produkt-Tabs */
.pd-tabs-wrap { padding: 44px 0 10px; }
.pd-tabs { display: flex; gap: 4px; border-bottom: 1px solid rgba(var(--surface), .1); margin-bottom: 24px; flex-wrap: wrap; }
.pd-tab { padding: 13px 22px; font-size: 14px; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; color: var(--text-light); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.pd-tab:hover { color: var(--white); }
.pd-tab.is-active { color: var(--gold); border-bottom-color: var(--gold); }
.pd-pane { display: none; max-width: 820px; }
.pd-pane.is-active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.pd-feats { list-style: none; display: grid; gap: 12px; margin-bottom: 18px; }
.pd-feats li { display: flex; gap: 12px; font-size: 15px; line-height: 1.55; color: var(--text-light); }
.pd-feats li .ico { color: var(--teal); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.pd-long { font-size: 15px; line-height: 1.7; color: var(--gray); }
.pd-docs { display: flex; flex-direction: column; gap: 10px; }
.pd-doc { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: 10px; background: rgba(var(--surface), .04); border: 1px solid rgba(var(--surface), .09); color: var(--text-light); transition: all .2s; }
.pd-doc:hover { border-color: rgba(91, 254, 221, .3); color: var(--white); }
.pd-doc .ico:first-child { color: var(--gold); font-size: 20px; }
.pd-doc span { flex: 1; font-weight: 600; }
.pd-doc .ico:last-child { color: var(--teal); }
.pd-legal-list { display: grid; grid-template-columns: 200px 1fr; gap: 10px 20px; margin-bottom: 16px; }
.pd-legal-list dt { font-size: 13px; color: var(--gray); font-weight: 600; }
.pd-legal-list dd { font-size: 14px; color: var(--white); }
.pd-legal-note { font-size: 12.5px; color: var(--gray); line-height: 1.6; max-width: 680px; }
@media (max-width: 560px) { .pd-legal-list { grid-template-columns: 1fr; gap: 2px 0; } .pd-legal-list dd { margin-bottom: 10px; } }

/* ═══ SHOP v4 — Produkt-PNGs auf Marken-Hintergrund (NIE weiß) + Platzhalter ═══ */
:root { --media-bg: radial-gradient(circle at 50% 38%, rgba(91,254,221,.10), transparent 60%), linear-gradient(155deg, rgba(27,48,68,.95), rgba(8,16,26,.98)); }

/* Karten-Bilder: transparenter Cutout auf dunklem Marken-Verlauf */
.card-media.has-img { background: var(--media-bg); }
.card-img { object-fit: contain; padding: 12px; }

/* Platzhalter (Produkte ohne Bild) */
.card-ph { width: 100%; height: 100%; display: grid; place-content: center; justify-items: center; gap: 10px; background: var(--media-bg); }
.card-ph .ico { font-size: 56px; color: var(--gold); opacity: .9; }
.card-ph span { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gray); }

/* Produkt-Detail Stage */
.pd-stage { background: var(--media-bg); }
.pd-stage img { object-fit: contain; background: none; padding: 26px; }
.pd-stage video { background: #05111a; }
.pd-noimg { background: none; gap: 14px; }
.pd-noimg .ico { font-size: 120px; }
.pd-noimg span { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gray); }
.pd-thumb { background: var(--media-bg); }
.pd-thumb img { object-fit: contain; padding: 4px; }

/* Mini-Medien (Drawer / Warenkorb) */
.ci-media.has-img, .wk-media.has-img { background: var(--media-bg); }
.ci-media.has-img img, .wk-media.has-img img { object-fit: contain; padding: 4px; }

/* ═══ SHOP v5 — Galerie-Video Playbutton, Video-Stage-Höhe, Min-Heights ═══ */

/* Min-Heights, damit nichts kollabiert wenn kein Bild gesetzt ist */
.card-media { min-height: 210px; }
.pd-stage { min-height: 380px; }
.ci-media, .wk-media { min-height: 56px; }

/* Play-Button auf der Haupt-Stage */
.pd-stage-play {
  position: absolute; inset: 0; margin: auto; width: 76px; height: 76px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(237, 168, 3, .94); color: var(--navy);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .45); transition: transform .2s, background .2s; z-index: 3;
}
.pd-stage-play:hover { transform: scale(1.08); background: #FFD740; }
.pd-stage-play .ico { font-size: 30px; fill: currentColor; stroke: none; margin-left: 4px; }

/* Video-Thumbnail mit Play-Overlay */
.pd-vid { position: relative; }
.pd-play { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(0, 8, 14, .45); color: #fff; transition: background .2s; }
.pd-vid:hover .pd-play { background: rgba(0, 8, 14, .25); }
.pd-play .ico { font-size: 18px; fill: currentColor; stroke: none; margin-left: 2px; }

/* Stage passt Höhe an wenn Video läuft */
.pd-stage.is-video { aspect-ratio: auto; min-height: 320px; background: #05111a; }
.pd-stage.is-video video { width: 100%; height: auto; max-height: 620px; object-fit: contain; padding: 0; background: #05111a; }

/* ═══ SHOP v6 — Fix: altes .pd-media::before Overlay entfernen (fing Thumbnail-Klicks ab) ═══ */
.pd-media { position: static !important; }
.pd-media::before { content: none !important; display: none !important; }
/* Play-Dreieck garantiert gefüllt sichtbar */
.pd-stage-play .ico, .pd-play .ico { fill: currentColor !important; stroke: none !important; }
.pd-stage-play { color: var(--navy); }

/* ═══ SHOP v7 — Play-Dreieck navy, Sprach-Flaggen ═══ */
.pd-stage-play .ico { fill: var(--navy) !important; }
.pd-play .ico { fill: #fff !important; }

.flag { width: 20px; height: 13px; border-radius: 2px; display: inline-block; vertical-align: middle; flex-shrink: 0; box-shadow: 0 0 0 1px rgba(0,0,0,.25); }
.lang-cur { display: inline-flex; align-items: center; gap: 6px; }
.lang-code { font-size: 12px; }
.lang-opt { display: flex; align-items: center; gap: 9px; }

/* ═══ SHOP v8 — Optionsgruppen (Farbe/Größe) + Varianten-Label im Warenkorb ═══ */
.pd-opt { margin: 16px 0; }
.pd-opt-l { font-size: 13px; color: var(--text-light); }
.pd-opt-l b { color: var(--white); }
.pd-opt-vals { display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
.pd-pill { padding: 9px 16px; border-radius: 8px; border: 1.5px solid rgba(var(--surface), .16); background: rgba(var(--surface), .04); color: var(--text-light); font-size: 13.5px; font-weight: 600; transition: all .18s; }
.pd-pill:hover { color: var(--white); border-color: rgba(91, 254, 221, .4); }
.pd-pill.is-active { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.ci-var, .wk-var { font-size: 12px; color: var(--gray); margin-top: 2px; }

/* ═══ SHOP v9 — Live-Suche mit Vorschlägen ═══ */
.search-wrap { position: relative; }
.search-results { position: absolute; top: calc(100% + 10px); right: 0; width: 380px; max-width: 82vw; background: rgba(10, 22, 32, .98); backdrop-filter: blur(16px); border: 1px solid rgba(var(--surface), .1); border-radius: 12px; padding: 6px; box-shadow: var(--shadow); z-index: 60; max-height: 72vh; overflow-y: auto; }
.sr-item { display: flex; align-items: center; gap: 12px; padding: 9px 10px; border-radius: 9px; transition: background .15s; }
.sr-item:hover { background: rgba(var(--surface), .06); }
.sr-media { width: 46px; height: 46px; flex-shrink: 0; border-radius: 8px; display: grid; place-items: center; font-size: 20px; color: var(--gold); background: var(--media-bg); overflow: hidden; }
.sr-media.has-img img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
.sr-info { flex: 1; min-width: 0; }
.sr-info b { display: block; font-size: 14px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sr-info > span { font-size: 11.5px; color: var(--teal); text-transform: uppercase; letter-spacing: .05em; }
.sr-price { font-size: 13px; font-weight: 800; color: var(--gold); flex-shrink: 0; }
.sr-all { display: block; text-align: center; padding: 11px; margin-top: 4px; border-top: 1px solid rgba(var(--surface), .08); font-size: 13px; font-weight: 700; color: var(--teal); }
.sr-all:hover { color: var(--white); }
.sr-empty { padding: 24px; text-align: center; color: var(--gray); font-size: 14px; }

/* ═══ SHOP v10 — Mobile-Suche (Icon + Vollbild-Overlay) ═══ */
.search-mobile-btn { display: none; }
@media (max-width: 880px) {
  .search-mobile-btn { display: grid; }
  .search-wrap { display: none; }
}
.search-overlay { position: fixed; inset: 0; z-index: 130; background: rgba(2, 10, 16, .98); backdrop-filter: blur(12px); display: none; padding: 16px 0; }
.search-overlay.is-open { display: block; }
.search-overlay-bar { display: flex; align-items: center; gap: 10px; }
.search-overlay-bar .search { flex: 1; min-width: 0; }
.search-overlay-results { margin-top: 14px; }
.search-overlay-results .sr-item { padding: 12px 10px; }
.search-overlay-results .sr-media { width: 52px; height: 52px; }

/* v10-fix: Sucheingabe im Overlay sichtbar (globale Mobile-Regel .search{display:none} überschreiben) */
.search-overlay-bar .search { display: flex !important; }

/* ═══ SHOP v11 — Toast im Ruhezustand komplett ausblenden (lugte unten heraus) ═══ */
.toast { opacity: 0; visibility: hidden; transform: translate(-50%, 200%); transition: transform .35s cubic-bezier(.4, 0, .2, 1), opacity .3s, visibility .3s; }
.toast.is-show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ═══ SHOP v12 — Politur: Fokus-States, Merkliste, Lightbox, Preisfilter ═══ */
/* Sichtbare Fokus-Markierung (Tastatur-Navigation) */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, .chip:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; border-radius: 4px; }
.btn:focus-visible { outline-offset: 3px; }

/* Merkliste-Herz aktiv */
.fav.is-on { color: #F697A4 !important; background: rgba(246, 151, 164, .14); }
.fav.is-on .ico { fill: #F697A4; }

/* Zweite Sidebar-Überschrift (Preis) */
.cat-aside-h2 { margin-top: 22px; }

/* Zoombares Hauptbild */
.pd-stage.zoomable #pdMain { cursor: zoom-in; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(0, 6, 12, .94); backdrop-filter: blur(6px); display: none; place-items: center; padding: 30px; cursor: zoom-out; }
.lightbox.is-open { display: grid; }
.lightbox img { max-width: 94vw; max-height: 90vh; object-fit: contain; border-radius: 10px; }
.lightbox-close { position: absolute; top: 20px; right: 20px; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .1); color: #fff; font-size: 22px; border: 1px solid rgba(255, 255, 255, .2); }
.lightbox-close:hover { background: rgba(255, 255, 255, .2); }

/* ═══ SHOP v13 — Aktiver Menüpunkt ═══ */
.hd-nav a.is-active { color: var(--gold); }
.hd-nav a.is-active::after { width: 100%; background: var(--gold); }

/* ═══ SHOP v14 — Rabatt / Durchstreichpreis ═══ */
.badge-sale { background: #C51C28; color: #fff; }
.now.is-sale { color: #FF6B6B; }
.pd-disc { background: #C51C28; color: #fff; font-size: 13px; font-weight: 800; padding: 3px 9px; border-radius: 6px; align-self: center; }
.pd-save { width: 100%; font-size: 13px; font-weight: 700; color: #4ADE80; margin-top: 2px; }
.card .price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.card .price .was { order: 3; }
