/* ============================================================
   smartphone-controller.com — Global Stylesheet
   Design System: Clean Shop / Cyberport-Style
   Palette: White + Navy + Blue Accent
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #f4f6f9;
  color: #10202f;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ---------- Design Tokens ---------- */
:root {
  --navy:       #0b2540;
  --blue:       #0a6ed1;
  --blue-light: #0a7ef0;
  --blue-dim:   #cfe3f7;
  --blue-bg:    #eef4fb;
  --ink:        #10202f;
  --ink-soft:   #52617a;
  --ink-dim:    #8a97aa;
  --bg:         #f4f6f9;
  --surface:    #ffffff;
  --surface-2:  #f7f9fc;
  --line:       #e3e8ef;
  --line-soft:  #eef1f6;
  --good:       #16a34a;
  --good-bg:    #dcfce7;
  --amber:      #92400e;
  --amber-bg:   #fef3c7;
  --red:        #dc2626;
  --red-bg:     #fee2e2;
  --shadow-sm:  0 1px 3px rgba(16,32,47,.06), 0 1px 2px rgba(16,32,47,.04);
  --shadow-md:  0 4px 16px rgba(16,32,47,.08);
  --shadow-lg:  0 14px 40px rgba(16,32,47,.13);
  --radius:     10px;
  --radius-lg:  14px;
  --max-w:      1240px;
}

/* ---------- Layout Helpers ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; width: 100%; }
.section { padding: 56px 0; }
.section-sm { padding: 36px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: var(--navy);
  color: #c3d2e3;
  font-size: 12.5px;
  font-weight: 500;
}
.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
}
.trust-strip .ts {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.trust-strip .ts svg {
  width: 14px;
  height: 14px;
  color: #5fd08a;
  flex-shrink: 0;
}

/* ---------- Header Main ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.header-main {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -.02em;
  white-space: nowrap;
  color: var(--ink);
  text-decoration: none;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.logo-mark svg { width: 19px; height: 19px; }
.logo-text { white-space: nowrap; }
.logo-tld { color: var(--blue); font-weight: 700; }

/* Search */
.searchbar {
  flex: 1;
  max-width: 540px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  height: 44px;
  transition: border-color .18s, box-shadow .18s;
}
.searchbar:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-dim);
}
.searchbar svg { width: 17px; height: 17px; color: var(--ink-dim); flex-shrink: 0; }
.searchbar input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: 14px;
  color: var(--ink);
  font-family: inherit;
}
.searchbar input::placeholder { color: var(--ink-dim); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.header-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 11px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
  transition: background .15s, color .15s;
  text-decoration: none;
}
.header-action-btn:hover { background: var(--surface-2); color: var(--ink); }
.header-action-btn svg { width: 21px; height: 21px; }

/* ---------- Main Navigation ---------- */
.main-nav {
  border-top: 1px solid var(--line-soft);
  background: var(--surface);
}
.main-nav .container {
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}
.main-nav .container::-webkit-scrollbar { display: none; }
.nav-link {
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
  border-bottom: 2.5px solid transparent;
  transition: color .15s, border-color .15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-link:hover { color: var(--blue); }
.nav-link.active { color: var(--blue); border-bottom-color: var(--blue); }
.nav-link .nav-badge {
  font-size: 9.5px;
  font-weight: 800;
  background: var(--good-bg);
  color: var(--good);
  padding: 2px 6px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.nav-link.sale { color: var(--red); }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 14px 0 0;
  font-size: 12.5px;
  color: var(--ink-dim);
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--ink-dim); transition: color .15s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { color: var(--line); }
.breadcrumb .cur { color: var(--ink-soft); font-weight: 600; }

/* ---------- Hero / Page Header ---------- */
.page-hero {
  background: linear-gradient(180deg, #eef4fb, var(--bg));
  border-bottom: 1px solid var(--line);
  padding: 44px 0 36px;
}
.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.page-hero h1 {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 14px;
}
.page-hero h1 .hl { color: var(--blue); }
.page-hero .lead {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 580px;
  line-height: 1.6;
}

/* ---------- Section Titles ---------- */
.sec-head { margin-bottom: 22px; }
.sec-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.015em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-title .bar {
  width: 4px;
  height: 22px;
  border-radius: 99px;
  background: var(--blue);
  flex-shrink: 0;
}
.sec-sub { color: var(--ink-soft); font-size: 14px; margin-top: 6px; padding-left: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14.5px;
  border-radius: var(--radius);
  padding: 12px 24px;
  cursor: pointer;
  transition: transform .15s, background .2s, box-shadow .2s;
  text-decoration: none;
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--blue-light); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--surface); color: var(--ink); border: 1.5px solid var(--line); }
.btn-secondary:hover { border-color: var(--blue); background: var(--blue-bg); }
.btn-sm { font-size: 13px; padding: 9px 18px; }
.btn-lg { font-size: 16px; padding: 15px 36px; }

/* ---------- Product Card ---------- */
.pcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
}
.pcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-dim);
}
.pcard.featured { border-color: var(--blue); box-shadow: 0 0 0 1.5px var(--blue), var(--shadow-md); }
.pcard-clickable { cursor: pointer; }
.pcard-clickable:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-color: var(--blue);
}
.pcard-clickable .pcard-name { transition: color .15s; }
.pcard-clickable:hover .pcard-name { color: var(--blue); }
/* Large product image on review detail pages (inside .cta-box) */
.cta-photo {
  display: block;
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  margin: 0 auto 16px;
  background: linear-gradient(160deg, #f7fafe, #eef3f9);
  border-radius: var(--radius);
  padding: 18px;
  mix-blend-mode: multiply;
}
.pcard-img {
  background: linear-gradient(160deg, #f7fafe, #eef3f9);
  padding: 20px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pcard-img .product-icon {
  font-size: 62px;
  filter: drop-shadow(0 8px 16px rgba(16,32,47,.14));
  transition: transform .3s;
}
.pcard:hover .product-icon { transform: scale(1.08) translateY(-3px); }
.pcard-img .pcard-photo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .3s;
}
.pcard:hover .pcard-photo { transform: scale(1.06) translateY(-2px); }
.pcard-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 4px 9px;
  border-radius: 7px;
  box-shadow: var(--shadow-sm);
}
.badge-top { background: var(--blue); color: #fff; }
.badge-budget { background: #f59e0b; color: #fff; }
.badge-new { background: var(--good); color: #fff; }
.pcard-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.pcard-brand { font-size: 11px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: .05em; font-weight: 700; margin-bottom: 3px; }
.pcard-name { font-weight: 800; font-size: 16px; line-height: 1.22; }
.pcard-claim { color: var(--ink-soft); font-size: 13px; margin-top: 7px; line-height: 1.5; }
.pcard-specs { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 11px; }
.spec-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--surface-2);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.spec-tag .k { color: var(--ink-dim); font-weight: 500; }
.pcard-foot { margin-top: auto; padding-top: 14px; }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 10px; }
.price { font-size: 20px; font-weight: 800; color: var(--ink); }
.price-approx { font-size: 11px; color: var(--ink-dim); }
.in-stock { font-size: 11.5px; color: var(--good); font-weight: 700; display: inline-flex; align-items: center; gap: 5px; margin-left: auto; }
.in-stock::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--good); display: block; }
.pcard-actions { display: flex; gap: 8px; }
.btn-detail {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1.5px solid var(--line);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .2s, background .2s;
  cursor: pointer;
}
.btn-detail:hover { border-color: var(--blue); background: var(--blue-bg); }
.btn-amazon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .12s;
  white-space: nowrap;
  cursor: pointer;
}
.btn-amazon:hover { background: var(--blue-light); }
.btn-amazon:active { transform: scale(.97); }

/* ---------- Category Card ---------- */
.cat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--blue-dim); }
.cat-icon { font-size: 36px; flex-shrink: 0; }
.cat-label { font-weight: 700; font-size: 15px; }
.cat-count { font-size: 12.5px; color: var(--ink-dim); margin-top: 3px; }
.cat-arrow { margin-left: auto; color: var(--ink-dim); font-size: 18px; flex-shrink: 0; }

/* ---------- Finder Banner ---------- */
.finder-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  color: #fff;
  box-shadow: var(--shadow-md);
}
.finder-banner .fb-text { flex: 1; }
.finder-banner h2 { font-size: 24px; font-weight: 800; letter-spacing: -.015em; margin-bottom: 8px; }
.finder-banner p { color: #93b6d0; font-size: 15px; line-height: 1.55; }
.finder-banner .fb-stats {
  display: flex;
  gap: 28px;
  margin-top: 18px;
}
.finder-banner .fb-stat .num { font-size: 22px; font-weight: 800; color: #5fb4f0; }
.finder-banner .fb-stat .cap { font-size: 11.5px; color: #7aa8c5; margin-top: 2px; }
.finder-banner .fb-cta { flex-shrink: 0; }
.finder-banner .btn-finder {
  background: #0a7ef0;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.finder-banner .btn-finder:hover { background: #1a8fff; transform: translateY(-2px); }

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  box-shadow: var(--shadow-sm);
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-ico {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--blue-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-ico svg { width: 19px; height: 19px; color: var(--blue); }
.trust-t { font-weight: 700; font-size: 13.5px; }
.trust-s { font-size: 12px; color: var(--ink-dim); margin-top: 2px; }

/* ---------- Rating Stars ---------- */
.stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px; }
.rating-row { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.rating-num { font-weight: 700; color: var(--ink); }
.rating-count { color: var(--ink-dim); }

/* ---------- Tags / Badges ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 99px;
  border: 1px solid;
}
.tag-blue { background: var(--blue-bg); color: var(--blue); border-color: var(--blue-dim); }
.tag-green { background: var(--good-bg); color: var(--good); border-color: #bbf7d0; }
.tag-amber { background: var(--amber-bg); color: var(--amber); border-color: #fde68a; }

/* ---------- Alert / Notice ---------- */
.notice {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.55;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.notice-info { background: var(--blue-bg); border-left: 3px solid var(--blue); color: var(--ink); }
.notice-amber { background: var(--amber-bg); border-left: 3px solid #f59e0b; color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #c3d2e3; margin-top: auto; }
.foot-promo-bar { border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-promo-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 24px;
  padding-bottom: 24px;
}
.foot-promo { display: flex; align-items: center; gap: 12px; }
.foot-promo-ico {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.foot-promo-ico svg { width: 19px; height: 19px; color: #5fd08a; }
.foot-promo-t { font-weight: 700; font-size: 13px; color: #fff; }
.foot-promo-s { font-size: 12px; color: #93a6bd; margin-top: 2px; }

.foot-cols { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 32px; padding: 40px 0 30px; }
.foot-brand-logo { margin-bottom: 14px; }
.foot-brand-logo .logo { color: #fff; }
.foot-brand-logo .logo-tld { color: #5fb4f0; }
.foot-brand p { font-size: 13px; line-height: 1.65; color: #93a6bd; max-width: 260px; }
.foot-socials { display: flex; gap: 8px; margin-top: 16px; }
.foot-social {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  color: #fff;
  text-decoration: none;
}
.foot-social:hover { background: var(--blue); }
.foot-social svg { width: 16px; height: 16px; }
.foot-col h4 {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #fff;
  margin-bottom: 14px;
}
.foot-col a {
  display: block;
  font-size: 13px;
  color: #a8b8cc;
  text-decoration: none;
  padding: 5px 0;
  transition: color .15s;
}
.foot-col a:hover { color: #fff; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.foot-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 16px;
  flex-wrap: wrap;
}
.foot-legal { display: flex; gap: 16px; flex-wrap: wrap; font-size: 12px; color: #7e92aa; }
.foot-legal a { color: #7e92aa; text-decoration: none; transition: color .15s; }
.foot-legal a:hover { color: #fff; }
.foot-affiliate {
  font-size: 11.5px;
  color: #6f8198;
  line-height: 1.6;
  padding: 0 0 24px;
}
.foot-pay { display: flex; gap: 6px; align-items: center; }
.foot-amazon-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #c3d2e3;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 6px 12px;
  border-radius: 7px;
}
.foot-amazon-badge strong { color: #ff9900; font-weight: 800; }
/* Footer Sterne-Rating */
.foot-rating { margin-top: 16px; }
.foot-stars { display: flex; gap: 2px; margin-bottom: 7px; }
.foot-stars svg { width: 16px; height: 16px; fill: #ffb400; }
.foot-stars .star-half { opacity: .45; }
.foot-rating-text { font-size: 12.5px; line-height: 1.5; color: #93a6bd; max-width: 260px; }
.foot-rating-text strong { color: #c3d2e3; font-weight: 700; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.text-blue { color: var(--blue); }
.text-soft { color: var(--ink-soft); }
.text-dim { color: var(--ink-dim); }
.font-mono { font-family: "SF Mono", ui-monospace, Menlo, Consolas, monospace; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.divider { border: none; border-top: 1px solid var(--line); margin: 40px 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .foot-cols { grid-template-columns: 1fr 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-promo-bar .container { grid-template-columns: repeat(2, 1fr); }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .searchbar { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .finder-banner { flex-direction: column; text-align: center; gap: 24px; padding: 28px 24px; }
  .finder-banner .fb-stats { justify-content: center; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .section { padding: 40px 0; }
}
@media (max-width: 560px) {
  .foot-promo-bar .container { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr; }
  .header-action-btn .lbl { display: none; }
  .grid-auto { grid-template-columns: 1fr; }
}

/* ---------- Verdict Box (Ratgeber & Reviews) ---------- */
.verdict-box {
  background: var(--blue-bg);
  border: 1px solid var(--blue-dim);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 24px 0;
}
.verdict-box .vb-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.verdict-box .vb-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.55;
}

/* ---------- FAQ ---------- */
.faq-list { margin-top: 8px; }
.faq-item { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.faq-a { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

/* ---------- Article Cards (Ratgeber-Hub, Homepage) ---------- */
.article-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-thumb {
  height: 140px;
  background: linear-gradient(135deg, var(--blue-bg), #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  overflow: hidden;
}
.article-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.article-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px;
}
.article-title { font-weight: 800; font-size: 15px; line-height: 1.3; margin-bottom: 8px; color: var(--ink); }
.article-excerpt { font-size: 13px; color: var(--ink-soft); line-height: 1.55; flex: 1; }
.article-meta { font-size: 12px; color: var(--ink-dim); margin-top: 12px; }

/* ---------- Category Grid ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

/* ---------- Misc referenced containers ---------- */
.hero-text { min-width: 0; }
.review-body { min-width: 0; }

/* ============================================================
   Alle-Produkte-Seite: Filterleiste, Chips, Empty-State
   ============================================================ */
.pf-bar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* ---- Sidebar-Layout ---- */
.pf-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}
.pf-sidebar {
  position: sticky;
  top: 184px;
}
.pf-sidebar-inner {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}
.pf-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.pf-sidebar-title { font-size: 16px; font-weight: 800; color: var(--ink); }
.pf-main { min-width: 0; }
.pf-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.pf-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--ink-dim);
  margin-bottom: 8px;
}
.pf-search:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-bg); }
.pf-search input {
  border: 0;
  background: transparent;
  outline: 0;
  font-size: 14px;
  color: var(--ink);
  width: 100%;
}
/* Aufklappbare Filter-Gruppen (details/summary) */
.pf-group {
  border-top: 1px solid var(--line-soft);
  padding: 4px 0;
}
.pf-group summary.pf-label {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 2px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink-dim);
}
.pf-group summary.pf-label::-webkit-details-marker { display: none; }
.pf-group summary.pf-label::after {
  content: "⌄";
  font-size: 16px;
  transition: transform .2s;
  color: var(--ink-soft);
}
.pf-group[open] summary.pf-label::after { transform: rotate(180deg); }
.pf-chips { display: flex; flex-wrap: wrap; gap: 7px; padding: 4px 2px 14px; }
.pf-chip {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  border-radius: 100px;
  padding: 6px 13px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  font-family: inherit;
}
.pf-chip:hover { border-color: var(--blue-dim); background: var(--blue-bg); color: var(--blue); }
.pf-chip.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.pf-sort { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-soft); }
.pf-sort select {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 7px 10px;
  font-size: 13px;
  font-family: inherit;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
}
.pf-count { font-size: 14px; font-weight: 700; color: var(--ink); }
.pf-reset {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  border-radius: var(--radius);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.pf-reset:hover { border-color: var(--red); color: var(--red); background: var(--red-bg); }
.pf-empty { text-align: center; padding: 60px 20px; color: var(--ink-soft); }
.pf-empty-icon { font-size: 52px; margin-bottom: 12px; }
.pf-empty h2 { font-size: 20px; margin-bottom: 8px; color: var(--ink); }
.pf-empty p { margin-bottom: 20px; }
/* Produkt-Sidebar responsive: unter 900px Filter oben, nicht sticky */
@media (max-width: 900px) {
  .pf-layout { grid-template-columns: 1fr; gap: 20px; }
  .pf-sidebar { position: static; }
  .pf-sidebar-inner { max-height: none; }
}
@media (max-width: 640px) {
  .pf-toolbar { gap: 10px; }
}

/* Hub-Seiten: dynamische Produktzahl */
.hub-toolbar { display: flex; align-items: center; justify-content: flex-end; margin-bottom: 16px; }
.hub-count { font-size: 13px; font-weight: 700; color: var(--ink-soft); }

/* ============================================================
   Startseite: Emotions-Abschnitt, Feature-Grid, Trust-Zahlen
   ============================================================ */
.emotion-section { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.emotion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.emotion-copy .eyebrow { margin-bottom: 12px; }
.emotion-copy h2 { font-size: 32px; line-height: 1.15; letter-spacing: -.02em; margin-bottom: 14px; }
.emotion-lead { color: var(--ink-soft); font-size: 16px; line-height: 1.6; margin-bottom: 22px; }
.emotion-points { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.emotion-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.5; color: var(--ink); }
.emotion-points .ep-ico {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--good-bg);
  color: var(--good);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  margin-top: 1px;
}
.emotion-points strong { font-weight: 700; }
/* Bild-Collage: großes Bild + überlappendes kleines */
.emotion-media { position: relative; }
.emotion-photo { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.emotion-photo img { display: block; width: 100%; height: auto; }
.emotion-photo-main { border: 1px solid var(--line); }
.emotion-photo-sub {
  position: absolute;
  right: -18px;
  bottom: -28px;
  width: 46%;
  border: 3px solid var(--surface);
  box-shadow: var(--shadow-lg);
}
/* Feature-Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.feature-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-dim); }
.feature-ico {
  width: 46px; height: 46px;
  border-radius: 11px;
  background: var(--blue-bg);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.feature-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 7px; }
.feature-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
/* Trust-Zahlen-Band */
.stat-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 26px;
  background: var(--navy);
  border-radius: var(--radius-lg);
}
.stat-item { text-align: center; padding: 0 22px; }
.stat-num { font-size: 30px; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.stat-cap { font-size: 12.5px; color: #9fb4cc; margin-top: 4px; }
.stat-sep { width: 1px; height: 38px; background: rgba(255,255,255,.15); }
@media (max-width: 860px) {
  .emotion-grid { grid-template-columns: 1fr; gap: 56px; }
  .emotion-photo-sub { width: 40%; right: 0; bottom: -20px; }
  .feature-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .stat-sep { display: none; }
  .stat-item { padding: 8px 16px; }
}

/* ============================================================
   Cookie-Consent-Banner
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 1000;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s, transform .3s;
  max-width: 920px;
  margin: 0 auto;
}
.cookie-banner.is-visible { opacity: 1; transform: translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
}
.cookie-text { font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); flex: 1; }
.cookie-text strong { color: var(--ink); display: block; margin-bottom: 3px; font-size: 14px; }
.cookie-text a { color: var(--blue); font-weight: 600; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  border-radius: var(--radius);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  border: 1.5px solid var(--line);
  transition: all .15s;
  white-space: nowrap;
}
.cookie-decline { background: var(--surface); color: var(--ink-soft); }
.cookie-decline:hover { border-color: var(--ink-dim); color: var(--ink); }
.cookie-accept { background: var(--blue); border-color: var(--blue); color: #fff; }
.cookie-accept:hover { background: var(--blue-light); border-color: var(--blue-light); }
@media (max-width: 640px) {
  .cookie-inner { flex-direction: column; align-items: stretch; gap: 14px; padding: 16px; }
  .cookie-actions { flex-direction: column-reverse; }
  .cookie-btn { width: 100%; }
}

/* ============================================================
   Controller-Finder (interaktiv)
   ============================================================ */
.finder {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 36px;
  max-width: 720px;
  margin: 0 auto;
}
.finder-progress { display: flex; gap: 8px; margin-bottom: 28px; }
.fp-step { flex: 1; height: 5px; border-radius: 3px; background: var(--line); transition: background .3s; }
.fp-step.is-active { background: var(--blue); }
.finder-step, .finder-result { display: none; }
.finder-step.is-active, .finder-result.is-active { display: block; animation: finderIn .35s ease; }
@keyframes finderIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.finder-q-num { font-size: 12px; font-weight: 800; color: var(--blue); text-transform: uppercase; letter-spacing: .05em; }
.finder-q { font-size: 24px; font-weight: 800; margin: 8px 0 22px; letter-spacing: -.01em; }
.finder-options { display: flex; flex-direction: column; gap: 12px; }
.finder-opt {
  text-align: left;
  padding: 18px 20px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  transition: all .15s;
}
.finder-opt:hover {
  border-color: var(--blue);
  background: var(--blue-bg);
  transform: translateX(4px);
}
.finder-back {
  margin-top: 20px;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  padding: 4px 0;
}
.finder-back:hover { color: var(--blue); }
@media (max-width: 640px) {
  .finder { padding: 24px 20px; }
  .finder-q { font-size: 20px; }
}

/* Ratgeber: Artikel-Vorschaubild unter dem Hero */
.article-hero-img {
  margin: 0 0 -8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.article-hero-img img { display: block; width: 100%; height: auto; max-height: 360px; object-fit: cover; }

/* ============================================================
   Blog: Artikel-Layout, FAQ, Related, CTA
   ============================================================ */
.article-byline { font-size: 13px; color: var(--ink-dim); margin-top: 10px; }
/* Artikel-Prosa (max-width Container) */
.blog-body h2, main .container h2 { margin-top: 32px; margin-bottom: 12px; font-size: 23px; letter-spacing: -.01em; }
main .container[style*="760px"] h2 { margin-top: 34px; margin-bottom: 12px; }
main .container[style*="760px"] h3 { margin-top: 22px; margin-bottom: 8px; font-size: 17px; }
main .container[style*="760px"] p { line-height: 1.7; margin-bottom: 14px; color: var(--ink); }
main .container[style*="760px"] ul, main .container[style*="760px"] ol { margin: 0 0 16px 22px; line-height: 1.7; }
main .container[style*="760px"] li { margin-bottom: 7px; }
main .container[style*="760px"] a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
main .container[style*="760px"] a.btn, main .container[style*="760px"] a.btn-primary { text-decoration: none; }
/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 15px;
  list-style: none;
  position: relative;
  padding-right: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--blue);
}
.faq-item[open] summary::after { content: "–"; }
.faq-a { padding: 0 18px 16px; color: var(--ink-soft); line-height: 1.6; font-size: 14.5px; }
/* Related-Box */
.related-box {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
}
.related-box h3 { font-size: 15px; margin-bottom: 12px; }
.related-links { display: flex; flex-direction: column; gap: 8px; }
.related-link { color: var(--blue); font-weight: 600; font-size: 14.5px; text-decoration: none; }
.related-link:hover { text-decoration: underline; }
/* Blog-CTA */
.blog-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  text-align: center;
}
.blog-cta h3 { color: #fff; font-size: 20px; margin-bottom: 8px; }
.blog-cta p { color: #b9c9dc; margin-bottom: 18px; font-size: 14.5px; }
/* Blog-Übersicht Grid (nutzt vorhandene article-card) */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .article-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .article-grid { grid-template-columns: 1fr; } }

/* Inline-Bild im Artikel mit Bildunterschrift */
.article-inline-img {
  margin: 24px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.article-inline-img img { display: block; width: 100%; height: auto; }
.article-inline-img figcaption {
  font-size: 13px;
  color: var(--ink-soft);
  padding: 10px 16px;
  background: var(--surface-2);
  border-top: 1px solid var(--line);
}
