/* =====================================================================
   SolarTrade – Stylesheet
   ===================================================================== */
:root {
  /* Colorway: Marineblau · Babyblau · Blaugrau · Hellgrau · Schwarz · Weiß */
  --navy: #0d2347;          /* marineblau */
  --navy-2: #16335f;
  --blue: #2b6cb0;          /* mittelblau (Links/Sekundär-CTA) */
  --blue-dark: #1f5491;
  --babyblue: #d6eafa;      /* babyblau hell (Flächen) */
  --babyblue-strong: #8ec5ec;
  --bluegray: #5b6b80;      /* blaugrau */
  --steel: #41526a;
  --amber: #8ec5ec;         /* Akzent = babyblau-strong (CTA-Highlight) */
  --amber-dark: #2b6cb0;    /* Akzent-Text/Kicker = blau */
  --green: #1f8f5f;
  --green-soft: #e6f4ee;
  --red: #d6453f;
  --ink: #14181f;           /* schwarz */
  --muted: #6b7a8c;
  --line: #e1e7ef;
  --bg: #f3f6fa;            /* hellgrau */
  --card: #ffffff;
  --shadow-sm: 0 1px 3px rgba(13, 38, 66, 0.08);
  --shadow: 0 6px 24px rgba(13, 38, 66, 0.10);
  --shadow-lg: 0 18px 48px rgba(13, 38, 66, 0.16);
  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1240px;
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg { display: block; max-width: 100%; }

/* ---- Inline-Icon-Standardgrößen (verhindert aufgeblähte SVGs) ---- */
h2 svg, h3 svg, h4 svg { width: 1.05em; height: 1.05em; vertical-align: -2px; display: inline-block; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.mainnav a svg { width: 17px; height: 17px; flex-shrink: 0; }
.ci-remove svg { width: 15px; height: 15px; }
.sum-note svg { width: 14px; height: 14px; vertical-align: -2px; display: inline-block; }
.pc-stars svg, .pd-stars svg { width: 16px; height: 16px; }
h1, h2, h3, h4 { line-height: 1.2; color: var(--navy); margin: 0 0 .5em; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.section-sm { padding: 36px 0; }
.muted { color: var(--muted); }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer; font-weight: 700; font-size: 15px;
  padding: 12px 22px; border-radius: 10px; font-family: inherit;
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--babyblue-strong); color: var(--navy); box-shadow: 0 6px 16px rgba(142, 197, 236, .45); font-weight: 800; }
.btn-primary:hover { background: #74b4e6; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); }
.btn-white { background: #fff; color: var(--navy); border: 1.5px solid #fff; }
.btn-white:hover { background: #eef4fb; }
.btn-ghost { background: #fff; color: var(--navy); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-sm { padding: 9px 14px; font-size: 13.5px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy); color: #cfe0f2; font-size: 13px;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 16px; }
.topbar a { color: #cfe0f2; }
.topbar-usps { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-usps span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-usps svg { width: 14px; height: 14px; }
.topbar-right { display: flex; gap: 18px; }

/* ---------- Header ---------- */
.site-header { background: #fff; box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 50; }
.header-main { display: flex; align-items: center; gap: 24px; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo:hover { text-decoration: none; }
.logo-mark { width: 42px; height: 42px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text b { font-size: 22px; color: var(--navy); letter-spacing: -.3px; }
.logo-text b span { color: var(--amber-dark); }
.logo-text small { font-size: 10.5px; color: var(--muted); letter-spacing: 1.4px; text-transform: uppercase; margin-top: 3px; }

.search { flex: 1; display: flex; max-width: 560px; }
.search input {
  flex: 1; border: 1.5px solid var(--line); border-right: 0;
  border-radius: 10px 0 0 10px; padding: 11px 16px; font-size: 15px; font-family: inherit;
  outline: none;
}
.search input:focus { border-color: var(--blue); }
.search button {
  border: 0; background: var(--navy); color: #fff; padding: 0 18px;
  border-radius: 0 10px 10px 0; cursor: pointer;
}
.search button svg { width: 20px; height: 20px; }

.header-actions { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.header-action { display: flex; align-items: center; gap: 8px; color: var(--navy); cursor: pointer; }
.header-action:hover { color: var(--blue); text-decoration: none; }
.header-action svg { width: 26px; height: 26px; }
.header-action .ha-text { display: flex; flex-direction: column; line-height: 1.15; font-size: 12px; }
.header-action .ha-text b { font-size: 13.5px; }
.cart-link { position: relative; }
.cart-count {
  position: absolute; top: -7px; left: 16px; background: var(--amber); color: #3a2a00;
  font-size: 11px; font-weight: 800; min-width: 18px; height: 18px; padding: 0 4px;
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
}

/* ---------- Nav ---------- */
.mainnav { background: var(--navy); }
.mainnav .wrap { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.mainnav a {
  color: #eaf1f8; font-weight: 600; font-size: 14.5px; padding: 13px 16px;
  display: inline-flex; align-items: center; gap: 7px; border-bottom: 3px solid transparent;
}
.mainnav a:hover, .mainnav a.active { background: var(--navy-2); border-bottom-color: var(--amber); text-decoration: none; }
.mainnav a.cat-all { background: var(--babyblue-strong); color: var(--navy); border-radius: 8px; margin-right: 8px; border-bottom: 0; font-weight: 800; }
.mainnav a.cat-all:hover { background: #74b4e6; color: var(--navy); }
.nav-spacer { margin-left: auto; }
.nav-phone { color: var(--babyblue-strong) !important; font-weight: 700; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(120deg, var(--navy) 0%, #103a66 55%, #14507f 100%);
  color: #fff; position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -120px; top: -120px; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(255,179,0,.28), transparent 65%); border-radius: 50%;
}
.hero .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; padding: 64px 20px; position: relative; z-index: 1; }
.hero h1 { color: #fff; font-size: 42px; margin-bottom: 16px; letter-spacing: -.5px; }
.hero h1 span { color: var(--amber); }
.hero p { font-size: 18px; color: #d4e2f1; margin-bottom: 26px; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-points { display: flex; gap: 24px; margin-top: 30px; flex-wrap: wrap; }
.hero-points div { display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: #eaf2fb; }
.hero-points svg { width: 22px; height: 22px; color: var(--amber); flex-shrink: 0; }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual .panel-svg { width: 240px; filter: drop-shadow(0 24px 48px rgba(0,0,0,.45)); transform: rotate(-6deg); }
.hero-badge {
  position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  background: #fff; color: var(--navy); border-radius: 12px; padding: 12px 18px; box-shadow: var(--shadow-lg);
  text-align: center; white-space: nowrap;
}
.hero-badge b { font-size: 20px; color: var(--green); display: block; }
.hero-badge small { color: var(--muted); }

/* ---------- USP strip ---------- */
.usp-strip { background: #fff; border-bottom: 1px solid var(--line); }
.usp-strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.usp { display: flex; align-items: center; gap: 13px; padding: 20px; border-right: 1px solid var(--line); }
.usp:last-child { border-right: 0; }
.usp-ico { width: 42px; height: 42px; flex-shrink: 0; color: var(--blue); background: #eaf3fd; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.usp-ico svg { width: 24px; height: 24px; }
.usp b { display: block; font-size: 14.5px; color: var(--navy); }
.usp small { color: var(--muted); font-size: 12.5px; }

/* ---------- Section heading ---------- */
.sec-head { text-align: center; margin-bottom: 36px; }
.sec-head .kicker { color: var(--amber-dark); font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; font-size: 13px; }
.sec-head h2 { font-size: 32px; margin: 8px 0; }
.sec-head p { color: var(--muted); max-width: 620px; margin: 0 auto; font-size: 16px; }

/* ---------- Category / brand cards ---------- */
.brand-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.brand-chip {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 16px;
  text-align: center; transition: .15s; color: var(--navy);
}
.brand-chip:hover { box-shadow: var(--shadow); transform: translateY(-3px); text-decoration: none; border-color: #d2e2f4; }
.brand-chip b { display: block; font-size: 16px; }
.brand-chip small { color: var(--muted); font-size: 12.5px; }

.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 170px; color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; background: var(--navy);
}
.cat-card.c1 { background: linear-gradient(135deg, #0b2440, #14507f); }
.cat-card.c2 { background: linear-gradient(135deg, #103a2e, #1aa260); }
.cat-card.c3 { background: linear-gradient(135deg, #3a2a52, #6a4bb0); }
.cat-card.c4 { background: linear-gradient(135deg, #4a2f00, #f59e0b); }
.cat-card:hover { text-decoration: none; box-shadow: var(--shadow-lg); }
.cat-card h3 { color: #fff; font-size: 20px; margin-bottom: 4px; }
.cat-card span { font-size: 13.5px; opacity: .9; }
.cat-card .cat-ico { position: absolute; top: 18px; right: 18px; opacity: .35; }
.cat-card .cat-ico svg { width: 54px; height: 54px; }
.soon { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.2); padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }

/* ---------- Product grid / cards ---------- */
.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: .15s; position: relative;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: #d2e2f4; }
.pc-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--navy); color: #fff;
  font-size: 11.5px; font-weight: 800; padding: 5px 11px; border-radius: 20px; letter-spacing: .3px;
}
.pc-badge.premium { background: linear-gradient(135deg,var(--navy),var(--blue)); color:#fff; }
.pc-badge.abverkauf { background: var(--red); color:#fff; }
.pc-badge.neu { background: var(--babyblue-strong); color: var(--navy); }
.pc-fav { position: absolute; top: 12px; right: 12px; z-index: 2; color: var(--muted); background:#fff; border-radius:50%; width:32px;height:32px; display:flex;align-items:center;justify-content:center; box-shadow: var(--shadow-sm); }
.pc-img { background: linear-gradient(160deg,#eef3f8,#dde7f1); padding: 22px; display: flex; justify-content: center; }
.pc-img .panel-svg { width: 130px; }
.pc-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.pc-brand { font-size: 12px; color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.pc-name { font-size: 16px; font-weight: 700; color: var(--navy); margin: 3px 0 8px; }
.pc-name a { color: inherit; }
.pc-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.pc-tag { background: #eef3f8; color: #41566c; font-size: 11.5px; padding: 4px 9px; border-radius: 6px; font-weight: 600; }
.pc-stars { color: var(--amber-dark); font-size: 13px; margin-bottom: 10px; }
.pc-stars small { color: var(--muted); margin-left: 5px; }
.pc-watt { display:flex; gap:5px; flex-wrap:wrap; margin-bottom:12px; }
.pc-watt span { border:1px solid var(--line); border-radius:6px; font-size:11.5px; padding:3px 7px; color:var(--muted); font-weight:600;}
.pc-foot { margin-top: auto; }
.pc-price-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 4px; }
.pc-price { font-size: 23px; font-weight: 800; color: var(--navy); }
.pc-price .ab { font-size: 12px; font-weight: 600; color: var(--muted); margin-right: 4px; }
.pc-wp { font-size: 12.5px; color: var(--green); font-weight: 700; }
.pc-net { font-size: 11.5px; color: var(--muted); margin-bottom: 12px; }
.pc-stock { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--green); font-weight: 700; margin-bottom: 12px; }
.pc-stock .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.pc-actions { display: flex; gap: 8px; }
.pc-actions .btn { flex: 1; }

/* ---------- Shop layout ---------- */
.shop-head { background: linear-gradient(120deg,var(--navy),#14507f); color:#fff; padding: 34px 0; }
.shop-head h1 { color:#fff; font-size: 30px; margin-bottom: 6px; }
.shop-head .crumbs { font-size: 13px; color:#bcd2ea; margin-bottom: 14px; }
.shop-head .crumbs a { color:#bcd2ea; }
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; padding: 30px 0 60px; }
.filters { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 6px 18px 18px; position: sticky; top: 90px; }
.filter-group { border-bottom: 1px solid var(--line); padding: 16px 0; }
.filter-group:last-child { border-bottom: 0; }
.filter-group h4 { font-size: 14px; margin: 0 0 12px; color: var(--navy); display:flex; align-items:center; gap:7px;}
.filter-opt { display: flex; align-items: center; gap: 9px; padding: 5px 0; font-size: 14px; color: #3a4a5a; cursor: pointer; }
.filter-opt input { width: 17px; height: 17px; accent-color: var(--blue); cursor: pointer; }
.filter-opt .count { margin-left: auto; color: var(--muted); font-size: 12px; }
.filter-reset { background:none;border:0;color:var(--blue); cursor:pointer; font-size:13px; padding:0; font-family:inherit; font-weight:600;}

.shop-main .toolbar { display:flex; align-items:center; justify-content: space-between; margin-bottom: 18px; gap: 12px; flex-wrap: wrap;}
.toolbar .count-info { color: var(--muted); font-size: 14px; }
.toolbar select { padding: 9px 14px; border:1.5px solid var(--line); border-radius: 9px; font-family: inherit; font-size: 14px; background:#fff; cursor:pointer;}
.products.cols3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- Product detail ---------- */
.pd-crumbs { padding: 16px 0; font-size: 13px; color: var(--muted); }
.pd-crumbs a { color: var(--muted); }
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; padding-bottom: 30px; }
.pd-gallery { background: linear-gradient(160deg,#eef3f8,#dde7f1); border-radius: var(--radius); padding: 40px; display:flex; align-items:center; justify-content:center; position: sticky; top: 90px; }
.pd-gallery .panel-svg { width: 280px; filter: drop-shadow(0 18px 36px rgba(13,38,66,.25)); }
.pd-info h1 { font-size: 28px; margin: 6px 0 4px; }
.pd-brandline { color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: .6px; font-size: 13px; }
.pd-stars { color: var(--amber-dark); margin: 8px 0 16px; }
.pd-stars small { color: var(--muted); margin-left: 6px; }
.pd-high { list-style: none; padding: 0; margin: 0 0 22px; }
.pd-high li { display: flex; gap: 10px; padding: 6px 0; font-size: 14.5px; color: #2c3e50; }
.pd-high svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; margin-top: 1px; }
.pd-buybox { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.pd-variant-label { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 9px; display:block;}
.watt-opts { display:flex; flex-wrap:wrap; gap: 8px; margin-bottom: 18px; }
.watt-opt {
  border:1.5px solid var(--line); background:#fff; border-radius: 9px; padding: 9px 13px; cursor: pointer;
  font-weight: 700; font-size: 14px; color: var(--navy); text-align:center; min-width: 70px; transition:.12s;
}
.watt-opt small { display:block; font-weight:600; font-size:11px; color: var(--muted); }
.watt-opt:hover { border-color: var(--blue); }
.watt-opt.active { border-color: var(--blue); background: #eaf3fd; box-shadow: inset 0 0 0 1px var(--blue); }
.pd-price-box { display:flex; align-items:baseline; gap: 12px; margin-bottom: 4px; }
.pd-price { font-size: 34px; font-weight: 800; color: var(--navy); }
.pd-wp { color: var(--green); font-weight: 700; }
.pd-net { color: var(--muted); font-size: 13px; margin-bottom: 14px; }
.pd-stock { display:inline-flex; align-items:center; gap:7px; color: var(--green); font-weight:700; font-size: 14px; margin-bottom: 18px;}
.pd-stock .dot { width:9px;height:9px;border-radius:50%;background:var(--green);}
.qty-row { display:flex; gap: 12px; align-items: stretch; margin-bottom: 14px; }
.qty { display:flex; border:1.5px solid var(--line); border-radius: 10px; overflow:hidden;}
.qty button { width: 42px; border:0; background:#f1f5f9; font-size: 20px; cursor:pointer; color:var(--navy);}
.qty button:hover { background:#e2eaf2;}
.qty input { width: 56px; border:0; text-align:center; font-size: 16px; font-weight:700; font-family:inherit; outline:none;}
.pd-buybox .btn-primary { flex:1; }
.pd-meta { display:flex; gap: 18px; flex-wrap:wrap; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted);}
.pd-meta div { display:flex; align-items:center; gap:7px;}
.pd-meta svg { width:18px;height:18px; color: var(--blue);}
.pallet-hint { background: var(--green-soft); border-radius: 10px; padding: 11px 14px; font-size: 13px; color: #14653f; margin-top: 14px; display:flex; gap:9px; align-items:flex-start;}
.pallet-hint svg { width:18px;height:18px;flex-shrink:0;margin-top:1px;}

/* tabs / specs */
.pd-tabs { border-top: 1px solid var(--line); margin-top: 36px; padding-top: 30px; }
.tab-btns { display:flex; gap: 6px; border-bottom: 2px solid var(--line); margin-bottom: 22px; flex-wrap:wrap;}
.tab-btn { background:none;border:0; padding: 12px 18px; font-size: 15px; font-weight: 700; color: var(--muted); cursor:pointer; border-bottom: 3px solid transparent; margin-bottom:-2px; font-family:inherit;}
.tab-btn.active { color: var(--navy); border-bottom-color: var(--amber); }
.tab-pane { display:none; }
.tab-pane.active { display:block; }
.spec-table { width:100%; border-collapse: collapse; background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden;}
.spec-table tr:nth-child(even){ background:#f7fafc; }
.spec-table th, .spec-table td { text-align:left; padding: 12px 18px; font-size: 14.5px; border-bottom: 1px solid var(--line);}
.spec-table th { color: var(--muted); font-weight: 600; width: 45%; }
.spec-table td { color: var(--navy); font-weight: 600; }
.spec-cols { display:grid; grid-template-columns: 1fr 1fr; gap: 24px;}
.dl-list { list-style:none; padding:0; margin:0; display:grid; gap:10px;}
.dl-list a { display:flex; align-items:center; gap:11px; background:#fff; border:1px solid var(--line); border-radius:10px; padding:13px 16px; color:var(--navy); font-weight:600;}
.dl-list a:hover { border-color: var(--blue); text-decoration:none; box-shadow: var(--shadow-sm);}
.dl-list svg { width:22px;height:22px;color:var(--red);}

/* ---------- Cart ---------- */
.cart-grid { display:grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; padding: 30px 0 60px;}
.cart-items { background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden;}
.cart-row { display:grid; grid-template-columns: 90px 1fr auto; gap: 16px; padding: 18px; border-bottom: 1px solid var(--line); align-items:center;}
.cart-row:last-child { border-bottom:0;}
.cart-thumb { background: linear-gradient(160deg,#eef3f8,#dde7f1); border-radius:10px; padding:8px; display:flex; justify-content:center;}
.cart-thumb .panel-svg { width: 50px;}
.cart-row .ci-name { font-weight:700; color:var(--navy);}
.cart-row .ci-name a{color:inherit;}
.cart-row .ci-meta { font-size: 13px; color: var(--muted);}
.cart-row .ci-right { text-align:right; display:flex; flex-direction:column; gap:8px; align-items:flex-end;}
.cart-row .ci-price { font-weight:800; color:var(--navy); font-size: 17px;}
.ci-remove { background:none;border:0;color:var(--red); cursor:pointer; font-size:13px; font-family:inherit; display:flex; align-items:center; gap:5px;}
.cart-summary { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 22px; position: sticky; top: 90px;}
.cart-summary h3 { font-size: 19px; margin-bottom: 16px;}
.sum-row { display:flex; justify-content: space-between; padding: 8px 0; font-size: 15px; color: #3a4a5a;}
.sum-row.total { border-top: 2px solid var(--line); margin-top: 8px; padding-top: 14px; font-size: 21px; font-weight:800; color: var(--navy);}
.sum-note { font-size: 12.5px; color: var(--muted); margin-top: 10px;}
.cart-empty { text-align:center; padding: 70px 20px; background:#fff; border:1px solid var(--line); border-radius:var(--radius);}
.cart-empty svg { width: 70px; height:70px; color:#c5d2e0; margin: 0 auto 18px;}

/* ---------- Forms ---------- */
.form-grid { display:grid; grid-template-columns: 1fr 1fr; gap:16px;}
.field { display:flex; flex-direction:column; gap:6px; margin-bottom: 4px;}
.field.full { grid-column: 1 / -1;}
.field label { font-size: 13.5px; font-weight: 700; color: var(--navy);}
.field input, .field textarea, .field select {
  border:1.5px solid var(--line); border-radius: 10px; padding: 11px 14px; font-size: 15px; font-family:inherit; outline:none;
}
.field input:focus, .field textarea:focus { border-color: var(--blue);}
.field textarea { min-height: 130px; resize: vertical;}

/* ---------- Generic panels / info ---------- */
.panel-box { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 30px;}
.two-col { display:grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items:center;}
.feature-list { list-style:none; padding:0; margin:0;}
.feature-list li { display:flex; gap:12px; padding: 9px 0; font-size: 15px;}
.feature-list svg { width:22px;height:22px;color:var(--green); flex-shrink:0;}
.stats { display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align:center;}
.stat b { display:block; font-size: 34px; color: var(--amber-dark);}
.stat span { color: var(--muted); font-size: 14px;}

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 24px; right: 24px; background: var(--navy); color:#fff;
  padding: 14px 20px; border-radius: 12px; box-shadow: var(--shadow-lg); z-index: 200;
  display:flex; align-items:center; gap: 11px; transform: translateY(120px); opacity:0;
  transition: .3s cubic-bezier(.2,.8,.2,1); font-weight:600; max-width: 340px;
}
.toast.show { transform: translateY(0); opacity:1;}
.toast svg { width:22px;height:22px;color: var(--green); flex-shrink:0;}

/* ---------- Newsletter / CTA band ---------- */
.cta-band { background: linear-gradient(120deg,var(--amber),#ff8a00); color:#3a2a00;}
.cta-band .wrap { display:flex; align-items:center; justify-content: space-between; gap: 24px; padding: 38px 20px; flex-wrap:wrap;}
.cta-band h2 { color:#3a2a00; margin:0 0 6px;}
.cta-band p { margin:0; opacity:.85;}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #c2d3e6; margin-top: 50px;}
.footer-top { padding: 48px 0 32px; display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px;}
.footer-top h4 { color:#fff; font-size: 15px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .6px;}
.footer-top a { color:#c2d3e6; display:block; padding: 4px 0; font-size: 14px;}
.footer-top a:hover { color:#fff;}
.footer-about p { font-size: 14px; color:#a9bfd6; margin: 12px 0;}
.footer-pay { display:flex; gap:8px; flex-wrap:wrap; margin-top: 14px;}
.footer-pay span { background: rgba(255,255,255,.1); border-radius: 6px; padding: 5px 10px; font-size: 11.5px; font-weight:700;}
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; font-size: 13px; display:flex; justify-content: space-between; gap: 16px; flex-wrap:wrap; color:#8fa8c2;}
.footer-bottom a { color:#8fa8c2;}
.footer-contact-item { display:flex; align-items:center; gap:9px; margin-bottom:10px; font-size:14px;}
.footer-contact-item svg { width:18px;height:18px;color:var(--amber); flex-shrink:0;}

/* ---------- Mobile ---------- */
.menu-toggle { display:none; background:none;border:0;cursor:pointer;color:var(--navy);}
.menu-toggle svg{width:28px;height:28px;}
@media (max-width: 1080px){
  .hero .wrap{grid-template-columns:1fr;} .hero-visual{order:-1;}
  .products, .cat-grid { grid-template-columns: repeat(3,1fr);}
  .brand-strip{grid-template-columns:repeat(3,1fr);}
  .footer-top{grid-template-columns:1fr 1fr;}
}
@media (max-width: 860px){
  .usp-strip .wrap{grid-template-columns:1fr 1fr;} .usp:nth-child(2n){border-right:0;}
  .shop-layout{grid-template-columns:1fr;} .filters{position:static;}
  .pd-grid{grid-template-columns:1fr;} .pd-gallery{position:static;}
  .cart-grid{grid-template-columns:1fr;}
  .two-col, .spec-cols{grid-template-columns:1fr;}
  .stats{grid-template-columns:1fr 1fr;}
  .search{order:3; max-width:100%; flex-basis:100%;}
  .header-main{flex-wrap:wrap;}
}
@media (max-width: 620px){
  .products, .cat-grid, .brand-strip { grid-template-columns: 1fr 1fr;}
  .pc-actions{flex-direction:column;}
  .pc-badge{font-size:10.5px;padding:4px 8px;}
  .hero h1{font-size:32px;} .sec-head h2{font-size:26px;}
  .topbar-usps{display:none;}
  .mainnav .wrap{overflow-x:auto; flex-wrap:nowrap;}
  .form-grid{grid-template-columns:1fr;}
  .footer-top{grid-template-columns:1fr;}
  .header-action .ha-text{display:none;}
}

/* =====================================================================
   Container-Fokus, Urgency & Trust-/Marketing-Elemente
   ===================================================================== */

/* Urgency-/Aktionsbanner (ganz oben) */
.urgency-bar { background: var(--red); color:#fff; font-size:13.5px; font-weight:600; }
.urgency-bar .wrap { display:flex; align-items:center; justify-content:center; gap:14px; min-height:36px; flex-wrap:wrap; text-align:center; padding:6px 20px; }
.urgency-bar b { font-weight:800; }
.urgency-bar .countdown { background:rgba(255,255,255,.18); padding:2px 9px; border-radius:6px; font-variant-numeric: tabular-nums; }
.urgency-bar svg { width:16px; height:16px; flex-shrink:0; vertical-align:-3px; }
.config-save svg { width:16px; height:16px; vertical-align:-3px; display:inline-block; }
.pc-crow .lab svg { width:15px; height:15px; flex-shrink:0; }
.cert svg { flex-shrink:0; }

/* Container-USP-Karten (Home) */
.cfocus { display:grid; grid-template-columns: repeat(3,1fr); gap:20px; }
.cfocus-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:26px 22px; text-align:center; }
.cfocus-card .cf-ico { width:58px;height:58px;margin:0 auto 14px; border-radius:14px; background:var(--babyblue); color:var(--navy); display:flex;align-items:center;justify-content:center;}
.cfocus-card .cf-ico svg{width:30px;height:30px;}
.cfocus-card h3{font-size:19px;margin-bottom:6px;}
.cfocus-card p{color:var(--muted);font-size:14px;margin:0;}

/* Container-Preisbox in Produktkarte */
.pc-container { border-top:1px dashed var(--line); margin:10px 0 12px; padding-top:10px; }
.pc-crow { display:flex; align-items:center; justify-content:space-between; font-size:13px; padding:3px 0; }
.pc-crow .lab { color:var(--steel); display:flex; align-items:center; gap:7px; }
.pc-crow .val { font-weight:800; color:var(--navy); }
.save-pill { background:var(--green-soft); color:var(--green); font-weight:800; font-size:11px; padding:2px 8px; border-radius:20px; }

/* Container-Rechner (Produktseite) */
.config { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:22px; box-shadow:var(--shadow-sm); }
.config h3 { font-size:18px; margin-bottom:4px; }
.config .hint { color:var(--muted); font-size:13px; margin-bottom:16px; }
.config-modes { display:grid; grid-template-columns: repeat(5,1fr); gap:8px; margin-bottom:18px; }
.config-mode { border:1.5px solid var(--line); border-radius:10px; background:#fff; padding:11px 8px; cursor:pointer; text-align:center; transition:.12s; }
.config-mode:hover { border-color:var(--blue); }
.config-mode.active { border-color:var(--blue); background:var(--babyblue); box-shadow:inset 0 0 0 1px var(--blue); }
.config-mode b { display:block; font-size:13.5px; color:var(--navy); }
.config-mode small { display:block; font-size:10.5px; color:var(--muted); margin-top:2px; line-height:1.2; }
.config-summary { background:var(--bg); border-radius:12px; padding:16px; display:grid; grid-template-columns: repeat(4,1fr); gap:10px; margin-bottom:14px; }
.config-stat { text-align:center; }
.config-stat b { display:block; font-size:20px; color:var(--navy); }
.config-stat span { font-size:11.5px; color:var(--muted); }
.config-priceline { display:flex; align-items:baseline; justify-content:space-between; flex-wrap:wrap; gap:6px; margin-bottom:4px; }
.config-total { font-size:30px; font-weight:800; color:var(--navy); }
.config-total small { font-size:14px; font-weight:600; color:var(--muted); }
.config-perwp { color:var(--green); font-weight:800; }
.config-save { color:var(--green); font-weight:700; font-size:13.5px; margin-bottom:14px; }
.config-cta { display:flex; gap:10px; flex-wrap:wrap; }
.config-cta .btn { flex:1; min-width:160px; }
.onreq-note { background:var(--babyblue); color:var(--navy); border-radius:10px; padding:11px 14px; font-size:13px; margin-top:6px; display:flex; gap:9px; align-items:flex-start;}
.onreq-note svg{width:18px;height:18px;flex-shrink:0;}

/* Vertrauens-/Logo-Leiste */
.trust-strip { background:#fff; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.trust-strip .wrap { display:flex; align-items:center; justify-content:space-between; gap:18px; padding:18px 20px; flex-wrap:wrap; }
.trust-item { display:flex; align-items:center; gap:11px; }
.trust-item .ti-ico { width:40px;height:40px;border-radius:10px;background:var(--babyblue);color:var(--navy);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.trust-item .ti-ico svg{width:22px;height:22px;}
.trust-item b{display:block;font-size:14px;color:var(--navy);}
.trust-item small{color:var(--muted);font-size:12px;}

/* Zertifikate-Chips */
.cert-row { display:flex; gap:12px; flex-wrap:wrap; justify-content:center; }
.cert { border:1px solid var(--line); background:#fff; border-radius:10px; padding:12px 18px; font-weight:800; color:var(--steel); letter-spacing:.5px; display:flex; align-items:center; gap:8px; font-size:14px; }
.cert svg{width:18px;height:18px;color:var(--blue);}

/* Bewertungen / Testimonials */
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.testi { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:22px; }
.testi .t-stars { color:var(--blue); font-size:16px; margin-bottom:10px; letter-spacing:1px;}
.testi p { font-size:14.5px; color:var(--steel); margin:0 0 16px; }
.testi .t-author { display:flex; align-items:center; gap:11px; }
.testi .t-ava { width:40px;height:40px;border-radius:50%;background:var(--navy);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800;}
.testi .t-author b{display:block;font-size:14px;color:var(--navy);}
.testi .t-author small{color:var(--muted);font-size:12.5px;}
.verified { display:inline-flex;align-items:center;gap:5px; color:var(--green); font-size:12px; font-weight:700; margin-top:3px;}
.verified svg{width:14px;height:14px;}

/* KPI-/Zahlen-Band */
.kpi-band { background: linear-gradient(120deg, var(--navy), #16335f 60%, #1f5491); color:#fff; }
.kpi-band .wrap { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; padding:40px 20px; }
.kpi { text-align:center; }
.kpi b { display:block; font-size:38px; color:var(--babyblue-strong); line-height:1; }
.kpi span { color:#c8dcf0; font-size:14px; }

/* Ablauf / So funktioniert's */
.steps { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.step { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:24px 20px; position:relative; }
.step .step-no { width:36px;height:36px;border-radius:50%;background:var(--navy);color:#fff;font-weight:800;display:flex;align-items:center;justify-content:center;margin-bottom:14px;}
.step h4{font-size:16px;margin-bottom:6px;}
.step p{color:var(--muted);font-size:13.5px;margin:0;}

/* Garantie-Karten */
.guarantee-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.gcard { background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:24px;display:flex;gap:14px;align-items:flex-start;}
.gcard .g-ico{width:46px;height:46px;border-radius:12px;background:var(--babyblue);color:var(--navy);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.gcard .g-ico svg{width:24px;height:24px;}
.gcard h4{font-size:16px;margin-bottom:5px;}
.gcard p{color:var(--muted);font-size:13.5px;margin:0;}

/* Container-Visual */
.cv-band { background:var(--navy); color:#fff; border-radius:var(--radius); padding:30px; display:grid; grid-template-columns:1.1fr .9fr; gap:30px; align-items:center;}
.cv-band h2{color:#fff;font-size:28px;}
.cv-band p{color:#c8dcf0;font-size:15.5px;}
.cv-stack { display:flex; flex-direction:column; gap:8px; }
.cv-row { display:flex; gap:6px; }
.cv-mod { flex:1; aspect-ratio: 1/1.55; background:linear-gradient(160deg,#1b2f50,#0a1424); border:1px solid #2a4877; border-radius:4px; }

@media (max-width: 1080px){
  .config-modes{grid-template-columns:repeat(3,1fr);}
  .testi-grid,.steps,.guarantee-cards,.cfocus{grid-template-columns:1fr 1fr;}
  .cv-band{grid-template-columns:1fr;}
}
@media (max-width: 860px){
  .kpi-band .wrap{grid-template-columns:1fr 1fr;}
  .config-summary{grid-template-columns:1fr 1fr;}
  .trust-strip .wrap{justify-content:flex-start;}
}
@media (max-width: 620px){
  .cfocus,.testi-grid,.steps,.guarantee-cards{grid-template-columns:1fr;}
  .config-modes{grid-template-columns:1fr 1fr;}
  .config-cta .btn{min-width:0;}
}

/* =====================================================================
   Kundenportal / Deal Room
   ===================================================================== */
.portal-login { max-width: 460px; margin: 56px auto; }
.portal-login .panel-box { text-align: center; }
.portal-login .pl-ico { width:60px;height:60px;border-radius:16px;background:var(--babyblue);color:var(--navy);display:flex;align-items:center;justify-content:center;margin:0 auto 16px;}
.portal-login .pl-ico svg{width:30px;height:30px;}
.portal-login .field { text-align:left; }
.portal-login .demo-hint { font-size:12.5px;color:var(--muted);margin-top:14px;}

.portal-bar { background: var(--navy); color:#fff; }
.portal-bar .wrap { display:flex; align-items:center; justify-content:space-between; gap:12px; padding:16px 20px; flex-wrap:wrap; }
.portal-bar .pb-left b { font-size:17px; color:#fff; display:block; }
.portal-bar .pb-left small { color:#bcd2ea; font-size:13px; }
.portal-bar .pb-right { display:flex; align-items:center; gap:14px; font-size:13px; }
.portal-bar .pb-valid { background:rgba(255,255,255,.12); padding:6px 12px; border-radius:8px; color:#eaf2fb; }
.portal-bar a { color:#bcd2ea; }

.stepper { display:flex; margin: 4px 0 24px; }
.stp { flex:1; text-align:center; position:relative; }
.stp .dot { width:32px;height:32px;border-radius:50%; margin:0 auto 8px; background:#fff; border:2px solid var(--line); color:var(--muted); display:flex;align-items:center;justify-content:center; font-weight:800; font-size:13px; position:relative; z-index:1; }
.stp .dot svg{width:16px;height:16px;}
.stp .lbl { font-size:12px; color:var(--muted); font-weight:600; padding:0 4px; }
.stp::before { content:''; position:absolute; top:16px; left:-50%; width:100%; height:2px; background:var(--line); z-index:0; }
.stp:first-child::before { display:none; }
.stp.done .dot { background:var(--green); border-color:var(--green); color:#fff; }
.stp.done::before, .stp.current::before { background:var(--green); }
.stp.current .dot { background:var(--navy); border-color:var(--navy); color:#fff; box-shadow:0 0 0 4px var(--babyblue); }
.stp.current .lbl { color:var(--navy); font-weight:800; }

.deal-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:22px; margin-bottom:20px; }
.deal-card h3 { font-size:18px; margin-bottom:14px; display:flex; align-items:center; gap:9px; }
.deal-card h3 svg{width:20px;height:20px;color:var(--blue);}
.deal-item { display:grid; grid-template-columns:64px 1fr auto; gap:14px; align-items:center; padding:14px 0; border-bottom:1px solid var(--line); }
.deal-item:last-child { border-bottom:0; }
.deal-item .di-thumb { background:linear-gradient(160deg,#eef3f8,#dde7f1); border-radius:9px; padding:6px; display:flex;justify-content:center; }
.deal-item .di-thumb .panel-svg{ width:42px; }
.deal-item .di-name { font-weight:700; color:var(--navy); }
.deal-item .di-meta { font-size:13px; color:var(--muted); }
.deal-item .di-price { text-align:right; font-weight:800; color:var(--navy); }
.deal-item .di-price small { display:block; font-weight:600; color:var(--muted); font-size:12px; }

.accept-box { background:var(--babyblue); border-radius:12px; padding:18px; margin-top:6px; }
.accept-box.done { background:var(--green-soft); }
.accept-row { display:flex; align-items:center; gap:10px; margin-bottom:14px; font-size:14px; color:var(--steel); }
.accept-row input { width:18px;height:18px;accent-color:var(--navy);flex-shrink:0; }
.accept-done { display:flex; gap:11px; align-items:flex-start; color:#14653f; }
.accept-done svg{width:22px;height:22px;flex-shrink:0;color:var(--green);}

.pay-box { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:20px; }
.pay-line { display:flex; justify-content:space-between; align-items:center; padding:7px 0; font-size:14.5px; color:var(--steel); }
.pay-line.big { font-size:18px; font-weight:800; color:var(--navy); border-top:2px solid var(--line); margin-top:8px; padding-top:13px; }
.pay-bank { background:var(--bg); border-radius:10px; padding:13px 15px; margin-top:12px; font-size:13.5px; }
.pay-bank .iban { font-family:"Consolas",ui-monospace,monospace; font-weight:700; color:var(--navy); letter-spacing:.5px; }
.pill { font-size:11.5px; font-weight:800; padding:3px 11px; border-radius:20px; }
.pill.open { background:#fde3e1; color:var(--red); }
.pill.paid { background:var(--green-soft); color:var(--green); }
.pill.todo { background:#eef3f8; color:var(--muted); }

.contact-card { display:flex; gap:14px; align-items:center; }
.contact-card .ava { width:54px;height:54px;border-radius:50%; background:var(--navy);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:18px;flex-shrink:0; }
.contact-card .cc-name b { color:var(--navy); }
.contact-card .cc-name small { display:block;color:var(--muted);font-size:12.5px; }
.contact-meta { margin-top:12px; display:grid; gap:8px; font-size:13.5px; }
.contact-meta a { display:flex; align-items:center; gap:9px; color:var(--steel); }
.contact-meta svg{width:16px;height:16px;color:var(--blue);}

@media (max-width:860px){ .stp .lbl{font-size:11px;} }
