/* ============================================================
   LastiLaufi — Online Store
   Farbwelt aus der Endpräsentation: Creme, Tiefschwarz,
   Flieder-Akzent + Produktfarben Blau / Orange / Grün
   ============================================================ */

@font-face { font-family: 'Poppins'; src: url('../fonts/poppins-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../fonts/poppins-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../fonts/poppins-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../fonts/poppins-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../fonts/poppins-800.woff2') format('woff2'); font-weight: 800; font-style: normal; font-display: swap; }

:root {
  --bg:        #F7EBD9;
  --bg-deep:   #F2E2C9;
  --card:      #FFFCF6;
  --ink:       #1D1B18;
  --muted:     #6E675C;
  --line:      rgba(29, 27, 24, .12);
  --peri:      #8C98DF;
  --peri-deep: #5F6DC4;
  --peri-soft: #EDEFFB;
  --teal:      #45BEB3;
  --orange:    #EF9741;
  --green:     #83AF3F;
  --radius:    22px;
  --radius-lg: 30px;
  --shadow-sm: 0 2px 10px rgba(93, 74, 42, .07);
  --shadow-md: 0 14px 40px rgba(93, 74, 42, .13);
  --shadow-lg: 0 30px 80px rgba(93, 74, 42, .18);
  --wrap:      1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

/* ---------- Typo helpers ---------- */
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--peri-deep);
  margin-bottom: 18px;
}

.h-display {
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.08;
  font-size: clamp(38px, 5.4vw, 66px);
}

.h-section {
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.12;
  font-size: clamp(30px, 3.6vw, 46px);
}

.lead { font-size: 18px; color: var(--muted); font-weight: 500; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  padding: 17px 34px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.btn-primary { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: #000; }

.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

.btn-peri { background: var(--peri-deep); color: #fff; }
.btn-peri:hover { background: #4d5ab2; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-block { width: 100%; }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--ink);
  color: #F7EBD9;
  text-align: center;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 9px 16px;
}
.announce b { color: #fff; }
.announce .dot { margin: 0 12px; opacity: .45; }

/* ---------- Header ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(247, 235, 217, .96);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-head.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 30px rgba(93,74,42,.07); }

.head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.logo {
  font-weight: 800;
  font-size: 25px;
  letter-spacing: -.02em;
  display: flex;
  align-items: baseline;
}
.logo .d { font-weight: 800; }
.logo .d-teal { color: var(--teal); }
.logo .d-orange { color: var(--orange); }
.logo .i-dot { position: relative; display: inline-block; line-height: 1; }
.logo .i-dot .i-green {
  position: absolute;
  left: 0;
  bottom: 0;
  color: var(--green);
  clip-path: inset(0 0 69% 0);
  pointer-events: none;
}

.main-nav { display: flex; gap: 34px; }
.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  transition: color .18s ease;
  position: relative;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--peri-deep);
  transition: right .22s ease;
}
.main-nav a:hover::after { right: 0; }

.head-actions { display: flex; align-items: center; gap: 14px; }

.cart-btn {
  position: relative;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 700;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.cart-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.cart-count {
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  min-width: 21px;
  height: 21px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}
.cart-count.bump { animation: bump .4s ease; }
@keyframes bump { 40% { transform: scale(1.35); } }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 30px; position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-copy .h-display span.mark { color: var(--peri-deep); }
.hero-copy .lead { margin: 26px 0 36px; max-width: 480px; }

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-price-tag {
  display: inline-flex;
  flex-direction: column;
  margin-left: 6px;
}
.hero-price-tag .p { font-size: 22px; font-weight: 800; }
.hero-price-tag .s { font-size: 12.5px; color: var(--muted); font-weight: 500; }

.hero-visual { position: relative; }
.hero-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
  transform: rotate(.6deg);
}
.hero-img-card img { width: 100%; height: auto; }

.chip {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 5.5s ease-in-out infinite;
}
.chip small { display: block; font-size: 11.5px; color: var(--muted); font-weight: 500; line-height: 1.3; }
.chip .ico {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex: none;
}
.chip-weight { top: 8%; left: -26px; }
.chip-weight .ico { background: var(--peri-soft); }
.chip-load { bottom: 12%; right: -20px; animation-delay: 1.6s; }
.chip-load .ico { background: #FDF0DF; }
@keyframes float { 50% { transform: translateY(-9px); } }

/* ---------- Trust bar ---------- */
.trustbar { padding: 40px 0 10px; }
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
}
.trust-item svg { flex: none; color: var(--peri-deep); }

/* ---------- Sections ---------- */
section { padding: 92px 0; }
.sec-head { max-width: 640px; margin-bottom: 54px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .lead { margin-top: 16px; }

/* ---------- Configurator ---------- */
#konfigurator { padding-top: 70px; }
.config-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}

.config-stage {
  position: relative;
  background: linear-gradient(160deg, #FDFDFB 0%, #EFEDE8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  padding: 30px;
}
.config-stage img {
  width: 100%;
  max-width: 640px;
  transition: opacity .28s ease, transform .28s ease;
}
.config-stage img.swap { opacity: 0; transform: scale(.985); }

.stage-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--ink);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 8px 16px;
  border-radius: 999px;
}

.stage-color-name {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.config-panel { padding: 46px 46px 40px; display: flex; flex-direction: column; }

.config-panel h3 { font-size: 30px; font-weight: 800; letter-spacing: -.015em; line-height: 1.15; }
.config-sub { color: var(--muted); font-size: 15px; margin: 6px 0 8px; font-weight: 500; }

.rating-row { display: flex; align-items: center; gap: 10px; margin: 8px 0 22px; font-size: 13.5px; color: var(--muted); font-weight: 600; }
.stars { color: var(--orange); letter-spacing: 2px; font-size: 15px; }

.opt-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--ink);
  margin: 22px 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.opt-label .sel { color: var(--muted); text-transform: none; letter-spacing: 0; font-weight: 600; font-size: 13.5px; }

.swatches { display: flex; gap: 14px; }
.swatch {
  width: 54px; height: 54px;
  border-radius: 999px;
  border: 3px solid transparent;
  outline: 1px solid var(--line);
  outline-offset: 3px;
  transition: transform .16s ease, outline-color .16s ease;
  position: relative;
}
.swatch:hover { transform: scale(1.08); }
.swatch.active { outline: 3px solid var(--ink); outline-offset: 3px; }
.swatch-blau { background: var(--teal); }
.swatch-orange { background: var(--orange); }
.swatch-gruen { background: var(--green); }

.korb-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.korb-opt {
  border: 2px solid var(--line);
  border-radius: 16px;
  background: transparent;
  padding: 15px 16px;
  text-align: left;
  transition: border-color .16s ease, background .16s ease, transform .16s ease;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.korb-opt:hover { transform: translateY(-2px); }
.korb-opt.active { border-color: var(--ink); background: #FBF6EC; }
.korb-opt .t { font-weight: 700; font-size: 15px; display: flex; justify-content: space-between; align-items: center; }
.korb-opt .t .pl { color: var(--peri-deep); font-size: 14px; }
.korb-opt .s { font-size: 13px; color: var(--muted); font-weight: 500; line-height: 1.45; }

.korb-hint {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  background: var(--peri-soft);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 13px;
  color: #4a4f77;
  font-weight: 500;
}
.korb-hint img { width: 58px; height: 42px; object-fit: cover; border-radius: 9px; flex: none; }

.config-buy { margin-top: auto; padding-top: 28px; }
.price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 6px; }
.price-now { font-size: 38px; font-weight: 800; letter-spacing: -.02em; }
.price-note { font-size: 12.5px; color: var(--muted); font-weight: 500; margin-bottom: 18px; }
.price-note a { text-decoration: underline; }

.delivery-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #3d7a37;
  margin-top: 14px;
}
.delivery-note .pulse {
  width: 9px; height: 9px;
  background: #4caf50;
  border-radius: 999px;
  animation: pulse 1.8s infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 6px rgba(76,175,80,.15); } }

/* ---------- Werbevideo ---------- */
.video-sec { padding-top: 40px; }
.video-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
  aspect-ratio: 16 / 9;
}
.video-frame .video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, opacity .3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .35);
}
.video-play::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, .5);
  animation: ring 2.4s ease-out infinite;
}
@keyframes ring { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.35); opacity: 0; } }
.video-play:hover { transform: scale(1.08); background: #fff; }
.video-frame.playing .video-play { opacity: 0; pointer-events: none; }

/* ---------- Specs ---------- */
.specs { background: var(--bg-deep); border-radius: 48px; margin: 0 18px; }
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.spec-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.spec-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.spec-card .k {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--peri-deep);
  margin-bottom: 8px;
}
.spec-card .v { font-size: 21px; font-weight: 800; letter-spacing: -.01em; line-height: 1.3; }
.spec-card .s { font-size: 13.5px; color: var(--muted); font-weight: 500; margin-top: 3px; }

/* ---------- Story / Material ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-points { display: flex; flex-direction: column; gap: 26px; margin-top: 34px; }
.story-point { display: flex; gap: 18px; }
.story-point .num {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--peri-soft);
  color: var(--peri-deep);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.story-point h4 { font-size: 17px; font-weight: 700; margin-bottom: 3px; }
.story-point p { font-size: 14.5px; color: var(--muted); font-weight: 500; }

/* ---------- Reviews ---------- */
.reviews { padding-top: 60px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card .stars { font-size: 17px; }
.review-card p { font-size: 15px; font-weight: 500; line-height: 1.7; }
.review-card .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-card .avatar {
  width: 42px; height: 42px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 15px;
}
.review-card .who .n { font-size: 14px; font-weight: 700; }
.review-card .who .m { font-size: 12.5px; color: var(--muted); font-weight: 500; display: flex; align-items: center; gap: 5px; }
.verified { color: #3d7a37; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 26px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 999px;
  background: var(--peri-soft);
  color: var(--peri-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  transition: transform .25s ease;
}
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 26px 22px; font-size: 14.5px; color: var(--muted); font-weight: 500; max-width: 640px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--ink);
  color: #fff;
  border-radius: 48px;
  margin: 0 18px;
  text-align: center;
  padding: 90px 28px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  opacity: .5;
}
.cta-banner::before { width: 620px; height: 620px; background: radial-gradient(circle, rgba(95,109,196,.65) 0%, rgba(95,109,196,0) 70%); top: -260px; left: -180px; }
.cta-banner::after { width: 560px; height: 560px; background: radial-gradient(circle, rgba(239,151,65,.55) 0%, rgba(239,151,65,0) 70%); bottom: -240px; right: -160px; }
.cta-banner .h-section { color: #fff; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,.65); margin: 18px auto 36px; max-width: 460px; position: relative; z-index: 1; font-weight: 500; }
.cta-banner .btn { position: relative; z-index: 1; background: #fff; color: var(--ink); }
.cta-banner .btn:hover { background: var(--bg); }

/* ---------- Footer ---------- */
.site-foot { padding: 74px 0 40px; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line);
}
.foot-grid .logo { margin-bottom: 14px; }
.foot-grid p { font-size: 14px; color: var(--muted); font-weight: 500; max-width: 300px; }
.foot-col h5 {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--ink);
}
.foot-col ul { display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 14.5px; color: var(--muted); font-weight: 500; transition: color .15s ease; }
.foot-col a:hover { color: var(--ink); }

.foot-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  flex-wrap: wrap;
}
.pay-badges { display: flex; gap: 8px; }
.pay-badge {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 11px;
  color: var(--muted);
}

/* ---------- Cart drawer ---------- */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(29, 27, 24, .45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 100;
}
.overlay.show { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh;
  width: min(430px, 100vw);
  background: var(--bg);
  z-index: 110;
  transform: translateX(105%);
  transition: transform .38s cubic-bezier(.3,.8,.3,1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,.18);
}
.cart-drawer.show { transform: none; }

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}
.drawer-head h4 { font-size: 20px; font-weight: 800; }
.icon-btn {
  background: transparent;
  border: none;
  width: 38px; height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background .15s ease;
}
.icon-btn:hover { background: rgba(29,27,24,.07); }

.drawer-body { flex: 1; overflow-y: auto; padding: 22px 28px; display: flex; flex-direction: column; gap: 16px; }

.cart-empty { text-align: center; color: var(--muted); font-weight: 500; margin-top: 60px; }
.cart-empty .big { font-size: 44px; margin-bottom: 10px; }

.cart-item {
  display: flex;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
}
.cart-item img { width: 92px; height: 66px; object-fit: cover; border-radius: 12px; background: #eee; flex: none; }
.cart-item .ci-info { flex: 1; min-width: 0; }
.cart-item .ci-title { font-weight: 700; font-size: 14.5px; }
.cart-item .ci-var { font-size: 12.5px; color: var(--muted); font-weight: 500; margin: 1px 0 8px; }
.cart-item .ci-row { display: flex; justify-content: space-between; align-items: center; }
.qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.qty-ctrl button {
  background: transparent;
  border: none;
  width: 28px; height: 28px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.qty-ctrl button:hover { background: rgba(29,27,24,.06); }
.qty-ctrl span { min-width: 26px; text-align: center; font-size: 13.5px; font-weight: 700; }
.ci-price { font-weight: 800; font-size: 15px; }
.ci-remove {
  background: none;
  border: none;
  font-size: 12px;
  color: var(--muted);
  text-decoration: underline;
  margin-top: 6px;
  padding: 0;
}
.ci-remove:hover { color: #c0392b; }

.drawer-foot { border-top: 1px solid var(--line); padding: 22px 28px 28px; background: var(--bg); }
.sum-row { display: flex; justify-content: space-between; font-size: 14.5px; font-weight: 500; color: var(--muted); margin-bottom: 6px; }
.sum-row.total { font-size: 19px; font-weight: 800; color: var(--ink); margin: 10px 0 4px; }
.sum-note { font-size: 12px; color: var(--muted); margin-bottom: 16px; }

/* ---------- Checkout modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.modal.show { opacity: 1; pointer-events: auto; }
.modal-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  width: min(560px, 100%);
  max-height: 92dvh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  padding: 38px 40px;
  transform: translateY(18px) scale(.98);
  transition: transform .3s cubic-bezier(.3,.8,.3,1);
}
.modal.show .modal-card { transform: none; }

.checkout-demo-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #FBEEDD;
  border: 1px solid #E7C48F;
  border-radius: 14px;
  padding: 13px 16px;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  color: #6b4e22;
}
.checkout-demo-note b { color: #5a3f16; }
.checkout-demo-note .cdn-ico { flex: none; font-size: 15px; line-height: 1.4; }

.steps {
  display: flex;
  gap: 8px;
  margin: 22px 0 30px;
}
.step-dot {
  flex: 1;
  height: 5px;
  border-radius: 99px;
  background: rgba(29,27,24,.12);
  transition: background .3s ease;
}
.step-dot.on { background: var(--peri-deep); }

.modal h4 { font-size: 24px; font-weight: 800; letter-spacing: -.01em; }
.modal .m-sub { color: var(--muted); font-size: 14px; font-weight: 500; margin-top: 4px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 12.5px; font-weight: 700; margin-bottom: 6px; letter-spacing: .04em; }
.field input {
  width: 100%;
  border: 1.5px solid var(--line);
  background: var(--card);
  border-radius: 13px;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus { outline: none; border-color: var(--peri-deep); box-shadow: 0 0 0 4px rgba(95,109,196,.14); }
.field input.err { border-color: #c0392b; }

.pay-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.pay-opt {
  border: 2px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  transition: border-color .15s ease, background .15s ease;
}
.pay-opt.active { border-color: var(--ink); background: #FBF6EC; }
.pay-opt .radio {
  width: 20px; height: 20px;
  border-radius: 999px;
  border: 2px solid var(--line);
  flex: none;
  position: relative;
}
.pay-opt.active .radio { border-color: var(--ink); }
.pay-opt.active .radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--ink);
  border-radius: 999px;
}
.pay-opt .t { font-weight: 700; font-size: 15px; }
.pay-opt .s { font-size: 12.5px; color: var(--muted); font-weight: 500; }

.order-summary {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 500;
}
.order-summary .os-row { display: flex; justify-content: space-between; padding: 4px 0; color: var(--muted); }
.order-summary .os-row.t { color: var(--ink); font-weight: 800; font-size: 16px; border-top: 1px solid var(--line); margin-top: 8px; padding-top: 10px; }

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--peri-deep); flex: none; }
.consent a { text-decoration: underline; }

.modal-actions { display: flex; gap: 12px; margin-top: 28px; }
.modal-actions .btn { flex: 1; padding: 15px 20px; font-size: 15px; }

.success-wrap { text-align: center; padding: 20px 0 10px; }
.success-check {
  width: 84px; height: 84px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: #E8F4E4;
  color: #3d7a37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  animation: pop .5s cubic-bezier(.3,1.6,.5,1);
}
@keyframes pop { 0% { transform: scale(0); } }
.success-wrap .order-no {
  display: inline-block;
  background: var(--card);
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 10px 20px;
  font-weight: 800;
  letter-spacing: .06em;
  margin: 16px 0;
}
.success-wrap p { color: var(--muted); font-size: 14.5px; font-weight: 500; max-width: 380px; margin: 0 auto; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, calc(100% + 40px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 14.5px;
  z-index: 130;
  transition: transform .4s cubic-bezier(.3,1.3,.4,1), opacity .3s ease, visibility .3s;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  max-width: calc(100vw - 32px);
}
.toast.show { transform: translate(-50%, 0); opacity: 1; visibility: visible; }
.toast .tick { color: #7CCB6E; font-size: 17px; }

/* ---------- Einstiegs-Hinweis (Demo-Gate) ---------- */
.entry-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(29, 27, 24, .55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.entry-gate.show { opacity: 1; pointer-events: auto; }
.entry-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: min(500px, 100%);
  max-height: 92dvh;
  overflow-y: auto;
  padding: 40px 40px 34px;
  text-align: center;
  transform: translateY(18px) scale(.97);
  transition: transform .35s cubic-bezier(.3,.8,.3,1);
}
.entry-gate.show .entry-card { transform: none; }
.entry-badge {
  display: inline-block;
  background: var(--peri-soft);
  color: var(--peri-deep);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.entry-card h3 { font-size: 23px; font-weight: 800; letter-spacing: -.01em; line-height: 1.25; margin-bottom: 14px; }
.entry-card p { font-size: 14.5px; color: var(--muted); font-weight: 500; line-height: 1.65; margin-bottom: 12px; text-align: left; }
.entry-card p b { color: var(--ink); }
.entry-card .btn { margin-top: 12px; }
.entry-legal { display: inline-block; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--peri-deep); text-decoration: underline; }
.entry-legal:hover { color: var(--ink); }

/* ---------- Cookie banner ---------- */
.cookie-bar {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 95;
  width: min(400px, calc(100vw - 44px));
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 22px 24px;
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: all .45s cubic-bezier(.3,.9,.3,1);
}
.cookie-bar.show { transform: none; opacity: 1; pointer-events: auto; }
.cookie-bar h6 { font-size: 15px; font-weight: 800; margin-bottom: 6px; display: flex; gap: 8px; align-items: center; }
.cookie-bar p { font-size: 13px; color: var(--muted); font-weight: 500; margin-bottom: 14px; }
.cookie-bar p a { text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions .btn { padding: 11px 20px; font-size: 13.5px; flex: 1; }

/* ---------- Legal pages ---------- */
.legal-main { max-width: 780px; margin: 0 auto; padding: 70px 28px 100px; }
.legal-main h1 { font-size: clamp(32px, 4vw, 44px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 8px; }
.legal-main .l-sub { color: var(--muted); font-weight: 500; margin-bottom: 44px; }
.legal-main h2 { font-size: 21px; font-weight: 700; margin: 38px 0 12px; }
.legal-main p, .legal-main li { font-size: 15px; color: #444036; font-weight: 500; margin-bottom: 12px; }
.legal-main ul { list-style: disc; padding-left: 22px; }
.legal-note {
  background: var(--peri-soft);
  border-radius: 16px;
  padding: 18px 22px;
  font-size: 14px;
  color: #4a4f77;
  font-weight: 600;
  margin-bottom: 40px;
}
.back-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14.5px; color: var(--peri-deep); margin-bottom: 34px; }
.back-link:hover { text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero { padding-top: 54px; }
  .chip-weight { left: 6px; }
  .chip-load { right: 6px; }
  .config-card { grid-template-columns: 1fr; }
  .config-stage { min-height: 340px; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .review-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 18px 24px; }
  .trust-item { justify-content: flex-start; padding-left: 8px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
}

@media (max-width: 560px) {
  section { padding: 64px 0; }
  .config-panel { padding: 30px 24px; }
  .korb-options { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .modal-card { padding: 30px 24px; }
  .spec-grid { grid-template-columns: 1fr; }
  .announce { font-size: 12px; }
  .announce .dot:nth-of-type(2), .announce span.opt { display: none; }
}
