:root{
  --bg:#0b0f1a; --bg2:#111729; --card:#151c30; --border:#232c44;
  --text:#e8ecf6; --muted:#8b93a8; --accent:#4d7bff; --accent2:#8b5cf6;
}
*{box-sizing:border-box;margin:0;padding:0}
body{
  background:radial-gradient(1200px 600px at 50% -10%, #1a2440, var(--bg));
  color:var(--text); font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  min-height:100vh;
}
header{
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 40px; border-bottom:1px solid var(--border);
  position:sticky; top:0; background:rgba(11,15,26,0.85); backdrop-filter:blur(10px); z-index:50;
}
.logo{display:flex; align-items:center; gap:10px; font-weight:700; font-size:1.15rem; letter-spacing:.3px; text-decoration:none; color:var(--text)}
.logo img{height:46px; width:46px; display:block; border-radius:50%}

.hero-watermark{
  position:absolute; top:-60px; right:-60px; width:340px; height:340px; opacity:.08;
  pointer-events:none; user-select:none; z-index:0;
}
.hero{position:relative; overflow:hidden}
nav{display:flex;gap:28px}
nav a{color:var(--muted); text-decoration:none; font-size:.92rem}
nav a:hover{color:var(--text)}
nav a.active{color:var(--text)}
.cart-btn{
  background:var(--card); border:1px solid var(--border); color:var(--text);
  padding:10px 16px; border-radius:10px; cursor:pointer; font-size:.9rem;
  display:flex; align-items:center; gap:8px; text-decoration:none;
}
.cart-count{background:var(--accent); border-radius:20px; padding:1px 8px; font-size:.78rem}

.page{max-width:820px; margin:0 auto; padding:70px 40px 100px}
.page h1{font-size:2.2rem; margin-bottom:14px; font-weight:700}
.page > p.lead{color:var(--muted); font-size:1.05rem; line-height:1.6; margin-bottom:46px}

.site-footer{max-width:1200px;margin:0 auto;padding:40px 40px 50px;border-top:1px solid var(--border)}
.legal-links{display:flex; gap:24px; flex-wrap:wrap; margin-bottom:18px}
.legal-links a{color:var(--muted); font-size:.85rem; text-decoration:none}
.legal-links a:hover{color:var(--text); text-decoration:underline}
.footer-note{color:var(--muted);font-size:.78rem;line-height:1.6}

.legal-page{max-width:760px; margin:0 auto; padding:70px 40px 100px}
.legal-page h1{font-size:1.9rem; margin-bottom:8px; font-weight:700}
.legal-page .updated{color:var(--muted); font-size:.82rem; margin-bottom:40px}
.legal-page h2{font-size:1.1rem; margin:34px 0 10px; font-weight:700}
.legal-page h2:first-of-type{margin-top:0}
.legal-page p{color:var(--muted); font-size:.92rem; line-height:1.75; margin-bottom:12px}
.legal-page ul{color:var(--muted); font-size:.92rem; line-height:1.75; margin:0 0 12px 20px}
.legal-page li{margin-bottom:6px}
.legal-page strong{color:var(--text)}
.legal-page a{color:var(--accent)}
.placeholder{background:rgba(245,158,11,.12); color:#fbbf24; padding:1px 6px; border-radius:4px; font-size:.85em}

/* Warenkorb-Drawer (geteilt von index.html, product.html) */
.overlay{
  position:fixed; inset:0; background:rgba(0,0,0,.5); opacity:0; pointer-events:none; transition:opacity .2s; z-index:90;
}
.overlay.open{opacity:1; pointer-events:auto}
.drawer{
  position:fixed; top:0; right:-420px; width:400px; max-width:92vw; height:100%;
  background:var(--bg2); border-left:1px solid var(--border); z-index:100;
  transition:right .25s ease; display:flex; flex-direction:column;
}
.drawer.open{right:0}
.drawer-header{padding:22px; border-bottom:1px solid var(--border); display:flex; justify-content:space-between; align-items:center}
.drawer-header h3{font-size:1.1rem}
.drawer-header button{background:none;border:none;color:var(--muted);font-size:1.4rem;cursor:pointer}
.drawer-items{flex:1; overflow-y:auto; padding:16px 22px; display:flex; flex-direction:column; gap:14px}
.drawer-item{display:flex; gap:12px; align-items:center; border-bottom:1px solid var(--border); padding-bottom:14px}
.drawer-item .name{font-size:.9rem; font-weight:600}
.drawer-item .meta{color:var(--muted); font-size:.78rem}
.qty{display:flex; align-items:center; gap:8px; margin-left:auto}
.qty button{width:26px;height:26px;border-radius:6px;border:1px solid var(--border);background:var(--card);color:var(--text);cursor:pointer}
.drawer-footer{padding:20px 22px; border-top:1px solid var(--border)}
.subtotal{display:flex; justify-content:space-between; margin-bottom:14px; font-weight:600}
.checkout-btn{
  width:100%; padding:14px; background:linear-gradient(90deg,var(--accent),var(--accent2));
  border:none; border-radius:12px; color:#fff; font-weight:700; font-size:.95rem; cursor:pointer;
}
.checkout-btn:disabled{opacity:.5; cursor:not-allowed}
.pay-methods{display:flex; flex-direction:column; gap:8px; margin-bottom:16px}
.pay-method{
  display:flex; align-items:center; gap:10px; padding:10px 12px; border:1px solid var(--border);
  border-radius:10px; cursor:pointer; font-size:.88rem; background:var(--card);
}
.pay-method:has(input:checked){border-color:var(--accent); background:rgba(77,123,255,.1)}
.pay-method input{accent-color:var(--accent)}
.empty-cart{color:var(--muted); text-align:center; padding:40px 0; font-size:.9rem}
