/* ============================================================
   Errordeals.de – Design System
   Dark Deal-Network Theme  ·  © 2026 Errordeals.de
   Keine externen Ressourcen (DSGVO-freundlich, kein Google Fonts)
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root{
  --bg:#070b09;
  --bg-2:#0a100d;
  --surface:#0d1512;
  --surface-2:#111b16;
  --surface-3:#16221c;
  --line:rgba(255,255,255,.08);
  --line-strong:rgba(255,255,255,.14);

  --green:#22c55e;
  --green-bright:#3ddc72;
  --green-deep:#16a34a;
  --green-dark:#0d3d24;
  --green-glow:rgba(34,197,94,.35);

  --orange:#f97316;
  --orange-bright:#ff8a3d;
  --red:#ef4444;
  --blue:#38bdf8;

  --text:#ffffff;
  --muted:#9aada2;
  --muted-2:#6f8177;

  --r-sm:8px; --r:12px; --r-md:16px; --r-lg:20px; --r-xl:26px;
  --shadow:0 18px 40px -18px rgba(0,0,0,.9);
  --shadow-green:0 10px 34px -12px rgba(34,197,94,.45);
  --maxw:1400px;
  --header-h:90px;

  --font:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",
         "Noto Sans",Arial,"Liberation Sans",sans-serif;
}

/* ---------- 2. Reset ---------- */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%; scroll-behavior:smooth; scroll-padding-top:110px;
  /* Dekorative Elemente im Kopfbereich (Lichtkegel, schraege Streifen) ragen
     bewusst ueber den Rand hinaus. "clip" verhindert das waagerechte Scrollen,
     das sie sonst auf dem Handy ausloesen - im Gegensatz zu "hidden" bleibt
     position:sticky in der Kopfzeile dabei funktionsfaehig. */
  overflow-x:clip}
body{
  margin:0; font-family:var(--font); background:var(--bg); color:var(--text);
  overflow-x:clip;
  font-size:16px; line-height:1.6; -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%; display:block; height:auto}
a{color:inherit; text-decoration:none}
button{font:inherit; color:inherit; background:none; border:0; cursor:pointer}
input,select,textarea{font:inherit; color:inherit}
h1,h2,h3,h4{margin:0; line-height:1.15; letter-spacing:-.02em; font-weight:800}
p{margin:0}
ul{margin:0; padding:0; list-style:none}
:focus-visible{outline:2px solid var(--green); outline-offset:3px; border-radius:6px}
::selection{background:var(--green); color:#04120a}

/* Hintergrund-Leuchten */
body::before{
  content:""; position:fixed; inset:0; pointer-events:none; z-index:0;
  background:
    radial-gradient(900px 520px at 78% -6%, rgba(34,197,94,.14), transparent 62%),
    radial-gradient(700px 420px at 8% 4%, rgba(249,115,22,.09), transparent 60%),
    radial-gradient(1000px 700px at 50% 108%, rgba(34,197,94,.07), transparent 60%);
}
body>*{position:relative; z-index:1}

/* ---------- 3. Layout ---------- */
.wrap{width:min(100% - 40px, var(--maxw)); margin-inline:auto}
.section{padding:64px 0}
.section-sm{padding:40px 0}
.stack{display:grid; gap:16px}

.kicker{
  display:inline-block; font-size:12px; font-weight:800; letter-spacing:.16em;
  text-transform:uppercase; color:var(--green); margin-bottom:14px;
}
.kicker-muted{color:var(--muted-2)}
.section-head{display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; margin-bottom:22px}
.section-head h2{font-size:clamp(20px,2.4vw,26px); display:flex; align-items:center; gap:10px}
.lead{color:var(--muted); font-size:clamp(15px,1.5vw,18px); max-width:62ch}

/* ---------- 4. Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 24px; border-radius:var(--r); font-weight:700; font-size:15px;
  background:linear-gradient(180deg,var(--green-bright),var(--green-deep));
  color:#04150b; box-shadow:var(--shadow-green);
  transition:transform .16s ease, box-shadow .16s ease, filter .16s ease;
  border:1px solid rgba(255,255,255,.14);
}
.btn:hover{transform:translateY(-2px); box-shadow:0 16px 40px -12px rgba(34,197,94,.6)}
.btn:active{transform:translateY(0)}
.btn.secondary{
  background:var(--surface-2); color:var(--text); border:1px solid var(--line-strong); box-shadow:none;
}
.btn.secondary:hover{background:var(--surface-3); box-shadow:0 12px 30px -16px rgba(0,0,0,.9)}
.btn.orange{background:linear-gradient(180deg,var(--orange-bright),#e5610b); color:#1a0a00;
  box-shadow:0 10px 30px -12px rgba(249,115,22,.55)}
.btn.ghost{background:transparent; border:1px solid var(--line-strong); color:var(--text); box-shadow:none}
.btn.wa{background:linear-gradient(180deg,#39d353,#1f9c3a); color:#04150b}
.btn.tg{background:linear-gradient(180deg,#4fb6f0,#1d84c8); color:#021420; box-shadow:0 10px 30px -12px rgba(56,189,248,.5)}
.btn.sm{padding:10px 16px; font-size:14px}
.btn.block{width:100%}
.btn .ico{width:18px; height:18px; flex:none}

.linkarrow{
  display:inline-flex; align-items:center; gap:8px; color:var(--green); white-space:nowrap;
  font-weight:700; font-size:14px; transition:gap .16s ease, color .16s ease;
}
.linkarrow svg{width:17px; height:17px; flex:none}
.linkarrow:hover{gap:12px; color:var(--green-bright)}

/* ---------- 5. Header ---------- */
.site-header{
  position:sticky; top:0; z-index:60;
  background:rgba(7,11,9,.82); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  width:min(100% - 40px, var(--maxw)); margin-inline:auto;
  min-height:var(--header-h); display:flex; align-items:center; gap:22px;
}
.brand{display:flex; align-items:center; flex:none}
.brand img{height:62px; width:auto}

.mainnav{display:flex; align-items:center; gap:6px; margin-inline:auto}
.mainnav>*{position:relative}
.navlink{
  display:inline-flex; align-items:center; gap:6px; padding:10px 14px; border-radius:10px;
  font-size:15px; font-weight:600; color:#dfe9e3; transition:background .15s, color .15s;
}
.navlink:hover,.navlink[aria-expanded="true"]{background:var(--surface-2); color:#fff}
.navlink.active{color:var(--green)}
.navlink .chev{width:14px;height:14px;opacity:.7; transition:transform .18s}
.navlink[aria-expanded="true"] .chev{transform:rotate(180deg)}

.dropdown{
  position:absolute; top:calc(100% + 10px); left:0; min-width:250px; padding:8px;
  background:var(--surface); border:1px solid var(--line-strong); border-radius:var(--r-md);
  box-shadow:var(--shadow); display:none;
}
.dropdown.open{display:block; animation:pop .16s ease}
@keyframes pop{from{opacity:0; transform:translateY(-6px)}to{opacity:1; transform:none}}
.dropdown a{display:flex; gap:12px; align-items:flex-start; padding:10px 12px; border-radius:10px; transition:background .14s}
.dropdown a:hover{background:var(--surface-3)}
.dropdown b{display:block; font-size:14px}
.dropdown span{display:block; font-size:12px; color:var(--muted)}

.header-actions{display:flex; align-items:center; gap:10px; flex:none; margin-left:auto}
.iconbtn{
  width:42px; height:42px; display:grid; place-items:center; border-radius:11px;
  border:1px solid var(--line); background:var(--surface); position:relative;
  transition:background .15s, border-color .15s;
}
.iconbtn:hover{background:var(--surface-3); border-color:var(--line-strong)}
.iconbtn svg{width:19px; height:19px; stroke:#cfdcd5}
.dot{
  position:absolute; top:8px; right:9px; width:8px; height:8px; border-radius:50%;
  background:var(--orange); box-shadow:0 0 0 2px var(--surface);
}
.burger{display:none}

/* Mobile Nav */
.mobilenav{
  display:none; border-top:1px solid var(--line); background:var(--bg-2);
  padding:12px 20px 20px;
}
.mobilenav.open{display:block}
.mobilenav a{display:block; padding:12px 4px; border-bottom:1px solid var(--line); font-weight:600}
.mobilenav a:last-of-type{border-bottom:0}
.mobilenav .btn{margin-top:14px}

/* ---------- 6. Hero ---------- */
.hero{padding:56px 0 40px}
.hero-grid{display:grid; grid-template-columns:1.05fr .95fr; gap:40px; align-items:center}
.hero h1{font-size:clamp(34px,5.2vw,62px); font-weight:900; letter-spacing:-.035em}
.hero h1 .g{color:var(--green)}
.hero .lead{margin-top:20px}
.hero-pills{display:flex; flex-wrap:wrap; gap:10px; margin-top:26px}
.pill{
  display:inline-flex; align-items:center; gap:9px; padding:10px 16px; border-radius:999px;
  background:var(--surface); border:1px solid var(--line); font-size:13.5px; color:#d5e2db;
}
.pill svg{width:16px; height:16px; stroke:var(--green); flex:none}
.pill b{color:#fff}
.hero-cta{display:flex; flex-wrap:wrap; gap:14px; margin-top:28px}

/* Hero-Visual */
.hero-visual{position:relative; min-height:470px; display:grid; place-items:center}
.hero-visual .mascot{
  width:min(96%,320px); filter:drop-shadow(0 24px 46px rgba(34,197,94,.32));
  animation:float 6s ease-in-out infinite;
}
.hero-visual-solo .mascot{width:min(96%,380px)}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
.orb{
  position:absolute; display:grid; place-items:center; border-radius:50%;
  font-weight:900; box-shadow:0 12px 30px -10px rgba(0,0,0,.8);
}
.orb svg{width:46%; height:46%}
.orb.percent{width:64px; height:64px; left:2%; top:8%; background:linear-gradient(160deg,#ff8a3d,#e5610b); color:#1a0a00; font-size:26px}
.orb.cart{width:56px; height:56px; right:6px; top:-6px; background:linear-gradient(160deg,#3ddc72,#16a34a); color:#04150b; z-index:3}
.orb.bolt{width:56px; height:56px; left:4%; right:auto; top:66%; background:linear-gradient(160deg,#3ddc72,#16a34a); color:#04150b}
.orb.float-a{animation:float 5s ease-in-out infinite}
.orb.float-b{animation:float 7s ease-in-out .6s infinite}

.floatcard{
  position:absolute; right:0; top:9%; width:282px;
  background:linear-gradient(180deg,#101a15,#0b120e); border:1px solid var(--line-strong);
  border-radius:var(--r-lg); padding:14px; box-shadow:var(--shadow);
}
.floatcard .thumb{
  height:104px; border-radius:var(--r); background:radial-gradient(120% 100% at 50% 40%, #1b2a22, #0a100d);
  display:grid; place-items:center; overflow:hidden; margin-bottom:12px;
}
.floatcard .thumb img{max-height:96px; width:auto}
.floatcard h3{font-size:14px}
.floatcard .sub{font-size:12px; color:var(--muted); margin-top:2px}
.floatcard .rating{display:flex; align-items:center; gap:6px; font-size:11.5px; color:var(--muted); margin:8px 0}
.stars{color:var(--orange); letter-spacing:1px; font-size:12px}
.price-row{display:flex; align-items:baseline; gap:8px; flex-wrap:wrap; margin-bottom:12px}
.price{font-size:19px; font-weight:900; color:var(--green)}
.price-old{font-size:12.5px; color:var(--muted-2); text-decoration:line-through}
.price-off{font-size:12.5px; font-weight:800; color:var(--orange)}

/* ---------- 7. Badges ---------- */
.badge{
  display:inline-flex; align-items:center; gap:5px; padding:5px 11px; border-radius:8px;
  font-size:10.5px; font-weight:900; letter-spacing:.07em; text-transform:uppercase;
  border:1px solid rgba(255,255,255,.16);
}
.badge.hot{background:linear-gradient(180deg,#ff8a3d,#e5610b); color:#1a0a00}
.badge.tiefpreis{background:linear-gradient(180deg,#3ddc72,#16a34a); color:#04150b}
.badge.preisfehler{background:linear-gradient(180deg,#f0574f,#c72d25); color:#fff}
.badge.neu{background:linear-gradient(180deg,#5cc6f5,#1d84c8); color:#021420}
.badge.gutschein{background:linear-gradient(180deg,#c084fc,#8b34e8); color:#12021f}
.badge.ghost{background:var(--surface-3); color:#cfdcd5}

/* ---------- 8. Panels & Cards ---------- */
.panel{
  background:linear-gradient(180deg,rgba(17,27,22,.9),rgba(10,16,13,.9));
  border:1px solid var(--line); border-radius:var(--r-xl); padding:26px;
  box-shadow:var(--shadow);
}
.card{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg);
  padding:20px; transition:border-color .18s, transform .18s, background .18s;
}
.card:hover{border-color:rgba(34,197,94,.4); transform:translateY(-3px)}

/* Top-Deals Slider */
.deals-rail-wrap{position:relative}
.deals-rail{
  display:grid; grid-auto-flow:column; grid-auto-columns:minmax(228px,1fr);
  gap:16px; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:6px;
  scrollbar-width:thin; scrollbar-color:var(--surface-3) transparent;
}
.deals-rail::-webkit-scrollbar{height:6px}
.deals-rail::-webkit-scrollbar-thumb{background:var(--surface-3); border-radius:99px}
.deals-rail>*{scroll-snap-align:start}
.rail-nav{
  position:absolute; top:50%; right:-14px; transform:translateY(-50%); z-index:5;
  width:44px; height:44px; border-radius:50%; display:grid; place-items:center;
  background:var(--surface-2); border:1px solid var(--line-strong); box-shadow:var(--shadow);
}
.rail-nav.prev{right:auto; left:-14px}
.rail-nav svg{width:18px; height:18px; stroke:#fff}
.rail-nav:hover{background:var(--surface-3)}

/* Deal-Karte – Titel oben, darunter Bild und Preise */
.deal{
  position:relative;
  display:flex; flex-direction:column; background:var(--surface); border:1px solid var(--line);
  border-radius:var(--r-md); overflow:hidden; transition:border-color .18s, transform .18s, box-shadow .18s;
}
.deal:hover{border-color:rgba(34,197,94,.45); transform:translateY(-3px); box-shadow:0 18px 36px -20px rgba(34,197,94,.5)}

.deal-head{padding:13px 46px 10px 14px}
.deal-source{
  display:flex; align-items:center; gap:5px; font-size:10.5px; font-weight:700;
  color:var(--muted); letter-spacing:.02em; white-space:nowrap; overflow:hidden;
  text-overflow:ellipsis; min-width:0; margin-bottom:5px;
}
.deal-source .dotmark{width:7px; height:7px; border-radius:50%; background:var(--green); flex:none}
.deal-source.rabatt .dotmark{background:#3ddc72}
.deal-source.fehler .dotmark{background:#ef4444}
.deal-source.schnaepp .dotmark{background:#38bdf8}
.deal-source.angebote .dotmark{background:#f97316}
.deal-source a{color:inherit}
.deal-source a:hover{color:var(--green)}
.deal-title{
  font-size:14.5px; font-weight:700; line-height:1.32;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}

.deal-main{display:flex; flex-direction:column; flex:1; min-width:0}

.deal-media{
  position:relative; height:150px; display:grid; place-items:center; padding:12px;
  margin:0 14px; border-radius:var(--r); overflow:hidden;
  background:radial-gradient(120% 110% at 50% 30%, #1a2a21, #0a100d);
}
.deal-media img{max-height:126px; width:auto; object-fit:contain}
.deal-media .badge{position:absolute; top:9px; left:9px}
.deal-off{
  position:absolute; top:9px; right:9px; padding:4px 9px; border-radius:8px;
  background:rgba(7,11,9,.82); border:1px solid rgba(34,197,94,.45);
  font-size:11.5px; font-weight:900; color:var(--green-bright); backdrop-filter:blur(6px);
}
.deal-media.noimg::after{content:"Kein Bild"; font-size:11.5px; color:var(--muted-2); letter-spacing:.05em}

.deal-fav{
  position:absolute; top:10px; right:10px; z-index:2; width:32px; height:32px; border-radius:9px;
  display:grid; place-items:center; background:rgba(7,11,9,.66); border:1px solid var(--line);
  backdrop-filter:blur(6px);
}
.deal-fav svg{width:16px; height:16px; stroke:#cfdcd5; fill:none; transition:.15s}
.deal-fav.on svg{stroke:var(--orange); fill:var(--orange)}

.deal-body{padding:12px 14px 14px; display:flex; flex-direction:column; flex:1; gap:3px}
.deal-info{display:flex; flex-direction:column; gap:3px; flex:1; min-width:0}
.deal-cta{display:none; flex:none; white-space:nowrap}
.deal-prices{display:flex; align-items:baseline; gap:8px; flex-wrap:wrap}
.deal-prices .price{font-size:18px}
.deal-save{font-size:12px; color:var(--green); font-weight:700}
.deal-meta{
  display:flex; align-items:center; justify-content:space-between; gap:8px;
  margin-top:auto; padding-top:11px; font-size:11.5px; color:var(--muted-2);
}
.deal-meta span{display:inline-flex; align-items:center; gap:5px}
.deal-meta svg{width:13px; height:13px; stroke:currentColor; fill:none}
.deal-kat{color:var(--muted-2)}
.deal-countdown{color:var(--orange); font-weight:700}

/* Trust-Leiste */
.trustbar{
  display:grid; grid-template-columns:repeat(5,1fr); gap:12px;
  border-top:1px solid var(--line); margin-top:22px; padding-top:18px;
}
.trustbar div{display:flex; align-items:center; gap:9px; justify-content:center; font-size:13.5px; color:#cbd8d1}
.trustbar svg{width:18px; height:18px; flex:none}

/* Netzwerk-Karten */
.netgrid{display:grid; grid-template-columns:repeat(4,1fr); gap:16px}
.netcard{display:flex; flex-direction:column; gap:10px}
.netcard .neticon{
  width:46px; height:46px; border-radius:13px; display:grid; place-items:center;
  background:var(--surface-3); border:1px solid var(--line);
}
.netcard .neticon svg{width:23px; height:23px}
.netcard h3{font-size:13.5px; letter-spacing:.06em; text-transform:uppercase}
.netcard p{font-size:13.5px; color:var(--muted); flex:1}
.netcard.rabatt .neticon{background:rgba(34,197,94,.12); border-color:rgba(34,197,94,.3)}
.netcard.fehler .neticon{background:rgba(249,115,22,.12); border-color:rgba(249,115,22,.3)}
.netcard.schnaepp .neticon{background:rgba(56,189,248,.1); border-color:rgba(56,189,248,.28)}
.netcard.angebote .neticon{background:rgba(249,115,22,.1); border-color:rgba(249,115,22,.28)}

/* App / Community / Stats Zeile */
.bottomgrid{display:grid; grid-template-columns:1.7fr .8fr .8fr .85fr; gap:16px; align-items:stretch}
.appcard{display:grid; grid-template-columns:1fr auto; gap:20px; align-items:center; overflow:hidden}
.appcard h2{font-size:clamp(20px,2.2vw,27px)}
.appcard h2 .g{color:var(--green)}
.appcard p{font-size:13.5px; color:var(--muted); margin-top:10px; max-width:44ch}
.appcard .checks{display:grid; gap:9px; margin:16px 0 18px}
.appcard .checks li{display:flex; align-items:center; gap:9px; font-size:13.5px; color:#cbd8d1}
.appcard .checks svg{width:17px; height:17px; stroke:var(--green); flex:none}
.appcard-side{display:flex; align-items:center; gap:16px}
.appcard-side img.phone{width:118px}
.qr{
  width:96px; padding:8px; background:#fff; border-radius:12px; flex:none;
}
.appcard-foot{display:flex; align-items:center; gap:14px; flex-wrap:wrap}

.chancard{display:flex; flex-direction:column; gap:12px}
.chancard .chanhead{display:flex; align-items:center; gap:11px}
.chanlogo{width:40px; height:40px; border-radius:12px; display:grid; place-items:center; flex:none}
.chanlogo.wa{background:linear-gradient(160deg,#39d353,#1f9c3a)}
.chanlogo.tg{background:linear-gradient(160deg,#4fb6f0,#1d84c8)}
.chanlogo svg{width:22px; height:22px; fill:#fff}
.chancard h3{font-size:15px}
.chancard p{font-size:13px; color:var(--muted); flex:1}

.statcard ul{display:grid; gap:14px}
.statcard li{display:flex; align-items:center; gap:12px; font-size:13.5px; color:var(--muted)}
.statcard li b{color:#fff; font-size:15px; min-width:64px; font-weight:800}
.statcard .sicon{width:26px; height:26px; display:grid; place-items:center; flex:none}
.statcard .sicon svg{width:20px; height:20px}

/* ---------- 9. Deal-Feed Seite ---------- */
.feedhero{padding:44px 0 26px}
.feedhero h1{font-size:clamp(28px,4.4vw,48px); font-weight:900}
.feedhero h1 .g{color:var(--green)}

.feedstats{display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin-top:26px}
.feedstat{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--r-md); padding:16px 18px;
}
.feedstat b{display:block; font-size:23px; font-weight:900; color:var(--green)}
.feedstat span{font-size:12.5px; color:var(--muted)}

.filterbar{
  position:sticky; top:var(--header-h); z-index:40; margin:22px 0 0;
  background:rgba(10,16,13,.92); backdrop-filter:blur(12px);
  border:1px solid var(--line); border-radius:var(--r-lg); padding:14px;
}
.filterrow{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
.searchbox{position:relative; flex:1; min-width:220px}
.searchbox svg{position:absolute; left:14px; top:50%; transform:translateY(-50%); width:17px; height:17px; stroke:var(--muted-2)}
.searchbox input{
  width:100%; padding:12px 14px 12px 42px; border-radius:11px;
  background:var(--surface-2); border:1px solid var(--line); color:#fff; font-size:14.5px;
}
.searchbox input::placeholder{color:var(--muted-2)}
.searchbox input:focus{border-color:rgba(34,197,94,.55); outline:none}
.select{
  padding:12px 34px 12px 14px; border-radius:11px; background:var(--surface-2) ;
  border:1px solid var(--line); font-size:14px; color:#dfe9e3; cursor:pointer;
  appearance:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239aada2' stroke-width='2.4' stroke-linecap='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat:no-repeat; background-position:right 12px center; background-size:15px;
}
.select:focus{border-color:rgba(34,197,94,.55); outline:none}

.chips{display:flex; gap:8px; flex-wrap:wrap; margin-top:12px}
.chip{
  padding:8px 15px; border-radius:999px; font-size:13px; font-weight:600;
  background:var(--surface-2); border:1px solid var(--line); color:#cbd8d1;
  transition:background .15s, border-color .15s, color .15s; white-space:nowrap;
}
.chip:hover{border-color:var(--line-strong); color:#fff}
.chip[aria-pressed="true"]{
  background:linear-gradient(180deg,var(--green-bright),var(--green-deep)); color:#04150b;
  border-color:rgba(255,255,255,.2); font-weight:800;
}
.chip .cnt{opacity:.6; font-weight:600; margin-left:4px; font-size:11.5px}

.sourcechips .chip[aria-pressed="true"]{background:var(--surface-3); color:#fff; border-color:rgba(34,197,94,.55)}
.sourcechips .chip .dotmark{
  display:inline-block; width:7px; height:7px; border-radius:50%; margin-right:7px; vertical-align:middle;
}

.feedmeta{display:flex; justify-content:space-between; align-items:center; gap:14px; flex-wrap:wrap; margin:22px 0 14px}
.feedmeta .count{font-size:14px; color:var(--muted)}
.feedmeta .count b{color:#fff}
.viewtoggle{display:flex; gap:4px; background:var(--surface-2); border:1px solid var(--line); border-radius:11px; padding:4px}
.viewtoggle button{padding:7px 11px; border-radius:8px; display:grid; place-items:center}
.viewtoggle button svg{width:17px; height:17px; stroke:var(--muted)}
.viewtoggle button[aria-pressed="true"]{background:var(--surface-3)}
.viewtoggle button[aria-pressed="true"] svg{stroke:var(--green)}

.feedgrid{display:grid; grid-template-columns:repeat(auto-fill,minmax(232px,1fr)); gap:16px}
.feedgrid.list{grid-template-columns:1fr}
.feedgrid.list .deal-head{padding:15px 52px 12px 18px}
.feedgrid.list .deal-title{font-size:17px; -webkit-line-clamp:2}
.feedgrid.list .deal-source{font-size:11.5px}
.feedgrid.list .deal-main{flex-direction:row; align-items:stretch}
.feedgrid.list .deal-media{
  width:184px; height:116px; min-height:0; flex:none; margin:0 0 14px 18px;
}
.feedgrid.list .deal-media img{max-height:96px}
.feedgrid.list .deal-body{
  padding:0 18px 14px; flex-direction:row; align-items:center; gap:24px;
}
.feedgrid.list .deal-prices .price{font-size:23px}
.feedgrid.list .deal-save{font-size:13px}
.feedgrid.list .deal-meta{margin-top:8px; padding-top:0; justify-content:flex-start; gap:18px}
.feedgrid.list .deal-cta{display:inline-flex; margin-left:auto; padding:12px 22px; font-size:14.5px}

.empty{
  grid-column:1/-1; text-align:center; padding:60px 20px; color:var(--muted);
  border:1px dashed var(--line-strong); border-radius:var(--r-lg);
}
.empty img{width:120px; margin:0 auto 18px; opacity:.85}
.loadmore{display:grid; place-items:center; margin-top:26px}

.skeleton{background:var(--surface); border:1px solid var(--line); border-radius:var(--r-md); height:265px; overflow:hidden; position:relative}
.skeleton::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.05),transparent);
  animation:shimmer 1.3s infinite;
}
@keyframes shimmer{from{transform:translateX(-100%)}to{transform:translateX(100%)}}

/* ---------- 10. Inhaltsseiten ---------- */
.pagehero{padding:52px 0 30px}
.pagehero h1{font-size:clamp(28px,4.2vw,46px); font-weight:900}
.pagehero h1 .g{color:var(--green)}
.pagehero .lead{margin-top:16px}

.prose{max-width:78ch}
.prose h2{font-size:clamp(19px,2.2vw,25px); margin:34px 0 12px}
.prose h3{font-size:17px; margin:24px 0 8px}
.prose p{color:#c3d1ca; margin-bottom:14px}
.prose ul{margin:0 0 16px; padding-left:0; display:grid; gap:9px}
.prose ul li{position:relative; padding-left:24px; color:#c3d1ca}
.prose ul li::before{
  content:""; position:absolute; left:4px; top:10px; width:7px; height:7px;
  border-radius:50%; background:var(--green);
}
.prose a{color:var(--green); text-decoration:underline; text-underline-offset:3px}
.prose a:hover{color:var(--green-bright)}
.prose strong{color:#fff}
.prose table{width:100%; border-collapse:collapse; margin:16px 0; font-size:14px}
.prose th,.prose td{padding:11px 12px; border-bottom:1px solid var(--line); text-align:left; color:#c3d1ca}
.prose th{color:#fff; font-weight:700}

.grid-2{display:grid; grid-template-columns:repeat(2,1fr); gap:16px}
.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
.grid-4{display:grid; grid-template-columns:repeat(4,1fr); gap:16px}

.faq details{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--r-md);
  padding:0; margin-bottom:10px; overflow:hidden;
}
.faq summary{
  padding:17px 20px; font-weight:700; cursor:pointer; list-style:none;
  display:flex; justify-content:space-between; gap:14px; align-items:center; font-size:15px;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+"; color:var(--green); font-size:21px; font-weight:400; line-height:1}
.faq details[open] summary::after{content:"–"}
.faq details[open] summary{border-bottom:1px solid var(--line)}
.faq .answer{padding:16px 20px 20px; color:#c3d1ca; font-size:14.5px}
.faq .answer p+p{margin-top:10px}

.form{display:grid; gap:14px; max-width:620px}
.form label{display:grid; gap:7px; font-size:14px; font-weight:600}
.form input,.form textarea,.form select{
  padding:13px 15px; border-radius:11px; background:var(--surface-2);
  border:1px solid var(--line); color:#fff; font-size:15px; width:100%;
}
.form input:focus,.form textarea:focus,.form select:focus{border-color:rgba(34,197,94,.55); outline:none}
.form textarea{min-height:150px; resize:vertical}
.form .hint{font-size:12.5px; color:var(--muted-2); font-weight:400}
.form button[disabled]{opacity:.6; cursor:progress}

/* Honigtopf gegen Bots – fuer Menschen und Screenreader unsichtbar,
   aber nicht display:none, sonst fuellen ihn manche Bots trotzdem nicht. */
.hp{position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden}

/* Rueckmeldung des Einreich-Formulars */
.formstatus{
  margin-bottom:16px; padding:13px 15px; border-radius:11px; font-size:14px; line-height:1.5;
  border:1px solid var(--line); background:var(--surface-2); color:var(--text);
}
.formstatus[hidden]{display:none}
.formstatus a{color:inherit; text-decoration:underline}
.formstatus.ok{border-color:rgba(34,197,94,.5); background:rgba(34,197,94,.1)}
.formstatus.err{border-color:rgba(239,68,68,.5); background:rgba(239,68,68,.1)}
.formstatus.info{border-color:rgba(56,189,248,.4); background:rgba(56,189,248,.08)}

.callout{
  border-left:3px solid var(--green); background:var(--surface); border-radius:0 var(--r-md) var(--r-md) 0;
  padding:16px 20px; margin:20px 0; font-size:14.5px; color:#c3d1ca;
}
.callout.warn{border-left-color:var(--orange)}

.banner-strip{
  border-radius:var(--r-xl); overflow:hidden; border:1px solid var(--line); margin:10px 0;
}
.banner-strip img{width:100%}

/* ---------- 11. Footer ---------- */
.site-footer{
  margin-top:56px; border-top:1px solid var(--line);
  background:linear-gradient(180deg,rgba(10,16,13,.4),rgba(7,11,9,.9));
  padding:46px 0 26px;
}
.footer-grid{display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:32px}
.footer-grid h3{font-size:12.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--muted-2); margin-bottom:14px}
.footer-grid a{display:block; padding:5px 0; font-size:14px; color:#c3d1ca; transition:color .14s}
.footer-grid a:hover{color:var(--green)}
.footer-brand img{height:52px; width:auto; margin-bottom:14px}
.footer-brand p{font-size:14px; color:var(--muted); max-width:36ch}
.social{display:flex; gap:9px; margin-top:16px}
.social a{
  width:38px; height:38px; border-radius:11px; display:grid; place-items:center;
  background:var(--surface); border:1px solid var(--line); padding:0;
}
.social a:hover{border-color:rgba(34,197,94,.45)}
.social svg{width:18px; height:18px; fill:#cfdcd5}
.social a:hover svg{fill:var(--green)}
.footer-bottom{
  margin-top:34px; padding-top:20px; border-top:1px solid var(--line);
  display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap;
  font-size:13px; color:var(--muted-2);
}

/* ---------- 12. PWA Install ---------- */
.installbar{
  position:fixed; left:50%; transform:translateX(-50%) translateY(150%); bottom:18px; z-index:80;
  width:min(100% - 32px, 560px); display:flex; align-items:center; gap:14px;
  background:linear-gradient(180deg,#111b16,#0a100d); border:1px solid rgba(34,197,94,.4);
  border-radius:var(--r-lg); padding:14px 16px; box-shadow:0 24px 50px -18px rgba(0,0,0,.95);
  transition:transform .35s cubic-bezier(.2,.9,.3,1);
}
.installbar.show{transform:translateX(-50%) translateY(0)}
.installbar img{width:44px; height:44px; border-radius:12px; flex:none}
.installbar .txt{flex:1; min-width:0}
.installbar b{display:block; font-size:14.5px}
.installbar span{display:block; font-size:12.5px; color:var(--muted)}
.installbar .close{width:32px; height:32px; border-radius:9px; display:grid; place-items:center; flex:none}
.installbar .close svg{width:16px; height:16px; stroke:var(--muted)}

.toast{
  position:fixed; left:50%; bottom:24px; transform:translateX(-50%) translateY(120%);
  background:var(--surface-3); border:1px solid var(--line-strong); color:#fff;
  padding:12px 20px; border-radius:12px; font-size:14px; z-index:90;
  transition:transform .3s ease; box-shadow:var(--shadow);
}
.toast.show{transform:translateX(-50%) translateY(0)}

.offline-note{
  display:none; background:rgba(249,115,22,.12); border:1px solid rgba(249,115,22,.35);
  color:#ffc79a; border-radius:12px; padding:11px 16px; font-size:13.5px; margin-bottom:16px;
}
body.is-offline .offline-note{display:block}

/* ---------- 13. Responsive ---------- */
@media (max-width:1180px){
  .bottomgrid{grid-template-columns:1fr 1fr; }
  .appcard{grid-column:1/-1}
  .netgrid{grid-template-columns:repeat(2,1fr)}
  .trustbar{grid-template-columns:repeat(3,1fr); gap:14px}
}
@media (max-width:980px){
  :root{--header-h:74px}
  .mainnav{display:none}
  .burger{display:grid}
  .brand img{height:46px}
  .deal-submit-btn{display:none}
  .header-inner{gap:12px}
  .hero-grid{grid-template-columns:1fr; gap:26px}
  .hero-visual{min-height:340px; order:-1}
  .hero-visual .mascot{width:min(85%,240px)}
  .floatcard{width:186px; right:0}
  .feedstats{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr; gap:26px}
  .grid-3,.grid-4{grid-template-columns:repeat(2,1fr)}
  .appcard{grid-template-columns:1fr}
  .appcard-side{justify-content:center}
  .section{padding:46px 0}
}
@media (max-width:680px){
  .wrap,.header-inner{width:min(100% - 28px, var(--maxw))}
  .brand img{height:40px}
  .header-actions{gap:7px}
  .iconbtn{width:38px; height:38px}
  .panel{padding:18px; border-radius:var(--r-lg)}
  .hero{padding:34px 0 24px}
  .hero-cta .btn{flex:1; justify-content:center}
  .bottomgrid{grid-template-columns:1fr}
  .netgrid{grid-template-columns:1fr}
  .trustbar{grid-template-columns:1fr 1fr; text-align:left}
  .trustbar div{justify-content:flex-start; font-size:12.5px}
  .grid-2,.grid-3,.grid-4{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .feedgrid{grid-template-columns:repeat(auto-fill,minmax(155px,1fr)); gap:12px}
  .feedgrid.list .deal{flex-direction:column}
  .feedgrid.list .deal-media{width:100%; min-height:auto; height:150px}
  .deal-media{height:112px}
  .deal-media img{max-height:94px}
  .rail-nav{display:none}
  .filterbar{position:static}
  .appcard-side img.phone{width:96px}
  .qr{width:84px}
  .hero-visual{display:block; text-align:center; min-height:0}
  .hero-visual .mascot{margin:0 auto}
  .orb{display:none}
}

@media (prefers-reduced-motion:reduce){
  *{animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important}
  html{scroll-behavior:auto}
}

/* Print */
@media print{
  .site-header,.site-footer,.installbar,.filterbar,.rail-nav{display:none !important}
  body{background:#fff; color:#000}
}

/* ---------- 14. Rechtstexte (Impressum / Datenschutz) ---------- */
.legal, .legal-document{max-width:100%; }
.legal-toc{
  display:flex; flex-wrap:wrap; gap:8px 10px; align-items:center;
  background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg);
  padding:16px 20px; margin-bottom:26px;
}
.legal-toc strong{
  width:100%; font-size:11.5px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--muted-2); font-weight:800; margin-bottom:4px;
}
.legal-toc a{
  padding:7px 13px; border-radius:999px; background:var(--surface-2);
  border:1px solid var(--line); font-size:13px; color:#cbd8d1; transition:.15s;
}
.legal-toc a:hover{border-color:rgba(34,197,94,.5); color:var(--green)}

.legal-section{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg);
  padding:24px 26px; margin-bottom:14px; scroll-margin-top:120px;
}
.legal-section.legal-highlight{
  border-color:rgba(34,197,94,.34);
  background:linear-gradient(180deg,rgba(34,197,94,.07),rgba(13,21,18,.9));
}
.legal-section.objection{border-left:3px solid var(--orange)}
.legal-label{
  display:inline-block; font-size:11px; letter-spacing:.14em; text-transform:uppercase;
  font-weight:800; color:var(--green); margin-bottom:8px;
}
.legal-section h2{font-size:clamp(17px,2vw,21px); margin-bottom:12px}
.legal-section h3{font-size:16px; margin:18px 0 8px}
.legal-section p{color:#c3d1ca; font-size:14.5px; margin-bottom:12px}
.legal-section p:last-child{margin-bottom:0}
.legal-section ul{display:grid; gap:8px; margin:0 0 14px}
.legal-section li{position:relative; padding-left:22px; color:#c3d1ca; font-size:14.5px}
.legal-section li::before{
  content:""; position:absolute; left:3px; top:9px; width:6px; height:6px;
  border-radius:50%; background:var(--green);
}
.legal-section a{color:var(--green); text-decoration:underline; text-underline-offset:3px}
.legal-section a:hover{color:var(--green-bright)}
.legal-section address{font-style:normal; color:#fff; line-height:1.75; margin-bottom:12px}
.legal-section strong{color:#fff}
.legal-section table{width:100%; border-collapse:collapse; font-size:14px; margin:12px 0}
.legal-section th,.legal-section td{padding:10px 12px; border-bottom:1px solid var(--line); text-align:left; color:#c3d1ca}
.legal-section th{color:#fff}

.legal-updated{
  margin-top:20px; font-size:13px; color:var(--muted-2);
  border-top:1px solid var(--line); padding-top:16px;
}
.legal-link-list{display:flex; flex-wrap:wrap; gap:9px; margin-top:10px}
.legal-link-list a{
  padding:8px 14px; border-radius:10px; background:var(--surface-2);
  border:1px solid var(--line); font-size:13.5px; text-decoration:none;
}
.legal-link-list.compact a{padding:6px 12px; font-size:12.5px}

.privacy-summary{
  background:linear-gradient(180deg,rgba(34,197,94,.08),rgba(13,21,18,.9));
  border:1px solid rgba(34,197,94,.3); border-radius:var(--r-xl);
  padding:24px 26px; margin-bottom:22px;
}
.privacy-summary h2{font-size:clamp(18px,2.2vw,23px); margin-bottom:16px}
.privacy-summary-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:14px}
.privacy-summary-grid div{
  background:rgba(7,11,9,.5); border:1px solid var(--line); border-radius:var(--r-md); padding:14px 16px;
}
.privacy-summary-grid strong{display:block; color:#fff; font-size:14.5px; margin-bottom:5px}
.privacy-summary-grid span{color:var(--muted); font-size:13px}

@media (max-width:680px){
  .legal-section{padding:18px 18px; border-radius:var(--r-md)}
  .privacy-summary{padding:18px}
  .privacy-summary-grid{grid-template-columns:1fr}
  .legal-toc{padding:14px 16px}
}

/* ---------- 15. Deal-Feed: Live-Elemente ---------- */
.crumbs{display:flex; align-items:center; gap:8px; flex-wrap:wrap; font-size:13px; color:var(--muted-2); margin-bottom:18px}
.crumbs a{color:var(--muted); transition:color .14s}
.crumbs a:hover{color:var(--green)}
.crumbs .sep{opacity:.45}
.crumbs [aria-current]{color:#cbd8d1}

.livedot{
  display:inline-block; width:8px; height:8px; border-radius:50%; background:var(--green);
  margin-right:9px; vertical-align:baseline; box-shadow:0 0 0 0 rgba(34,197,94,.6);
  animation:pulse 2.2s infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(34,197,94,.55)}
  70%{box-shadow:0 0 0 9px rgba(34,197,94,0)}
  100%{box-shadow:0 0 0 0 rgba(34,197,94,0)}
}

/* Statistik-Kacheln */
.feedstats{display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin:0 0 22px}
.feedstat{
  position:relative; background:var(--surface); border:1px solid var(--line);
  border-radius:var(--r-md); padding:16px 18px 16px 58px;
}
.feedstat .fs-ico{
  position:absolute; left:16px; top:16px; width:30px; height:30px; display:grid; place-items:center;
  border-radius:9px; background:var(--surface-3);
}
.feedstat .fs-ico svg{width:17px; height:17px}
.feedstat .fs-ico.live{color:var(--green)}
.feedstat .fs-ico.pf{color:var(--red)}
.feedstat .fs-ico.neu{color:var(--orange)}
.feedstat .fs-ico.save{color:var(--green-bright)}
.feedstat b{display:block; font-size:23px; font-weight:900; color:#fff; line-height:1.2}
.feedstat span{font-size:12.5px; color:var(--muted)}

/* Schalter */
.switch{display:inline-flex; align-items:center; gap:9px; font-size:14px; color:#cbd8d1; cursor:pointer; user-select:none}
.switch input{position:absolute; opacity:0; width:0; height:0}
.switch-track{
  width:42px; height:24px; border-radius:99px; background:var(--surface-3);
  border:1px solid var(--line-strong); position:relative; transition:background .18s, border-color .18s;
}
.switch-track i{
  position:absolute; top:2px; left:2px; width:18px; height:18px; border-radius:50%;
  background:#8b9d93; transition:transform .18s, background .18s;
}
.switch input:checked + .switch-track{background:rgba(34,197,94,.28); border-color:rgba(34,197,94,.6)}
.switch input:checked + .switch-track i{transform:translateX(18px); background:var(--green-bright)}
.switch input:focus-visible + .switch-track{outline:2px solid var(--green); outline-offset:2px}

/* Beliebte Suchen */
.popular{display:flex; align-items:center; gap:8px; flex-wrap:wrap; margin-top:12px}
.popular-label{font-size:12.5px; color:var(--muted-2); font-weight:700; margin-right:2px}
.popular button{
  padding:7px 13px; border-radius:999px; font-size:13px; background:var(--surface-2);
  border:1px solid var(--line); color:#cbd8d1; transition:.15s;
}
.popular button:hover{border-color:rgba(34,197,94,.5); color:var(--green)}

/* Feed-Kopfzeile */
.feedmeta-right{display:flex; align-items:center; gap:10px; flex-wrap:wrap}
.feedstate{font-size:12.5px; color:var(--muted-2)}
.feedstate.stale{color:var(--orange)}
#refresh svg{stroke:var(--green)}

/* Kategorie-Kacheln */
.kattiles{display:grid; grid-template-columns:repeat(auto-fill,minmax(170px,1fr)); gap:12px}
.kattile{
  text-align:left; padding:16px 18px; border-radius:var(--r-md); background:var(--surface);
  border:1px solid var(--line); transition:border-color .16s, transform .16s, background .16s;
}
.kattile:hover{border-color:rgba(34,197,94,.45); transform:translateY(-2px)}
.kattile b{display:block; font-size:15px; font-weight:700; margin-bottom:3px}
.kattile span{font-size:12.5px; color:var(--muted-2)}
.kattile[aria-pressed="true"]{
  background:linear-gradient(180deg,rgba(34,197,94,.14),rgba(13,21,18,.9));
  border-color:rgba(34,197,94,.55);
}
.kattile[aria-pressed="true"] span{color:var(--green)}

/* Deal-Karte: Zusätze */
.badge.verdacht{background:linear-gradient(180deg,#ffb347,#e08a13); color:#1f1200}

/* Chips als Links (Landingpage-Verweise) */
a.chip{display:inline-flex; align-items:center}

@media (max-width:980px){
  .feedstats{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:680px){
  .feedstats{grid-template-columns:1fr 1fr; gap:10px}
  .feedstat{padding:13px 12px 13px 48px}
  .feedstat .fs-ico{left:11px; top:13px; width:27px; height:27px}
  .feedstat b{font-size:19px}
  .feedstat span{font-size:11.5px}
  .kattiles{grid-template-columns:1fr 1fr; gap:10px}
  .kattile{padding:13px 14px}
  .filterrow .select,.filterrow .btn{flex:1 1 45%}
  .searchbox{flex:1 1 100%}
  .deal-off{right:44px}
}

/* Feed-Hero mit Netzwerk-Panel */
.feedhero-grid{display:grid; grid-template-columns:1.35fr .65fr; gap:36px; align-items:center}
.feedhero-side{
  position:relative; background:linear-gradient(180deg,rgba(17,27,22,.9),rgba(10,16,13,.92));
  border:1px solid var(--line); border-radius:var(--r-xl); padding:22px 22px 18px; overflow:hidden;
}
.feedhero-side .mascot-sm{
  position:absolute; right:-22px; bottom:-16px; width:132px; opacity:.5;
  filter:drop-shadow(0 10px 24px rgba(34,197,94,.3)); pointer-events:none;
}
.netlist{display:grid; gap:10px; position:relative; z-index:1}
.netlist li{display:flex; align-items:center; gap:10px; font-size:14px; font-weight:600}
.netlist a{color:#dfe9e3}
.netlist a:hover{color:var(--green)}
.netlist .dotmark{width:8px; height:8px; border-radius:50%; flex:none}
.netlist-note{
  margin-top:16px; padding-top:14px; border-top:1px solid var(--line);
  font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:var(--muted-2); position:relative; z-index:1;
}
@media (max-width:980px){
  .feedhero-grid{grid-template-columns:1fr; gap:22px}
  .feedhero-side .mascot-sm{width:104px}
}
.livebadge{
  display:inline-flex; align-items:center; font-size:10.5px; font-weight:800; letter-spacing:.12em;
  text-transform:uppercase; color:var(--green); padding:4px 10px; border-radius:999px;
  background:rgba(34,197,94,.1); border:1px solid rgba(34,197,94,.3);
}

/* ---------- 16. Modal / PWA-Selbsttest ---------- */
.modal{
  position:fixed; inset:0; z-index:100; display:none; place-items:center; padding:20px;
  background:rgba(3,6,4,.72); backdrop-filter:blur(6px);
}
.modal.show{display:grid; animation:fade .18s ease}
@keyframes fade{from{opacity:0}to{opacity:1}}
.modal-card{
  position:relative; width:min(100%,520px); max-height:86vh; overflow:auto;
  background:linear-gradient(180deg,#111b16,#0a100d); border:1px solid var(--line-strong);
  border-radius:var(--r-xl); padding:26px; box-shadow:0 30px 70px -24px rgba(0,0,0,.95);
}
.modal-card h3{font-size:19px; margin-bottom:12px; padding-right:30px}
.modal-lead{font-size:14.5px; color:#c3d1ca; margin-bottom:18px}
.modal-lead b{color:#fff}
.modal-close{
  position:absolute; top:14px; right:16px; width:32px; height:32px; border-radius:9px;
  font-size:22px; line-height:1; color:var(--muted); display:grid; place-items:center;
}
.modal-close:hover{background:var(--surface-3); color:#fff}
.pwacheck{border-top:1px solid var(--line); padding-top:16px}
.pwacheck b{
  display:block; font-size:11.5px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--muted-2); margin-bottom:10px;
}
.pwacheck ul{display:grid; gap:8px}
.pwacheck li{position:relative; padding-left:26px; font-size:13.5px; color:#c3d1ca}
.pwacheck li::before{position:absolute; left:0; top:0; font-weight:900}
.pwacheck li.ok::before{content:"✓"; color:var(--green)}
.pwacheck li.bad::before{content:"✕"; color:var(--orange)}
.pwacheck li.wait{color:var(--muted-2)}
.pwacheck li.wait::before{content:"·"; color:var(--muted-2)}

@media (max-width:560px){
  .installbar{
    flex-wrap:wrap; gap:10px 12px; padding:13px 14px; bottom:12px;
    width:min(100% - 24px, 560px);
  }
  .installbar img{width:38px; height:38px}
  .installbar .txt{flex:1 1 auto; min-width:0}
  .installbar b{font-size:14px}
  .installbar span{font-size:12px}
  .installbar .btn{flex:1 1 100%; order:3; justify-content:center}
  .installbar .close{order:2}
}

@media (max-width:560px){
  .deal-source{font-size:10px}
  .deal-title{font-size:13.5px}
  .deal-prices .price{font-size:16px}
  .deal-save{font-size:11.5px}
  .deal-meta{font-size:11px}
  .feedmeta{gap:10px}
  .feedmeta-right{width:100%; justify-content:space-between}
}

@media (max-width:980px){
  .orb.bolt{left:2%}
}

/* Deal-Karten: kleine Bildschirme */
@media (max-width:680px){
  .deal-media{height:128px; margin:0 12px}
  .deal-media img{max-height:108px}
  .deal-head{padding:11px 44px 8px 12px}
  .deal-body{padding:11px 12px 12px}
  .feedgrid.list .deal-head{padding:13px 48px 10px 14px}
  .feedgrid.list .deal-title{font-size:15px}
  .feedgrid.list .deal-media{width:132px; min-height:110px; margin:0 0 12px 14px}
  .feedgrid.list .deal-media img{max-height:92px}
  .feedgrid.list .deal-body{padding:0 14px 12px}
  .feedgrid.list .deal-prices .price{font-size:18px}
  .feedgrid.list .deal-meta{gap:12px; margin-top:8px; flex-wrap:wrap}
}

@media (max-width:680px){
  .feedgrid.list .deal-media{width:126px; height:98px; margin:0 0 12px 14px}
  .feedgrid.list .deal-media img{max-height:80px}
  .feedgrid.list .deal-body{padding:0 14px 12px; gap:12px; flex-wrap:wrap}
  .feedgrid.list .deal-prices .price{font-size:19px}
  .feedgrid.list .deal-cta{padding:10px 16px; font-size:13.5px}
}
@media (max-width:460px){
  .feedgrid.list .deal-cta{margin-left:0; width:100%; justify-content:center}
}

/* Kachelansicht: zwei Titelzeilen reservieren, damit die Bilder auf einer Linie starten */
.feedgrid:not(.list) .deal-title,
.deals-rail .deal-title{min-height:2.64em}

/* Kleine Vorschaubilder in der Liste: Badge und Rabatt nicht übereinander legen */
@media (max-width:680px){
  .feedgrid.list .deal-media .badge{font-size:9.5px; padding:4px 7px; top:6px; left:6px}
  .feedgrid.list .deal-off{top:auto; bottom:6px; right:6px; font-size:10.5px; padding:3px 7px}
}

/* ---------- 17. Nachträge (müssen am Ende stehen) ---------- */

/* Breite Tabellen scrollen in sich selbst, statt die Seite zu sprengen */
.tablewrap{overflow-x:auto; -webkit-overflow-scrolling:touch; margin:16px 0}
.tablewrap table{margin:0; min-width:460px}

/* Gutscheincode auf der Deal-Karte */
.dealcode{
  display:inline-flex; align-items:center; gap:8px; align-self:flex-start;
  margin-top:5px; padding:6px 12px; border-radius:9px;
  background:rgba(192,132,252,.12); border:1px dashed rgba(192,132,252,.55);
  font-size:13px; color:#e6d6ff; transition:background .15s, border-color .15s;
}
.dealcode:hover{background:rgba(192,132,252,.2); border-color:rgba(192,132,252,.85)}
.dealcode b{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; letter-spacing:.06em; color:#fff}
.dealcode-label{
  font-size:9.5px; font-weight:800; letter-spacing:.14em; text-transform:uppercase;
  color:#c084fc;
}
.dealcode.copied{background:rgba(34,197,94,.16); border-color:rgba(34,197,94,.6)}
.dealcode.copied .dealcode-label{color:var(--green)}
.dealcode.copied .dealcode-label::after{content:" kopiert"}

/* ---------- 18. Fundzeitpunkt, Aktionen, Preisverlauf, Teilen ---------- */

/* Maskottchen: kleiner auf dem Handy, dazu eine ruhige Bewegung */
@media (max-width:680px){
  .hero-visual .mascot{width:min(56%,178px)}
}
@media (max-width:420px){
  .hero-visual .mascot{width:min(50%,150px)}
}
.hero-visual .mascot{
  animation:mascot 7s ease-in-out infinite;
  transform-origin:50% 92%;
}
@keyframes mascot{
  0%,100%{transform:translateY(0) rotate(0deg)}
  25%    {transform:translateY(-9px) rotate(-1.6deg)}
  50%    {transform:translateY(-13px) rotate(0deg) scale(1.015)}
  75%    {transform:translateY(-9px) rotate(1.6deg)}
}
.submit-mobile{display:none}

/* Fundzeitpunkt unter dem Angebot */
.deal-found{
  display:flex; align-items:center; gap:6px; margin-top:8px;
  font-size:11.5px; color:var(--muted-2);
}
.deal-found svg{width:13px; height:13px; stroke:currentColor; fill:none; flex:none}

/* Aktionen: Preisverlauf und Teilen */
.deal-actions{display:flex; gap:8px; flex-wrap:wrap; margin-top:10px}
.dealact{
  display:inline-flex; align-items:center; gap:6px; padding:7px 12px; border-radius:9px;
  background:var(--surface-2); border:1px solid var(--line); color:#cbd8d1;
  font-size:12.5px; font-weight:600; transition:border-color .15s, color .15s, background .15s;
}
.dealact:hover{border-color:rgba(34,197,94,.5); color:var(--green); background:var(--surface-3)}
.dealact svg{width:14px; height:14px; stroke:currentColor; fill:none; flex:none}

/* Diagramm */
.pricechart{width:100%; height:auto; margin:6px 0 16px; display:block}
.pricechart .ch-grid{stroke:rgba(255,255,255,.08); stroke-width:1}
.pricechart .ch-lbl{fill:#6f8177; font-size:11px; font-family:var(--font)}
.pricefacts{display:grid; gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--r); overflow:hidden}
.pricefacts li{
  display:flex; justify-content:space-between; align-items:center; gap:14px;
  padding:11px 14px; background:var(--surface); font-size:13.5px; color:var(--muted);
}
.pricefacts li b{color:#fff; font-size:14.5px}
.pricehint{margin-top:14px; font-size:13.5px; color:var(--muted)}
.pricehint.good{
  color:var(--green); background:rgba(34,197,94,.1);
  border:1px solid rgba(34,197,94,.3); border-radius:var(--r); padding:11px 14px;
}
.pfbox{
  margin-top:16px; padding:14px 16px; border-radius:var(--r);
  background:rgba(249,115,22,.09); border:1px solid rgba(249,115,22,.32);
}
.pfbox b{display:block; color:var(--orange-bright); font-size:14px; margin-bottom:9px}
.pfbox ul{display:grid; gap:6px; margin-bottom:10px}
.pfbox li{position:relative; padding-left:18px; font-size:13px; color:#e6d3c2}
.pfbox li::before{content:""; position:absolute; left:2px; top:8px; width:5px; height:5px; border-radius:50%; background:var(--orange)}
.pfbox p{font-size:12px; color:var(--muted-2)}

/* Teilen */
.sharebox{
  width:100%; padding:12px 14px; border-radius:var(--r); resize:vertical;
  background:var(--surface-2); border:1px solid var(--line); color:#dfe9e3;
  font-size:13.5px; line-height:1.55; margin-bottom:14px;
}
.sharebtns{display:flex; gap:9px; flex-wrap:wrap}
.sharebtns .btn{flex:1 1 auto; min-width:120px}

@media (max-width:980px){
  .submit-mobile{display:grid}
}
@media (max-width:560px){
  .deal-actions{gap:6px}
  .dealact{padding:6px 10px; font-size:12px}
  .deal-found{font-size:11px}
  .sharebtns .btn{flex:1 1 100%}
}

/* Auf dem Handy zuerst die Botschaft, danach das Maskottchen */
@media (max-width:680px){
  .hero-grid{gap:18px}
  .hero-visual{order:2; margin-top:6px}
  .hero-visual .mascot{margin:0 auto}
}

/* ---------- 19. Lade-Zahnrad ---------- */
@keyframes gearspin{to{transform:rotate(360deg)}}

/* Großer Lade-Zustand, solange der Feed noch keine Deals hat */
.loadstate{
  grid-column:1/-1; display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:8px; padding:48px 20px 36px; text-align:center;
}
.loadstate-ring{
  position:relative; width:66px; height:66px; display:grid; place-items:center;
  border-radius:50%; margin-bottom:4px;
  background:radial-gradient(circle,rgba(34,197,94,.16),transparent 70%);
}
.loadstate-ring::before{
  content:""; position:absolute; inset:0; border-radius:50%;
  border:2px solid var(--line); border-top-color:var(--green); border-right-color:var(--orange);
  animation:gearspin 1.5s linear infinite reverse;
}
.loadstate-gear{display:grid; place-items:center; color:var(--green-bright)}
.loadstate-gear svg{width:28px; height:28px; animation:gearspin 2.2s linear infinite; filter:drop-shadow(0 0 10px rgba(34,197,94,.4))}
.loadstate p{font-size:15px; font-weight:800; color:#fff; margin:0}
.loadstate-sub{font-size:12.5px; color:var(--muted-2)}

/* Kleines Zahnrad in Buttons/Badges, solange im Hintergrund geladen wird */
.loader-gear{display:inline-flex; vertical-align:middle}
.loader-gear svg{width:16px; height:16px; animation:gearspin 1.1s linear infinite}

.loadergear{display:inline-flex; align-items:center; margin-left:8px; color:var(--muted-2); vertical-align:middle}
.loadergear svg{width:14px; height:14px; animation:gearspin 1.1s linear infinite}
.loadergear[hidden]{display:none}

@media (prefers-reduced-motion:reduce){
  .loadstate-gear svg,.loadstate-ring::before,.loader-gear svg,.loadergear svg{animation:none}
}

/* ---------- 20. Ladebildschirm ---------- */
/* Ploppt mittig ueber der ganzen Seite auf, solange der Feed startet:
   weisse Karte mit Spinner, Text und einem Fortschrittsbalken - schlicht
   und klar erkennbar statt einer aufwendigen Animation. */
.pageloader{
  position:fixed; inset:0; z-index:300; display:flex; align-items:center; justify-content:center;
  padding:20px;
  background:radial-gradient(circle at 50% 38%,rgba(14,24,18,.78),rgba(3,6,4,.9));
  backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
  opacity:0; pointer-events:none; transition:opacity .3s ease;
}
.pageloader[hidden]{display:none}
.pageloader.show{opacity:1; pointer-events:auto}

.pageloader-card{
  display:flex; flex-direction:column; align-items:center; text-align:center;
  padding:36px 32px 30px; width:100%; max-width:300px;
  border-radius:var(--r-xl); background:#fff;
  box-shadow:0 34px 80px -22px rgba(0,0,0,.6);
  transform:scale(.86) translateY(14px); transition:transform .42s cubic-bezier(.34,1.56,.64,1);
}
.pageloader.show .pageloader-card{transform:scale(1) translateY(0)}

.pageloader-spinner{
  width:52px; height:52px; margin-bottom:14px; border-radius:50%;
  border:4px solid #e8ece9; border-top-color:var(--orange); border-right-color:var(--green);
  animation:gearspin .85s linear infinite;
}
.pageloader-text{font-size:15px; font-weight:800; color:#132018; margin:0; line-height:1.35}
.pageloader-sub{display:block; font-size:12.5px; color:#71827a; margin-top:5px; min-height:16px}

.pageloader-bar{
  position:relative; display:block; width:100%; height:6px; margin-top:20px;
  border-radius:99px; background:#eef1ee; overflow:hidden;
}
.pageloader-bar-fill{
  position:absolute; top:0; left:0; height:100%; width:38%; border-radius:99px;
  background:linear-gradient(90deg,var(--orange),var(--green));
  animation:pageloaderBar 1.3s ease-in-out infinite;
}
@keyframes pageloaderBar{
  0%  {transform:translateX(-100%)}
  100%{transform:translateX(300%)}
}

/* Hinweis + Ueberspringen-Knopf: erscheinen erst, wenn hinter dem Fenster
   bereits zwischengespeicherte Deals stehen. */
.pageloader-cache{
  margin:14px 0 0; font-size:12px; line-height:1.4; color:#5d6f66;
}
.pageloader-cache[hidden]{display:none}
.pageloader-skip{
  margin-top:10px; padding:8px 16px; border:1px solid #d7ded9; border-radius:99px;
  background:#f5f8f6; color:#243a30; font:inherit; font-size:12.5px; font-weight:700;
  cursor:pointer; transition:background .18s ease,border-color .18s ease;
}
.pageloader-skip:hover{background:#eaf1ec; border-color:#bcc9c2}
.pageloader-skip:focus-visible{outline:2px solid var(--green); outline-offset:2px}
.pageloader-skip[hidden]{display:none}

@media (prefers-reduced-motion:reduce){
  .pageloader,.pageloader-card{transition:none}
  .pageloader-spinner{animation:none}
  .pageloader-bar-fill{animation:none; width:60%; transform:translateX(30%)}
  .pageloader-skip{transition:none}
}


/* ---------- 21. Cookie-/Datenschutz-Banner ---------- */
.cookie-consent{
  position:fixed; inset:0; z-index:120; display:none; align-items:flex-end; justify-content:center;
  padding:20px; background:linear-gradient(180deg,rgba(3,7,5,.18),rgba(3,7,5,.82));
  backdrop-filter:blur(5px);
}
.cookie-consent.show{display:flex; animation:cookieFade .2s ease}
.cookie-card{
  width:min(100%,980px); display:grid; grid-template-columns:auto 1fr auto; gap:16px; align-items:start;
  padding:20px; border-radius:22px; background:linear-gradient(180deg,#111b16,#090f0c);
  border:1px solid rgba(34,197,94,.34); box-shadow:0 26px 70px -22px rgba(0,0,0,.95);
}
.cookie-mark{
  width:46px; height:46px; border-radius:14px; display:grid; place-items:center;
  background:rgba(34,197,94,.12); border:1px solid rgba(34,197,94,.32); color:var(--green-bright);
}
.cookie-mark svg{width:25px;height:25px}
.cookie-copy>b{display:block; color:#fff; font-size:17px; margin-bottom:6px}
.cookie-copy>p{font-size:13.5px; color:#bdcbc4; max-width:66ch; line-height:1.55}
.cookie-privacy{display:inline-block; margin-top:8px; font-size:12.5px; color:var(--green); text-decoration:underline; text-underline-offset:3px}
.cookie-actions{display:flex; gap:8px; flex-wrap:wrap; justify-content:flex-end; max-width:360px}
.cookie-settings-btn,.cookie-footer-link{
  appearance:none; border:0; background:none; color:#b9c8c0; cursor:pointer; font:inherit;
  text-decoration:underline; text-underline-offset:3px;
}
.cookie-settings-btn{padding:8px 10px; font-size:12.5px}
.cookie-settings-btn:hover,.cookie-footer-link:hover{color:#fff}
.cookie-footer-link{font-size:13px; color:var(--muted-2); padding:0}
.cookie-options{
  margin-top:13px; display:grid; gap:8px; padding-top:12px; border-top:1px solid var(--line);
}
.cookie-options[hidden]{display:none}
.cookie-option{
  display:flex; align-items:center; justify-content:space-between; gap:18px;
  padding:10px 12px; border:1px solid var(--line); border-radius:12px; background:rgba(255,255,255,.018);
}
.cookie-option span:first-child{display:grid; gap:2px}
.cookie-option strong{font-size:13px;color:#fff}
.cookie-option small{font-size:11.5px;color:var(--muted-2);font-weight:400;line-height:1.4}
.cookie-option input{width:20px;height:20px;accent-color:var(--green);flex:none}
.cookie-always{font-size:11.5px;color:var(--green);font-weight:800;white-space:nowrap}
@keyframes cookieFade{from{opacity:0}to{opacity:1}}

/* ---------- 22. Jonglierendes Startseiten-Maskottchen ---------- */
.juggle-zone{position:absolute; inset:2% 8% 10%; z-index:4; pointer-events:none; overflow:visible}
.juggle-tag{
  position:absolute; left:15%; top:52%; min-width:58px; height:38px; padding:0 10px 0 15px;
  display:grid; place-items:center; border-radius:8px 11px 11px 8px;
  font-size:13px; font-weight:950; letter-spacing:.035em; color:#07100b;
  border:1px solid rgba(255,255,255,.28); box-shadow:0 12px 24px -10px rgba(0,0,0,.8);
  transform-origin:50% 50%; opacity:0;
  animation:juggleTag 2.7s cubic-bezier(.42,.02,.58,1) infinite;
  animation-delay:var(--delay,0s);
}
.juggle-tag::before{
  content:""; position:absolute; left:5px; top:50%; width:6px; height:6px; transform:translateY(-50%);
  border-radius:50%; background:#07100b; box-shadow:inset 0 0 0 1px rgba(255,255,255,.22);
}
.tag-green{background:linear-gradient(145deg,#75f08f,#22c55e)}
.tag-orange{background:linear-gradient(145deg,#ffb36d,#f97316)}
.tag-purple{background:linear-gradient(145deg,#d9b6ff,#a855f7); color:#100719}
.tag-purple::before{background:#100719}
@keyframes juggleTag{
  0%{left:18%;top:57%;transform:rotate(-22deg) scale(.82);opacity:0}
  8%{opacity:1}
  23%{left:31%;top:19%;transform:rotate(-8deg) scale(1)}
  50%{left:48%;top:2%;transform:rotate(7deg) scale(1.08)}
  77%{left:65%;top:20%;transform:rotate(18deg) scale(1)}
  92%{opacity:1}
  100%{left:76%;top:56%;transform:rotate(28deg) scale(.82);opacity:0}
}

@media (max-width:680px){
  .cookie-consent{padding:10px;align-items:flex-end}
  .cookie-card{grid-template-columns:1fr;gap:11px;padding:16px;border-radius:18px}
  .cookie-mark{display:none}
  .cookie-actions{max-width:none;justify-content:stretch}
  .cookie-actions .btn{flex:1 1 calc(50% - 8px);justify-content:center}
  .cookie-settings-btn{flex:1 1 100%}
  .cookie-option{align-items:flex-start}
  .juggle-zone{inset:-5% 14% 0}
  .juggle-tag{min-width:48px;height:31px;font-size:10px;padding:0 8px 0 12px}
}

@media (prefers-reduced-motion:reduce){
  .juggle-tag{animation:none;opacity:1}
  .juggle-tag:nth-child(1){left:12%;top:18%;transform:rotate(-10deg)}
  .juggle-tag:nth-child(2){left:44%;top:2%;transform:rotate(5deg)}
  .juggle-tag:nth-child(3){left:72%;top:20%;transform:rotate(12deg)}
}
.cookie-save[hidden],.cookie-settings-btn[hidden]{display:none !important}


/* ========================================================================== 
   2026-09 Landingpage-Refresh – Referenzlayout / Screenshot
   ========================================================================== */
.header-search{
  width:230px; height:44px; position:relative; display:flex; align-items:center;
  border:1px solid var(--line-strong); border-radius:11px; background:rgba(9,17,14,.84);
  transition:border-color .16s ease, background .16s ease;
}
.header-search:focus-within{border-color:rgba(45,242,164,.58); background:#0b1511}
.header-search svg{position:absolute;left:13px;width:18px;height:18px;stroke:#dbe8e1;pointer-events:none}
.header-search input{width:100%;height:100%;border:0;outline:0;background:transparent;padding:0 12px 0 42px;color:#fff;font-size:13.5px;min-width:0}
.header-search input::placeholder{color:#7e9187}

.hero-home{padding:34px 0 18px}
.hero-grid-home{grid-template-columns:1.02fr .98fr;gap:24px;min-height:405px;align-items:center}
.hero-copy-home{padding:14px 0 10px}
.hero-home .kicker{font-size:12px;letter-spacing:.22em;margin-bottom:8px;color:#23f2a0}
.hero-home h1{font-size:clamp(44px,5.4vw,72px);line-height:.98;letter-spacing:-.045em;text-shadow:0 4px 22px rgba(0,0,0,.24)}
.hero-home h1 .g{display:inline-block;color:#20f5a2}
.hero-home .lead{margin-top:16px;max-width:690px;font-size:clamp(16px,1.55vw,20px);line-height:1.45;color:#d1ddd7}

.hero-search{display:grid;grid-template-columns:44px 1fr 106px;align-items:center;width:min(100%,680px);height:50px;margin-top:19px;border:1px solid #14b873;border-radius:9px;background:rgba(9,18,14,.9);box-shadow:inset 0 0 0 1px rgba(255,255,255,.015)}
.hero-search svg{width:19px;height:19px;stroke:#dceae3;justify-self:center}
.hero-search input{height:100%;min-width:0;border:0;outline:0;background:transparent;color:#fff;font-size:14px;padding:0 6px}
.hero-search input::placeholder{color:#84968c}
.hero-search button{height:42px;margin-right:4px;border-radius:7px;background:linear-gradient(180deg,#36f0b0,#18cf8a);color:#03150d;font-weight:900;font-size:14px;box-shadow:0 7px 24px -12px rgba(32,245,162,.9)}
.hero-search button:hover{filter:brightness(1.05)}
.popular-searches{display:flex;align-items:center;gap:7px;flex-wrap:wrap;margin-top:9px;width:min(100%,760px);font-size:10.5px;color:#82958b}
.popular-searches>span{margin-right:2px;color:#c7d4cd}
.popular-searches a{padding:4px 10px;border-radius:999px;border:1px solid rgba(255,255,255,.13);background:#0c1512;color:#b9c8c0;white-space:nowrap;transition:.15s}
.popular-searches a:hover{color:#fff;border-color:rgba(32,245,162,.42);background:#102019}

.hero-proof{display:grid;grid-template-columns:repeat(3,1fr);gap:9px;margin-top:13px;width:min(100%,690px)}
.proof-card{min-height:50px;padding:8px 11px;display:flex;align-items:center;gap:10px;border:1px solid rgba(255,255,255,.10);border-radius:9px;background:linear-gradient(180deg,rgba(13,24,19,.93),rgba(8,15,12,.93))}
.proof-icon{width:30px;height:30px;display:grid;place-items:center;flex:none;color:#21eba0}
.proof-icon svg{width:22px;height:22px;stroke:currentColor}
.proof-card>span:last-child{display:grid;min-width:0;line-height:1.15}
.proof-card b{font-size:12.2px;color:#f7fbf9;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.proof-card small{margin-top:4px;font-size:9.8px;color:#82958b;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

.hero-deal-visual{min-height:405px;overflow:visible;isolation:isolate}
.hero-deal-visual::before{content:"";position:absolute;inset:0 -28px;background:linear-gradient(132deg,transparent 3%,rgba(10,89,55,.10) 37%,rgba(14,117,70,.13) 38%,transparent 39%,transparent 56%,rgba(20,134,83,.10) 57%,transparent 58%);transform:skewX(-7deg);z-index:-3}
.hero-light{position:absolute;width:min(390px,86vw);height:min(390px,86vw);max-width:100%;border-radius:50%;background:radial-gradient(circle,rgba(34,255,171,.20),rgba(34,255,171,.06) 43%,transparent 70%);filter:blur(2px);z-index:-2}
.hero-deal-visual .mascot{width:min(72%,360px);margin-top:34px;filter:drop-shadow(0 26px 36px rgba(0,0,0,.54)) drop-shadow(0 0 20px rgba(40,255,171,.18));animation:none;z-index:2}
.discount-sign{position:absolute;z-index:4;display:grid;place-items:center;min-width:110px;height:64px;padding:0 12px;border-radius:12px;font-size:31px;line-height:1;font-weight:950;font-style:italic;letter-spacing:-.05em;color:#07120c;text-shadow:0 1px 0 rgba(255,255,255,.5);border:3px solid #d4ff28;box-shadow:0 0 0 3px rgba(8,39,24,.8),0 0 24px rgba(135,255,43,.42),0 12px 28px rgba(0,0,0,.45);transform:rotate(-9deg)}
.discount-sign::before{content:"";position:absolute;left:-13px;width:20px;height:20px;border-radius:50%;background:#0a2418;border:3px solid #c9ff30;box-shadow:inset 0 0 0 3px #08150f}
.sign-50{left:12%;top:34%;background:linear-gradient(145deg,#44ff37,#17bd32);transform:rotate(-12deg)}
.sign-60{left:45%;top:3%;background:linear-gradient(145deg,#ffb51b,#ff5c17);border-color:#fff13a;box-shadow:0 0 0 3px rgba(76,34,4,.8),0 0 28px rgba(255,145,24,.48),0 12px 28px rgba(0,0,0,.45);transform:rotate(10deg)}
.sign-70{right:5%;top:34%;background:linear-gradient(145deg,#55ff48,#1cc442);transform:rotate(10deg)}
.hero-scribble{position:absolute;right:0;top:20%;font-family:"Segoe Print","Bradley Hand","Comic Sans MS",cursive;font-size:25px;line-height:1.08;text-align:center;color:#f4f9f6;transform:rotate(-5deg);text-shadow:0 2px 12px rgba(0,0,0,.8)}
.hero-scribble::after{content:"";display:block;width:108px;height:3px;margin:10px auto 0;background:#20efa0;border-radius:50%;transform:rotate(-8deg)}

.top-deals-home{padding-top:8px}
.top-deals-home .panel{padding:19px 22px 17px;border-radius:18px;background:linear-gradient(180deg,rgba(10,27,22,.96),rgba(6,15,12,.97));border-color:rgba(38,221,151,.18);box-shadow:0 20px 60px -40px rgba(0,0,0,.9)}
.top-deals-home .section-head{margin-bottom:13px}
.top-deals-home .section-head h2{font-size:23px}
.top-deals-home .livebadge{font-size:10px;padding:4px 9px;border-color:rgba(32,245,162,.3);background:rgba(17,118,77,.2);color:#35f2ae}
.top-deals-home .deals-rail{grid-auto-columns:minmax(205px,1fr);gap:10px;scrollbar-width:none}
.top-deals-home .deals-rail::-webkit-scrollbar{display:none}
.top-deals-home .deal{min-height:308px;border-radius:9px;background:linear-gradient(180deg,#0c1b16,#09130f);border-color:rgba(255,255,255,.11)}
.top-deals-home .deal:hover{transform:translateY(-2px)}
.top-deals-home .deal-head{padding:10px 40px 7px 12px}
.top-deals-home .deal-source{font-size:10px;margin-bottom:4px;color:#c7d3cd}
.top-deals-home .deal-title{font-size:13.4px;min-height:35px}
.top-deals-home .deal-media{height:135px;margin:0 11px;padding:7px;background:radial-gradient(120% 115% at 50% 30%,#182820,#09110e)}
.top-deals-home .deal-media img{max-height:117px}
.top-deals-home .deal-body{padding:9px 12px 11px}
.top-deals-home .deal-prices .price{font-size:18px;color:#f3f8f5}
.top-deals-home .deal-prices .price-old{font-size:11px}
.top-deals-home .deal-meta{font-size:10.5px;border-top:1px solid rgba(255,255,255,.075);padding-top:8px;margin-top:7px}
.top-deals-home .deal-off{background:#23eaa0;color:#04150d;border:0;font-size:11px}
.top-deals-home .rail-nav{display:none}

.deal-skeleton{padding:12px;gap:10px;display:flex;min-height:308px;animation:skPulse 1.4s ease-in-out infinite}
.skeleton-line,.skeleton-media{background:linear-gradient(90deg,#12231c,#182d24,#12231c);background-size:220% 100%;animation:skMove 1.5s linear infinite;border-radius:7px}
.sk-source{width:42%;height:12px}.skeleton-media{width:100%;height:148px}.sk-title{width:78%;height:17px}.sk-price{width:45%;height:22px}.sk-meta{width:65%;height:12px;margin-top:auto}
@keyframes skMove{to{background-position:-220% 0}}@keyframes skPulse{50%{opacity:.82}}

.home-benefits{padding-top:8px}
.benefits-heading{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:32px;margin-bottom:12px;padding:0 4px}
.benefits-heading h2{font-size:24px;white-space:nowrap}
.benefits-heading p{font-size:12.5px;color:#93a69c}
.benefit-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
.benefit-card{min-height:82px;display:flex;align-items:center;gap:15px;padding:13px 16px;border:1px solid rgba(255,255,255,.10);border-radius:9px;background:linear-gradient(180deg,#0c1914,#09120f)}
.benefit-icon{width:50px;height:50px;border:1px solid rgba(34,245,165,.28);border-radius:9px;background:rgba(11,95,61,.16);display:grid;place-items:center;flex:none;color:#23f0a3}
.benefit-icon svg{width:28px;height:28px;stroke:currentColor}
.benefit-card h3{font-size:13px;margin-bottom:4px}
.benefit-card p{font-size:11.2px;color:#8ea198;line-height:1.4}

@media (min-width:1200px){
  .top-deals-home .deals-rail{grid-template-columns:repeat(6,minmax(0,1fr));grid-auto-flow:row;overflow:visible}
  .top-deals-home .deals-rail>*:nth-child(n+7){display:none}
}
@media (max-width:1260px){
  .header-search{display:none}
  .hero-scribble{display:none}
  .benefit-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:900px){
  .hero-grid-home{grid-template-columns:1fr;min-height:0}
  .hero-copy-home{order:1}
  .hero-deal-visual{order:2;min-height:360px;margin-top:-10px}
  .hero-deal-visual .mascot{width:min(68%,330px)}
  .sign-50{left:11%;top:30%}.sign-60{left:44%;top:1%}.sign-70{right:9%;top:30%}
  .hero-proof{grid-template-columns:1fr 1fr}.hero-proof .proof-card:last-child{grid-column:1/-1}
  .benefits-heading{grid-template-columns:1fr auto;gap:12px}.benefits-heading p{grid-column:1/-1;grid-row:2}
}
@media (max-width:620px){
  .hero-home{padding-top:28px}
  .hero-home h1{font-size:clamp(39px,13vw,58px)}
  .hero-search{grid-template-columns:42px 1fr 88px;height:48px}.hero-search input{font-size:12.5px}.hero-search button{font-size:12.5px}
  .popular-searches{gap:5px}.popular-searches>span{width:100%}
  .hero-proof{grid-template-columns:1fr}.hero-proof .proof-card:last-child{grid-column:auto}
  .hero-deal-visual{min-height:320px}.hero-deal-visual .mascot{width:min(68%,280px)}
  .discount-sign{min-width:84px;height:50px;font-size:24px}.discount-sign::before{left:-10px;width:16px;height:16px}
  .sign-50{left:1%;top:31%}.sign-60{left:39%;top:4%}.sign-70{right:0;top:31%}
  .top-deals-home .panel{padding:15px 12px}.top-deals-home .section-head{align-items:center}.top-deals-home .section-head h2{font-size:19px}
  .benefit-grid{grid-template-columns:1fr}.benefits-heading{grid-template-columns:1fr}.benefits-heading .linkarrow{grid-row:3}
}

.home-deals-empty{grid-column:1/-1;min-height:245px;display:grid;place-items:center;align-content:center;gap:8px;text-align:center;border:1px dashed rgba(255,255,255,.13);border-radius:12px;background:#0a1511;color:#94a69d;padding:28px}
.home-deals-empty b{color:#fff;font-size:16px}.home-deals-empty span{font-size:12.5px;max-width:54ch}

@media (min-width:1001px){
  .site-header .header-inner{min-height:72px}
  .site-header .brand img{height:52px}
  .site-header .navlink{font-size:13.5px;padding:8px 10px}
  .site-header .header-actions{gap:9px}
  .site-header .deal-submit-btn{padding:12px 18px;font-size:13px}
  .site-header .iconbtn{width:42px;height:42px}
}

/* v13 – neues Errordeals Maskottchen */
.hero-deal-visual .mascot{width:min(100%,430px);height:auto;position:relative;z-index:2;filter:drop-shadow(0 28px 48px rgba(34,197,94,.28));}
@media (max-width:980px){.hero-deal-visual .mascot{width:min(88%,360px)}}
@media (max-width:680px){.hero-deal-visual .mascot{width:min(82%,300px)}}
@media (max-width:420px){.hero-deal-visual .mascot{width:min(78%,255px)}}

/* ---------- 26. Hinweis bei geteilten Deal-Links ---------- */
.dealnote{
  display:flex; flex-wrap:wrap; align-items:center; gap:12px;
  margin:0 0 18px; padding:13px 16px; border-radius:var(--r-md);
  border:1px solid rgba(56,189,248,.35); background:rgba(56,189,248,.08);
  font-size:14px; line-height:1.5; color:var(--text);
}
.dealnote.gone{border-color:rgba(249,115,22,.4); background:rgba(249,115,22,.09)}
.dealnote b{font-weight:800}
.dealnote .btn{margin-left:auto}
@media (max-width:560px){ .dealnote .btn{margin-left:0; width:100%} }

/* ---------- 27. Teilen-Leiste unter Wissensseiten ---------- */
.sharebar{
  display:flex; flex-wrap:wrap; align-items:center; gap:18px;
  padding:20px 22px; border-radius:var(--r-lg);
  border:1px solid var(--line); background:var(--surface);
}
.sharebar-txt{display:grid; gap:4px; flex:1 1 280px}
.sharebar-txt b{font-size:15.5px}
.sharebar-txt span{font-size:13.5px; color:var(--muted)}
.sharebar-btns{display:flex; flex-wrap:wrap; gap:10px}
@media (max-width:560px){
  .sharebar{padding:18px}
  .sharebar-btns{width:100%}
  .sharebar-btns .btn{flex:1 1 auto; justify-content:center}
}
