:root {
  --ink: #2c1b28;
  --muted: #6e5a68;
  --paper: #fffaf7;
  --cream: #f6ede7;
  --berry: #9b2f5f;
  --berry-dark: #68193f;
  --plum: #3f1838;
  --peach: #f0b49c;
  --line: #e8d9df;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(67, 30, 54, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header { position: sticky; top: 0; z-index: 20; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; min-height: 76px; padding: 0 5vw; background: rgba(255, 250, 247, .93); border-bottom: 1px solid rgba(104, 25, 63, .1); backdrop-filter: blur(16px); }
.brand { display: inline-flex; align-items: center; gap: 10px; width: fit-content; color: var(--plum); font-family: Georgia, serif; font-size: 1.22rem; font-weight: 700; text-decoration: none; }
.brand-logo { width: 56px; height: 56px; flex: 0 0 auto; object-fit: cover; border: 1px solid rgba(104, 25, 63, .16); border-radius: 50%; background: var(--white); }
.footer-logo { width: 48px; height: 48px; }
nav { display: flex; align-items: center; gap: 30px; }
nav a, .footer-links a { color: var(--muted); font-size: .94rem; font-weight: 650; text-decoration: none; }
nav a:hover, .footer-links a:hover { color: var(--berry); }
.cart-button { justify-self: end; border: 0; border-radius: 999px; padding: 10px 16px; color: var(--white); background: var(--plum); cursor: pointer; font-weight: 750; }
.cart-button span { display: inline-grid; place-items: center; min-width: 23px; height: 23px; margin-left: 7px; border-radius: 50%; color: var(--plum); background: var(--peach); font-size: .78rem; }

.hero { position: relative; min-height: 650px; display: grid; align-items: center; overflow: hidden; background: #eadbd1; }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,250,247,.98) 5%, rgba(255,250,247,.88) 34%, rgba(255,250,247,.08) 68%); }
.hero-copy { position: relative; z-index: 1; width: min(630px, 54vw); margin-left: 8vw; padding: 80px 0; }
.eyebrow { margin: 0 0 9px; color: var(--berry); font-size: .78rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; font-family: Georgia, "Times New Roman", serif; line-height: 1.1; }
h1 { margin-bottom: 24px; color: var(--plum); font-size: clamp(2.8rem, 6vw, 5.6rem); letter-spacing: -.045em; }
h2 { margin-bottom: 16px; color: var(--plum); font-size: clamp(2rem, 4vw, 3.7rem); letter-spacing: -.035em; }
h3 { margin-bottom: 8px; font-size: 1.35rem; }
.hero-copy > p:not(.eyebrow) { max-width: 570px; color: var(--muted); font-size: 1.08rem; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin: 34px 0; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 48px; padding: 12px 20px; border: 0; border-radius: 999px; text-decoration: none; cursor: pointer; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: var(--white); background: var(--berry); box-shadow: 0 10px 25px rgba(155,47,95,.22); }
.button.primary:hover { background: var(--berry-dark); }
.button.full { width: 100%; }
.text-link { color: var(--berry-dark); font-weight: 800; text-underline-offset: 5px; }
.quick-facts { display: flex; flex-wrap: wrap; gap: 9px; padding: 0; list-style: none; }
.quick-facts li { padding: 7px 12px; background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .82rem; font-weight: 700; }

.section { padding: 110px 7vw; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 60px; max-width: 1200px; margin: 0 auto 45px; }
.section-heading > p { max-width: 500px; color: var(--muted); }
.section-heading.narrow { display: block; }
.product-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 1120px; margin: 0 auto; }
.product-card { display: grid; grid-template-columns: 1fr 1.08fr; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 26px; box-shadow: 0 12px 38px rgba(67,30,54,.07); transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-visual { position: relative; display: grid; place-items: center; min-height: 560px; background: radial-gradient(circle at 50% 35%, #fff 0 12%, transparent 55%), linear-gradient(145deg, #f9e8e4, #ead6df); font-size: 5rem; }
.product-visual::after { content: "Foto folgt"; position: absolute; right: 12px; bottom: 12px; padding: 5px 9px; border-radius: 999px; color: var(--berry-dark); background: rgba(255,255,255,.82); font-size: .68rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.product-visual.has-image::after { display: none; }
.product-visual img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; display: block; }
.product-preview { display: block; width: min(100%, 560px); height: auto; max-height: 720px; padding: 22px; object-fit: contain; }
.product-body { align-self: center; padding: 34px; }
.product-tag { color: var(--berry); font-size: .72rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.product-body h3 { margin: 7px 0 9px; }
.product-body > p:not(.product-status) { min-height: 66px; margin: 0 0 16px; color: var(--muted); font-size: .9rem; }
.product-details { display: grid; gap: 7px; margin: 0 0 16px; padding: 14px; border-radius: 14px; background: var(--cream); font-size: .78rem; }
.product-details div { display: grid; grid-template-columns: 92px 1fr; gap: 8px; }
.product-details dt { color: var(--plum); font-weight: 800; }
.product-details dd { margin: 0; color: var(--muted); }
.product-safety-summary { margin: 0 0 16px; padding: 13px 14px; border: 1px solid #e4b85e; border-radius: 14px; color: #5d4524; background: #fff8e8; font-size: .74rem; line-height: 1.45; }
.product-safety-summary > strong { display: block; margin-bottom: 4px; color: var(--plum); font-size: .78rem; }
.product-safety-summary p { min-height: 0 !important; margin: 4px 0 !important; color: #5d4524 !important; font-size: inherit !important; }
.product-safety-summary a { color: var(--berry-dark); font-weight: 800; }
.product-status { width: fit-content; min-height: 0; margin: 0 0 16px; padding: 5px 9px; border: 1px solid #e4b85e; border-radius: 999px; color: #70470b; background: #fff6db; font-size: .7rem; font-weight: 800; }
.color-configurator { margin: 18px 0; padding: 17px; border: 1px solid var(--line); border-radius: 18px; background: #fffaf7; }
.configurator-heading { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.configurator-heading h4 { margin: 3px 0 0; color: var(--plum); font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; line-height: 1.2; }
.fixed-stem { display: inline-flex; align-items: center; gap: 7px; flex: 0 0 auto; color: var(--muted); font-size: .76rem; font-weight: 800; }
.fixed-stem i { display: block; width: 20px; height: 20px; border: 1px solid rgba(44,27,40,.18); border-radius: 50%; background: #6c3426; }
.mode-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; padding: 4px; border-radius: 14px; background: var(--cream); }
.mode-toggle button { min-height: 38px; border: 0; border-radius: 11px; color: var(--muted); background: transparent; cursor: pointer; font-weight: 800; }
.mode-toggle button[aria-pressed="true"] { color: var(--white); background: var(--plum); box-shadow: 0 5px 14px rgba(63,24,56,.18); }
.color-group { margin-top: 14px; }
.color-group > strong { display: block; margin-bottom: 8px; color: var(--ink); font-size: .82rem; }
.swatch-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.swatch-button { display: flex; align-items: center; gap: 7px; min-width: 0; padding: 8px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: var(--white); cursor: pointer; font-size: .75rem; font-weight: 750; }
.swatch-button[aria-pressed="true"] { border-color: var(--berry); box-shadow: 0 0 0 2px rgba(155,47,95,.14); }
.swatch { display: block; width: 22px; height: 22px; flex: 0 0 auto; border: 1px solid rgba(44,27,40,.18); border-radius: 50%; background: var(--swatch-color); }
.color-summary { min-height: 0 !important; margin: 14px 0 0 !important; padding: 10px 12px; border-radius: 11px; color: var(--plum) !important; background: #f5e8ef; font-size: .78rem !important; font-weight: 800; }
.preview-note { min-height: 0 !important; margin: 8px 0 0 !important; color: var(--muted) !important; font-size: .7rem !important; }
.product-meta { display: flex; justify-content: space-between; align-items: end; gap: 10px; padding-top: 16px; border-top: 1px solid var(--line); }
.product-price span { display: block; color: var(--muted); font-size: .7rem; }
.product-price strong { color: var(--plum); font-size: 1.12rem; }
.add-button { border: 0; border-radius: 999px; padding: 9px 13px; color: var(--white); background: var(--plum); cursor: pointer; font-weight: 800; }

.process { color: var(--white); background: var(--plum); }
.process h2, .process h3 { color: var(--white); }
.process .eyebrow { color: var(--peach); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; max-width: 1200px; margin: 0 auto; padding: 0; list-style: none; }
.steps li { padding: 28px; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; background: rgba(255,255,255,.06); }
.steps span { display: block; margin-bottom: 35px; color: var(--peach); font-weight: 900; }
.steps p { margin: 0; color: #ddcfd9; }
.promise { background: var(--cream); }
.promise-card { max-width: 970px; margin: 0 auto; padding: 70px; border-left: 8px solid var(--berry); background: var(--white); box-shadow: var(--shadow); }
.promise-card p:last-child { max-width: 760px; margin-bottom: 0; color: var(--muted); font-size: 1.05rem; }
.safety { background: var(--white); }
.safety-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1080px; margin: 0 auto; }
.safety-grid article { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); }
.safety-grid article > span { display: block; margin-bottom: 18px; font-size: 2rem; }
.safety-grid p { margin-bottom: 0; color: var(--muted); }
.compliance-note { max-width: 1080px; margin: 24px auto 0; padding: 20px 22px; border-left: 5px solid #d29a2f; border-radius: 12px; color: #5d4524; background: #fff8e8; }
.compliance-note a { display: block; width: fit-content; margin-top: 10px; color: var(--berry-dark); font-weight: 800; }
.faq-list { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { padding: 24px 4px; cursor: pointer; color: var(--plum); font-weight: 800; }
.faq details p { margin: -8px 0 24px; color: var(--muted); }

footer { display: grid; grid-template-columns: 1.4fr .8fr; gap: 35px; padding: 60px 7vw 34px; color: #dfd1da; background: #281221; }
footer > div:first-child p { max-width: 460px; }
.footer-brand { color: var(--white); }
.footer-links { display: flex; justify-content: flex-end; align-items: start; flex-wrap: wrap; gap: 20px; }
.footer-links a { color: #dfd1da; }
.draft-note { grid-column: 1 / -1; margin: 20px 0 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .8rem; }

.backdrop { position: fixed; inset: 0; z-index: 40; background: rgba(24,9,20,.5); backdrop-filter: blur(3px); }
.cart-drawer { position: fixed; top: 0; right: 0; z-index: 50; width: min(460px, 100%); height: 100dvh; padding: 28px; overflow-y: auto; border: 0; background: var(--paper); box-shadow: -30px 0 80px rgba(40,18,33,.2); }
.drawer-header { display: flex; justify-content: space-between; align-items: start; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.drawer-header h2 { margin-bottom: 0; font-size: 2.2rem; }
.icon-button { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); cursor: pointer; color: var(--ink); font-size: 1.7rem; }
.cart-items { display: grid; gap: 12px; padding: 22px 0; }
.empty-cart { padding: 50px 15px; color: var(--muted); text-align: center; }
.cart-item { display: grid; grid-template-columns: 52px 1fr auto; gap: 12px; align-items: center; padding: 13px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.cart-item-emoji { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--cream); font-size: 1.8rem; }
.cart-item-emoji img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.cart-color { position: relative; display: block; width: 52px; height: 52px; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(to bottom, var(--top-color) 0 50%, var(--bottom-color) 50% 100%); box-shadow: inset 0 0 0 4px rgba(255,255,255,.55); }
.cart-color i { position: absolute; top: 5px; left: 50%; width: 9px; height: 16px; border-radius: 6px 6px 3px 3px; background: #6c3426; transform: translateX(-50%); }
.cart-item strong, .cart-item small { display: block; }
.cart-item small { color: var(--muted); }
.remove-button { border: 0; background: transparent; color: var(--berry); cursor: pointer; font-weight: 800; }
.cart-summary { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.cart-summary > div, .checkout-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; }
.cart-summary > div strong, .checkout-total strong { color: var(--plum); font-size: 1.35rem; }
.cart-summary p { margin: 0 0 20px; color: var(--muted); font-size: .8rem; }

.checkout-dialog { width: min(680px, calc(100% - 28px)); max-height: 90dvh; padding: 0; overflow: auto; border: 0; border-radius: 24px; background: var(--paper); box-shadow: var(--shadow); }
.checkout-dialog::backdrop { background: rgba(24,9,20,.56); backdrop-filter: blur(4px); }
.checkout-dialog form { padding: 28px; }
.setup-alert { margin: 20px 0; padding: 14px 16px; border: 1px solid #e9b8c9; border-radius: 14px; color: var(--berry-dark); background: #fff0f5; font-size: .9rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-grid label, fieldset { color: var(--ink); font-size: .88rem; font-weight: 750; }
.form-grid input, .form-grid textarea { width: 100%; margin-top: 6px; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.full-field { grid-column: 1 / -1; }
fieldset { margin: 18px 0; padding: 14px; border: 1px solid var(--line); border-radius: 14px; }
.payment-choice { display: inline-flex; gap: 8px; margin-right: 20px; cursor: pointer; }
.checkout-total { margin: 18px 0; padding: 15px 0; border-top: 1px solid var(--line); }
.checkout-message { min-height: 24px; color: var(--berry-dark); font-weight: 750; text-align: center; }
.legal-consent { margin: 16px 0 0; color: var(--muted); font-size: .82rem; }
.legal-consent a { color: var(--berry-dark); font-weight: 800; text-underline-offset: 3px; }
.withdrawal-confirmation { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 10px; margin-top: 16px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; color: var(--ink); background: var(--cream); font-size: .84rem; line-height: 1.45; }
.withdrawal-confirmation input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--berry); }

.legal-main { max-width: 900px; margin: 0 auto; padding: 90px 24px 120px; }
.legal-main h1 { font-size: clamp(2.7rem, 6vw, 4.8rem); }
.legal-main h2 { margin-top: 38px; font-size: 1.55rem; }
.legal-main p, .legal-main li { color: var(--muted); }
.placeholder { padding: 12px 14px; border: 1px dashed var(--berry); border-radius: 12px; background: #fff0f5; }

@media (max-width: 1100px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 68px; padding: 0 18px; }
  .brand { font-size: 1rem; }
  .brand-logo { width: 48px; height: 48px; }
  nav { display: none; }
  .cart-button { padding: 9px 12px; font-size: .82rem; }
  .hero { min-height: 690px; align-items: end; }
  .hero > img { height: 48%; top: 0; object-position: 68% center; }
  .hero::after { background: linear-gradient(0deg, rgba(255,250,247,1) 0 55%, rgba(255,250,247,.02) 76%); }
  .hero-copy { width: auto; margin: 0; padding: 315px 22px 52px; }
  h1 { font-size: clamp(2.65rem, 13vw, 4.1rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 15px; }
  .quick-facts { gap: 6px; }
  .section { padding: 75px 20px; }
  .section-heading { display: block; }
  .product-card { display: block; }
  .product-visual { min-height: 160px; font-size: 3.8rem; }
  .product-visual img { min-height: 0; aspect-ratio: 4 / 5; }
  .product-preview { max-height: 520px; padding: 14px; }
  .product-body { padding: 15px; }
  .product-body p { min-height: 0; }
  .product-meta { align-items: stretch; flex-direction: column; }
  .add-button { width: 100%; }
  .steps { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: 1fr; }
  .promise-card { padding: 38px 25px; }
  footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .draft-note { grid-column: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .full-field { grid-column: auto; }
}
@media (max-width: 430px) {
  .site-header > .brand > span { display: none; }
  .product-visual { min-height: 210px; }
  .swatch-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .configurator-heading { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
