/* ===========================================================================
   Warenkorb-Drawer der Landingpage-Insel — wörtlich Blancos Stylesheet.

   Herkunft: blanco-infra/app/styles/cart-drawer.css, unverändert übernommen.
   Der selbstgebaute Drawer davor wirkte billig; dieser ist der bereits
   gestaltete aus dem Blanco-Hydrogen.

   Die Insel ist ein statisches Dokument und lädt die Design-Tokens des Stores
   nicht. Deshalb stehen sie hier — mit den Werten der Label-Welt (Etikett der
   echten Ware), damit der Drawer zur Landingpage passt statt zum blauen Store.
   ========================================================================== */
.lp-overlay {
  --brand: #C7553A;
  --brand-deep: #A8452E;
  --accent: #C7553A;
  --on-brand: #FFF9F1;
  --surface: #FFFFFF;
  --ink: #2E1F14;
  --line: #E9DCCB;
  --hair: rgba(46,31,20,.12);
  --hair-strong: rgba(46,31,20,.2);
  --text: #2E1F14;
  --text-soft: #5A4638;
  --text-mute: #7A6353;
  --c-danger: #9B3B4E;
  --c-plum-800: #C7553A;
  --font-display: 'Jost', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, monospace;
  --dur: 280ms;
  --dur-fast: 150ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --s-2: .5rem; --s-3: .75rem; --s-4: 1rem; --s-5: 1.5rem; --s-6: 2rem;
  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-pill: 999px;
  --elev-2: 0 2px 6px rgba(46,31,20,.07), 0 14px 30px -8px rgba(46,31,20,.14);
  --wash-plum: radial-gradient(120% 90% at 12% 0%, #39241F 0%, #2E1F14 55%, #1B1715 100%);
  --tr-aside: min(420px, 92vw);
  --bg: #FFF9F1;
  z-index: 2147483000; /* über allem, was das Theme des Klons mitbringt */
}

/* =============================================================================
   THE SINGLE DRAWER STYLESHEET — permanent rule.
   ALL cart-drawer / cart-aside styling lives ONLY here. Never add .cart-* /
   .tr-cart* / .tr-protect* / .tr-protlink* / .tr-xsell* / .tr-cartprog* /
   .tr-pay* / .overlay-drawer rules to theme.css or any
   other sheet. Loaded LAST in root.tsx so it wins the cascade. Enforced by
   `npm run check:drawer` (also runs on prebuild). Reason: stacking drawer rules
   across sheets caused the recurring "drawer zerschossen / CSS-chaos" loop.
   ============================================================================= */

/* Self-contained drawer geometry — ONE value drives width, off-screen offset AND
   open transform, so they can never mismatch. Always leaves a ~54px tap-out strip
   on mobile (does NOT depend on art.css media vars). */
:root {
  --tr-aside: min(27rem, 100vw - 3.4rem);
}
/* drawer overlay must sit ABOVE the sticky site header (.header z-index:50),
   else the header paints over the top of the open drawer */
.lp-overlay {
  z-index: 1000 !important;
}

/* ---------------------------------------------------------------------------
   Grundregeln der Hülle.

   Blancos cart-drawer.css enthält nur die ÜBERSCHREIBUNGEN — die Basis für
   Overlay und Blattfläche steht dort in theme.css, die diese Insel nicht lädt.
   Gemessen ohne diesen Block: Overlay `position: static`, 430x29 px im
   Dokumentfluss bei y=13740, alle Flächen rgba(0,0,0,0). Das Blatt war fixiert
   und richtig breit, aber durchsichtig.
   -------------------------------------------------------------------------- */
.lp-overlay {
  position: fixed;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(36, 31, 28, 0.44);
  transition: opacity var(--dur) var(--ease-out), visibility var(--dur) var(--ease-out);
}
.lp-overlay.expanded { visibility: visible; opacity: 1; }
.lp-overlay[hidden] { display: none; }

.lp-overlay .lp-aside {
  background: var(--bg);
  color: var(--text);
  box-shadow: -18px 0 48px rgba(36, 31, 28, 0.18);
}
.lp-overlay .lp-close-outside {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.lp-overlay .lp-aside > header {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-overlay .lp-close {
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.lp-overlay .sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

.lp-overlay .lp-aside {
  position: fixed;
  top: 0;
  right: calc(-1 * var(--tr-aside));
  left: auto;
  bottom: auto;
  width: var(--tr-aside);
  max-width: none;
  display: flex !important;
  flex-direction: column !important;
  /* svh, not dvh. On iOS Safari `dvh` is the CURRENT viewport, so the panel
     grows and shrinks as the browser chrome collapses on scroll — measured
     844 -> 754 when the chrome expands, which is the "drawer jumps" report.
     `svh` is the SMALLEST viewport: the panel is sized for the state where
     the chrome is visible, so it is stable while scrolling AND its footer can
     never end up underneath that chrome. `vh` stays as the fallback for
     engines without the new units; it is the one that occludes, so it is
     listed first and overridden. */
  height: 100vh !important;
  height: 100svh !important;
  background: linear-gradient(180deg, var(--surface) 0%, var(--c-paper) 100%);
  color: var(--brand-deep);
  box-shadow: var(--elev-3);
  overflow: hidden;
  z-index: 2;
}
/* preserve the slide-in open mechanism (cx had broken it with inset:0) */
.lp-overlay.expanded .lp-aside {
  transform: translateX(calc(-1 * var(--tr-aside))) !important;
}
/* tap-out: the transparent strip left of the panel closes the drawer */
.lp-overlay .lp-close-outside {
  width: calc(100% - var(--tr-aside)) !important;
  z-index: 1;
  cursor: pointer;
}

.lp-overlay .lp-aside > header {
  position: sticky;
  top: 0;
  z-index: 30;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  /* clear the iOS notch / status bar so "CART" is never cut off at the top */
  padding: max(1rem, env(safe-area-inset-top, 0px)) 1.25rem 1rem;
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 100%) !important;
  color: var(--on-brand);
  box-shadow: 0 1px 0 color-mix(in oklab, var(--brand-deep) 55%, transparent);
}

.lp-overlay .lp-aside > header h1,
.lp-overlay .lp-aside > header h2,
.lp-overlay .lp-aside > header h3,
.lp-overlay .lp-aside > header p {
  margin: 0;
  color: inherit !important;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.lp-overlay .lp-aside > header .close {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  color: inherit !important;
  background: color-mix(in oklab, white 10%, transparent);
  transition:
    transform var(--dur) var(--ease-out),
    background-color var(--dur) var(--ease-out),
    opacity var(--dur) var(--ease-out);
}

.lp-overlay .lp-aside > header .close:hover {
  transform: translateZ(0) scale(1.04);
  background: color-mix(in oklab, white 18%, transparent);
}

.lp-overlay .lp-aside > main {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  display: flex !important;
  background:
    radial-gradient(circle at top left, var(--wash-plum) 0%, transparent 34%),
    linear-gradient(180deg, var(--surface) 0%, var(--c-paper) 100%);
}

.lp-overlay .lp-aside > main > .cart-main {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  width: 100%;
  height: auto !important;
  max-height: none !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  background: transparent;
}

.lp-overlay .lp-aside > main > .cart-main.with-discount {
  max-height: none !important;
}

/* Loading skeleton — ghost line-items mirroring real cart-line geometry.
   Shimmer is a single compositor-only translateX highlight (Jakub: subtle
   production polish; transient, so it never reads as decorative). */
.lp-overlay .lp-aside .tr-cart-skel {
  flex: 1 1 auto;
  width: 100%;
  padding: 1.1rem 1.1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.lp-overlay .lp-aside .tr-cart-skel__line {
  display: flex;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid color-mix(in oklab, var(--hair) 88%, white);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--elev-2),
    0 0 0 1px color-mix(in oklab, var(--wash-plum) 32%, transparent);
}

.lp-overlay .lp-aside .tr-cart-skel__img {
  width: 84px;
  min-width: 84px;
  height: 84px;
  border-radius: 13px;
  border: 1px solid var(--hair);
}

.lp-overlay .lp-aside .tr-cart-skel__rows {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-top: 0.15rem;
}

.lp-overlay .lp-aside .tr-cart-skel__bar {
  display: block;
  height: 0.72rem;
  border-radius: 999px;
}

.lp-overlay .lp-aside .tr-cart-skel__bar--title {
  width: 78%;
}
.lp-overlay .lp-aside .tr-cart-skel__bar--meta {
  width: 46%;
  height: 0.62rem;
}
.lp-overlay .lp-aside .tr-cart-skel__bar--price {
  width: 30%;
  margin-top: auto;
}

/* shared ghost surface + sheen */
.lp-overlay .lp-aside .tr-cart-skel__img,
.lp-overlay .lp-aside .tr-cart-skel__bar {
  position: relative;
  overflow: hidden;
  background: color-mix(in oklab, var(--surface) 78%, white);
}

.lp-overlay .lp-aside .tr-cart-skel__img::after,
.lp-overlay .lp-aside .tr-cart-skel__bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    color-mix(in oklab, var(--wash-plum) 60%, white) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: tr-skel-sheen 1.35s ease-in-out infinite;
  will-change: transform;
}

@keyframes tr-skel-sheen {
  to {
    transform: translateX(100%);
  }
}

.lp-overlay .lp-aside .tr-cartprog {
  position: sticky;
  top: 0;
  z-index: 20;
  flex: 0 0 auto;
  padding: 0.95rem 1.25rem 1rem !important;
  border-bottom: 1px solid var(--hair);
  background: color-mix(in oklab, var(--c-plum-50) 72%, white);
  backdrop-filter: blur(10px);
}

.lp-overlay .lp-aside .tr-cartprog__msg {
  margin: 0 0 0.55rem;
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 2.6vw, 0.72rem);
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  /* single line — never wrap, shrink to fit instead */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-overlay .lp-aside .tr-cartprog__msg b {
  color: var(--brand);
  font-weight: 800;
}

.lp-overlay .lp-aside .tr-cartprog__track {
  position: relative;
  height: 0.375rem;
  border-radius: var(--r-pill);
  background: color-mix(in oklab, var(--hair-strong) 55%, white);
  overflow: hidden;
}

.lp-overlay .lp-aside .tr-cartprog__mark {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-1px);
  background: color-mix(in oklab, var(--brand) 60%, white);
  opacity: 0.7;
}

.lp-overlay .lp-aside .tr-cartprog__fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--brand));
  box-shadow: 0 0 0.75rem color-mix(in oklab, var(--accent) 32%, transparent);
  transition: width var(--dur) var(--ease-out);
}

.lp-overlay .lp-aside .tr-cartprog.is-unlocked .tr-cartprog__fill {
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.lp-overlay .lp-aside .tr-cart-save {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.3rem;
}
.lp-overlay .lp-aside .tr-cart-save dt {
  font-size: 0.82rem;
  opacity: 0.7;
}
.lp-overlay .lp-aside .tr-cart-save dd {
  display: flex;
  gap: 0.4rem;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
  text-align: right;
}
.lp-overlay .lp-aside .tr-cart-save {
  align-items: center;
}
.lp-overlay .lp-aside .tr-cart-save dt {
  font-weight: 800;
  opacity: 0.85;
}
.lp-overlay .lp-aside .tr-cart-save__uvp {
  opacity: 0.4;
  font-size: 0.82rem;
}
.lp-overlay .lp-aside .tr-cart-save__amt {
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

/* free-shipping-active line under the bar / near checkout */
.lp-overlay .lp-aside .tr-freeship {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand);
  margin: 0.1rem 0 0.4rem;
}
.lp-overlay .lp-aside .tr-freeship__ic {
  color: var(--accent);
  font-weight: 900;
}

/* ── Cinematic reward ladder ─────────────────────────────────────── */
.lp-overlay .lp-aside .tr-rwd {
  /* inset from the drawer edges so the bar + text aren't flush to the sides */
  padding: 0 0.6rem;
  margin: 0 0 0.15rem;
}
.lp-overlay .lp-aside .tr-rwd__head {
  font-size: 0.8rem;
  margin: 0 0 0.45rem;
  text-align: center;
  color: color-mix(in oklab, var(--c-plum-900, #2a1430) 82%, white);
  transition: color 300ms ease;
}
.lp-overlay .lp-aside .tr-rwd__head b {
  font-weight: 800;
}
.lp-overlay .lp-aside .tr-rwd__spark {
  color: var(--accent);
}
.lp-overlay .lp-aside .tr-rwd--max .tr-rwd__head {
  color: #9a6a14;
}
.lp-overlay .lp-aside .tr-rwd__track {
  position: relative;
  height: 0.5rem;
  border-radius: var(--r-pill);
  background: color-mix(in oklab, var(--hair-strong) 50%, white);
}
.lp-overlay .lp-aside .tr-rwd__dot {
  position: absolute;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  margin-left: -0.25rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background: white;
  border: 1.5px solid color-mix(in oklab, var(--hair-strong) 75%, white);
  transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
  z-index: 2;
}
.lp-overlay .lp-aside .tr-rwd__dot.is-on {
  background: var(--brand);
  border-color: var(--brand);
}
.lp-overlay .lp-aside .tr-rwd__dot--max {
  left: auto !important;
  right: 0;
  margin-left: 0;
}
.lp-overlay .lp-aside .tr-rwd__dot--max.is-on {
  background: #e3b341;
  border-color: #f1cd76;
  box-shadow: 0 0 0.5rem rgba(225, 179, 65, 0.6);
}
.lp-overlay .lp-aside .tr-rwd__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--accent), var(--brand));
  transition: width 600ms cubic-bezier(0.16, 1, 0.3, 1), background 400ms;
  overflow: hidden;
}
.lp-overlay .lp-aside .tr-rwd--good .tr-rwd__fill {
  box-shadow: 0 0 0.7rem color-mix(in oklab, var(--accent) 42%, transparent);
}
.lp-overlay .lp-aside .tr-rwd--max .tr-rwd__fill {
  background: linear-gradient(90deg, #c98f3a, #f1cd76 45%, #c98f3a);
  animation: tr-rwd-pulse 1.8s ease-in-out infinite;
}
.lp-overlay .lp-aside .tr-rwd__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 20%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 80%
  );
  transform: translateX(-100%);
  animation: tr-rwd-sweep 2.6s ease-in-out infinite;
}
.lp-overlay .lp-aside .tr-rwd__node {
  position: absolute;
  top: 50%;
  width: 1.05rem;
  height: 1.05rem;
  margin-left: -0.525rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background: white;
  border: 2px solid color-mix(in oklab, var(--hair-strong) 70%, white);
  display: grid;
  place-items: center;
  font-size: 0.58rem;
  color: white;
  font-weight: 900;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), background 300ms,
    border-color 300ms, box-shadow 300ms;
  z-index: 2;
}
.lp-overlay .lp-aside .tr-rwd__node.is-on {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 22%, transparent);
}
.lp-overlay .lp-aside .tr-rwd__node--star {
  /* anchor to the track's right edge so the node never overflows / gets clipped
     at the drawer side (left:100% pushed half the node past the edge). */
  left: auto !important;
  right: 0;
  margin-left: 0;
  width: 1.3rem;
  height: 1.3rem;
}
.lp-overlay .lp-aside .tr-rwd__node--star.is-on {
  background: #d99f43;
  border-color: #f1cd76;
  color: #4a2e05;
  box-shadow: 0 0 0 4px rgba(225, 179, 65, 0.3), 0 0 0.8rem rgba(225, 179, 65, 0.65);
  animation: tr-rwd-pop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-overlay .lp-aside .tr-rwd__chips {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.lp-overlay .lp-aside .tr-rwd__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.18rem 0.5rem;
  border-radius: var(--r-pill);
  background: color-mix(in oklab, var(--hair-strong) 28%, white);
  color: color-mix(in oklab, var(--c-plum-900, #2a1430) 55%, white);
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-overlay .lp-aside .tr-rwd__chip-ic {
  font-size: 0.6rem;
  opacity: 0.55;
}
.lp-overlay .lp-aside .tr-rwd__chip.is-on {
  background: color-mix(in oklab, var(--accent) 16%, white);
  color: var(--brand);
}
.lp-overlay .lp-aside .tr-rwd__chip.is-on .tr-rwd__chip-ic {
  opacity: 1;
  color: var(--brand);
}
.lp-overlay .lp-aside .tr-rwd__chip--max.is-on {
  background: linear-gradient(90deg, #fbeecb, #f6dd9e);
  color: #7a4e08;
  box-shadow: 0 0 0.6rem rgba(225, 179, 65, 0.4);
}
.lp-overlay .lp-aside .tr-rwd__chip--max.is-on .tr-rwd__chip-ic {
  color: #b8841f;
}
@keyframes tr-rwd-sweep {
  0% {
    transform: translateX(-100%);
  }
  60%,
  100% {
    transform: translateX(240%);
  }
}
@keyframes tr-rwd-pop {
  0% {
    transform: translateY(-50%) scale(0.4);
  }
  60% {
    transform: translateY(-50%) scale(1.35);
  }
  100% {
    transform: translateY(-50%) scale(1.15);
  }
}
@keyframes tr-rwd-pulse {
  0%,
  100% {
    box-shadow: 0 0 0.6rem rgba(225, 179, 65, 0.4);
  }
  50% {
    box-shadow: 0 0 1.2rem rgba(225, 179, 65, 0.85);
  }
}
@media (prefers-reduced-motion: reduce) {
  .lp-overlay .lp-aside .tr-rwd__shimmer,
  .lp-overlay .lp-aside .tr-rwd--max .tr-rwd__fill,
  .lp-overlay .lp-aside .tr-rwd__node--star.is-on {
    animation: none;
  }
}

.lp-overlay .lp-aside .tr-cart-scroll {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  overflow-y: auto !important;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 0 1rem 1.6rem !important;
  scrollbar-gutter: stable;
}

.lp-overlay .lp-aside .tr-cart-scroll > ul {
  list-style: none;
  margin: 0;
  padding: 1rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.lp-overlay .lp-aside .cart-line {
  position: relative;
  display: block !important; /* kill stale art.css `display:grid` that trapped inner in a 72px track */
  margin: 0;
  padding: 1rem !important;
  border: 1px solid color-mix(in oklab, var(--hair) 88%, white);
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: var(--elev-2), 0 0 0 1px color-mix(in oklab, var(--wash-plum) 32%, transparent);
}

.lp-overlay .lp-aside .cart-line-inner {
  display: flex !important;
  align-items: flex-start;
  gap: 0.9rem !important;
}

.lp-overlay .lp-aside .cart-line img {
  width: 84px !important;
  min-width: 84px;
  height: 84px !important;
  border-radius: 13px !important;
  object-fit: cover;
  border: 1px solid var(--hair);
  background: color-mix(in oklab, var(--surface) 82%, white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

/* Fallback tile for a line with no product image (e.g. shipping protection
   before an image is set) — keeps the drawer layout stable + on-brand. */
.lp-overlay .lp-aside .cart-line-noimg {
  width: 84px;
  min-width: 84px;
  height: 84px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: var(--surface-2);
  border: 1px solid var(--hair);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.lp-overlay .lp-aside .cart-line-inner > div:last-child {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lp-overlay .lp-aside .cart-line a {
  color: inherit;
  text-decoration: none;
}

.lp-overlay .lp-aside .cart-line h3,
.lp-overlay .lp-aside .cart-line a > p strong {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--brand-deep) !important;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.lp-overlay .lp-aside .cart-line a > p {
  margin: 0;
}

.lp-overlay .lp-aside .cart-line small,
.lp-overlay .lp-aside .cart-line li::marker {
  color: var(--text-mute);
}

.lp-overlay .lp-aside .cart-line ul:not(.cart-line-children) {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.15rem;
}

.lp-overlay .lp-aside .cart-line .money,
.lp-overlay .lp-aside .cart-line dd,
.lp-overlay .lp-aside .cart-line [class*='price'] {
  color: var(--brand-deep);
}

.lp-overlay .lp-aside .cart-line-inner > div:last-child > p + * {
  margin-top: 0;
}

.lp-overlay .lp-aside .cart-line-inner > div:last-child > p + p,
.lp-overlay .lp-aside .cart-line-inner > div:last-child > p + div,
.lp-overlay .lp-aside .cart-line-inner > div:last-child > a + p,
.lp-overlay .lp-aside .cart-line-inner > div:last-child > a + div {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--brand-deep);
}

.lp-overlay .lp-aside .cart-line-quantity {
  display: flex !important;
  align-items: center;
  justify-content: center; /* centered stepper (was flex-start = lopsided left) */
  gap: 0.5rem;
  margin-top: 0.35rem;
  white-space: nowrap;
}

.lp-overlay .lp-aside .cart-line-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  padding: 0.25rem;
  border: 1px solid color-mix(in oklab, var(--brand) 16%, var(--hair-strong));
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    #fff,
    color-mix(in oklab, var(--surface) 78%, white)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 6px 16px -11px color-mix(in oklab, var(--brand-deep) 70%, transparent);
}

.lp-overlay .lp-aside .cart-line-quantity button {
  width: 32px !important;
  height: 32px !important;
  display: grid;
  place-items: center;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1;
  transition:
    transform 180ms var(--ease-out),
    background-color var(--dur) var(--ease-out),
    color var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out);
}

.lp-overlay .lp-aside .cart-line-quantity button:hover:not(:disabled) {
  background: color-mix(in oklab, var(--brand) 12%, white);
  color: var(--brand-deep);
}

.lp-overlay .lp-aside .cart-line-quantity button:active:not(:disabled) {
  transform: scale(0.86);
  background: color-mix(in oklab, var(--brand) 20%, white);
}

.lp-overlay .lp-aside .cart-line-qty__n {
  min-width: 2rem;
  text-align: center;
  color: var(--brand-deep);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.lp-overlay .lp-aside .cart-line form:has(.cart-line-remove) {
  position: absolute !important;
  top: 0.5rem !important;
  right: 0.5rem !important;
  z-index: 2;
  margin: 0;
}

.lp-overlay .lp-aside .cart-line-remove {
  display: grid !important;
  place-items: center;
  width: 26px !important;
  height: 26px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: var(--text-mute) !important;
  opacity: 0.72;
  transition:
    transform var(--dur) var(--ease-out),
    background-color var(--dur) var(--ease-out),
    color var(--dur) var(--ease-out),
    opacity var(--dur) var(--ease-out);
}

.lp-overlay .lp-aside .cart-line-remove:hover:not(:disabled) {
  transform: translateZ(0) scale(1.05);
  opacity: 1;
  background: color-mix(in oklab, var(--c-danger) 11%, white) !important;
  color: var(--c-danger) !important;
}

.lp-overlay .lp-aside .cart-line-remove:disabled,
.lp-overlay .lp-aside .cart-line-quantity button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.lp-overlay .lp-aside .tr-xsell {
  padding: 1rem 0 0;
  margin-top: 0.1rem;
}

.lp-overlay .lp-aside .tr-xsell__head {
  margin: 0 0 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.lp-overlay .lp-aside .tr-xsell__row {
  display: grid;
  gap: 0.75rem;
}

.lp-overlay .lp-aside .tr-xsell__card {
  position: relative;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0.9rem 0.9rem !important;
  padding-top: 1.08rem !important;
  border: 1px solid color-mix(in oklab, var(--accent) 30%, var(--hair-strong)) !important;
  border-radius: 16px !important;
  background: color-mix(in oklab, var(--accent-soft) 52%, white) !important;
  box-shadow:
    inset 0 0 0 1px color-mix(in oklab, var(--accent) 14%, white),
    var(--elev-1);
  overflow: visible;
}

.lp-overlay .lp-aside .tr-xsell__badge {
  position: absolute;
  top: -8px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 1.2rem;
  padding: 0.2rem 0.55rem;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: var(--on-brand);
  font-family: var(--font-mono);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: var(--elev-1);
}

.lp-overlay .lp-aside .tr-xsell__img,
.lp-overlay .lp-aside .tr-xsell__card img {
  width: 60px !important;
  height: 60px !important;
  border-radius: 13px;
  object-fit: cover;
  border: 1px solid color-mix(in oklab, var(--hair) 92%, white);
  background: #fff;
}

.lp-overlay .lp-aside .tr-xsell__info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.14rem;
}

.lp-overlay .lp-aside .tr-xsell__info b,
.lp-overlay .lp-aside .tr-xsell__info strong {
  color: var(--brand-deep);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.15;
}

.lp-overlay .lp-aside .tr-xsell__info span {
  color: var(--text-soft);
  font-size: 0.72rem;
  line-height: 1.35;
}

.lp-overlay .lp-aside .tr-xsell__price {
  color: var(--brand) !important;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 800 !important;
}

.lp-overlay .lp-aside .tr-xsell__save {
  color: var(--brand) !important;
  font-weight: 800 !important;
}

.lp-overlay .lp-aside .tr-xsell__add,
.lp-overlay .lp-aside .tr-xsell__add form {
  margin: 0;
}

.lp-overlay .lp-aside .tr-xsell__add button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-deep) 100%) !important;
  color: var(--on-brand);
  box-shadow: var(--elev-2);
  transition:
    transform var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out),
    filter var(--dur) var(--ease-out);
}

.lp-overlay .lp-aside .tr-xsell__add button:hover:not(:disabled) {
  transform: translateZ(0) scale(1.06);
  box-shadow: var(--elev-3);
  filter: saturate(1.02);
}

.lp-overlay .lp-aside .cart-summary-aside {
  position: static !important;
  flex: 0 0 auto !important;
  width: auto !important;
  padding: 1rem 1.25rem 1.1rem !important;
  background: color-mix(in oklab, white 92%, var(--surface)) !important;
  border-top: 1px solid var(--hair-strong) !important;
  box-shadow: 0 -14px 30px -22px rgba(39, 17, 45, 0.42) !important;
}

.lp-overlay .lp-aside .cart-subtotal {
  margin: 0 0 0.9rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.lp-overlay .lp-aside .cart-subtotal dt,
.lp-overlay .lp-aside .cart-subtotal dd {
  margin: 0;
}

.lp-overlay .lp-aside .cart-subtotal dt {
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lp-overlay .lp-aside .cart-subtotal dd {
  color: var(--brand-deep);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

/* Young-LA pattern: protection as a quiet one-line text link under checkout
   (no slider). On = "Shipping protection · $1.99  Remove"; off = "Add …" link. */
.lp-overlay .lp-aside .tr-protlink-wrap {
  margin: 0.7rem 0 0;
  text-align: center;
}

.lp-overlay .lp-aside .tr-protlink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--text-mute);
}

.lp-overlay .lp-aside .tr-protlink__ic {
  flex: 0 0 auto;
  color: var(--brand);
  opacity: 0.85;
}

.lp-overlay .lp-aside .tr-protlink__txt b {
  color: var(--brand-deep);
  font-weight: 700;
}

.lp-overlay .lp-aside .tr-protlink__act {
  margin-left: 0.25rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--text-mute);
  font: inherit;
  letter-spacing: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: color-mix(in oklab, var(--text-mute) 45%, transparent);
  cursor: pointer;
  transition:
    color var(--dur) var(--ease-out),
    text-decoration-color var(--dur) var(--ease-out);
}

.lp-overlay .lp-aside .tr-protlink__act:hover {
  color: var(--c-danger);
  text-decoration-color: currentColor;
}

.lp-overlay .lp-aside .tr-protlink--add {
  border: 0;
  background: none;
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: color-mix(in oklab, var(--brand) 45%, transparent);
  cursor: pointer;
  transition:
    color var(--dur) var(--ease-out),
    text-decoration-color var(--dur) var(--ease-out);
}

.lp-overlay .lp-aside .tr-protlink--add:hover {
  color: var(--brand-deep);
  text-decoration-color: currentColor;
}

.lp-overlay .lp-aside .tr-protect-confirm {
  margin: 0.55rem 0 0;
  padding: 0.75rem 0.8rem;
  border: 1px solid color-mix(in oklab, var(--c-danger) 24%, var(--hair));
  border-radius: 14px;
  background: color-mix(in oklab, var(--c-danger) 6%, white);
}

.lp-overlay .lp-aside .tr-protect-confirm__msg {
  margin: 0 0 0.6rem;
  color: var(--text-soft);
  font-size: 0.76rem;
  line-height: 1.4;
}

.lp-overlay .lp-aside .tr-protect-confirm__msg b {
  color: var(--c-danger);
}

.lp-overlay .lp-aside .tr-protect-confirm__act {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lp-overlay .lp-aside .tr-protect-confirm__keep {
  flex: 1 1 auto;
  min-height: 2.5rem;
  border: 0;
  border-radius: var(--r-pill);
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: var(--on-brand);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--elev-1);
  transition:
    transform var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out);
}

.lp-overlay .lp-aside .tr-protect-confirm__keep:hover {
  transform: translateZ(0) scale(1.01);
  box-shadow: var(--elev-2);
}

.lp-overlay .lp-aside .tr-protect-confirm__remove {
  flex: 0 0 auto;
  padding: 0.55rem 0.2rem;
  border: 0;
  background: transparent;
  color: var(--text-mute);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
  transition: color var(--dur) var(--ease-out);
}

.lp-overlay .lp-aside .tr-protect-confirm__remove:hover {
  color: var(--c-danger);
}

.lp-overlay .lp-aside .tr-checkout-slide {
  margin-top: 0.85rem;
}

.lp-overlay .lp-aside .tr-paybtn,
.lp-overlay .lp-aside .tr-checkout-slide a,
.lp-overlay .lp-aside .tr-checkout-slide button {
  width: 100%;
  min-height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-deep) 100%) !important;
  color: var(--on-brand) !important;
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  box-shadow: var(--elev-2);
  transition:
    transform var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out),
    filter var(--dur) var(--ease-out);
}

.lp-overlay .lp-aside .tr-paybtn:hover,
.lp-overlay .lp-aside .tr-checkout-slide a:hover,
.lp-overlay .lp-aside .tr-checkout-slide button:hover {
  transform: translateZ(0) translateY(-1px);
  box-shadow: var(--elev-3);
  filter: saturate(1.03);
}

.lp-overlay .lp-aside .tr-cartfoot {
  margin-top: 0.8rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--hair);
  display: grid;
  gap: 0.5rem;
  justify-items: center;
}

.lp-overlay .lp-aside .tr-cartfoot__trust {
  margin: 0;
  color: var(--text-mute);
  font-size: 0.68rem;
  text-align: center;
}

.lp-overlay .lp-aside .tr-pay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.lp-overlay .lp-aside .tr-pay__chip {
  width: 36px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  padding: 3px 4px;
  border: 1px solid var(--hair);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(29, 17, 33, 0.03);
  overflow: hidden;
}

.lp-overlay .lp-aside .tr-pay__chip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 520px) {
  .lp-overlay .lp-aside {
    width: var(--tr-aside); /* keep the ~54px tap-out strip on mobile (was 100vw = no tap-out) */
  }

  .lp-overlay .lp-aside > header,
  .lp-overlay .lp-aside .tr-cartprog,
  .lp-overlay .lp-aside .cart-summary-aside {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .lp-overlay .lp-aside .tr-cart-scroll {
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
  }

  .lp-overlay .lp-aside .cart-line {
    padding: 0.9rem !important;
  }

  .lp-overlay .lp-aside .cart-line img {
    width: 78px !important;
    min-width: 78px;
    height: 78px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-overlay .lp-aside > header .close,
  .lp-overlay .lp-aside .tr-cartprog__fill,
  .lp-overlay .lp-aside .cart-line-quantity button,
  .lp-overlay .lp-aside .cart-line-remove,
  .lp-overlay .lp-aside .tr-xsell__add button,
  .lp-overlay .lp-aside .tr-protlink__act,
  .lp-overlay .lp-aside .tr-protlink--add,
  .lp-overlay .lp-aside .tr-protect-confirm__keep,
  .lp-overlay .lp-aside .tr-paybtn,
  .lp-overlay .lp-aside .tr-checkout-slide a,
  .lp-overlay .lp-aside .tr-checkout-slide button {
    transition: none !important;
  }
  /* perpetual checkout-button shimmer must honor the motion preference too */
  .lp-overlay .lp-aside .tr-paybtn__sweep { animation: none !important; }
  /* loading skeleton: drop the sheen sweep, leave a calm static surface */
  .lp-overlay .lp-aside .tr-cart-skel__img::after,
  .lp-overlay .lp-aside .tr-cart-skel__bar::after {
    animation: none !important;
    opacity: 0.4;
    transform: none !important;
  }
}

/* ===== restored drawer sub-element styles (stripped in consolidation; re-scoped .lp-overlay .lp-aside) 2026-06-20 ===== */
.lp-overlay .lp-aside .tr-cart-codes {
  margin: var(--s-4) 0 var(--s-3);
  border-top: 1px solid var(--hair);
  padding-top: var(--s-4);
}

.lp-overlay .lp-aside .tr-cart-codes > summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  user-select: none;
}

.lp-overlay .lp-aside .tr-cart-codes > summary::-webkit-details-marker {
  display: none;
}

.lp-overlay .lp-aside .tr-cart-codes > summary::after {
  content: '+';
  font-size: 1rem;
  line-height: 1;
  color: var(--accent);
}

.lp-overlay .lp-aside .tr-cart-codes[open] > summary::after {
  content: '–';
}

.lp-overlay .lp-aside .tr-cart-codes > summary:hover {
  color: var(--brand);
}

.lp-overlay .lp-aside .tr-cart-codes section {
  margin-top: var(--s-3);
}

.lp-overlay .lp-aside .tr-cart-codes input[type='text'] {
  width: 100%;
  padding: .7rem .85rem;
  border: 1px solid var(--hair-strong);
  border-radius: 10px;
  background: var(--surface);
  font-size: .85rem;
  color: var(--text);
}

.lp-overlay .lp-aside .tr-cart-codes input[type='text']:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.lp-overlay .lp-aside .tr-cart-codes [role='group'],
.lp-overlay .lp-aside .tr-cart-codes section > div,
.lp-overlay .lp-aside .tr-cart-codes form > div {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.lp-overlay .lp-aside .tr-cart-codes button[type='submit'] {
  flex: none;
  padding: .6rem 1rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--hair-strong);
  background: var(--surface);
  color: var(--brand);
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}

.lp-overlay .lp-aside .tr-cart-codes button[type='submit']:hover {
  background: var(--surface-2);
  border-color: var(--brand);
}

.lp-overlay .lp-aside .tr-cart-codes dl {
  margin: 0 0 var(--s-3);
  font-size: .82rem;
}

.lp-overlay .lp-aside .tr-paybtn__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: baseline;
  gap: .5rem;
}

.lp-overlay .lp-aside .tr-paybtn__total {
  font-weight: 800;
  opacity: .92;
}

.lp-overlay .lp-aside .tr-paybtn__total::before {
  content: '· ';
  opacity: .55;
}

.lp-overlay .lp-aside .tr-paybtn__arrow {
  position: relative;
  z-index: 1;
  font-weight: 500;
  transition: transform var(--dur) var(--ease-out);
}

.lp-overlay .lp-aside .tr-paybtn:hover .tr-paybtn__arrow {
  transform: translateX(3px);
}

.lp-overlay .lp-aside .tr-paybtn__sweep {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.22) 50%, transparent 70%);
  background-size: 220% 100%;
  animation: tr-sweep 3.2s linear infinite;
}

.lp-overlay .lp-aside .tr-paybtn.is-going .tr-paybtn__sweep {
  animation: tr-sweep .42s linear 1 forwards;
  background-image: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.4) 50%, transparent 100%);
}

.lp-overlay .lp-aside .tr-paybtn.is-going .tr-paybtn__arrow {
  transform: translateX(10px);
  opacity: 0;
}

.lp-overlay .lp-aside .tr-paybtn__label,
.lp-overlay .lp-aside .tr-paybtn__total {
  white-space: nowrap;
}

.lp-overlay .lp-aside .tr-paybtn__label {
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: .4rem;
}

.lp-overlay .lp-aside .tr-paybtn__total {
  white-space: nowrap;
}

.lp-overlay .lp-aside .tr-paybtn__arrow {
  flex: 0 0 auto;
  margin-left: .2rem;
}

.lp-overlay .lp-aside .tr-paybtn__label {
  display: inline !important;
  white-space: nowrap;
}

.lp-overlay .lp-aside .tr-paybtn__total {
  display: inline !important;
  font-weight: 800;
  opacity: .92;
}

.lp-overlay .lp-aside .tr-paybtn__total::before {
  content: none !important;
}

.lp-overlay .lp-aside .tr-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Es lebt jetzt IM Scroll-Bereich und fuellt ihn, statt als Rest am unteren
     Rand zu haengen. `min-height: 100%` gegen den Scroll-Container, damit die
     Botschaft optisch in der Flaeche steht und nicht in einem Loch. */
  justify-content: center;
  min-height: 100%;
  gap: var(--s-3);
  padding: clamp(1.4rem, 6vw, 2.6rem) 1.4rem clamp(1.4rem, 6vw, 2.6rem);
  text-align: center;
}

.lp-overlay .lp-aside .tr-cart-empty[hidden] {
  display: none;
}

/* Mit dem Leerzustand im Scroll bleibt der Sticky-Fuss leer zurueck — sonst
   steht unter der Botschaft noch ein sinnloser Streifen aus Polsterung und
   Trennlinie. */
.lp-overlay .lp-aside .cart-summary-aside:empty {
  display: none !important;
}

.lp-overlay .lp-aside .tr-cart-empty__mark {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .32em;
  color: var(--text-mute);
  margin: 0;
}

.lp-overlay .lp-aside .tr-cart-empty__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 1.1rem + 2.4vw, 1.9rem);
  letter-spacing: -0.03em;
  color: var(--brand);
  margin: 0;
  text-wrap: balance;
}

.lp-overlay .lp-aside .tr-cart-empty__sub {
  font-size: var(--t-body-sm);
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0 0 var(--s-2);
  max-width: 30ch;
}

/* Die Insel laedt das Store-Theme nicht, also gibt es hier kein `.btn`. Die
   einzige Handlung des Leerzustands trug genau diese Klasse und wurde deshalb
   als nackter Link gerendert — gemessen, nicht vermutet. */
.lp-overlay .lp-aside .tr-cart-empty__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: var(--s-2) 0 var(--s-3);
  padding: 0 1.6rem;
  border-radius: 999px;
  background: var(--brand, #b4482c);
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(36, 31, 28, 0.16);
}

.lp-overlay .lp-aside .tr-cart-empty__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem 1rem;
  list-style: none;
  margin: var(--s-3) 0 0;
  padding: var(--s-3) 0 0;
  border-top: 1px solid var(--hair);
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.lp-overlay .lp-aside .tr-cart-codes {
  margin: .35rem 0;
  padding-top: .45rem;
}

.lp-overlay .lp-aside .tr-cart-codes {
  margin: .2rem 0 .1rem;
  padding-top: 0;
  border-top: 0;
}

.lp-overlay .lp-aside .tr-cart-codes > summary {
  font-size: .66rem;
  opacity: .75;
}

/* Shrine-style shipping-protection row: thumb + copy + iOS switch (one tap). */
.lp-overlay .lp-aside .tr-prot {
  display: flex; align-items: center; gap: 12px;
  margin: 10px 0 2px; padding: 10px 12px;
  border: 1px solid var(--hair-strong, rgba(0, 0, 0, 0.12));
  border-radius: 12px; background: var(--surface, #fff);
}
.lp-overlay .lp-aside .tr-prot__thumb {
  flex: 0 0 44px; width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 10px; overflow: hidden;
  background: var(--c-plum-50, rgba(0, 0, 0, 0.05));
  color: var(--brand);
}
.lp-overlay .lp-aside .tr-prot__thumb img { width: 100%; height: 100%; object-fit: cover; }
.lp-overlay .lp-aside .tr-prot__txt { display: grid; gap: 1px; min-width: 0; }
.lp-overlay .lp-aside .tr-prot__txt b { font-size: 0.85rem; letter-spacing: -0.01em; }
.lp-overlay .lp-aside .tr-prot__txt small { font-size: 0.72rem; opacity: 0.65; line-height: 1.35; }
.lp-overlay .lp-aside .tr-prot__switch {
  flex: 0 0 46px; width: 46px; height: 27px; margin-left: auto;
  border: 0; border-radius: 999px; cursor: pointer; position: relative;
  background: var(--hair-strong, rgba(0, 0, 0, 0.22));
  transition: background 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-overlay .lp-aside .tr-prot__switch.is-on { background: var(--brand); }
.lp-overlay .lp-aside .tr-prot__switch:disabled { opacity: 0.55; cursor: default; }
.lp-overlay .lp-aside .tr-prot__knob {
  position: absolute; top: 3px; left: 3px; width: 21px; height: 21px;
  border-radius: 999px; background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-overlay .lp-aside .tr-prot__switch.is-on .tr-prot__knob { transform: translateX(19px); }

/* ============================================================
   IN-CART SUBSCRIBE UPSELL — hero card (mock: blanco_cart_drawer)
   Blue gradient card that makes subscription the obvious better option.
   ============================================================ */
.tr-subup {
  position: relative; margin: 10px 0 0; padding: 13px 13px 12px; overflow: hidden;
  color: #fff; border-radius: 19px; isolation: isolate;
  background: linear-gradient(145deg, var(--c-plum-800) 0%, var(--c-plum-700) 56%, var(--c-plum-600) 100%);
  box-shadow: 0 14px 30px rgba(22, 54, 126, 0.22);
}
.tr-subup::before {
  content: ""; position: absolute; z-index: -1; width: 180px; height: 180px;
  right: -92px; top: -105px; border-radius: 50%; background: rgba(255, 255, 255, 0.075);
}
.tr-subup.is-active { background: linear-gradient(145deg, var(--c-plum-800), var(--c-plum-700) 56%, var(--c-plum-600)); }
.tr-subup__top { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 7px; }
.tr-subup__head { display: flex; align-items: center; gap: 7px; min-width: 0; }
.tr-subup__head b { font-size: 15px; line-height: 1; font-weight: 850; letter-spacing: -0.035em; white-space: nowrap; }
.tr-subup__tick { width: 25px; height: 25px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: rgba(255, 255, 255, 0.13); border: 1px solid rgba(255, 255, 255, 0.22); font-size: 12px; }
.tr-subup__badge { padding: 4px 8px; border-radius: 999px; background: rgba(255, 255, 255, 0.13); border: 1px solid rgba(255, 255, 255, 0.22); font-size: 8px; line-height: 1; font-weight: 900; letter-spacing: 0.07em; white-space: nowrap; }
.tr-subup.is-active .tr-subup__badge { background: #fff; color: var(--brand); border-color: #fff; }
.tr-subup__price { display: flex; align-items: baseline; gap: 7px; margin: 0 0 10px; }
.tr-subup__price s { font-size: 11px; color: rgba(255, 255, 255, 0.66); font-weight: 700; }
.tr-subup__arrow { font-size: 12px; color: rgba(255, 255, 255, 0.82); }
.tr-subup__price strong { font-size: 23px; line-height: 1; font-weight: 850; letter-spacing: -0.05em; }
.tr-subup__price em { font-style: normal; font-size: 9px; color: rgba(255, 255, 255, 0.8); }
.tr-subup__benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 9px; margin: 0 0 11px; padding: 0; list-style: none; }
.tr-subup__benefits li { display: flex; align-items: center; gap: 6px; min-width: 0; font-size: 9px; line-height: 1.05; font-weight: 700; }
.tr-subup__check { width: 15px; height: 15px; display: grid; place-items: center; flex: 0 0 15px; border-radius: 50%; background: rgba(255, 255, 255, 0.17); font-size: 8px; }
.tr-subup__cta {
  display: grid; place-items: center; width: 100%; height: 40px; border: 0; border-radius: 999px;
  background: linear-gradient(180deg, #fff, #f6f9ff); color: var(--brand);
  font-size: 11px; font-weight: 900; letter-spacing: -0.012em; cursor: pointer; text-decoration: none;
  box-shadow: 0 7px 16px rgba(6, 26, 72, 0.18); transition: transform 0.2s ease;
}
.tr-subup__cta:active { transform: scale(0.988); }
.tr-subup form { width: 100%; }
.tr-subup__pill { width: max-content; max-width: 100%; margin: 8px auto 0; padding: 5px 10px; border-radius: 999px; background: rgba(8, 35, 94, 0.32); border: 1px solid rgba(255, 255, 255, 0.2); font-size: 9px; line-height: 1; font-weight: 850; white-space: nowrap; }
@media (prefers-reduced-motion: no-preference) {
  .tr-subup.is-active { animation: tr-subup-glow 1s ease both; }
  @keyframes tr-subup-glow { 0% { transform: scale(0.99); } 60% { transform: scale(1.006); } 100% { transform: scale(1); } }
}

/* ============================================================
   NATIVE CART DRAWER v2 (tr-cd) — self-contained, mock 1:1.
   Legacy .cart-* rules never target these classes → no override.
   `overlay--bare` neutralises the default Aside header/padding so
   this component owns the whole panel.
   ============================================================ */
.overlay--bare aside { padding: 0 !important; background: none !important; }
.tr-cd {
  /* Map to the theme ramp (tokens.css) — NEVER restate brand hex here, or these
     locals shadow the global vars and freeze the drawer to one brand's palette.
     A migrating brand edits tokens.css only and the whole drawer retunes. */
  --brand: var(--c-plum-800); --accent: var(--c-plum-600); --ink: var(--c-plum-900);
  --muted: var(--c-ink-mute); --ice: var(--c-plum-100); --ice-2: var(--c-plum-50);
  --line: var(--c-silver-100); --card: var(--surface);
  display: flex; flex-direction: column; height: 100%; min-height: 0; overflow: hidden;
  color: var(--ink); background: linear-gradient(180deg, #fbfdff 0%, #f3f7fc 100%);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Segoe UI, Arial, sans-serif;
}
.tr-cd__head { flex: 0 0 auto; height: 58px; display: flex; align-items: center; justify-content: space-between; padding: 0 14px 0 17px; background: rgba(255,255,255,.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.tr-cd__head h2 { margin: 0; font-size: 17px; font-weight: 800; letter-spacing: -.035em; }
.tr-cd__x { width: 34px; height: 34px; border: 0; background: transparent; color: var(--ink); border-radius: 999px; display: grid; place-items: center; cursor: pointer; }
.tr-cd__x:hover { background: var(--ice-2); }
.tr-cd__x svg { width: 20px; height: 20px; }
.tr-cd__ship { flex: 0 0 auto; padding: 8px 15px 9px; background: linear-gradient(180deg, #f1f6fd, #edf4fd); border-bottom: 1px solid #dce7f5; }
.tr-cd__ship-line { margin: 0; display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: -.012em; }
.tr-cd__ship-line svg { width: 15px; height: 15px; color: var(--brand); flex: 0 0 auto; }
.tr-cd__ship-line b { color: var(--accent); font-weight: 850; }
.tr-cd__track { display: block; height: 5px; margin-top: 7px; border-radius: 999px; background: #d7e2f1; overflow: hidden; }
.tr-cd__fill { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--brand)); transition: width .7s cubic-bezier(.2,.8,.2,1); }
.tr-cd__scroll { flex: 1; min-height: 0; overflow-y: auto; overscroll-behavior: contain; padding: 10px 10px 12px; scrollbar-width: none; }
.tr-cd__scroll::-webkit-scrollbar { display: none; }
.tr-cd__eyebrow { margin: 0 0 6px 3px; color: #71809a; font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .11em; }
.tr-cd__items { list-style: none; margin: 0; padding: 0; }
.tr-cd__item { padding: 9px; background: var(--card); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 12px 30px rgba(28,64,128,.09); }
.tr-cd__item + .tr-cd__item { margin-top: 8px; }
.tr-cd__item-main { display: grid; grid-template-columns: 56px minmax(0,1fr) auto; gap: 9px; align-items: center; }
.tr-cd__thumb { width: 56px; height: 60px; border: 1px solid #e1e8f2; border-radius: 13px; overflow: hidden; background: #fff; display: grid; place-items: center; }
.tr-cd__thumb img { width: 100%; height: 100%; object-fit: cover; }
.tr-cd__item-copy { min-width: 0; }
.tr-cd__item-copy h3 { margin: 0 0 3px; font-size: 12.6px; line-height: 1.08; font-weight: 800; letter-spacing: -.025em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tr-cd__item-copy p { margin: 0; font-size: 9.7px; color: var(--muted); font-weight: 500; }
.tr-cd__item-price { text-align: right; min-width: 56px; }
.tr-cd__item-price strong { display: block; font-size: 14px; font-weight: 850; letter-spacing: -.035em; }
.tr-cd__item-price s { display: block; margin-top: 3px; font-size: 9px; color: #96a0b0; }
.tr-cd__item-tools { display: flex; align-items: center; justify-content: space-between; padding-left: 65px; margin-top: 7px; }
.tr-cd__stepper { height: 28px; display: inline-flex; align-items: center; border: 1px solid #d9e4f2; border-radius: 999px; background: #f7faff; overflow: hidden; }
.tr-cd__stepper button { width: 29px; height: 27px; border: 0; background: transparent; color: var(--brand); font-size: 16px; cursor: pointer; }
.tr-cd__stepper button:disabled { opacity: .4; cursor: default; }
.tr-cd__stepper span { min-width: 23px; text-align: center; font-size: 10.5px; font-weight: 800; }
.tr-cd__stepper form { display: inline-flex; }
.tr-cd__remove { border: 0; background: transparent; padding: 0; color: #7b879b; font-size: 9px; text-decoration: underline; cursor: pointer; }
.tr-cd__upgrade { margin-top: 8px; padding: 7px 7px 7px 9px; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 8px; align-items: center; border: 1px solid #cfddf2; border-radius: 12px; background: linear-gradient(90deg, #eaf1fb, #f2f6fc); }
.tr-cd__upgrade strong { display: block; color: var(--brand); font-size: 10.5px; line-height: 1.05; font-weight: 850; }
.tr-cd__upgrade span { display: block; margin-top: 3px; color: #596983; font-size: 9px; }
.tr-cd__upgrade s { color: #98a2b2; }
.tr-cd__switch { height: 28px; padding: 0 12px; border: 1px solid #bfd0ec; border-radius: 999px; background: #fff; color: var(--brand); font-size: 9.5px; font-weight: 850; cursor: pointer; box-shadow: 0 4px 10px rgba(25,70,150,.06); }
.tr-cd__submeta { display: flex; align-items: center; justify-content: space-between; gap: 6px; margin-top: 8px; padding-left: 65px; }
.tr-cd__badge { padding: 5px 7px; border-radius: 999px; background: #e8f0ff; border: 1px solid #cfdef7; color: var(--brand); font-size: 8.6px; font-weight: 850; }
.tr-cd__chip { padding: 5px 7px; border-radius: 999px; background: #fff; border: 1px solid #b9cdec; color: var(--accent); font-size: 8.7px; font-weight: 850; }
.tr-cd__sticky { flex: 0 0 auto; padding: 8px 10px; background: rgba(255,255,255,.94); backdrop-filter: blur(16px); border-top: 1px solid var(--line); box-shadow: 0 -10px 26px rgba(25,61,128,.08); }
.tr-cd__summary { margin: 0 0 8px; padding: 8px 10px 9px; background: var(--card); border: 1px solid var(--line); border-radius: 18px; }
.tr-cd__srow { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin: 3px 0; font-size: 9.8px; color: #58677f; }
.tr-cd__srow strong { color: var(--ink); font-size: 10.5px; }
.tr-cd__srow s { color: #96a0b1; margin-right: 5px; }
.tr-cd__free { color: var(--accent) !important; }
.tr-cd__ssave { width: max-content; margin: 6px 0 2px; padding: 5px 8px; border: 1px solid #d0def7; border-radius: 999px; background: #e9f1ff; color: var(--brand); font-size: 8.6px; font-weight: 850; }
.tr-cd__total { margin-top: 7px; padding-top: 7px; border-top: 1px solid var(--line); font-size: 11.7px; font-weight: 850; color: var(--ink); }
.tr-cd__total strong { font-size: 12.5px; }
.tr-cd__tax { font-size: 8.4px; margin-top: 1px; }
.tr-cd__checkout { display: grid; place-items: center; width: 100%; height: 47px; margin-top: 7px; border: 0; border-radius: 999px; text-decoration: none; background: linear-gradient(90deg, var(--c-plum-600) 0%, var(--c-plum-700) 46%, var(--c-plum-800) 100%); color: #fff; font-size: 13px; font-weight: 850; letter-spacing: -.02em; cursor: pointer; box-shadow: 0 9px 20px rgba(31,82,180,.22); }
.tr-cd__checkout:active { transform: scale(.988); }
.tr-cd__trust { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 8px; color: #67758b; font-size: 8.7px; font-weight: 700; }
.tr-cd__trust svg { width: 11px; height: 11px; color: var(--accent); }
.tr-cd__trust i { width: 3px; height: 3px; border-radius: 50%; background: #a0adbf; }
.tr-cd__empty { flex: 1; display: grid; place-content: center; justify-items: center; gap: 8px; padding: 24px; text-align: center; }
.tr-cd__empty-title { margin: 0; font-size: 18px; font-weight: 800; letter-spacing: -.02em; }
.tr-cd__empty-cta { margin-top: 8px; padding: 12px 20px; border-radius: 999px; background: var(--brand); color: #fff; text-decoration: none; font-weight: 800; font-size: 13px; }
.tr-cd .tr-prot { margin: 0; }

/* ============================================================
   CART DRAWER v2 — REFINEMENT (bigger type, single-line, CTA,
   native protection toggle, subtle motion). Later cascade = wins.
   ============================================================ */
/* typography up + single-line guards */
.tr-cd__head h2 { font-size: 18px; }
.tr-cd__eyebrow { font-size: 9.5px; }
.tr-cd__ship-line { font-size: 12.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tr-cd__item-copy h3 { font-size: 14.5px; }
.tr-cd__item-copy p { font-size: 11px; white-space: nowrap; }
.tr-cd__item-price strong { font-size: 16px; }
.tr-cd__item-price s { font-size: 11px; }
.tr-cd__stepper span { font-size: 12px; }
.tr-cd__upgrade strong { font-size: 11.5px; white-space: nowrap; }
.tr-cd__upgrade span { font-size: 9.6px; white-space: nowrap; }
.tr-cd__switch { font-size: 11px; height: 30px; padding: 0 14px; }
.tr-cd__badge { font-size: 9.6px; white-space: nowrap; }
.tr-cd__chip { font-size: 9.8px; white-space: nowrap; }
.tr-cd__srow { font-size: 12px; white-space: nowrap; }
.tr-cd__srow strong { font-size: 13px; }
.tr-cd__ssave { font-size: 11px; white-space: nowrap; }
.tr-cd__total { font-size: 14px; }
.tr-cd__total strong { font-size: 16.5px; }
.tr-cd__tax { font-size: 9.4px; }
.tr-cd__trust { font-size: 10.5px; white-space: nowrap; }

/* CTA — single-line, vertically centred text + arrow, premium proportions */
.tr-cd__checkout { display: flex; align-items: center; justify-content: center; gap: 8px; height: 51px; font-size: 15.5px; letter-spacing: -.01em; }
.tr-cd__checkout-txt { white-space: nowrap; line-height: 1; }
.tr-cd__checkout-arrow { width: 17px; height: 17px; flex: 0 0 auto; }

/* native shipping-protection row — single-line, sits right on the CTA */
.tr-cd__prot { display: grid; grid-template-columns: 30px minmax(0,1fr) auto; gap: 9px; align-items: center; margin: 0 0 8px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 15px; background: #fff; box-shadow: 0 6px 18px rgba(31,68,132,.06); }
.tr-cd__prot-ic { width: 30px; height: 30px; border-radius: 10px; background: var(--ice); display: grid; place-items: center; color: var(--brand); }
.tr-cd__prot-ic svg { width: 17px; height: 17px; }
.tr-cd__prot-txt { min-width: 0; }
.tr-cd__prot-txt b { display: block; font-size: 12px; font-weight: 800; letter-spacing: -.01em; white-space: nowrap; }
.tr-cd__prot-txt small { display: block; margin-top: 2px; font-size: 9.5px; color: var(--muted); white-space: nowrap; }
.tr-cd__toggle { position: relative; width: 44px; height: 26px; flex: 0 0 auto; border: 0; border-radius: 999px; background: #d4dfed; cursor: pointer; transition: background .25s ease; }
.tr-cd__toggle.is-on { background: var(--brand); }
.tr-cd__knob { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 2px 5px rgba(17,42,85,.28); transition: left .3s cubic-bezier(.2,.9,.25,1.4); }
.tr-cd__toggle.is-on .tr-cd__knob { left: 21px; }

/* pills/badges: vertical centring */
.tr-cd__badge, .tr-cd__chip, .tr-cd__ssave { display: inline-flex; align-items: center; }
.tr-cd__free { font-weight: 850; }

/* subtle, premium motion */
@media (prefers-reduced-motion: no-preference) {
  .tr-cd__item { animation: tr-cd-fade .4s ease both; }
  .tr-cd__summary { animation: tr-cd-fade .42s ease both; }
  .tr-cd__item-price strong { animation: tr-cd-fade .42s ease both; }
  .tr-cd__chip, .tr-cd__ssave { animation: tr-cd-pop .55s cubic-bezier(.2,.9,.25,1.4) both; }
  @keyframes tr-cd-fade { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: none; } }
  @keyframes tr-cd-pop { 0% { opacity: 0; transform: scale(.72); } 70% { opacity: 1; transform: scale(1.06); } 100% { transform: scale(1); } }
}

/* SubscribeUpsell — bigger, cleaner, the clearly-better choice */
.tr-subup__head b { font-size: 16px; }
.tr-subup__price strong { font-size: 26px; }
.tr-subup__price s { font-size: 12px; }
.tr-subup__benefits li { font-size: 10px; white-space: nowrap; }
.tr-subup__cta { height: 44px; font-size: 12.5px; display: flex; align-items: center; justify-content: center; gap: 6px; white-space: nowrap; }
.tr-subup__pill { font-size: 10px; white-space: nowrap; }
.tr-subup__badge { font-size: 8.6px; }

/* v2 refinement — overflow fixes (single-line, no clipping at the edge) */
.tr-cd__submeta { padding-left: 0 !important; }
.tr-cd__item-tools { padding-left: 0 !important; }
.tr-subup__head { min-width: 0; flex: 1; }
.tr-subup__head b { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tr-subup__badge { flex: 0 0 auto; }
.tr-subup__benefits { grid-template-columns: 1fr 1fr; gap: 6px 10px; }
.tr-subup__benefits li { font-size: 9.4px; overflow: hidden; text-overflow: ellipsis; }
.tr-subup__price strong { font-size: 25px; }

/* v2 — hero price line compacted + savings-forward; summary moved into scroll */
.tr-subup__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 3px 8px; margin: 0 0 9px; }
.tr-subup__price strong { font-size: 27px; font-weight: 850; letter-spacing: -.05em; line-height: 1; }
.tr-subup__price s { font-size: 12px; color: rgba(255,255,255,.62); font-weight: 700; }
.tr-subup__off {
  flex-basis: 100%; width: max-content; max-width: 100%; margin-top: 5px;
  padding: 5px 11px; border-radius: 999px; background: #fff; color: var(--brand);
  font-size: 11.5px; font-weight: 900; letter-spacing: -.01em; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(6,26,72,.18);
}
.tr-subup { padding: 13px 13px 13px; }
.tr-subup__benefits { margin: 0 0 12px; }
.tr-cd__summary { margin: 8px 0 0 !important; }

/* v2 — compact always-visible cost block in the sticky footer + bold on-brand
   discount banner (no scroll needed to see the total, nothing overlaps) */
.tr-cd__totals { margin: 0 0 8px; }
.tr-cd__disc {
  display: flex; align-items: center; gap: 8px; margin: 0 0 7px; padding: 8px 12px;
  border-radius: 13px; color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  box-shadow: 0 8px 18px -6px rgba(22, 54, 126, .5);
}
.tr-cd__disc-ic { width: 22px; height: 22px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 7px; background: rgba(255, 255, 255, .16); }
.tr-cd__disc-ic svg { width: 14px; height: 14px; }
.tr-cd__disc b { font-size: 13.5px; font-weight: 900; letter-spacing: -.01em; white-space: nowrap; }
.tr-cd__disc-pct { margin-left: auto; padding: 3px 9px; border-radius: 999px; background: rgba(255, 255, 255, .18); border: 1px solid rgba(255, 255, 255, .32); font-size: 10px; font-weight: 900; letter-spacing: .04em; white-space: nowrap; }
.tr-cd__total-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 0 3px; }
.tr-cd__total-lbl { font-size: 13px; font-weight: 850; color: var(--ink); white-space: nowrap; }
.tr-cd__total-lbl small { display: block; margin-top: 1px; font-size: 8.6px; font-weight: 500; color: #7c8aa1; white-space: nowrap; }
.tr-cd__total-amt { display: flex; align-items: baseline; gap: 6px; white-space: nowrap; }
.tr-cd__total-amt s { font-size: 11px; color: #98a2b2; }
.tr-cd__total-amt b { font-size: 18px; font-weight: 900; letter-spacing: -.03em; color: var(--ink); }
/* opaque footer so scroll content never bleeds through (no overlap) */
.overlay--bare aside .tr-cd__sticky { background: #ffffff; }
@media (prefers-reduced-motion: no-preference) {
  .tr-cd__disc { animation: tr-cd-pop .5s cubic-bezier(.2,.9,.25,1.4) both; }
}

/* v2 — COMPACT: whole drawer fits without scrolling (scroll reserved for future
   upsells). De-dup the hero save stamp (footer discount banner carries it) and
   tighten every vertical gap/padding. */
.tr-cd__scroll { padding: 7px 10px 6px; }
.tr-cd__eyebrow { margin: 0 0 4px 3px; }
.tr-cd__ship { padding: 6px 15px 7px; }
.tr-cd__item { padding: 8px; }
.tr-cd__item-tools { margin-top: 5px; }
.tr-cd__submeta { margin-top: 6px; }
.tr-subup { margin-top: 7px; padding: 11px 13px 12px; }
.tr-subup__price { margin: 0 0 8px; }
.tr-subup__off { display: none; }
.tr-subup__benefits { margin: 0 0 9px; gap: 5px 10px; }
.tr-subup__cta { height: 39px; }
.tr-cd__sticky { padding: 7px 10px; }
.tr-cd__totals { margin: 0 0 6px; }
.tr-cd__disc { margin: 0 0 6px; padding: 7px 12px; }
.tr-cd__total-lbl small { font-size: 8.3px; }
.tr-cd__prot { padding: 7px 10px; margin-bottom: 7px; }
.tr-cd__checkout { height: 48px; margin-top: 6px; }
.tr-cd__trust { margin-top: 6px; }

/* iOS: drawer fills the visible viewport cleanly; footer clears the home bar */
.tr-cd__sticky { padding-bottom: max(8px, env(safe-area-inset-bottom, 8px)); }

/* v2 — smooth subscription switch (pending feedback, no 'looks-broken' jank) */
.tr-subup__cta { transition: opacity .25s ease, transform .18s ease, background .3s ease; }
.tr-subup__cta.is-pending { opacity: .9; cursor: progress; }
.tr-cd__switch:disabled { opacity: .75; cursor: progress; }
.tr-cd__upgrade.is-pending { opacity: .72; transition: opacity .25s ease; }
.tr-subup__spin {
  width: 14px; height: 14px; flex: 0 0 auto; border-radius: 50%;
  border: 2px solid rgba(22, 54, 126, 0.25); border-top-color: var(--brand);
  animation: tr-spin .7s linear infinite;
}
@keyframes tr-spin { to { transform: rotate(360deg); } }
/* smooth OFFER -> ACTIVE morph of the hero + prices */
.tr-subup { transition: background .45s ease, box-shadow .45s ease; }
.tr-subup__price strong, .tr-cd__item-price strong, .tr-cd__total-amt b { transition: color .3s ease; }

/* ============================================================
   SMOOTH OFFER <-> ACTIVE TRANSFORMATION (optimistic + crossfade)
   ============================================================ */
/* stable widths — prices never jitter */
.tr-subup__price strong, .tr-subup__price s,
.tr-cd__item-price strong, .tr-cd__item-price s,
.tr-cd__total-amt b, .tr-cd__total-amt s, .tr-cd__disc b {
  font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1;
}
/* title: both states stacked in one grid cell -> stable width + crossfade */
.tr-subup__title { position: relative; display: inline-grid; min-width: 0; }
.tr-subup__t {
  grid-area: 1 / 1; font-size: 16px; font-weight: 850; letter-spacing: -.035em;
  white-space: nowrap; transition: opacity .28s ease, transform .28s ease;
}
.tr-subup[data-state="offer"] .tr-subup__t--active,
.tr-subup[data-state="active"] .tr-subup__t--offer { opacity: 0; transform: translateY(4px); pointer-events: none; }
.tr-subup[data-state="offer"] .tr-subup__t--offer,
.tr-subup[data-state="active"] .tr-subup__t--active { opacity: 1; transform: none; }
/* badge crossfade */
.tr-subup__badge { position: relative; display: inline-grid; }
.tr-subup__b { grid-area: 1 / 1; transition: opacity .28s ease; }
.tr-subup[data-state="offer"] .tr-subup__b--active,
.tr-subup[data-state="active"] .tr-subup__b--offer { opacity: 0; }
/* CTA slot: button + link both mounted, crossfade (no snap, no focus loss) */
.tr-subup__ctaslot { position: relative; height: 40px; margin-top: 2px; }
.tr-subup__ctaslot > .tr-subup__cta {
  position: absolute; inset: 0; margin: 0; height: 40px;
  transition: opacity .28s ease, transform .2s ease, box-shadow .25s ease;
}
.tr-subup[data-state="offer"] .tr-subup__cta--active,
.tr-subup[data-state="active"] .tr-subup__cta--offer { opacity: 0; transform: translateY(3px); pointer-events: none; }
.tr-subup[data-state="offer"] .tr-subup__cta--offer,
.tr-subup[data-state="active"] .tr-subup__cta--active { opacity: 1; transform: none; }
/* spinner in a fixed slot that grows -> label never jumps */
.tr-subup__iconslot { width: 0; overflow: hidden; display: inline-flex; align-items: center; transition: width .2s ease, margin .2s ease; }
.tr-subup__cta.is-pending .tr-subup__iconslot { width: 16px; margin-right: 6px; }
.tr-subup__spin { opacity: 0; transition: opacity .15s ease; }
.tr-subup__spin.is-visible { opacity: 1; }
/* line/summary morph smoothly with the rest */
.tr-cd__item-price strong, .tr-cd__item-price s { transition: color .3s ease, opacity .3s ease; }
.tr-cd__submeta, .tr-cd__upgrade { transition: opacity .28s ease; }
.tr-cd__disc, .tr-cd__total-amt b { transition: background .3s ease, color .3s ease; }
/* subtle 'confirming' ring while the server catches up */
.tr-cd.is-switching .tr-subup { box-shadow: 0 0 0 2px rgba(36, 86, 196, .35), 0 14px 30px rgba(22, 54, 126, .22); }
@media (prefers-reduced-motion: reduce) {
  .tr-subup__t, .tr-subup__b, .tr-subup__cta, .tr-subup__iconslot, .tr-subup__spin,
  .tr-cd__item-price strong, .tr-cd__submeta, .tr-cd__upgrade, .tr-cd__disc { transition: none !important; }
}

/* checkout locked while a subscription switch is in flight (P0 correctness) */
.tr-cd__checkout.is-disabled { opacity: .6; pointer-events: none; cursor: progress; }

/* ---------------------------------------------------------------------------
   Zuletzt, damit es gewinnt.
   Blancos eigene Regel `.lp-overlay .lp-aside` steht weiter oben und hat
   dieselbe Spezifität — bei Gleichstand entscheidet die Reihenfolge. Mein
   Hintergrund stand davor und verlor: gemessen blieb das Blatt rgba(0,0,0,0),
   die Seite schien durch.
   -------------------------------------------------------------------------- */
.lp-overlay .lp-aside {
  background: var(--bg);
  color: var(--text);
  box-shadow: -18px 0 48px rgba(36, 31, 28, 0.18);
}
.lp-overlay .lp-aside > header,
.lp-overlay .cart-summary-aside {
  background: var(--bg);
}
.lp-overlay .tr-cd__checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 52px;
  border-radius: var(--r-pill);
  background: var(--brand);
  color: var(--on-brand);
  font-weight: 600;
  text-decoration: none;
}
.lp-overlay .tr-cd__checkout:hover { background: var(--brand-deep); }
.lp-overlay .tr-cd__total-row {
  display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 12px;
}
.lp-overlay .tr-cd__total-lbl { color: var(--text-mute) !important; -webkit-text-fill-color: var(--text-mute) !important; }
.lp-overlay .tr-cd__total-amt { font-size: 1.25rem; font-weight: 700; }
.lp-overlay .tr-cd__trust { margin: 10px 0 0; font-size: .74rem; color: var(--text-mute); text-align: center; }
.lp-overlay .cart-summary-aside { padding: 16px 20px 22px; border-top: 1px solid var(--line); }
.lp-overlay .tr-cart-upsell { padding: 14px 20px; border-top: 1px solid var(--line); background: var(--surface); }
.lp-overlay .tr-cart-upsell__eyebrow {
  display: block; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-mute); margin-bottom: 8px;
}
.lp-overlay .tr-cart-upsell__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.lp-overlay .tr-cart-upsell__txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.lp-overlay .tr-cart-upsell__txt small { color: var(--text-mute); font-size: .78rem; line-height: 1.35; }
.lp-overlay .tr-cart-upsell__btn {
  flex: none; min-height: 40px; padding: 0 14px; border: 1px solid var(--brand);
  background: transparent; color: var(--brand-deep); border-radius: var(--r-pill);
  font-size: .8rem; font-weight: 600; cursor: pointer;
}
.lp-overlay .cart-line-img { width: 64px; height: 64px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface); overflow: hidden; flex: none; }
.lp-overlay .cart-line-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.lp-overlay .tr-cart-upsell__img { width: 48px; height: 48px; object-fit: contain; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface); flex: none; }

/* Bei offenem Warenkorb verschwindet die sticky Kaufleiste. Sie ist fixiert am
   unteren Rand und lag sonst ueber dem Checkout-Knopf des Drawers — gemessen,
   nachdem die Sichtbarkeitsschwelle der Leiste von 3000 auf 1000 gesenkt wurde.
   Ein Fix, der einen zweiten Fehler erzeugt hat; das ist die Gegenmassnahme. */
.lp-drawer-offen .sticky-add-to-cart { display: none !important; }

/* ── Reward-Leiter + Coupon (Drawer-Aufwertung 2026-08-11) ─────────────────
   Flaschen-Wahrheit vom Server (Pack-Varianten aufgelöst), Farbwelt der Seite:
   Etikettrot #C7553A, Papier #FFF9F1, Tinte #2E1F14, Gold #f1cd76. */
.tr-cd-rwd { padding: 12px 16px 10px; background: #FFF9F1; border-bottom: 1px solid rgba(46,31,20,.08); }
.tr-cd-rwd__head { margin: 0 0 8px; font-size: 12.5px; font-weight: 700; color: #2E1F14; text-align: center; }
.tr-cd-rwd__track { position: relative; height: 8px; border-radius: 999px; background: rgba(46,31,20,.1); overflow: visible; }
.tr-cd-rwd__fill { position: absolute; inset: 0 auto 0 0; border-radius: 999px; background: linear-gradient(90deg, #D7A07B, #C7553A); transition: width .35s ease; }
.tr-cd-rwd__node { position: absolute; top: 50%; width: 14px; height: 14px; transform: translate(-50%,-50%); border-radius: 50%; background: #fff; border: 2px solid rgba(46,31,20,.25); }
.tr-cd-rwd__node.is-on { border-color: #C7553A; background: #C7553A; }
.tr-cd-rwd__chips { display: flex; gap: 6px; justify-content: center; margin-top: 8px; flex-wrap: wrap; }
.tr-cd-rwd__chip { font-size: 10.5px; font-weight: 700; letter-spacing: .02em; padding: 3px 9px; border-radius: 999px; background: rgba(46,31,20,.06); color: rgba(46,31,20,.55); }
.tr-cd-rwd__chip.is-on { background: #F1D8CF; color: #A8452E; }
.tr-cd-rwd.is-max .tr-cd-rwd__chip.is-on:last-child { background: #f1cd76; color: #2E1F14; }
.tr-cd-code { margin: 0 0 6px; font-size: 13px; }
.tr-cd-code__det > summary { cursor: pointer; color: #A8452E; font-weight: 700; list-style: none; }
.tr-cd-code__det > summary::before { content: '+ '; }
.tr-cd-code__det[open] > summary::before { content: '− '; }
.tr-cd-code__row { display: flex; gap: 8px; margin-top: 8px; }
.tr-cd-code__row input { flex: 1; min-width: 0; height: 40px; padding: 0 12px; border: 1.5px solid rgba(46,31,20,.2); border-radius: 10px; font-size: 14px; background: #fff; }
.tr-cd-code__row input:focus { outline: 2px solid #C7553A; outline-offset: 1px; }
.tr-cd-code__los { height: 40px; padding: 0 16px; border: 0; border-radius: 10px; background: #2E1F14; color: #fff; font-weight: 700; cursor: pointer; }
.tr-cd-code__aktiv { display: flex; align-items: center; gap: 10px; }
.tr-cd-code__aktiv code { background: #F1D8CF; color: #A8452E; font-weight: 700; padding: 3px 8px; border-radius: 6px; }
.tr-cd-code__weg { border: 0; background: none; color: rgba(46,31,20,.6); text-decoration: underline; cursor: pointer; font-size: 12.5px; }
.tr-cd-code__meldung { margin: 6px 0 0; color: #A8452E; font-size: 12.5px; }
.tr-cart-upsell__btn { white-space: nowrap; }

/* ── Drawer-Politur Welle 7: Reward-Karte, Upsell-Stack, Protection, Marken ── */
.tr-cd-rwd { margin: 12px 14px 2px; border: 1px solid rgba(46,31,20,.09); border-radius: 14px; box-shadow: 0 1px 4px rgba(46,31,20,.05); background: #FFF9F1; border-bottom: 1px solid rgba(46,31,20,.09); }
.tr-cart-upsell { display: grid; gap: 10px; padding: 4px 0 2px; background: none; }
.tr-cart-upsell__card { border: 1px solid rgba(46,31,20,.1); border-radius: 14px; background: #fff; padding: 10px 12px; box-shadow: 0 1px 4px rgba(46,31,20,.04); }
.tr-cart-upsell__eyebrow { display: block; font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: #A8452E; margin-bottom: 6px; }
.tr-cart-upsell__row { display: flex; align-items: center; gap: 10px; }
.tr-cart-upsell__imgwrap { flex: none; width: 52px; height: 52px; border-radius: 10px; background: #FFF9F1; border: 1px solid rgba(46,31,20,.08); display: grid; place-items: center; overflow: hidden; }
.tr-cart-upsell__img { width: 100%; height: 100%; object-fit: contain; }
.tr-cart-upsell__txt { flex: 1; min-width: 0; display: grid; gap: 2px; }
.tr-cart-upsell__txt strong { font-size: 13.5px; line-height: 1.25; }
.tr-cart-upsell__txt small { font-size: 12px; color: rgba(46,31,20,.65); }
.tr-cd-save { display: flex; justify-content: space-between; align-items: baseline; margin: 0 0 6px; font-size: 13px; }
.tr-cd-save__lbl { color: rgba(46,31,20,.6); font-weight: 700; }
.tr-cd-save__val s { color: rgba(46,31,20,.45); margin-right: 6px; font-size: 12px; }
.tr-cd-save__val b { color: #A8452E; }
.tr-cd-prot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 9px; font-size: 12.5px; }
.tr-cd-prot__txt { display: inline-flex; align-items: center; gap: 6px; color: rgba(46,31,20,.75); }
.tr-cd-prot__txt--aus { color: rgba(46,31,20,.45); }
.tr-cd-prot__ic { font-size: 13px; }
.tr-cd-prot__btn { border: 0; background: none; color: rgba(46,31,20,.6); text-decoration: underline; cursor: pointer; font-size: 12px; }
.tr-cd-pay { display: flex; gap: 6px; justify-content: center; margin-top: 10px; flex-wrap: wrap; }
.tr-cd-pay__chip { display: grid; place-items: center; width: 38px; height: 26px; border: 1px solid rgba(46,31,20,.1); border-radius: 5px; background: #fff; }
.tr-cd-pay__chip img { max-width: 30px; max-height: 18px; }

/* ── Welle 8: Flaschen-Badges, Spacing, Micro-Animationen ──────────────── */
.tr-cart-upsell__imgwrap { position: relative; width: 64px; height: 64px; }
.tr-cart-upsell__count, .cart-line-img__count {
  position: absolute; right: -5px; bottom: -5px; z-index: 1;
  min-width: 22px; height: 22px; padding: 0 5px;
  display: grid; place-items: center;
  background: #C7553A; color: #fff; border: 2px solid #fff;
  border-radius: 999px; font-size: 10.5px; font-weight: 800; letter-spacing: 0;
}
.cart-line-img { position: relative; }
.tr-cart-upsell { padding: 2px 0 4px; }
.tr-cart-upsell__card { padding: 12px 14px; }
.tr-cart-upsell__card + .tr-cart-upsell__card { margin-top: 2px; }
.tr-cart-upsell__card.is-drin { opacity: .78; }
.tr-cart-upsell__btn { transition: transform 160ms ease, background 200ms ease, color 200ms ease, box-shadow 200ms ease; }
.tr-cart-upsell__btn:not(:disabled):hover { background: #C7553A; color: #fff; box-shadow: 0 4px 12px rgba(180,71,43,.28); }
.tr-cart-upsell__btn:not(:disabled):active { transform: scale(.96); }
.tr-cart-upsell__btn:disabled { border-color: rgba(46,31,20,.15); color: #6c8a5a; cursor: default; }
.tr-cd-save { margin: 2px 0 8px; }
.tr-cd-code { margin: 0 0 8px; }
.tr-cd__total-row { margin-bottom: 2px; }
.tr-cd-prot { margin-top: 10px; padding-top: 9px; border-top: 1px dashed rgba(46,31,20,.12); }
.tr-cd-pay { margin-top: 11px; }
.tr-cd__trust { margin-top: 9px; }
.tr-cd-prot__btn, .tr-cd-code__weg { transition: color 160ms ease; }
.tr-cd-prot__btn:hover, .tr-cd-code__weg:hover { color: #A8452E; }
.tr-cd__checkout { transition: transform 180ms ease, box-shadow 220ms ease, filter 180ms ease; }
.tr-cd__checkout:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(147,53,31,.3); filter: brightness(1.04); }
.tr-cd__checkout:active { transform: translateY(0) scale(.985); }
@keyframes lpKarteAuf { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }
.tr-cart-upsell__card, .tr-cd-rwd { animation: lpKarteAuf 260ms cubic-bezier(.22,.9,.3,1) backwards; }
.tr-cart-upsell__card:nth-child(3) { animation-delay: 60ms; }
@keyframes lpNodePop { 0% { transform: translate(-50%,-50%) scale(.5); } 60% { transform: translate(-50%,-50%) scale(1.25); } 100% { transform: translate(-50%,-50%) scale(1); } }
.tr-cd-rwd__node.is-on { animation: lpNodePop 340ms cubic-bezier(.22,.9,.3,1); }
.cart-line-qty button, .cart-line-remove { transition: background 160ms ease, color 160ms ease, transform 120ms ease; }
.cart-line-qty button:hover { background: rgba(180,71,43,.1); color: #A8452E; }
.cart-line-qty button:active { transform: scale(.92); }
@media (prefers-reduced-motion: reduce) {
  .tr-cart-upsell__card, .tr-cd-rwd, .tr-cd-rwd__node.is-on { animation: none; }
  .tr-cd__checkout, .tr-cart-upsell__btn { transition: none; }
}

/* ── Welle 9: Flaschen-Piktogramme + Bundle-Segmented-Control ───────────── */
.tr-cd-fl { display: inline-flex; align-items: center; gap: 2px; margin-top: 6px; color: #C7553A; }
.tr-cd-fl__i { display: inline-flex; }
.tr-cd-fl b { margin-left: 5px; font-size: 12px; color: #2E1F14; font-weight: 800; }
.tr-cd-seg { display: inline-flex; gap: 3px; padding: 3px; background: rgba(46,31,20,.06); border-radius: 999px; }
.tr-cd-seg__b {
  display: grid; justify-items: center; gap: 0; min-width: 46px;
  padding: 5px 10px 6px; border: 0; border-radius: 999px; background: none;
  cursor: pointer; color: rgba(46,31,20,.65);
  transition: background 180ms ease, color 180ms ease, box-shadow 200ms ease, transform 140ms ease;
}
.tr-cd-seg__b b { font-size: 14px; line-height: 1; font-weight: 800; }
.tr-cd-seg__b small { font-size: 8.5px; letter-spacing: .04em; text-transform: uppercase; }
.tr-cd-seg__b:not(.is-an):not(:disabled):hover { color: #A8452E; background: rgba(180,71,43,.08); }
.tr-cd-seg__b:not(.is-an):not(:disabled):active { transform: scale(.94); }
.tr-cd-seg__b.is-an { background: #C7553A; color: #fff; box-shadow: 0 2px 8px rgba(147,53,31,.3); cursor: default; }
.tr-cd-seg__b:disabled:not(.is-an) { opacity: .35; cursor: not-allowed; }
.cart-line-quantity { align-items: center; }
@media (prefers-reduced-motion: reduce) { .tr-cd-seg__b { transition: none; } }

/* Welle 9b: Mini-Stepper (Anzahl Packs) neben dem Segment — kompakt, ruhig. */
.cart-line-quantity { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.tr-cd-mini { display: inline-flex; align-items: center; gap: 2px; padding: 3px; background: rgba(46,31,20,.06); border-radius: 999px; }
.tr-cd-mini__b { width: 26px; height: 26px; border: 0; border-radius: 50%; background: none; color: rgba(46,31,20,.7); font-size: 15px; font-weight: 700; cursor: pointer; display: grid; place-items: center; transition: background 160ms ease, color 160ms ease, transform 120ms ease; }
.tr-cd-mini__b:hover { background: #fff; color: #A8452E; }
.tr-cd-mini__b:active { transform: scale(.9); }
.tr-cd-mini__n { min-width: 26px; text-align: center; font-size: 12px; font-weight: 800; color: #2E1F14; }

/* ═══ APPLE-REDESIGN (Welle 10) — überschreibt frühere Drawer-Wellen. ═══
   Prinzip: Hierarchie aus Typo/Abstand/Hairlines statt Karten in Karten.
   Eine Fläche (Cream), Akzent nur für Checkout + aktive Zustände.
   Typo: Headline 19 (600) · Produkt 16 (600) · Label 12/600 · Sekundär 14 · Meta 12.
   Radius: CTA 18 · Bild 12 · Controls 12. Schatten ≈ 0. Inset 16px. */

/* Header: Interface, kein Banner. */
.lp-overlay .lp-aside > header { background: #FFF9F1; color: #2E1F14; min-height: 56px; height: 56px; padding: 0 10px 0 16px; border-bottom: 1px solid rgba(46,31,20,.1); }
.lp-overlay .lp-aside > header h3 { font-size: 19px; font-weight: 650; letter-spacing: -.01em; color: #2E1F14; }
.lp-close { color: #2E1F14; background: none; }
.cart-main, .tr-cart-scroll { background: #FFF9F1; }

/* Progress: Status-Strip, kein Widget. Ziel ≤72px. */
.tr-cd-rwd { margin: 0; padding: 10px 16px 12px; background: none; border: 0; box-shadow: none; border-radius: 0; border-bottom: 1px solid rgba(46,31,20,.08); animation: none; }
.tr-cd-rwd__head { margin: 0 0 7px; font-size: 13px; font-weight: 600; color: #3E3733; text-align: left; }
.tr-cd-rwd__track { height: 3px; background: rgba(46,31,20,.12); }
.tr-cd-rwd__fill { background: #C7553A; }
.tr-cd-rwd__node { width: 9px; height: 9px; border-width: 2px; }
.tr-cd-rwd__node--end { left: auto; right: 0; transform: translate(50%,-50%); }
.tr-cd-rwd.is-max .tr-cd-rwd__head { color: #A8452E; }

/* Zeilen: kompakte Summary-Rows, Hairlines statt Karten. */
.tr-cart-scroll { padding: 0 16px 14px; }
.tr-cart-scroll [data-liste] { margin: 0; padding: 0; }
.cart-line { background: none; border: 0; box-shadow: none; border-radius: 0; padding: 12px 0 10px; margin: 0; border-bottom: 1px solid rgba(46,31,20,.08); }
.cart-line-inner { display: flex; gap: 12px; align-items: flex-start; }
.cart-line-img, .cart-line-noimg { width: 64px; height: 64px; border-radius: 12px; background: #fff; border: 1px solid rgba(46,31,20,.08); overflow: hidden; flex: none; display: grid; place-items: center; }
.cart-line-img img { width: 100%; height: 100%; object-fit: contain; }
.cart-line-inner > div:not(.cart-line-img):not(.cart-line-noimg) { flex: 1; min-width: 0; }
.cart-line-inner p { margin: 0; }
.cart-line-inner strong { font-size: 16px; font-weight: 650; line-height: 1.25; color: #2E1F14; letter-spacing: -.01em; }
/* Metazeilen als EINE ruhige Zeile mit Trennpunkten. */
.cart-line-inner ul { display: flex; flex-wrap: wrap; gap: 0 4px; margin: 3px 0 0; padding: 0; list-style: none; }
.cart-line-inner ul li { display: inline-flex; align-items: center; }
.cart-line-inner ul li:not(:last-child)::after { content: '·'; margin-left: 4px; color: #A38B79; }
.cart-line-inner ul small { font-size: 13px; color: #5A4638; }
.cart-line-inner ul li:last-child small { color: #2E1F14; font-weight: 650; }
.tr-cart-subplan { background: none; padding: 0; }
.cart-line-quantity { margin-top: 8px; gap: 6px; }
.tr-cd-seg { padding: 2px; background: rgba(46,31,20,.07); }
.tr-cd-seg__b { min-width: 44px; padding: 4px 9px 5px; }
.tr-cd-seg__b b { font-size: 13px; }
.tr-cd-seg__b small { font-size: 8px; }
.tr-cd-mini { padding: 2px; }
.tr-cd-mini__b { width: 24px; height: 24px; }
.cart-line-remove { align-self: flex-start; }

/* Upsells: Zeilen unter Section-Label, Outline-CTA — sekundär zu Checkout. */
.tr-cart-upsell { padding: 0; gap: 0; }
.tr-cart-upsell__card { border: 0; box-shadow: none; background: none; border-radius: 0; padding: 11px 0 12px; margin: 0; border-bottom: 1px solid rgba(46,31,20,.08); animation: lpKarteAuf 220ms ease-out backwards; }
.tr-cart-upsell__card + .tr-cart-upsell__card { margin-top: 0; }
.tr-cart-upsell__eyebrow { font-size: 11px; font-weight: 650; letter-spacing: .07em; color: #7A6353; margin-bottom: 7px; }
.tr-cart-upsell__imgwrap { width: 56px; height: 56px; border-radius: 12px; }
.tr-cart-upsell__count { min-width: 20px; height: 20px; font-size: 10px; border-width: 2px; right: -4px; bottom: -4px; }
.tr-cart-upsell__txt strong { font-size: 15px; font-weight: 650; color: #2E1F14; }
.tr-cart-upsell__txt small { font-size: 13px; color: #5A4638; }
.tr-cart-upsell__btn { border: 1.5px solid #C7553A; color: #A8452E; background: none; border-radius: 12px; padding: 7px 14px; font-size: 13px; font-weight: 650; }
.tr-cart-upsell__btn:disabled { border-color: rgba(46,31,20,.18); color: #5A4638; }

/* Utilities im Scroll: leise Zeilen, keine Kästen. */
[data-util] { padding: 2px 0 4px; }
.tr-cd-save { margin: 10px 0 0; padding-bottom: 10px; border-bottom: 1px solid rgba(46,31,20,.08); font-size: 13px; }
.tr-cd-save__lbl { color: #5A4638; font-weight: 600; }
.tr-cd-save__val s { color: #7A6353; }
.tr-cd-prot { margin: 0; padding: 10px 0; border-top: 0; border-bottom: 1px solid rgba(46,31,20,.08); font-size: 13px; }
.tr-cd-prot__txt { color: #5A4638; }
.tr-cd-prot__txt--aus { color: #7A6353; }
.tr-cd-prot__btn { color: #5A4638; font-size: 13px; }
.tr-cd-code { margin: 0; padding: 10px 0 0; font-size: 13px; }
.tr-cd-code__det > summary { color: #5A4638; font-weight: 600; }
.tr-cd-code__det > summary::before { content: ''; }
.tr-cd-code__det[open] > summary::before { content: ''; }
.tr-cd-code__row input { height: 38px; border-radius: 12px; font-size: 14px; }
.tr-cd-code__los { height: 38px; border-radius: 12px; font-size: 13px; }
.tr-cd-code__aktiv code { background: none; padding: 0; color: #2E1F14; font-weight: 650; }

/* Sticky-Fuß: Subtotal + CTA + eine Trust-Zeile. Ziel ≤140px. */
.cart-summary-aside { padding: 10px 16px max(10px, env(safe-area-inset-bottom)); background: #FFF9F1; border-top: 1px solid rgba(46,31,20,.1); box-shadow: none; }
.tr-cd__total-row { margin: 0 0 8px; align-items: baseline; }
.tr-cd__total-lbl { font-size: 15px; font-weight: 600; color: #2E1F14; }
.tr-cd__total-amt { font-size: 17px; font-weight: 650; color: #2E1F14; }
.tr-cd__checkout { height: 52px; border-radius: 18px; font-size: 17px; font-weight: 650; letter-spacing: -.01em; background: #C7553A; box-shadow: none; margin-top: 0; }
.tr-cd__checkout:hover { transform: none; box-shadow: 0 4px 14px rgba(147,53,31,.25); filter: none; }
.tr-cd__trust { margin: 8px 0 0; font-size: 12px; color: #7A6353; text-align: center; }

/* Welle 10b: Konter gegen !important-Basisregeln (Header-Banner, Karten-Look). */
.lp-overlay .lp-aside > header { background: #FFF9F1 !important; color: #2E1F14 !important; padding: 0 10px 0 16px !important; min-height: 56px; box-shadow: none !important; border-bottom: 1px solid rgba(46,31,20,.1); }
.lp-overlay .lp-aside > header h3 { color: #2E1F14 !important; font-size: 19px !important; font-weight: 650 !important; letter-spacing: -.01em !important; text-transform: none !important; }
.lp-overlay .lp-aside > header .lp-close, .lp-overlay .lp-aside > header .close { color: #2E1F14 !important; background: none !important; }
.lp-overlay .lp-aside .cart-line { padding: 12px 0 10px !important; border: 0 !important; border-bottom: 1px solid rgba(46,31,20,.08) !important; border-radius: 0 !important; background: transparent !important; box-shadow: none !important; }
.lp-overlay .lp-aside .cart-line img { width: 64px !important; min-width: 64px !important; height: 64px !important; object-fit: contain !important; border-radius: 12px !important; background: #fff !important; box-shadow: none !important; }
.lp-overlay .lp-aside .cart-line-noimg { width: 64px !important; min-width: 64px !important; height: 64px !important; }
.lp-overlay .lp-aside .cart-line-inner { gap: 12px !important; }
.lp-overlay .lp-aside .cart-summary-aside { padding: 10px 16px max(10px, env(safe-area-inset-bottom)) !important; background: #FFF9F1 !important; box-shadow: none !important; border-top: 1px solid rgba(46,31,20,.1) !important; }
[data-upsell], [data-util] { background: none !important; border: 0 !important; box-shadow: none !important; }
.tr-cart-upsell__card { background: none !important; }
.tr-cd-preis { margin-left: auto; padding-left: 10px; font-size: 15px; font-weight: 650; color: #2E1F14; white-space: nowrap; }
.cart-line-remove { margin-left: 6px; }
/* Meta-Ordnung: Pack-Größe zuerst, Abo-Detail danach; engere Lücken. */
.cart-line-inner ul { margin-top: 2px !important; }
.cart-line-inner ul li:first-child:not(:only-child) { order: 2; }
.cart-line-inner ul small { font-size: 12.5px; }
.cart-line-quantity { margin-top: 6px !important; }

/* ═══ V3 (Welle 11) — State-Grammatik: Row ≠ Modul ≠ Empfehlung. ═══ */
/* Mobile = Sheet, kein geschrumpfter Desktop-Drawer (V3 Issue 7). */
@media (max-width: 560px) {
  .lp-overlay .lp-aside { width: 100% !important; max-width: 100% !important; border-radius: 0 !important; }
}
.lp-overlay { background: rgba(27,23,21,.44) !important; backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
/* Material nur für Chrome: Header + Fuß translucent, Inhalt solide (Issue 8). */
.lp-overlay .lp-aside > header { background: rgba(251,246,239,.88) !important; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.lp-overlay .lp-aside .cart-summary-aside { background: rgba(251,246,239,.92) !important; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
/* Typo-Disziplin: 600 statt 650/800, Preis = Information nicht Schlagzeile. */
.lp-overlay .lp-aside > header h3 { font-size: 17px !important; font-weight: 600 !important; }
.cart-line-inner strong { font-weight: 600; font-size: 16px; }
.tr-cd-preis { font-weight: 600; font-size: 15px; }
.tr-cd__total-lbl { font-size: 14px; font-weight: 500; color: #5A4638; }
.tr-cd__total-amt { font-size: 16px; font-weight: 600; }
.tr-cd__checkout { height: 54px; font-weight: 600; }
.tr-cd__trust { font-weight: 500; }
/* Progress: Punkt = Ist-Stand am Fill-Ende, Ring = Ziel. */
.tr-cd-rwd__node { background: #C7553A; border-color: #C7553A; }
.tr-cd-rwd__node--end { background: #fff; border-color: rgba(46,31,20,.3); }
.tr-cd-rwd__node--end.is-on { background: #C7553A; border-color: #C7553A; }
.tr-cd-rwd__head { font-weight: 500; color: #5A4638; }
/* Controls mit Semantik-Labels (Issue 3). */
.tr-cd-ctl { display: grid; gap: 3px; }
.tr-cd-ctl__lbl { font-size: 11px; font-weight: 500; color: #7A6353; letter-spacing: .01em; }
.cart-line-quantity { align-items: end; }
/* Segment: EIN Control, aktive Füllung weiß + Hairline, kein Schwebe-Schatten (Issue 12). */
.tr-cd-seg { background: rgba(46,31,20,.08); }
.tr-cd-seg__b.is-an { background: #fff; color: #2E1F14; box-shadow: 0 1px 2px rgba(46,31,20,.12), 0 0 0 .5px rgba(46,31,20,.06); }
.tr-cd-seg__b.is-an b { color: #2E1F14; }
.tr-cd-seg__b { transition: background 220ms cubic-bezier(.3,.9,.35,1.15), color 180ms ease, box-shadow 220ms ease; }
.tr-cd-mini__b:hover { background: #fff; color: #2E1F14; }
/* Remove: leise (Issue 14). */
.cart-line-remove { color: #A38B79; }
.cart-line-remove:hover { color: #A8452E; background: none; }
/* Eyebrows: Sentence case, ruhig (Issue 10). */
.tr-cart-upsell__eyebrow { text-transform: none; letter-spacing: 0; font-size: 13px; font-weight: 600; color: #3E3733; margin-bottom: 6px; }
/* STATE B — Upgrade = warm getöntes Inset-Modul, keine Cart-Anatomie (Issue 2/22). */
.tr-cart-upsell__card.is-upgrade { background: #F4E7D7 !important; border: 0 !important; border-radius: 14px; padding: 12px 14px; margin: 12px 0 4px; }
.tr-cart-upsell__card.is-upgrade .tr-cart-upsell__imgwrap { width: 52px; height: 52px; background: #fff; }
.tr-cart-upsell__card.is-upgrade .tr-cart-upsell__txt strong { font-size: 15px; font-weight: 600; }
/* STATE C — Cross-Sell = leichte Empfehlungszeile: Preis ist Info, Aktion klein (Issue 15). */
.tr-cart-upsell__card.is-xsell { padding: 10px 0 12px; border-bottom: 0 !important; }
.tr-cart-upsell__card.is-xsell .tr-cart-upsell__imgwrap { width: 52px; height: 52px; }
.tr-cart-upsell__card.is-xsell .tr-cart-upsell__txt strong { font-size: 15px; font-weight: 600; }
.tr-cart-upsell__preis { color: #2E1F14 !important; font-weight: 600; margin-top: 1px; }
.tr-cart-upsell__btn { padding: 6px 12px; font-size: 13px; font-weight: 600; border-width: 1px; align-self: center; }
/* Utilities: EINE leise Inset-Gruppe (Issue 18). */
[data-util] { background: #F4E7D7 !important; border-radius: 14px; padding: 2px 12px !important; margin-top: 10px; }
[data-util] .tr-cd-save { margin: 0; padding: 9px 0; border-bottom: 1px solid rgba(46,31,20,.07); font-size: 13px; }
[data-util] .tr-cd-prot { padding: 9px 0; border-bottom: 1px solid rgba(46,31,20,.07); }
[data-util] .tr-cd-code { padding: 9px 0; }
.tr-cd-save__val b { font-weight: 600; }
.cart-line-inner ul li::after { content: none !important; }
.tr-cart-upsell__eyebrow { text-transform: none !important; letter-spacing: 0 !important; }

/* ═══ V4 (Welle 12): eine Flaschen-Wahrheit, ruhigere Sekundär-UI. ═══ */
.tr-cd-rwd { padding: 12px 16px 10px; }
.tr-cd-rwd__lbls { display: flex; justify-content: space-between; align-items: baseline; margin-top: 7px; }
.tr-cd-rwd__now { font-size: 13px; font-weight: 600; color: #2E1F14; }
.tr-cd-rwd__ziel { font-size: 12px; font-weight: 500; color: #7A6353; }
/* Upgrade-Modul kompakt (~90px): kleineres Bild, engeres Padding. */
.tr-cart-upsell__card.is-upgrade { padding: 10px 12px; margin: 10px 0 2px; }
.tr-cart-upsell__card.is-upgrade .tr-cart-upsell__imgwrap { width: 48px; height: 48px; }
.tr-cart-upsell__card.is-upgrade .tr-cart-upsell__eyebrow { margin-bottom: 4px; font-size: 12px; }
/* Weniger Pill-Sprache: Sekundär-Buttons + Stepper eckiger, kleiner. */
.tr-cart-upsell__btn { border-radius: 10px; padding: 6px 12px; font-size: 12.5px; }
.tr-cd-mini { border-radius: 12px; }
.tr-cd-mini__b { border-radius: 8px; }
/* Trash auf die Control-Achse statt frei schwebend. */
.cart-line-quantity { position: relative; }
.cart-line-remove { align-self: end; margin: 0 0 4px auto; }
/* Fuß minimal enger — mit echter Reserve statt pauschalem Polster.
   The checkout control is the last thing a customer touches and the closest
   thing to the phone's bottom edge. 8px left it flush against the home
   indicator on hardware. `max()` takes the larger of a modest floor and the
   real inset, so devices without an inset do not get padding they do not
   need — the brief was explicit that a large permanent pad to hide the bug
   is not the fix. */
.lp-overlay .lp-aside .cart-summary-aside { padding: 8px 16px max(14px, env(safe-area-inset-bottom)) !important; }
.tr-cd__trust { margin-top: 7px; }

/* ═══ V5 (Welle 13): Polish — Geometrie, Typo, Ruhe. Struktur unverändert. ═══ */
/* Segment: ein Control, drei gleiche Zellen, Zahl mittig — nichts gestapelt. */
.tr-cd-seg { display: flex; width: max-content; }
.tr-cd-seg__b { min-width: 44px; height: 30px; padding: 0 12px; display: grid; place-items: center; }
.tr-cd-seg__b b { font-size: 14px; font-weight: 600; line-height: 1; }
/* Stepper optisch ausbalanciert: ruhige Zeichen, gleiche Höhe wie Segment. */
.tr-cd-mini { height: 30px; padding: 2px; align-items: center; }
.tr-cd-mini__b { width: 26px; height: 26px; color: #5A4638; font-size: 14px; }
.tr-cd-mini__n { font-size: 13px; font-weight: 600; min-width: 22px; }
.tr-cd-ctl__lbl { font-size: 11px; font-weight: 500; color: #7A6353; }
/* Status-Strip: Labels näher an der Linie, Ziel leichter. */
.tr-cd-rwd { padding: 12px 16px 9px; }
.tr-cd-rwd__lbls { margin-top: 6px; }
.tr-cd-rwd__now { letter-spacing: -.01em; }
.tr-cd-rwd__ziel { font-weight: 400; }
/* Sekundär-CTAs konsistent, klar unter Checkout. */
.tr-cart-upsell__btn { min-width: 64px; text-align: center; }
/* Protection als leise Fuß-Utility direkt über Subtotal. */
.cart-summary-aside .tr-cd-prot { padding: 0 0 8px; margin: 0; border: 0; border-bottom: 1px solid rgba(46,31,20,.08); font-size: 12.5px; }
.cart-summary-aside .tr-cd-prot + .tr-cd__total-row { margin-top: 8px; }
/* Fuß-Typo: sauber gesetzt statt fett gestapelt. */
.tr-cd__total-lbl { font-size: 14px; font-weight: 500; color: #5A4638; }
.tr-cd__total-amt { font-size: 16px; font-weight: 600; letter-spacing: -.01em; }
.tr-cd__trust { font-size: 12px; font-weight: 400; color: #7A6353; letter-spacing: 0; }
/* Utility-Gruppe leichter (nur noch Save + Code). */
[data-util] { padding: 0 12px !important; }
[data-util] .tr-cd-save { padding: 10px 0; }
[data-util] .tr-cd-code { padding: 10px 0; }

/* ═══ V6 (Welle 14): Added-State — Kauf dominiert, Extras sind Begleiter. ═══ */
.cart-addon-lbl { list-style: none; padding: 10px 0 2px; font-size: 13px; font-weight: 600; color: #3E3733; }
.lp-overlay .lp-aside .cart-line--addon { padding: 8px 0 8px !important; animation: lpKarteAuf 220ms ease-out backwards; }
.lp-overlay .lp-aside .cart-line--addon .cart-line-img,
.lp-overlay .lp-aside .cart-line--addon img,
.lp-overlay .lp-aside .cart-line--addon .cart-line-noimg { width: 48px !important; min-width: 48px !important; height: 48px !important; border-radius: 10px !important; }
.cart-line--addon .cart-line-inner strong { font-size: 14.5px; font-weight: 600; }
.cart-line--addon .cart-line-inner ul small { font-size: 12px; }
.cart-line--addon .tr-cd-preis { font-size: 13.5px; }
.cart-line--addon .cart-line-quantity { margin-top: 4px !important; }
.cart-line--addon .cart-line-qty { transform: scale(.92); transform-origin: left center; }
.cart-line--addon .cart-line-remove svg { width: 12px; height: 12px; }
/* You-save-Slot: eine elegante Zeile direkt unter den Produkten. */
[data-save] { padding: 0; }
[data-save] .tr-cd-save { margin: 0; padding: 10px 0; border-bottom: 1px solid rgba(46,31,20,.08); }
@media (prefers-reduced-motion: reduce) { .cart-line--addon { animation: none; } }
/* Addon als EINE Zeile: Inhalt links, Controls inline rechts (V6 §7, Ziel ≤80px). */
.lp-overlay .lp-aside .cart-line--addon { display: flex !important; align-items: center; gap: 10px; }
.cart-line--addon .cart-line-inner { flex: 1; min-width: 0; }
.cart-line--addon .cart-line-quantity { margin: 0 !important; flex: none; }
.cart-line--addon .cart-line-inner strong { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ═══ V7 (Welle 15): Titel nie stutzen, Abo-Vererbung sichtbar, Change-Sheet. ═══ */
.cart-line--addon .cart-line-inner strong { display: block; -webkit-line-clamp: unset; overflow: visible; font-size: 14px; line-height: 1.3; }
.tr-cd-addonpreis { font-size: 13.5px !important; font-weight: 600; color: #2E1F14 !important; }
.tr-cd-abo-zeile { display: inline-flex !important; align-items: baseline; gap: 8px; }
.tr-cd-abo-zeile small { font-size: 12px; color: #5A4638; }
.tr-cd-abo-change { border: 0; background: none; padding: 0; font-size: 12px; font-weight: 600; color: #A8452E; cursor: pointer; }
.cart-line--addon .cart-line-qty { transform: scale(.8); }
.cart-line--addon .cart-line-quantity { align-self: center; }
.lp-abo-sheet { position: absolute; inset-inline: 0; bottom: 0; z-index: 40; background: #fff; border-radius: 16px 16px 0 0; padding: 16px 16px calc(14px + env(safe-area-inset-bottom)); box-shadow: 0 -8px 30px rgba(46,31,20,.18); display: grid; gap: 8px; animation: lpKarteAuf 220ms ease-out; }
.lp-abo-sheet__titel { margin: 0 0 2px; font-size: 15px; font-weight: 600; color: #2E1F14; }
.lp-abo-sheet__opt { display: grid; gap: 2px; text-align: left; padding: 11px 12px; border: 1.5px solid rgba(46,31,20,.14); border-radius: 12px; background: none; cursor: pointer; }
.lp-abo-sheet__opt.is-an { border-color: #C7553A; background: #FBEFE4; }
.lp-abo-sheet__opt b { font-size: 14px; font-weight: 600; color: #2E1F14; }
.lp-abo-sheet__opt small { font-size: 12.5px; color: #5A4638; }
.lp-abo-sheet__zu { border: 0; background: none; padding: 8px; font-size: 13px; font-weight: 500; color: #7A6353; cursor: pointer; }
.tr-cd-abo-zeile small { white-space: nowrap; }
.cart-line--addon .cart-line-inner ul { gap: 0 4px; margin-top: 1px !important; }
.cart-line--addon .cart-line-inner ul li { line-height: 1.35; }

/* ═══ V8-A (Welle 16): Preis-Psychologie, Reihenfolge, Titel-Raum. ═══ */
.tr-cart-upsell__war { color: #A38B79; font-weight: 400; font-size: 12px; margin-left: 2px; }
.tr-cart-upsell__preis b { font-weight: 600; color: #2E1F14; }
[data-addons] { margin: 0; padding: 0; list-style: none; }
[data-addons] .cart-addon-lbl { padding-top: 12px; }
/* Haupt-Zeile als Grid: Titel bekommt minmax(0,1fr), Preis nur was er braucht. */
.lp-overlay .lp-aside .cart-line:not(.cart-line--addon) .cart-line-inner { display: grid !important; grid-template-columns: auto minmax(0,1fr) auto; align-items: start; }
.cart-line:not(.cart-line--addon) .cart-line-inner strong { font-size: 15.5px; }
@media (max-width: 380px) { .cart-line:not(.cart-line--addon) .cart-line-inner strong { font-size: 14.5px; } }
.tr-cart-upsell__war { white-space: nowrap; display: inline-block; }
.tr-cd-abo-zeile { flex-wrap: wrap; } .tr-cd-abo-zeile small { white-space: normal; } .tr-cd-abo-change { white-space: nowrap; }

/* ═══ V9 (Welle 18): Value-Rail, positiver Save-Ton, Add-on in der Liste. ═══ */
.tr-cd-ctl--haupt { width: 100%; }
.tr-cd-mini--haupt .tr-cd-mini__n { min-width: 74px; font-size: 13px; }
.tr-cd-rail { display: flex; justify-content: space-between; align-items: center; margin-top: 7px; position: relative; padding-top: 5px; }
.tr-cd-rail::before { content: ''; position: absolute; top: 0; left: 2px; right: 2px; height: 2px; border-radius: 2px; background: rgba(46,31,20,.1); }
.tr-cd-rail__m { font-size: 10.5px; font-weight: 500; color: #A38B79; }
.tr-cd-rail__m.is-an { color: #A8452E; font-weight: 600; }
.tr-cd-save { display: flex; align-items: baseline; gap: 10px; }
.tr-cd-save__betrag { font-size: 14px; font-weight: 650; color: #A8452E; }
.tr-cd-save__basis { font-size: 12px; color: #7A6353; }
.tr-cd-addon-preise { display: inline-flex !important; align-items: baseline; gap: 6px; }
.tr-cd-addon-war { font-size: 11.5px; color: #A38B79; white-space: nowrap; }
.cart-line--addon { border-top: 0 !important; }
/* V9-Politur: Stepper kompakt, Trash auf der Control-Achse, Addon-Meta als Spalte. */
.tr-cd-mini--haupt { width: max-content; }
.tr-cd-ctl--haupt { flex: 1; width: auto; }
.cart-line:not(.cart-line--addon) .cart-line-quantity { align-items: flex-start; }
.cart-line:not(.cart-line--addon) .cart-line-remove { align-self: flex-start; margin-top: 22px; }
.cart-line--addon .cart-line-inner ul { display: grid !important; gap: 2px; }
.tr-cd-addonpreis { white-space: nowrap; }
.tr-cd-abo-zeile { order: 2; }
.tr-cd-addon-preise { order: 1; }
/* ⛔ ORDER IST PFLICHT, SOBALD DIE NACHBARN EINE HABEN. Die Nachbarzeilen
   tragen order:1 und order:2; ein neues Element ohne order bekommt den
   Standardwert 0 und rutscht damit VOR sie — gemessen stand die Abo-Bedingung
   ueber dem Preis, obwohl sie im Markup zuletzt angehaengt wird. In einem
   Flex-Container entscheidet nicht die Reihenfolge im HTML, sondern order. */
.tr-cd-abo-bed { order: 3; width: 100%; }
/* Packungsgroesse neben dem Produktnamen — leiser als der Name, aber lesbar. */
.tr-cd-variante { font-weight: 500; color: #6B5F57; }
/* Versandhinweis unter dem Gesamtbetrag — sachlich, keine Dringlichkeit. */
.tr-cd__versand { margin-top: 4px; text-align: right; }
.tr-cd__versand small { font-size: 12px; color: #6B5F57; }
.tr-cd-abo-bed small { font-size: 11.5px; color: #6B5F57; }
.tr-cd-addon-war { white-space: normal; }

/* ═══ V10 (Welle 19): eine Tier-Logik, Kontext-Zeile statt Karte+Rail. ═══ */
.tr-cd-ctl--zeile { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.tr-cd-ctl--zeile .tr-cd-ctl__lbl { font-size: 12px; }
.tr-cd-tiernext { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 10px; margin-top: 7px; width: 100%; }
.tr-cd-tiernext__txt { font-size: 12.5px; color: #5A4638; }
.tr-cd-tiernext__ok { font-size: 12.5px; font-weight: 600; color: #A8452E; }
.tr-cd-tiernext__cta { border: 0; background: none; padding: 0; font-size: 12.5px; font-weight: 600; color: #A8452E; cursor: pointer; }
.tr-cd-tiernext__cta:hover { text-decoration: underline; }
.tr-cd-hauptsave small { display: inline-flex; align-items: baseline; gap: 6px; }
.tr-cd-hauptsave s { color: #A38B79; font-size: 12px; }
.tr-cd-hauptsave b { color: #A8452E; font-size: 12.5px; font-weight: 650; }
.tr-cd-abo-save { color: #A8452E; font-weight: 600; }
.tr-cart-subplan { font-weight: 400; color: #5A4638; }
.tr-cd-addon-proz { color: #A8452E; font-size: 11px; font-weight: 650; margin-left: 4px; white-space: nowrap; }
.cart-line:not(.cart-line--addon) .cart-line-remove { margin-top: 0; align-self: center; }

/* ═══ V11 (Welle 20): Liquid Glass — Material NUR am Interaktions-Layer. ═══
   Zwei Schichten: Content ruhig-opak (Cream), Controls schweben als Glas.
   Kein Glass-auf-Glass, kein Voll-Drawer-Frost. Motion nur aus Nutzer-Aktion. */
:root { --lg-fast: 110ms; --lg-state: 220ms; --lg-settle: 320ms;
  --lg-spring: cubic-bezier(.34, 1.28, .44, 1); --lg-out: cubic-bezier(.2, .8, .3, 1); }
.tr-cd-glass {
  position: relative; isolation: isolate;
  background:
    radial-gradient(120px 60px at var(--hx, 50%) 0%, rgba(255,255,255,.55), transparent 70%),
    linear-gradient(rgba(255,252,248,.42), rgba(250,243,236,.34));
  -webkit-backdrop-filter: blur(14px) saturate(1.5) brightness(1.04);
  backdrop-filter: blur(14px) saturate(1.5) brightness(1.04);
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 .6px rgba(255,255,255,.65),
    inset 0 1px 0 rgba(255,255,255,.5),
    inset 0 -6px 12px -8px rgba(46,31,20,.18),
    0 6px 18px -8px rgba(46,31,20,.22);
  transition: transform var(--lg-settle) var(--lg-spring), box-shadow var(--lg-state) var(--lg-out);
  will-change: transform;
}
.tr-cd-glass.is-press { transform: scale(.978); transition-duration: var(--lg-fast); }
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .tr-cd-glass { background: rgba(252,247,241,.94); }
}
.tr-cd-mini--haupt.tr-cd-glass { background-color: transparent; padding: 3px; }
.tr-cd-glass--klein { border-radius: 999px; }
.tr-cd-glass--klein .cart-line-qty__n, .tr-cd-glass--klein button { background: none; }
/* Zahl settelt statt zu springen; Ziffern tabellarisch (V11 §5/§7). */
.tr-cd-num { font-variant-numeric: tabular-nums; animation: lgNum var(--lg-state) var(--lg-out); display: inline-block; }
@keyframes lgNum { from { opacity: 0; transform: translateY(3px); } to { opacity: 1; transform: none; } }
.tr-cd-preis, .tr-cd__total-amt, .tr-cd-hauptsave small { font-variant-numeric: tabular-nums; }
/* Unlock-Moment: EIN Licht-Sweep + Haken, keine Konfetti (V11 §10). */
.tr-cd-mini.is-unlock::after { content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.75) 50%, transparent 70%);
  background-size: 250% 100%; animation: lgSweep 600ms var(--lg-out) 1; }
@keyframes lgSweep { from { background-position: 120% 0; } to { background-position: -60% 0; } }
.tr-cd-tiernext__ok { animation: lgNum 320ms var(--lg-out); }
/* Progress-Marker gleitet (V11 §4). */
.tr-cd-rwd__node { transition: left var(--lg-settle) var(--lg-spring); }
.tr-cd-rwd__fill { transition: width var(--lg-settle) var(--lg-spring); }
/* Terracotta-Diät (V11 §21): EIN starker Value-Cue (Haupt-Save + Kontext-CTA). */
.tr-cd-abo-save { color: #5A4638; font-weight: 500; }
.tr-cd-addon-proz { color: #5A4638; font-weight: 600; }
.tr-cd-abo-change { color: #5A4638; text-decoration: underline; text-underline-offset: 2px; }
.tr-cd-rail { display: none; }
/* Discount: leise Zeile, kein Container (V11 §14). */
.tr-cd-code { background: none !important; border-radius: 0; padding: 10px 0 !important; border-top: 1px solid rgba(46,31,20,.08); }
[data-util] { background: none !important; padding: 0 !important; }
.tr-cd-code__det > summary { display: flex; justify-content: space-between; align-items: center; color: #5A4638; font-weight: 500; font-size: 13px; }
.tr-cd-code__pfeil { color: #A38B79; font-size: 15px; transition: transform var(--lg-state) var(--lg-out); }
.tr-cd-code__det[open] .tr-cd-code__pfeil { transform: rotate(90deg); }
.tr-cd-code__row { overflow: hidden; animation: lgNum var(--lg-state) var(--lg-out); }
/* Footer = Action-Dock-Shell (Glass war ab V3 da — Rim nachschärfen); Checkout bleibt solid. */
.lp-overlay .lp-aside .cart-summary-aside { box-shadow: inset 0 .6px 0 rgba(255,255,255,.6), 0 -6px 24px -14px rgba(46,31,20,.28) !important; }
.tr-cd__checkout:active { transform: scale(.985); transition-duration: var(--lg-fast); }
@media (prefers-reduced-motion: reduce) {
  .tr-cd-glass, .tr-cd-num, .tr-cd-mini.is-unlock::after, .tr-cd-rwd__node, .tr-cd-rwd__fill, .tr-cd-code__pfeil { animation: none !important; transition: none !important; }
}
.tr-cd-tiernext__txt { flex: 1 1 auto; min-width: 0; }
.tr-cd-tiernext__cta { white-space: nowrap; flex: 0 0 auto; }
.tr-cd-hauptsave b { white-space: nowrap; }

/* ═══ Welle 21: Soll-Referenz-Layout (Referenz-Mockup) ═══ */
.so-hero-img { width: 132px !important; height: 132px !important; min-width: 132px !important; border-radius: 16px !important; }
.so-hero-count { min-width: 26px; height: 26px; font-size: 12px; right: -6px; bottom: -6px; }
@media (max-width: 389px) { .so-hero-img { width: 106px !important; height: 106px !important; min-width: 106px !important; } }
.so-preis { display: grid; justify-items: end; gap: 1px; }
.so-preis b { font-size: 19px; font-weight: 700; letter-spacing: -.01em; }
.so-preis small { font-size: 12px; color: #7A6353; }
.so-pct { background: #F4E7D7; color: #A8452E; font-size: 11.5px; font-weight: 650; padding: 2px 8px; border-radius: 999px; margin-left: 6px; white-space: nowrap; }
.so-abo-chip { display: inline-flex; align-items: center; gap: 5px; background: #F4E7D7; border-radius: 999px; padding: 4px 10px; font-size: 12px; color: #5A4638; margin-top: 6px; }
.so-abo-chip__ic { display: inline-flex; color: #A8452E; }
.so-abo-chip .tr-cd-abo-save { color: #A8452E; font-weight: 650; }
.cart-line:not(.cart-line--addon) .cart-line-inner strong { font-size: 19px; line-height: 1.2; }
/* Quantity-Block */
.so-qty { display: block; }
.so-qty__kopf { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.so-qty__kopf .tr-cd-ctl__lbl { font-size: 14px; font-weight: 600; color: #5A4638; }
.so-chip { display: grid; place-items: center; width: 40px; height: 40px; border: 0; border-radius: 50%; background: #fff; color: #7A6353; cursor: pointer; box-shadow: 0 2px 8px rgba(46,31,20,.1), inset 0 0 0 .5px rgba(46,31,20,.06); transition: color 160ms ease, transform 120ms ease; }
.so-chip:hover { color: #A8452E; } .so-chip:active { transform: scale(.92); }
.tr-cd-mini--haupt { height: 44px; padding: 4px; }
.tr-cd-mini--haupt .tr-cd-mini__b { width: 34px; height: 34px; font-size: 17px; color: #A8452E; }
.tr-cd-mini--haupt .tr-cd-mini__n { min-width: 96px; font-size: 15px; font-weight: 650; }
/* Rail */
.so-rail { margin-top: 12px; }
.so-rail__track { position: relative; height: 2.5px; border-radius: 3px; background: rgba(46,31,20,.12); }
.so-rail__fill { position: absolute; inset: 0 auto 0 0; border-radius: 3px; background: #C7553A; }
.so-rail__dot { position: absolute; top: 50%; width: 11px; height: 11px; transform: translate(-50%,-50%); border-radius: 50%; background: #C7553A; box-shadow: 0 0 0 2.5px #FFF9F1; }
.so-rail__lbls { display: flex; justify-content: space-between; margin-top: 6px; }
.so-rail__m { font-size: 11.5px; color: #A38B79; font-weight: 500; }
.so-rail__m.is-an { color: #5A4638; font-weight: 600; }
.so-rail__m--best.is-an, .so-rail__m--best { color: #A8452E; font-weight: 650; }
/* Banner */
.so-banner { display: flex; align-items: center; gap: 10px; margin-top: 12px; background: #F4E7D7; border-radius: 14px; padding: 12px 12px 12px 14px; animation: lpKarteAuf 240ms ease-out backwards; }
.so-banner__ic { color: #C7553A; display: inline-flex; flex: none; }
.so-banner__txt { flex: 1; min-width: 0; display: grid; gap: 1px; }
.so-banner__txt b { font-size: 14.5px; font-weight: 650; color: #2E1F14; }
.so-banner__txt small { font-size: 12.5px; color: #5A4638; }
.so-banner__btn { flex: none; border: 0; border-radius: 999px; background: #fff; color: #A8452E; font-size: 13.5px; font-weight: 650; padding: 9px 16px; cursor: pointer; box-shadow: 0 2px 8px rgba(46,31,20,.12); transition: transform 120ms ease; white-space: nowrap; }
.so-banner__btn:active { transform: scale(.95); }
.so-banner--ok { background: #F1E9DF; }
/* Empfehlungs- + Addon-KARTEN (Soll: weiße Cards auf Cream) */
.tr-cart-upsell__card.is-xsell { background: #fff !important; border-radius: 16px; padding: 13px 14px !important; box-shadow: 0 1px 6px rgba(46,31,20,.06); border-bottom: 0 !important; margin-top: 10px; }
[data-addons] .cart-addon-lbl { font-size: 14px; font-weight: 600; color: #5A4638; padding: 14px 0 8px; list-style: none; }
[data-addons] .cart-line--addon { background: #fff !important; border-radius: 16px !important; padding: 12px 14px !important; box-shadow: 0 1px 6px rgba(46,31,20,.06); border-bottom: 0 !important; }
/* Discount-Karte */
.tr-cd-code { background: #fff !important; border-radius: 14px; padding: 12px 14px !important; border-top: 0 !important; margin-top: 12px; box-shadow: 0 1px 6px rgba(46,31,20,.05); }
.so-code__ic { display: inline-flex; color: #5A4638; margin-right: 8px; }
.so-code__lbl { flex: 1; }
/* Fuß */
.tr-cd-prot__ic { display: inline-flex; color: #A8452E; }
.so-total { display: grid; justify-items: end; gap: 1px; }
.so-total__save { font-size: 12.5px; font-weight: 650; color: #A8452E; }
.so-kasse__ic { display: inline-flex; margin-right: 8px; }
.tr-cd__trust { display: flex; justify-content: center; align-items: center; gap: 6px; flex-wrap: wrap; }
.so-trust__t { display: inline-flex; align-items: center; gap: 4px; }
.so-trust__ic { display: inline-flex; color: #A38B79; }
/* Header-Close als Chip, Titel groesser (Soll) */
.lp-overlay .lp-aside > header h3 { font-size: 22px !important; font-weight: 700 !important; }
.lp-close { width: 40px; height: 40px; border-radius: 50% !important; background: #fff !important; box-shadow: 0 2px 8px rgba(46,31,20,.1); }
/* Welle 21b: Layout-Kollisionen — harte Overrides gegen Alt-Kaskade. */
.lp-overlay .lp-aside .so-qty { display: block !important; width: 100%; }
.so-qty__kopf { display: flex !important; width: 100%; justify-content: space-between !important; align-items: center; }
.lp-overlay .lp-aside .tr-cd-ctl--haupt { display: block !important; width: 100% !important; }
.tr-cd-mini--haupt { width: max-content !important; }
.so-rail { width: 100%; }
.so-rail__lbls { display: flex !important; width: 100%; justify-content: space-between !important; }
.so-rail__m { flex: none; }
.so-banner { width: 100%; box-sizing: border-box; flex-wrap: wrap; }
.so-banner__btn { margin-left: auto; }
.lp-overlay .lp-aside [data-addons] .cart-line--addon { display: flex !important; flex-wrap: wrap; align-items: center; gap: 10px; }
.cart-line--addon .cart-line-quantity { flex: none; margin-left: auto; }
.tr-cd-addon-proz { white-space: normal; }
.cart-line--addon .cart-line-inner { flex: 1 1 200px; min-width: 0; }
/* Welle 21c: Banner als Grid (kein Flex-Overflow), Addon-Enge gelöst. */
.so-banner { display: grid !important; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; animation: none; }
.so-banner__btn { grid-column: 3; }
@media (max-width: 419px) { .so-banner { grid-template-columns: auto minmax(0,1fr); } .so-banner__btn { grid-column: 2; justify-self: end; margin-top: 6px; } }
.tr-cd-addon-preise { flex-wrap: wrap !important; row-gap: 2px; }
[data-addons] .so-chip { width: 34px; height: 34px; }
[data-addons] .cart-line-qty { transform: scale(.88); }
[data-addons] .cart-line--addon .cart-line-quantity { gap: 4px; }
/* Welle 21d: Banner-Button gegen generische qty-Button-Basisregeln behaupten. */
.lp-overlay .lp-aside .so-banner__btn { width: auto !important; height: auto !important; min-width: max-content !important; padding: 9px 16px !important; border-radius: 999px !important; background: #fff !important; font-size: 13.5px !important; }
.lp-overlay .lp-aside .so-chip { width: 40px !important; height: 40px !important; }
.lp-overlay .lp-aside [data-addons] .so-chip { width: 34px !important; height: 34px !important; }

/* ═══ V12 (Welle 22): Diät — 70% Inhalt, 20% Interaktion, 10% Überzeugung. ═══ */
[data-rwd] { display: none !important; }
.so-kompakt-img { width: 76px !important; height: 76px !important; min-width: 76px !important; border-radius: 12px !important; }
.so-kompakt-img + div strong { font-size: 16.5px; }
.so-meta { font-size: 13px; color: #5A4638; }
.so-preiszeile small { display: inline-flex; align-items: baseline; gap: 8px; margin-top: 3px; }
.so-preiszeile__jetzt { font-size: 18px; font-weight: 700; letter-spacing: -.01em; color: #2E1F14; }
.so-preiszeile__war { font-size: 13px; color: #A38B79; }
.tr-cd-hauptsave b { font-size: 13px; color: #A8452E; font-weight: 650; }
/* Rail: current -> next, ohne Vergangenheits-Labels. */
.so-rail__lbls { margin-bottom: 6px; margin-top: 0; }
.so-rail__ok { font-size: 13px; font-weight: 650; color: #A8452E; margin-top: 10px; animation: lpKarteAuf 260ms ease-out; }
.so-rail { margin-top: 10px; }
/* Banner subtiler. */
.so-banner { padding: 10px 12px !important; margin-top: 10px; border-radius: 12px; }
.so-banner__txt b { font-size: 13.5px; }
.so-banner__txt small { font-size: 12px; }
.lp-overlay .lp-aside .so-banner__btn { padding: 7px 14px !important; font-size: 13px !important; }
/* Container-Diät: Empfehlung/Addon/Discount = flache Rows mit Hairline. */
.tr-cart-upsell__card.is-xsell { background: none !important; box-shadow: none !important; border-radius: 0; padding: 12px 0 !important; border-top: 1px solid rgba(46,31,20,.08); margin-top: 12px; }
[data-addons] .cart-line--addon { background: none !important; box-shadow: none !important; border-radius: 0 !important; padding: 10px 0 !important; border-top: 1px solid rgba(46,31,20,.08); }
[data-addons] .cart-addon-lbl { font-size: 12px; font-weight: 600; color: #7A6353; padding: 12px 0 2px; text-transform: none; }
.tr-cd-code { background: none !important; box-shadow: none !important; border-radius: 0; padding: 10px 0 !important; border-top: 1px solid rgba(46,31,20,.08); margin-top: 8px; }
/* 320px-Sicherheit. */
@media (max-width: 350px) {
  .so-kompakt-img { width: 60px !important; height: 60px !important; min-width: 60px !important; }
  .tr-cd-mini--haupt .tr-cd-mini__n { min-width: 74px; font-size: 13.5px; }
  .so-kompakt-img + div strong { font-size: 15px; }
}

/* ═══ V13 (Welle 23): Control-Typo-SYSTEM — Container passen sich dem Inhalt an. ═══
   Ein Satz Regeln für ALLE interaktiven Labels: echte Flex-Zentrierung,
   intrinsische Breite, nowrap, 44px-Trefferfläche über unsichtbare
   ::after-Erweiterung — nie Padding-Hacks, nie fixe Breiten. */
.so-banner__btn, .tr-cart-upsell__btn, .tr-cd-code__los, .so-chip,
.tr-cd-mini__b, .lp-close, .tr-cd-abo-change, .tr-cd-prot__btn,
.tr-cd-code__weg, .cart-line-remove {
  display: inline-flex !important; align-items: center !important;
  justify-content: center !important; line-height: 1 !important;
  white-space: nowrap; flex-shrink: 0; position: relative;
}
/* Unsichtbare Trefferfläche auf 44px heben, ohne die Optik aufzublasen. */
.so-banner__btn::before, .tr-cart-upsell__btn::before, .tr-cd-abo-change::before,
.tr-cd-prot__btn::before, .tr-cd-code__weg::before, .cart-line-remove::before {
  content: ''; position: absolute; inset: -6px; border-radius: inherit;
}
/* Banner-CTA: [   Add 1   ] — Inhalt bestimmt die Breite, 38px sichtbar/44 Treffer. */
.lp-overlay .lp-aside .so-banner__btn {
  width: max-content !important; min-width: max-content !important;
  height: 38px !important; padding: 0 18px !important;
  font-size: 13.5px !important; font-weight: 600 !important;
  box-shadow: 0 1px 4px rgba(46,31,20,.12), inset 0 0 0 .5px rgba(46,31,20,.05);
}
/* Banner-Grid: sparkle | copy(minmax 0) | action — Action mittig zur GESAMTEN Copy. */
.so-banner { grid-template-columns: auto minmax(0,1fr) max-content !important; column-gap: 12px; }
.so-banner__txt { min-width: 0; }
.so-banner__txt b { font-size: 13.5px; font-weight: 600; line-height: 1.35; color: #2E1F14; }
.so-banner__txt small { font-size: 12.5px; font-weight: 400; line-height: 1.4; color: #5A4638; }
@media (max-width: 419px) {
  .so-banner { grid-template-columns: auto minmax(0,1fr) !important; }
  .so-banner__btn { grid-column: 2 !important; justify-self: end; margin-top: 8px; }
}
/* "+ Add": gleiche Familie, ruhiger als Checkout, intrinsisch. */
.lp-overlay .lp-aside .tr-cart-upsell__btn {
  width: max-content; min-width: max-content; height: 36px;
  padding: 0 16px !important; font-size: 13px !important; font-weight: 600 !important;
  border-width: 1px !important;
}
/* Stepper-Zeichen optisch mittig (Font-Metrik von − und +). */
.tr-cd-mini__b { padding: 0 !important; }
.tr-cd-mini__n { display: inline-flex; align-items: center; justify-content: center; line-height: 1; }
/* Checkout: ein Zentrierungssystem, Icon + Label als Flex-Paar. */
.lp-overlay .lp-aside .tr-cd__checkout { display: inline-flex !important; align-items: center !important; justify-content: center !important; gap: 8px; line-height: 1 !important; }
.so-kasse__ic { margin-right: 0; }
/* Progress-Labels: gleiche Baseline, gleiche Größe, Kollisionsschutz. */
.so-rail__lbls { align-items: baseline; gap: 12px; }
.so-rail__m { font-size: 12.5px; line-height: 1.3; }
.so-rail__m.is-an { font-weight: 600; }
.so-rail__m--best { text-align: right; }
/* Preis/Vergleich/Save: saubere Baselines. */
.so-preiszeile small { align-items: baseline !important; }
/* Textbuttons: Luft statt Klebe am Rand. */
.tr-cd-abo-change, .tr-cd-code__weg, .tr-cd-prot__btn { padding: 4px 2px !important; }
/* V13b: Spezifitäts-Konter — generische .cart-line-quantity-button-Basisregel
   drückte den Banner-CTA auf 32px (gleiche Falle wie der 32px-Breiten-Bug). */
.lp-overlay .lp-aside .cart-line-quantity .so-banner__btn { height: 38px !important; width: max-content !important; min-width: max-content !important; padding: 0 18px !important; border-radius: 999px !important; }

/* ═══ Mutations-Zustand + Fehlerstreifen ══════════════════════════════════
   Der Drawer sagt jetzt, dass er arbeitet, statt Klicks stumm zu schlucken.
   Die Bedienelemente bleiben BEDIENBAR — der Klick landet in der
   Warteschlange (lp-drawer.js), er verschwindet nicht. Sichtbar ist nur, dass
   gerade abgeglichen wird. */
.lp-overlay.is-laueft .tr-cd-mini__b,
.lp-overlay.is-laueft .tr-cart-upsell__btn,
.lp-overlay.is-laueft .cart-line-remove,
.lp-overlay.is-laueft .tr-cd-prot__btn { cursor: progress; }
.lp-overlay.is-laueft .tr-cart-scroll { opacity: .82; transition: opacity 140ms ease; }
@media (prefers-reduced-motion: reduce) {
  .lp-overlay.is-laueft .tr-cart-scroll { transition: none; }
}
.lp-overlay .lp-fehler {
  margin: 0 0 10px; padding: 9px 12px; border-radius: 10px;
  background: #fdecec; color: #8a1c1c; border: 1px solid #f3c4c4;
  font-size: 13px; line-height: 1.35;
}
.lp-overlay .lp-fehler[hidden] { display: none; }


/* ═══ KURZER SICHTBARER VIEWPORT ══════════════════════════════════════════
   Gemessen, nicht vermutet: der Sticky-Fuß belegte 42% der sichtbaren Höhe bei
   320x568 und 59% bei 740x360. Auf kurzen Ansichten verdichtet sich die
   Komposition — die Informationsarchitektur passt sich an, die Schrift schrumpft
   NICHT global. Versandschutz und Vertrauenszeile wandern in den Scroll
   (lp-drawer.js), hier verliert der Rest seine Grosszuegigkeit. */
@media (max-height: 720px) {
  .lp-overlay .lp-aside .cart-summary-aside {
    padding: 8px 16px max(8px, env(safe-area-inset-bottom)) !important;
    gap: 6px !important;
  }
  .lp-overlay .lp-aside .tr-cd__total-row { margin: 0 !important; }
  .lp-overlay .lp-aside .tr-cd__checkout { min-height: 50px !important; }
  .lp-overlay .lp-aside > header { padding-block: 10px !important; }
  .lp-overlay .lp-aside .tr-cd-rwd { margin-block: 8px !important; }
}
/* Querformat: die haerteste Hoehenprobe, die es auf einem Telefon gibt.
   Bei 360px sichtbarer Hoehe belegte der Fuss noch 35%. Summe und Kasse teilen
   sich hier EINE Zeile — das ist das Minimum fuer Entscheidung plus Handlung,
   und beides bleibt sichtbar. Keine Information verschwindet, sie ordnet sich. */
@media (max-height: 480px) {
  .lp-overlay .lp-aside .cart-summary-aside {
    padding: 5px 14px max(5px, env(safe-area-inset-bottom)) !important;
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 10px !important;
  }
  .lp-overlay .lp-aside .tr-cd__total-row {
    margin: 0 !important;
    display: grid !important;
    grid-auto-flow: row !important;
    gap: 0 !important;
    line-height: 1.15 !important;
  }
  .lp-overlay .lp-aside .tr-cd__total-lbl { font-size: 11px !important; opacity: .75; }
  .lp-overlay .lp-aside .tr-cd__checkout { min-height: 44px !important; margin: 0 !important; }
  .lp-overlay .lp-aside .tr-cd__trust { display: none !important; }
}

/* ── Warenkorb-Autorität unbekannt ──────────────────────────────────────────
   Wenn der autoritative Abgleich nach einem Fehlschlag ebenfalls nicht durchkam,
   sind die Zahlen im Fuß nicht belastbar. Dann wird nicht zur Kasse gegangen —
   der Knopf sagt, was er stattdessen tut, und sieht nicht mehr nach Kaufen aus. */
.lp-overlay .lp-aside .tr-cd__checkout.is-gesperrt {
  background: var(--c-silver-100, #e6e0da) !important;
  color: var(--text-mute, #6b615a) !important;
  box-shadow: none !important;
  cursor: pointer;
}
.lp-overlay .lp-aside .tr-cd__checkout.is-gesperrt .so-kasse__ic { opacity: .55; }
.lp-overlay .lp-aside .lp-fehler--unbekannt {
  background: #fdf3e7;
  border: 1px solid rgba(180, 71, 43, .38);
  color: #7a3a22;
}

/* ── Liefer-Zeile des Hauptprodukts ─────────────────────────────────────────
   `.tr-cd-abo-zeile` war für den Add-on-Kontext gebaut (als <li> in einer
   Liste, die das Flex-Layout stellt). Direkt unter dem Mengenregler eingehängt
   fehlte ihr das: der Text lief unter den Change-Knopf und wurde als
   "One-time purchas" abgeschnitten. Eigene Zeile, eigene Regeln. */
.lp-overlay .lp-aside .tr-cd-abo-zeile--haupt {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin: 6px 0 2px;
  padding: 0;
}
.lp-overlay .lp-aside .tr-cd-abo-zeile--haupt small {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 13px;
  color: var(--text-soft, #6b615a);
}
.lp-overlay .lp-aside .tr-cd-abo-zeile--haupt .tr-cd-abo-change {
  flex: 0 0 auto;
  min-height: 32px;
  padding: 0 2px;
  background: none;
  border: 0;
  font-size: 13px;
  font-weight: 650;
  color: var(--brand, #C7553A);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

/* ---------------------------------------------------------------------------
   VERSANDZEILE IM FUSS — die Schwelle steht dort, wo sie die Entscheidung noch
   beeinflussen kann, nicht erst in der Kasse.

   ⛔ Die Zeile RECHNET NICHTS. Welche Schwelle gilt, entscheidet
   `versandRegel()` in app/config/shipping.config.ts, und die Antwort von
   /api/lp-cart bringt Betrag, Rest und Zustand fertig mit. Der Grund steht dort
   ausfuehrlich: ein Einmalartikel im Korb hebt die Abo-Zusage fuer die GANZE
   Bestellung auf (gemessen, qa/versandfrei-gate.mjs Fall F) — eine Regel, die
   im Browser nachgebaut sofort auseinanderlaeuft.
   -------------------------------------------------------------------------- */
.tr-cd__versand {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}
.tr-cd__versand small {
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: -.005em;
  /* ⛔ VOLLTON, KEIN ALPHA. Hier stand `color-mix(… 72%, transparent)` — das
     ist Deckkraft, nicht Farbe, und ueber dem Fuss-Grund #FFF9F1 ergab es
     effektiv #B06B59 mit 3.83:1. Der Hinweis darunter lag bei 2.50:1 auf
     11 px. Beide unter den 4.5:1, die AA verlangt, und beide von einer
     Berechnung erzeugt, die auf dem Papier nach Markenfarbe aussieht.
     Gemessen 01.09.2026 gegen #FFF9F1: #8B5A3C = 6.82:1. */
  color: #8B5A3C;
}
/* Der Zusatzsatz im gemischten Korb erklaert eine Zahl, die sonst wie ein
   Fehler aussieht — er ordnet sich unter, statt mit ihr zu konkurrieren. */
.tr-cd__versand-hinweis {
  font-size: 11px !important;
  /* 5.38:1 — leiser als die Hauptzeile (6.82:1), aber lesbar. Die Rangfolge
     entsteht aus dem gemessenen Abstand, nicht aus Durchsichtigkeit. */
  color: #8B5A3C !important;
}
/* Fortschritt zur Schwelle. Zwei Pixel hoch: er begleitet die Zeile, er ist
   nicht ihr Gegenstand. Kein Prozentwert, keine Zahl — die steht im Text. */
/* ⛔ HIER LAGEN DIE REGELN FUER EINEN FORTSCHRITTSBALKEN — entfernt am
   01.09.2026 zusammen mit dem Balken selbst. Grund im Bild, nicht im Code:
   die Schublade fuehrt bereits einen Balken (Buendel-Leiter), und der zweite
   klebte als 2-px-Linie auf der Oberkante des Checkout-Knopfs. Die Begruendung
   in voller Laenge steht an der Stelle in `lp-drawer.js`, die ihn gebaut hat. */

/* ═══ F · PLAENE IN JEDEM ASPEKT (10.09.2026) ═══════════════════════════════
   Eigentuemervorgabe: Preis je Flasche und je Anwendung DOMINANT, die Summe
   untergeordnet. Die Hierarchie entsteht aus der Groesse (18 px gegen 12,5 px),
   nicht aus Durchsichtigkeit — beide Stufen bleiben ueber 4.5:1 auf #FFF9F1.
   Alle Klassen sind neu und nur in `lp-drawer.js` vergeben; nichts davon
   ueberschreibt eine Regel der eingefrorenen Seiten. */
.so-preis { display: grid !important; gap: 3px; margin-top: 4px; }
.so-preis__dom { display: flex; flex-wrap: wrap; align-items: baseline; column-gap: 14px; row-gap: 2px; }
.so-preis__einheit { display: inline-flex; align-items: baseline; gap: 4px; white-space: nowrap; }
.so-preis__je { font-size: 18px; font-weight: 700; letter-spacing: -.01em; color: #2E1F14; line-height: 1.15; }
.so-preis__einheit small { font-size: 12px; color: #5A4638; }
.so-preis__ges { display: flex; flex-wrap: wrap; align-items: baseline; column-gap: 8px; row-gap: 1px; }
.so-preis__summe { font-size: 12.5px; font-weight: 600; color: #5A4638; }
.so-preis__ges s { font-size: 12px; color: #A38B79; }
.so-preis__spart { font-size: 12px; font-weight: 650; color: #A8452E; white-space: nowrap; }
.so-preis__basis { font-size: 11px !important; color: #8B5A3C; }
@media (max-width: 380px) { .so-preis__je { font-size: 17px; } .so-preis__dom { column-gap: 10px; } }

/* Add-on-Zeile: dieselbe Rangfolge. Je Flasche gross, Summe klein daneben. */
.tr-cd-addon-preise { display: flex !important; flex-wrap: wrap; align-items: baseline; column-gap: 6px; row-gap: 1px; }
.tr-cd-addonpreis.so-preis__je { font-size: 17px !important; font-weight: 700; }
.tr-cd-addon-einheit { font-size: 12px; color: #5A4638; }
.tr-cd-addon-summe { font-size: 12.5px; font-weight: 600; color: #5A4638; margin-left: 4px; }
.tr-cd-addon-war { font-size: 12px; }

/* Cross-Sell-Karte: je Flasche dominant, Summe und Vergleich klein darunter. */
.tr-cart-upsell__preis { display: flex; flex-wrap: wrap; align-items: baseline; column-gap: 6px; row-gap: 0; }
.tr-cart-upsell__preis .so-preis__je { font-size: 17px; }
.tr-cart-upsell__einheit { font-size: 12px; color: #5A4638; font-weight: 500; }
.tr-cart-upsell__gesamt { font-size: 12.5px; font-weight: 600; color: #5A4638; flex-basis: 100%; }
.tr-cart-upsell__gesamt + .tr-cart-upsell__war { margin-left: 0; }

/* Lieferzeile der Hauptkarte: Rhythmus + Bindung + Folgepreis brechen um,
   der Knopf bleibt am Ende in einer Zeile — auf 320 px gemessen. */
.tr-cd-abo-zeile--haupt { display: flex !important; flex-wrap: wrap; align-items: baseline; column-gap: 10px; row-gap: 2px; margin-top: 8px; }
.tr-cd-abo-zeile--haupt small { flex: 1 1 160px; min-width: 0; white-space: normal; line-height: 1.35; }
.tr-cd-abo-zeile--haupt .tr-cd-abo-change { flex: 0 0 auto; min-height: 24px; padding: 2px 0; }

/* Sheet: mehrere Plaene untereinander, jede Option mit Preis je Flasche. */
.lp-abo-sheet__opt[aria-pressed="true"] b { color: #A8452E; }
.lp-abo-sheet__opt small { white-space: normal; line-height: 1.35; }
/* Der Preisblock steht links buendig unter dem Titel — die Textspalte der
   Hauptkarte richtete ihn rechts aus (Bild 320/390/1440, 10.09.2026), waehrend
   die Zeile „9 bottles · Once a year" links stand: zwei Achsen in einer Karte. */
.so-preis, .so-preis__dom, .so-preis__ges { text-align: left; justify-content: flex-start; justify-items: start; }
.tr-cd__trust { display: flex; flex-wrap: wrap; justify-content: center; column-gap: 8px; row-gap: 2px; }

/* ═══ SIDE-DRAWER (Eigentuemervorgabe 10.09.2026) ═══
   „Leicht mehr Side-Drawer": schiebt von rechts ein, links bleibt ein schmaler
   Spalt, in dem die abgedunkelte Seite sichtbar bleibt. Vorher lief das Blatt
   unter 560 px als 100%-Sheet (Welle 11) — der Spalt war weg. Die Geometrie
   haengt weiter an EINEM Wert (--tr-aside): Breite, Startversatz, Transform
   und Tipp-aus-Streifen folgen alle daraus. */
@media (max-width: 560px) {
  .lp-overlay { --tr-aside: calc(100vw - 44px); }
  .lp-overlay .lp-aside { width: var(--tr-aside) !important; max-width: var(--tr-aside) !important; border-radius: 22px 0 0 22px !important; }
}
.lp-overlay .lp-aside { transition: transform 360ms cubic-bezier(.22,1,.36,1) !important; will-change: transform; box-shadow: -24px 0 60px rgba(46,31,20,.22) !important; }
@media (prefers-reduced-motion: reduce) { .lp-overlay .lp-aside { transition: none !important; } }
/* Planzeile der Hauptkarte: „renews at $249.48Change" klebte (Bild 390, 10.09.2026) —
   der Text lief einzeilig und der Knopf ragte ueber die Kante. Der Text darf
   umbrechen, der Knopf haelt Abstand und rutscht bei Platznot in die naechste Zeile. */
.lp-overlay .lp-aside .tr-cd-abo-zeile--haupt { flex-wrap: wrap !important; column-gap: 12px !important; row-gap: 2px !important; }
.lp-overlay .lp-aside .tr-cd-abo-zeile--haupt small { white-space: normal !important; flex: 1 1 auto !important; min-width: 0; line-height: 1.35 !important; }
.lp-overlay .lp-aside .tr-cd-abo-zeile--haupt .tr-cd-abo-change { margin-left: auto !important; }

/* ═══ APPLE-VERDICHTUNG (Eigentuemer 10.09.2026) ═══
   „teils unoptimiert, Upsell nur durch Scrollen erkennbar, Zahlen brauchen
   klare Hierarchie". Gleiche Informationen und Handlungen, weniger Zeilen:
   Papierkorb in der Titelzeile, ein dominanter Preis, Leiter im Banner,
   Cross-Sell kompakt, Fuss dichter. Gemessen an 390x844: Cross-Sell-Karte
   ohne Scrollen sichtbar. Regeln stehen ZULETZT im Blatt und gewinnen. */
.lp-overlay .lp-aside .so-kompakt-img { width: 64px !important; height: 64px !important; min-width: 64px !important; border-radius: 12px !important; }
.lp-overlay .lp-aside .cart-line:not(.cart-line--addon) .cart-line-inner { gap: 12px !important; align-items: flex-start; }
.lp-overlay .lp-aside .so-titel { display: flex !important; align-items: flex-start; justify-content: space-between; gap: 8px; margin: 0 !important; }
.lp-overlay .lp-aside .so-titel strong { font-size: 16px !important; line-height: 1.25 !important; font-weight: 600 !important; letter-spacing: -.01em; }
.lp-overlay .lp-aside .so-titel .so-chip { width: 32px !important; height: 32px !important; flex: none; margin: -4px -4px 0 0; background: none !important; box-shadow: none !important; color: #A38B79; }
.lp-overlay .lp-aside .so-titel .so-chip:hover { color: #A8452E; }
.lp-overlay .lp-aside .cart-line-inner ul { margin-top: 2px !important; display: grid; gap: 4px; }
.lp-overlay .lp-aside .so-meta { font-size: 12.5px !important; line-height: 1.35 !important; color: #7A6353 !important; }
.lp-overlay .lp-aside .so-preis { margin-top: 2px !important; display: grid; gap: 1px; }
.lp-overlay .lp-aside .so-preis__dom { display: flex !important; flex-wrap: wrap; align-items: baseline; column-gap: 12px; row-gap: 0; }
.lp-overlay .lp-aside .so-preis__einheit { display: inline-flex; align-items: baseline; gap: 4px; white-space: nowrap; }
.lp-overlay .lp-aside .so-preis__einheit:first-child .so-preis__je { font-size: 24px !important; font-weight: 700 !important; letter-spacing: -.02em; line-height: 1.1; color: #2E1F14; }
.lp-overlay .lp-aside .so-preis__einheit:first-child small { font-size: 13px; font-weight: 500; color: #7A6353; }
.lp-overlay .lp-aside .so-preis__einheit--tag .so-preis__je { font-size: 15px !important; font-weight: 600 !important; color: #2E1F14; }
.lp-overlay .lp-aside .so-preis__einheit--tag small { font-size: 12.5px; font-weight: 500; color: #7A6353; white-space: normal; }
.lp-overlay .lp-aside .so-preis__ges { display: flex !important; align-items: baseline; gap: 8px; font-size: 12.5px !important; color: #7A6353 !important; margin: 0 !important; }
.lp-overlay .lp-aside .so-preis__ges .so-preis__summe { font-weight: 600; color: #5A4638; font-size: 12.5px; }
.lp-overlay .lp-aside .so-preis__ges .so-preiszeile__war { font-size: 12px; color: #A38B79; }
/* Stepper + Planzeile */
.lp-overlay .lp-aside .so-qty { margin-top: 10px !important; display: grid !important; gap: 8px; }
.lp-overlay .lp-aside .tr-cd-ctl--haupt { display: flex !important; align-items: center; gap: 10px; width: 100% !important; }
.lp-overlay .lp-aside .tr-cd-mini--haupt { height: 38px; padding: 2px !important; border-radius: 999px; }
.lp-overlay .lp-aside .tr-cd-mini--haupt .tr-cd-mini__b { width: 32px !important; height: 32px !important; font-size: 16px; }
.lp-overlay .lp-aside .tr-cd-mini--haupt .tr-cd-mini__n { min-width: 80px !important; font-size: 14px !important; font-weight: 600 !important; }
.lp-overlay .lp-aside .tr-cd-abo-zeile--haupt { margin: 0 !important; order: 0 !important; }
.lp-overlay .lp-aside .so-qty .so-banner, .lp-overlay .lp-aside .so-qty .so-rail__ok { order: 3; }
.lp-overlay .lp-aside .tr-cd-abo-zeile--haupt small { font-size: 12.5px !important; color: #5A4638; }
.lp-overlay .lp-aside .tr-cd-abo-zeile--haupt .tr-cd-abo-change { min-height: 24px !important; font-size: 13px; }
/* Banner mit Leiter */
.lp-overlay .lp-aside .so-banner { display: grid !important; grid-template-columns: auto minmax(0, 1fr) auto !important; align-items: center; column-gap: 10px; row-gap: 0; padding: 10px 12px !important; margin: 2px 0 0 !important; border-radius: 14px !important; background: #F4E7D7 !important; }
.lp-overlay .lp-aside .so-banner__ic { width: 18px; height: 18px; color: #C7553A; }
.lp-overlay .lp-aside .so-banner__txt b { font-size: 13.5px !important; font-weight: 600 !important; line-height: 1.25 !important; color: #2E1F14; display: block; }
.lp-overlay .lp-aside .so-banner__txt small { font-size: 12px !important; line-height: 1.3 !important; color: #7A6353 !important; display: block; margin-top: 1px; }
.lp-overlay .lp-aside .cart-line-quantity .so-banner__btn { grid-column: 3 !important; grid-row: 1; margin: 0 !important; height: 34px !important; padding: 0 14px !important; font-size: 13px !important; border-radius: 999px !important; }
.lp-overlay .lp-aside .so-banner .so-rail { grid-column: 1 / -1; margin: 8px 0 0 !important; padding: 0 !important; }
.lp-overlay .lp-aside .so-banner .so-rail__lbls { display: none !important; }
.lp-overlay .lp-aside .so-banner .so-rail__track { height: 3px !important; background: rgba(46,31,20,.12) !important; border-radius: 999px; }
.lp-overlay .lp-aside .so-banner .so-rail__dot { display: none !important; }
.lp-overlay .lp-aside .so-rail__ok { font-size: 12.5px !important; margin: 0 !important; }
/* Leere Zwischenraeume und doppelte Trennlinien */
.lp-overlay .lp-aside .tr-cart-scroll > *:empty, .lp-overlay .lp-aside [data-addons]:empty, .lp-overlay .lp-aside [data-upsell]:empty { display: none !important; }
.lp-overlay .lp-aside .cart-line:not(.cart-line--addon) { padding-bottom: 12px !important; margin-bottom: 0 !important; }
/* Cross-Sell kompakt */
.lp-overlay .lp-aside .tr-cart-upsell { padding: 0 !important; gap: 0 !important; margin: 0 !important; }
.lp-overlay .lp-aside .tr-cart-upsell__card.is-xsell { padding: 10px 0 12px !important; margin: 0 !important; border-top: 1px solid rgba(46,31,20,.1) !important; border-bottom: 0 !important; }
.lp-overlay .lp-aside .tr-cart-upsell__card.is-xsell .tr-cart-upsell__eyebrow { display: block; font-size: 11.5px !important; font-weight: 600 !important; letter-spacing: .02em !important; color: #7A6353 !important; margin: 0 0 6px !important; }
.lp-overlay .lp-aside .tr-cart-upsell__card.is-xsell .tr-cart-upsell__row { display: grid !important; grid-template-columns: 52px minmax(0, 1fr) auto !important; align-items: center; column-gap: 10px !important; }
.lp-overlay .lp-aside .tr-cart-upsell__card.is-xsell .tr-cart-upsell__imgwrap { width: 52px !important; height: 52px !important; min-width: 52px !important; border-radius: 10px !important; }
.lp-overlay .lp-aside .tr-cart-upsell__card.is-xsell .tr-cart-upsell__txt strong { font-size: 14.5px !important; line-height: 1.2 !important; font-weight: 600 !important; display: block; }
.lp-overlay .lp-aside .tr-cart-upsell__card.is-xsell .tr-cart-upsell__txt > small:not(.tr-cart-upsell__preis) { font-size: 12px !important; line-height: 1.3 !important; color: #7A6353 !important; display: block; margin-top: 1px; }
.lp-overlay .lp-aside .tr-cart-upsell__card.is-xsell .tr-cart-upsell__preis { display: flex !important; flex-wrap: wrap; align-items: baseline; column-gap: 6px; margin-top: 3px !important; }
.lp-overlay .lp-aside .tr-cart-upsell__card.is-xsell .tr-cart-upsell__preis .so-preis__je { font-size: 15px !important; font-weight: 700 !important; }
.lp-overlay .lp-aside .tr-cart-upsell__card.is-xsell .tr-cart-upsell__einheit { font-size: 12px !important; }
.lp-overlay .lp-aside .tr-cart-upsell__card.is-xsell .tr-cart-upsell__gesamt { flex-basis: auto !important; font-size: 12px !important; font-weight: 500 !important; color: #7A6353 !important; }
.lp-overlay .lp-aside .tr-cart-upsell__card.is-xsell .tr-cart-upsell__gesamt::before { content: '·'; margin-right: 6px; }
.lp-overlay .lp-aside .tr-cart-upsell__card.is-xsell .tr-cart-upsell__war { font-size: 12px !important; color: #A38B79 !important; margin: 0 !important; }
.lp-overlay .lp-aside .tr-cart-upsell__card.is-xsell .tr-cart-upsell__btn { height: 34px !important; min-height: 34px !important; padding: 0 14px !important; font-size: 13px !important; border-radius: 999px !important; white-space: nowrap; }
/* Rabattcode */
.lp-overlay .lp-aside .tr-cd-code { padding: 0 !important; margin: 0 !important; border-top: 1px solid rgba(46,31,20,.1); }
.lp-overlay .lp-aside .tr-cd-code summary { min-height: 42px !important; padding: 0 !important; font-size: 13.5px !important; }
/* Fuss */
.lp-overlay .lp-aside .cart-summary-aside { padding: 8px 16px max(10px, env(safe-area-inset-bottom)) !important; gap: 4px !important; }
.lp-overlay .lp-aside .tr-cd-prot { padding: 6px 0 !important; margin: 0 !important; min-height: 0 !important; }
.lp-overlay .lp-aside .tr-cd-prot__txt { font-size: 13px !important; }
.lp-overlay .lp-aside .tr-cd-prot__btn { font-size: 13px !important; }
.lp-overlay .lp-aside .cart-summary-aside .tr-cd-prot + .tr-cd__total-row { margin-top: 4px !important; }
.lp-overlay .lp-aside .tr-cd__total-row { margin: 0 !important; align-items: baseline; }
.lp-overlay .lp-aside .tr-cd__total-lbl { font-size: 14px !important; color: #7A6353; }
.lp-overlay .lp-aside .so-total { font-size: 22px !important; font-weight: 700 !important; letter-spacing: -.02em; line-height: 1.1; }
.lp-overlay .lp-aside .so-total__save { font-size: 12.5px !important; font-weight: 600 !important; color: #C7553A; display: block; margin-top: 1px; }
.lp-overlay .lp-aside .tr-cd__versand { margin: 2px 0 4px !important; padding: 0 !important; text-align: right; display: grid; gap: 1px; }
.lp-overlay .lp-aside .tr-cd__versand small { font-size: 12px !important; line-height: 1.3 !important; color: #5A4638 !important; }
.lp-overlay .lp-aside .tr-cd__versand .tr-cd__versand-hinweis { font-size: 11.5px !important; color: #A38B79 !important; }
.lp-overlay .lp-aside .tr-cd__checkout { min-height: 50px !important; margin-top: 2px !important; }
.lp-overlay .lp-aside .tr-cd__trust { margin: 6px 0 0 !important; font-size: 11.5px !important; column-gap: 10px !important; }
/* Banner-Text darf umbrechen; unter 360 px Knopf in die zweite Zeile rechts, damit nichts ueberlappt. */
.lp-overlay .lp-aside .so-banner__txt { min-width: 0; }
.lp-overlay .lp-aside .so-banner__txt b, .lp-overlay .lp-aside .so-banner__txt small { white-space: normal !important; overflow-wrap: anywhere; }
@media (max-width: 359px) {
  .lp-overlay .lp-aside .so-banner { grid-template-columns: auto minmax(0, 1fr) !important; }
  .lp-overlay .lp-aside .cart-line-quantity .so-banner__btn { grid-column: 2 !important; grid-row: 2; justify-self: end; margin-top: 6px !important; }
  .lp-overlay .lp-aside .so-banner .so-rail { grid-row: 3; }
}
/* Add-on-Zeilen (Ear Rinse, Schutz): gleiche Saetze — das Drawer-Tor verlangt
   Plan- und Verlaengerungstext (FTC/ROSCA) — aber in einer Rangfolge: Titel,
   Preis je Flasche, dann zwei leise Zeilen. „Save 37%" entfaellt, der
   Streichpreis sagt es bereits und die Summe steht im Fuss. */
.lp-overlay .lp-aside [data-addons] .cart-line--addon { padding: 10px 0 !important; gap: 10px !important; align-items: flex-start !important; }
.lp-overlay .lp-aside .cart-line--addon .cart-line-inner strong { font-size: 14.5px !important; font-weight: 600 !important; line-height: 1.25 !important; }
.lp-overlay .lp-aside .cart-line--addon .cart-line-inner ul { gap: 2px !important; margin-top: 2px !important; }
.lp-overlay .lp-aside .cart-line--addon .cart-line-inner ul li { line-height: 1.3 !important; }
.lp-overlay .lp-aside .tr-cd-addonpreis.so-preis__je { font-size: 15px !important; font-weight: 700 !important; }
.lp-overlay .lp-aside .tr-cd-addon-einheit, .lp-overlay .lp-aside .tr-cd-addon-summe, .lp-overlay .lp-aside .tr-cd-addon-war { font-size: 12px !important; color: #7A6353 !important; font-weight: 500 !important; }
.lp-overlay .lp-aside .tr-cd-addon-war { color: #A38B79 !important; }
.lp-overlay .lp-aside .tr-cd-addon-proz { display: none !important; }
.lp-overlay .lp-aside .cart-line--addon .tr-cd-abo-zeile { display: flex !important; flex-wrap: wrap; align-items: baseline; column-gap: 10px; margin: 0 !important; }
.lp-overlay .lp-aside .cart-line--addon .tr-cd-abo-zeile small { flex: 1 1 auto; min-width: 0; font-size: 12px !important; color: #7A6353 !important; white-space: normal !important; }
.lp-overlay .lp-aside .cart-line--addon .tr-cd-abo-zeile .tr-cd-abo-change { margin-left: auto; min-height: 22px !important; font-size: 12.5px !important; }
.lp-overlay .lp-aside .cart-line--addon .tr-cd-abo-bed small { font-size: 11.5px !important; color: #A38B79 !important; font-weight: 400 !important; line-height: 1.3 !important; }
.lp-overlay .lp-aside .cart-line--addon .tr-cd-mini .tr-cd-mini__b { width: 30px !important; height: 30px !important; }
.lp-overlay .lp-aside .cart-line--addon .tr-cd-mini .tr-cd-mini__n { min-width: 28px !important; font-size: 13.5px !important; }
.lp-overlay .lp-aside [data-addons] .so-chip { width: 32px !important; height: 32px !important; background: none !important; box-shadow: none !important; color: #A38B79; }
/* Planzeile der Hauptkarte immer volle Breite, „Change" mit festem Abstand —
   im Einmalkauf-Fall schrumpfte der Block auf Inhaltsbreite und der Knopf
   klebte am Text („purchaseChange", Bild 390, 10.09.2026). */
.lp-overlay .lp-aside .so-qty { width: 100% !important; justify-items: stretch !important; }
.lp-overlay .lp-aside .tr-cd-ctl--haupt { justify-content: flex-start !important; }
.lp-overlay .lp-aside .tr-cd-abo-zeile--haupt { width: 100% !important; justify-content: space-between !important; }
.lp-overlay .lp-aside .tr-cd-abo-zeile--haupt .tr-cd-abo-change { margin-left: 12px !important; }
/* Ohne Banner war die Rasterspalte inhaltsbreit (170 px) und `justify-content:
   center` schob Stepper und Planzeile in die Mitte (Einmalkauf, 10.09.2026). */
.lp-overlay .lp-aside .so-qty { grid-template-columns: minmax(0, 1fr) !important; justify-content: stretch !important; }
