/* =================================================================
   ELEVATEM · SHOWCASE "Phone + flying proof"  (production v3)
   Sticky scroll-telling: a phone in the centre. Its product page
   upgrades from a plain shop to a high-converting one as you scroll,
   while sharp social-proof cards fly in around it.
   ================================================================= */

.showcase {
  position: relative;
  background:
    radial-gradient(ellipse 55% 45% at 50% 32%, rgba(230, 255, 75, 0.055), transparent 62%),
    var(--color-bg);
}

/* Track drives the scroll */
.sc-track { position: relative; height: 300vh; }

/* Sticky stage */
.sc-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 660px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding-top: clamp(2rem, 5vh, 4rem);
}

/* ---------- Heading ---------- */
.sc-head {
  text-align: center;
  z-index: 6;
  padding-inline: 20px;
  max-width: 680px;
  flex-shrink: 0;
}
.sc-head .badge { margin-bottom: var(--space-3); }
.sc-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--color-text);
  margin: 0 0 var(--space-2);
  text-wrap: balance;
}
.sc-title .text-accent { color: var(--color-accent); }
.sc-sub {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: 1.5;
  color: var(--color-text-muted);
  margin: 0 auto;
  max-width: 44ch;
}

/* ---------- Stage ---------- */
.sc-stage {
  position: relative;
  flex: 1;
  width: 100%;
  max-width: 920px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =================================================================
   PHONE
   ================================================================= */
.sc-phone {
  position: relative;
  z-index: 4;
  width: 296px;
  height: 600px;
  border-radius: 46px;
  background: linear-gradient(160deg, #2a2a31, #0a0a0f 40%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 11px;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
  transform: translateY(40px) scale(0.9);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s;
  will-change: transform;
}
.showcase.is-active .sc-phone {
  transform: translateY(calc(var(--p, 0) * -10px)) scale(calc(0.9 + var(--p, 0) * 0.1));
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(230, 255, 75, calc(var(--p, 0) * 0.16)),
    0 0 calc(var(--p, 0) * 90px) rgba(230, 255, 75, calc(var(--p, 0) * 0.12));
}

/* Dynamic island */
.sc-phone::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 6;
}

.sc-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: #fff;
  filter: saturate(calc(0.74 + var(--p, 0) * 0.26)) brightness(calc(0.92 + var(--p, 0) * 0.08));
  transition: filter 0.35s linear;
}

/* iOS status bar (fixed, doesn't scroll with content) */
.sc-statusbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 26px 0;
  z-index: 5;
  pointer-events: none;
}
.sc-sb-time {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  color: #14110f;
  letter-spacing: 0.02em;
}
.sc-sb-icons { display: flex; align-items: center; gap: 5px; color: #14110f; }
.sc-sb-icons svg { display: block; }

/* Scrolling content */
.sc-screen-inner {
  position: absolute;
  inset: 0;
  transform: translateY(calc(var(--p, 0) * -30%));
  transition: transform 0.1s linear;
}

/* =================================================================
   PRODUCT PAGE (light)
   ================================================================= */
.lp {
  position: absolute;
  inset: 0;
  background: #fff;
  color: #14110f;
  display: flex;
  flex-direction: column;
}

/* Social-proof toast */
.lp-toast {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 50px 13px 8px;
  padding: 9px 11px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.13);
  border: 1px solid #efefef;
  position: relative;
  z-index: 2;
}
.lp-toast-avs { display: flex; flex-shrink: 0; }
.lp-toast-avs i {
  width: 20px; height: 20px; border-radius: 999px;
  border: 2px solid #fff; margin-left: -8px;
  background-size: cover;
}
.lp-toast-avs i:nth-child(1) { margin-left: 0; background: linear-gradient(135deg, #8E86E8, #6F66D6); }
.lp-toast-avs i:nth-child(2) { background: linear-gradient(135deg, #E2A98F, #C77E63); }
.lp-toast-avs i:nth-child(3) { background: linear-gradient(135deg, #76C089, #4F9E66); }
.lp-toast-txt {
  font-family: var(--font-body);
  font-size: 9.5px; line-height: 1.35; color: #555;
}
.lp-toast-txt b { color: #111; }

/* Product image with a bottle */
.lp-img {
  height: 196px;
  flex-shrink: 0;
  position: relative;
  margin-top: -4px;
  background:
    radial-gradient(circle at 50% 30%, #F6D8C7 0%, #D89579 48%, #9C604A 100%);
  overflow: hidden;
}
.lp-img::after {
  /* soft vignette */
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 42%, transparent 50%, rgba(0,0,0,0.12) 100%);
}
.lp-bottle {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -48%);
  width: 60px; height: 118px;
  z-index: 1;
}
.lp-bottle-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 96px;
  border-radius: 12px 12px 16px 16px;
  background: linear-gradient(150deg, rgba(255,255,255,0.92), rgba(255,255,255,0.62) 45%, rgba(255,255,255,0.78));
  box-shadow: inset -6px 0 10px rgba(0,0,0,0.08), inset 6px 0 12px rgba(255,255,255,0.6), 0 8px 18px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.7);
}
.lp-bottle-body::before {
  /* label band */
  content: "";
  position: absolute;
  left: 8px; right: 8px; top: 34px;
  height: 34px;
  border-radius: 4px;
  background: rgba(20,17,15,0.82);
}
.lp-bottle-body::after {
  /* label accent line */
  content: "";
  position: absolute;
  left: 14px; top: 46px;
  width: 22px; height: 3px; border-radius: 2px;
  background: var(--color-accent);
}
.lp-bottle-cap {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 26px;
  border-radius: 6px 6px 4px 4px;
  background: linear-gradient(160deg, #2c2620, #14110f);
  box-shadow: inset 0 2px 2px rgba(255,255,255,0.12);
}

.lp-img-badges {
  position: absolute;
  top: 14px; left: 14px;
  display: flex; gap: 6px;
  z-index: 2;
}
.lp-pill {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(20,17,15,0.9);
  backdrop-filter: blur(4px);
  color: #fff;
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* Content */
.lp-content {
  padding: 15px 16px 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.lp-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #14110f;
  margin: 0;
}
.lp-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.lp-price b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: #14110f;
}
.lp-price s { font-size: 13px; color: #b0b0b0; }
.lp-save {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700; color: #fff;
  background: #E0584F; padding: 2px 7px; border-radius: 5px;
}

.lp-feats {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.lp-feats li {
  font-family: var(--font-body);
  font-size: 11.5px; color: #555;
  display: flex; align-items: center; gap: 8px;
}
.lp-feats li::before {
  content: "\2713";
  flex-shrink: 0;
  width: 15px; height: 15px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  color: #1F9E50;
  font-size: 9px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}

.lp-code {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 11px;
  border: 1px dashed #9BCF6B;
  background: #F2FAE9;
  border-radius: 9px;
}
.lp-code-tag { font-family: var(--font-body); font-size: 10.5px; color: #3A7D2C; }
.lp-code b {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: #14110f; letter-spacing: 0.06em;
  margin-left: auto;
  padding: 2px 8px; border-radius: 5px; background: #fff; border: 1px solid #d6e8c2;
}

.lp-stock {
  font-family: var(--font-body);
  font-size: 10.5px; color: #666;
  display: flex; align-items: center; gap: 6px;
}
.lp-stock b { color: #1F9E50; }
.lp-stock-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: #22C55E; box-shadow: 0 0 6px rgba(34, 197, 94, 0.55);
}

.lp-cta {
  margin-top: 2px;
  padding: 14px;
  text-align: center;
  border-radius: 12px;
  background: #1a1a1a;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
  transition: background 0.5s, color 0.5s, box-shadow 0.5s, transform 0.3s;
}
.sc-phone.is-polished .lp-cta {
  background: var(--color-accent);
  color: #14110f;
  box-shadow: 0 10px 24px rgba(230, 255, 75, 0.38);
}

/* Payment methods */
.lp-pay { display: flex; gap: 5px; flex-wrap: wrap; align-items: center; }
.pay {
  height: 20px; min-width: 32px; padding: 0 6px;
  border-radius: 4px; border: 1px solid #e6e6e6; background: #fff;
  display: flex; align-items: center; justify-content: center; gap: 2px;
  font-family: var(--font-body); font-weight: 800; font-size: 8px; letter-spacing: 0.02em;
}
.pay-visa { color: #1A1F71; }
.pay-pp { color: #003087; font-style: italic; }
.pay-ap { color: #111; font-weight: 700; }
.pay-kl { background: #FFB3C7; border-color: #FFB3C7; color: #14110f; }
.pay-mc span { width: 12px; height: 12px; border-radius: 999px; display: inline-block; }
.pay-mc span:nth-child(1) { background: #EB001B; }
.pay-mc span:nth-child(2) { background: #F79E1B; margin-left: -5px; mix-blend-mode: multiply; }

/* Trust badges */
.lp-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.lp-trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 10px;
  border: 1px solid #eee; border-radius: 9px; background: #fafafa;
}
.lp-trust-ic { width: 22px; height: 22px; color: #14110f; flex-shrink: 0; }
.lp-trust-ic svg { width: 100%; height: 100%; }
.lp-trust-item b { font-family: var(--font-body); font-size: 9.5px; color: #111; display: block; line-height: 1.2; }
.lp-trust-item span { font-family: var(--font-body); font-size: 8px; color: #999; }

/* Conversion elements fade in as the page "improves" */
.lp-polish {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1), transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.sc-phone.is-polished .lp-polish { opacity: 1; transform: translateY(0); }
.sc-phone.is-polished .lp-toast { transition-delay: 0.04s; }
.sc-phone.is-polished .lp-img-badges .lp-pill { transition-delay: 0.10s; }
.sc-phone.is-polished .lp-save { transition-delay: 0.14s; }
.sc-phone.is-polished .lp-code { transition-delay: 0.18s; }
.sc-phone.is-polished .lp-pay { transition-delay: 0.24s; }
.sc-phone.is-polished .lp-trust { transition-delay: 0.30s; }

/* =================================================================
   BEFORE / AFTER STATE TOGGLE  (bottom of stage)
   ================================================================= */
.sc-state {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(26, 24, 22, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}
.sc-state-opt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-text-subtle);
  transition: color 0.4s, background 0.4s, transform 0.2s;
  white-space: nowrap;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.sc-state-opt:hover { color: var(--color-text); }
.sc-state-opt:active { transform: scale(0.96); }
.sc-state-opt:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.sc-state-opt .d {
  width: 7px; height: 7px; border-radius: 999px;
  background: currentColor;
}
.sc-state-opt--before { color: var(--color-text-muted); }
.sc-state-opt--after { color: var(--color-text-subtle); }
/* default (before) state active */
.sc-state:not(.is-on) .sc-state-opt--before {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text);
}
/* polished (after) state active */
.sc-state.is-on .sc-state-opt--after {
  background: var(--color-accent);
  color: var(--color-bg);
}
.sc-state.is-on .sc-state-opt--after .d {
  background: var(--color-bg);
}

/* =================================================================
   FLOATING PROOF CARDS
   ================================================================= */
.sc-float {
  position: absolute;
  z-index: 5;
  background: rgba(28, 26, 24, 0.84);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  padding: 12px 14px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
  font-family: var(--font-body);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}
.sc-float.in { opacity: 1; transform: translate(0, 0) !important; }

/* Positions + entry offsets */
.sc-float--rating   { top: 9%;  left: 1%;  transform: translate(-44px, 22px); }
.sc-float--order    { top: 5%;  right: 0%; transform: translate(44px, 18px); }
.sc-float--verified { top: 41%; left: -1%; transform: translate(-52px, 0); }
.sc-float--stat     { top: 35%; right: -1%; transform: translate(52px, 0); }
.sc-float--review   { bottom: 14%; left: 2%; transform: translate(-34px, 32px); max-width: 196px; }
.sc-float--secure   { bottom: 9%; right: 1%; transform: translate(44px, 26px); }
.sc-float--logos    { top: -3%; left: 50%; margin-left: -94px; transform: translate(0, -30px); }

/* Rating */
.scf-rating { display: flex; align-items: center; gap: 11px; }
.scf-rating .scf-score {
  font-family: var(--font-display); font-weight: 700; font-size: 24px;
  color: #fff; letter-spacing: -0.02em; line-height: 1;
}
.scf-rating .scf-stars { color: var(--color-accent); font-size: 12px; letter-spacing: 1px; }
.scf-rating .scf-sub { font-size: 10px; color: var(--color-text-subtle); margin-top: 2px; }

/* Order toast */
.scf-order { display: flex; align-items: center; gap: 11px; }
.scf-order-ic {
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(149, 191, 71, 0.18);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.scf-order-ic svg { width: 18px; height: 18px; }
.scf-order b { font-size: 12px; color: #fff; font-weight: 600; display: block; }
.scf-order span { font-size: 10px; color: var(--color-text-subtle); }

/* Verified pill */
.scf-pill { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: #fff; }
.scf-pill .scf-check {
  width: 19px; height: 19px; border-radius: 999px;
  background: var(--color-success, #22C55E);
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.scf-pill .scf-check svg { width: 11px; height: 11px; }
.scf-pill .scf-sub { display: block; font-size: 9.5px; font-weight: 500; color: var(--color-text-subtle); margin-top: 1px; }

/* Stat */
.scf-stat .scf-stat-num {
  font-family: var(--font-display); font-weight: 700; font-size: 26px;
  color: var(--color-accent); letter-spacing: -0.02em; line-height: 1;
}
.scf-stat .scf-stat-label { font-size: 10.5px; color: var(--color-text-muted); margin-top: 3px; }

/* Review */
.scf-review-top { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.scf-review-av {
  width: 27px; height: 27px; border-radius: 999px; flex-shrink: 0;
  background: linear-gradient(135deg, #E2A98F, #C77E63);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: #fff;
}
.scf-review-name { font-size: 11px; font-weight: 600; color: #fff; }
.scf-review-stars { font-size: 9px; color: var(--color-accent); letter-spacing: 0.5px; }
.scf-review-txt { font-size: 10.5px; line-height: 1.4; color: var(--color-text-muted); }

/* Secure */
.scf-secure { display: flex; align-items: center; gap: 10px; }
.scf-secure-ic {
  width: 32px; height: 32px; border-radius: 9px;
  background: rgba(230, 255, 75, 0.12); color: var(--color-accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.scf-secure-ic svg { width: 17px; height: 17px; }
.scf-secure b { font-size: 11.5px; color: #fff; font-weight: 600; display: block; }
.scf-secure span { font-size: 9.5px; color: var(--color-text-subtle); }

/* Logos */
.scf-logos { display: flex; align-items: center; gap: 8px; }
.scf-logos .scf-logo {
  width: 27px; height: 27px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.scf-logos .scf-logo svg { width: 100%; height: 100%; }

/* =================================================================
   PROGRESS RAIL
   ================================================================= */
.sc-progress {
  position: absolute;
  bottom: 54px; left: 50%;
  transform: translateX(-50%);
  z-index: 7;
  width: min(220px, 56%);
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
}
.sc-progress span {
  display: block; height: 100%;
  width: calc(var(--p, 0) * 100%);
  background: linear-gradient(90deg, rgba(230,255,75,0.5), var(--color-accent));
  box-shadow: 0 0 10px rgba(230, 255, 75, 0.4);
}

/* =================================================================
   VIBE
   ================================================================= */
html[data-vibe="voltage"] .sc-phone.is-polished .lp-cta,
html[data-vibe="crimson"] .sc-phone.is-polished .lp-cta { color: var(--color-bg); }
html[data-vibe="voltage"] .sc-state.is-on .sc-state-opt--after,
html[data-vibe="crimson"] .sc-state.is-on .sc-state-opt--after { color: var(--color-bg); }

/* =================================================================
   MANUAL BEFORE / AFTER OVERRIDE (toggle clicked)
   ================================================================= */
.showcase.force-before .sc-screen { filter: saturate(0.7) brightness(0.92) !important; }
.showcase.force-after  .sc-screen { filter: saturate(1) brightness(1) !important; }

/* =================================================================
   MOBILE — scale the whole stage so floats stay on screen
   ================================================================= */
@media (max-width: 720px) {
  .sc-track { height: 320vh; }
  .sc-stage { transform: scale(0.84); }
  .sc-float { padding: 10px 12px; }
  .sc-float--review { max-width: 156px; }
}
@media (max-width: 480px) {
  .sc-stage { transform: scale(0.68); }
  .sc-sticky { min-height: 580px; }
  .sc-float--logos { display: none; }
  .sc-state-opt { font-size: 11px; padding: 6px 11px; }
}
@media (max-width: 360px) {
  .sc-stage { transform: scale(0.58); }
}

/* =================================================================
   REDUCED MOTION — show finished state, no scroll dependence
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
  .sc-track { height: auto; }
  .sc-sticky { position: relative; height: auto; min-height: 0; padding-bottom: 4rem; }
  .sc-phone { transform: none; }
  .sc-screen { filter: none; }
  .sc-screen-inner { transform: none; position: relative; }
  .lp-polish { opacity: 1 !important; transform: none !important; }
  .sc-phone .lp-cta { background: var(--color-accent); color: #14110f; }
  .sc-state { position: relative; bottom: auto; left: auto; transform: none; margin-top: 20px; }
  .sc-state .sc-state-opt--after { background: var(--color-accent); color: var(--color-bg); }
  .sc-float { opacity: 1; transform: none !important; position: relative; display: inline-flex; margin: 6px; inset: auto; }
  .sc-stage { flex-wrap: wrap; gap: 10px; transform: none; }
  .sc-progress { display: none; }
}

/* elevatem-Integration: Akzentwort im Showcase-Titel (unser .text-accent ist sonst nur im Hero definiert) */
.showcase .text-accent { color: var(--color-accent); }

/* =================================================================
   v4.9.6 — Robuste Reveal-Variante: kein Sticky, kein 300vh-Scroll.
   Proof-Cards fliegen per IntersectionObserver ein (.in), Phone im
   Endzustand (--p wird per JS auf 1 gesetzt). Grid-Hintergrund bleibt.
   ================================================================= */
.sc-track { height: auto; }
.sc-sticky {
  position: relative;
  height: auto;
  min-height: 0;
  overflow: visible;
  padding: clamp(1.5rem, 5vh, 3.5rem) 0 clamp(3.5rem, 9vh, 6rem);
}
.sc-screen-inner { transform: none; } /* Produktseite von oben zeigen */

/* Desktop: Floats fliegen weiterhin um das Phone ein (bestehende .sc-float--* Regeln) */

/* Mobile: Proof-Cards als saubere gestapelte Spalte statt um das Phone */
@media (max-width: 720px) {
  .sc-track { height: auto; }
  .sc-stage {
    transform: none;
    flex-direction: column;
    gap: 12px;
    max-width: 360px;
    margin-inline: auto;
  }
  .sc-float {
    position: relative;
    inset: auto;
    top: auto; right: auto; bottom: auto; left: auto;
    margin: 0;
    width: 100%;
    max-width: none;
    transform: translateY(14px);
  }
  .sc-float.in { transform: translateY(0) !important; }
  .sc-float--review { max-width: none; }
}

/* =================================================================
   v4.9.7 — Echter Vorher/Nachher: Muster-Logo + Header, Bewertungs-
   leiste, MwSt./Versand-Zeile, verbessertes Produktbild. After-only
   Block-Elemente kollabieren im "Standard-Shop" (kein Leerraum).
   ================================================================= */

/* --- Shop-Header mit Muster-Logo (vorher schlicht grau, nachher Marke/Lime) --- */
.lp-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 47px 16px 7px;
  flex-shrink: 0;
}
.lp-logo { display: flex; align-items: center; gap: 7px; }
.lp-logo-mark {
  width: 17px; height: 17px; border-radius: 5px;
  background: #d6d6d6;
  transition: background 0.5s, box-shadow 0.5s;
}
.lp-logo-txt {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: -0.02em; color: #bcbcbc; text-transform: lowercase;
  transition: color 0.5s;
}
.lp-head-cart { width: 17px; height: 17px; color: #c8c8c8; transition: color 0.5s; }
.lp-head-cart svg { width: 100%; height: 100%; display: block; }
.sc-phone.is-polished .lp-logo-mark { background: var(--color-accent); box-shadow: 0 3px 9px rgba(230,255,75,0.5); }
.sc-phone.is-polished .lp-logo-txt { color: #14110f; }
.sc-phone.is-polished .lp-head-cart { color: #14110f; }

/* --- Bewertungsleiste (nur nachher) --- */
.lp-rating { align-items: center; gap: 6px; }
.lp-stars { color: #F4B400; font-size: 12px; letter-spacing: 1.5px; line-height: 1; }
.lp-rating-txt { font-family: var(--font-body); font-size: 10px; color: #6a6a6a; }

/* --- MwSt./Versand (nur nachher) --- */
.lp-vat { font-family: var(--font-body); font-size: 10px; font-weight: 600; color: #1F9E50; }

/* --- After-only Block-Elemente kollabieren im Vorher-Zustand --- */
.lp-toast, .lp-rating, .lp-vat, .lp-feats { display: none; }
.sc-phone.is-polished .lp-toast  { display: flex; }
.sc-phone.is-polished .lp-rating { display: flex; }
.sc-phone.is-polished .lp-vat    { display: block; }
.sc-phone.is-polished .lp-feats  { display: flex; }
.lp-toast { margin: 2px 13px 6px; }

/* --- Engeres Layout, damit alles ins Phone passt --- */
.lp-content { padding: 13px 16px 18px; gap: 9px; }

/* --- Produktbild verbessern (saubereres Studio-BG + Pump-Serum-Flasche) --- */
.lp-img {
  height: 165px;
  margin-top: 0;
  background: radial-gradient(circle at 50% 30%, #FCF6F0 0%, #EFE0D2 55%, #DAC4B2 100%);
}
.lp-img::after { background: radial-gradient(ellipse 72% 62% at 50% 44%, transparent 52%, rgba(0,0,0,0.10) 100%); }
.lp-img::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(circle at 50% 40%, rgba(230,255,75,0), transparent 60%);
  transition: background 0.6s;
}
.sc-phone.is-polished .lp-img::before { background: radial-gradient(circle at 50% 40%, rgba(230,255,75,0.20), transparent 62%); }

.lp-bottle { width: 66px; height: 118px; transform: translate(-50%, -47%); }
.lp-bottle-body {
  height: 90px; border-radius: 9px 9px 15px 15px;
  background: linear-gradient(155deg, rgba(255,255,255,0.96), rgba(245,239,233,0.66) 48%, rgba(255,255,255,0.9));
  box-shadow: inset -8px 0 13px rgba(0,0,0,0.05), inset 8px 0 15px rgba(255,255,255,0.75), 0 12px 24px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.85);
}
.lp-bottle-body::before { left: 9px; right: 9px; top: 28px; height: 38px; border-radius: 5px; background: linear-gradient(160deg, #211c18, #14110f); }
.lp-bottle-body::after { left: 15px; top: 41px; width: 26px; height: 3px; border-radius: 2px; background: var(--color-accent); }
.lp-bottle-cap {
  top: 3px; width: 15px; height: 15px; border-radius: 4px 4px 2px 2px;
  background: linear-gradient(160deg, #3a332b, #14110f);
}
.lp-bottle-cap::before { content: ""; position: absolute; left: 50%; top: -7px; transform: translateX(-50%); width: 7px; height: 8px; border-radius: 2px; background: #2a241e; }
.lp-bottle-cap::after { content: ""; position: absolute; left: -7px; top: -6px; width: 9px; height: 4px; border-radius: 2px; background: #2a241e; }

/* =================================================================
   v4.9.8 — Reveal robust & progressiv.
   OHNE JS: Cards sichtbar + Phone im optimierten Zustand (nie "kaputt").
   MIT JS (.sc-js): Cards starten versteckt, Scroll-Listener blendet ein.
   ================================================================= */
/* Standard (auch ohne JS): Cards sichtbar, in Endposition */
.sc-float { opacity: 1; transform: none; }
.sc-float--rating, .sc-float--order, .sc-float--verified,
.sc-float--stat, .sc-float--review, .sc-float--secure { transform: none; }
/* Mit JS: vor Reveal verstecken, dann sanft einblenden */
.showcase.sc-js .sc-float { opacity: 0; transform: translateY(22px); }
.showcase.sc-js .sc-float.in { opacity: 1; transform: translateY(0); }
@media (max-width: 720px) {
  .showcase.sc-js .sc-float { transform: translateY(16px); }
  .showcase.sc-js .sc-float.in { transform: translateY(0); }
}

/* Ohne JS: Phone direkt optimiert zeigen (kein leerer Vorher-Zustand) */
.showcase:not(.sc-js) .lp-polish { opacity: 1; transform: none; }
.showcase:not(.sc-js) .lp-toast,
.showcase:not(.sc-js) .lp-rating,
.showcase:not(.sc-js) .lp-feats { display: flex; }
.showcase:not(.sc-js) .lp-vat { display: block; }
.showcase:not(.sc-js) .lp-logo-mark { background: var(--color-accent); box-shadow: 0 3px 9px rgba(230,255,75,0.5); }
.showcase:not(.sc-js) .lp-logo-txt,
.showcase:not(.sc-js) .lp-head-cart { color: #14110f; }
.showcase:not(.sc-js) .lp-cta { background: var(--color-accent); color: #14110f; }
