/* =========================================================================
   VIBEMO GERMANY — High Pressure Technology
   Dunkles Industrie-Design-System. Handgeschrieben, keine Frameworks.
   ========================================================================= */

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/fonts/space-grotesk-variable.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
  font-style: normal;
}

:root {
  --brand: #0071a8;
  --brand-600: #0a83c0;
  --brand-400: #29a9e0;
  --brand-300: #5cc2ee;

  --bg: #0a0e12;
  --bg-1: #0e141a;
  --bg-2: #131b22;
  --bg-3: #18222b;
  --tile: #e7edf1;         /* weiche helle Kachel für Produktfotos (Originale auf Weiß) */
  --tile-grad: linear-gradient(158deg, #eef2f5 0%, #d3dde4 100%);
  --tile-ring: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 0 0 1px rgba(12, 24, 32, 0.06);
  --line: #223039;
  --line-soft: #1a252e;

  --text: #eaf2f7;
  --text-2: #aebcc6;
  --muted: #7d8d98;

  --ok: #3ecf8e;
  --warn: #f2b544;

  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow: 0 18px 50px -20px rgba(0, 0, 0, 0.7);
  --shadow-blue: 0 14px 40px -16px rgba(0, 113, 168, 0.55);

  --maxw: 1220px;
  --gutter: clamp(18px, 4vw, 44px);
  --ff-head: "Space Grotesk", "Inter", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --header-h: 74px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Technischer Grid-Hintergrund */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 600px at 78% -8%, rgba(0, 113, 168, 0.16), transparent 60%),
    radial-gradient(900px 500px at 6% 4%, rgba(41, 169, 224, 0.08), transparent 55%),
    var(--bg);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 40%, transparent 90%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: #fff;
}
p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 9vw, 120px); }
.section-tight { padding-block: clamp(40px, 6vw, 72px); }

.eyebrow {
  font-family: var(--ff-head);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12px;
  font-weight: 500;
  color: var(--brand-400);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--brand-400);
  display: inline-block;
}
.lead { font-size: clamp(17px, 2vw, 20px); color: var(--text-2); max-width: 62ch; }

/* ---------- Buttons (Pill) ---------- */
.btn {
  --_bg: var(--bg-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--_bg);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(180deg, var(--brand-600), var(--brand));
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { box-shadow: 0 18px 46px -14px rgba(0, 113, 168, 0.7); }
.btn-ghost { background: transparent; }
.btn-ghost:hover { border-color: var(--brand-400); color: #fff; }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--text-2);
}
.pill-brand { color: var(--brand-300); border-color: rgba(41, 169, 224, 0.3); background: rgba(0, 113, 168, 0.12); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 18, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand-logo { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-logo img { height: 38px; width: auto; }
.brand-logo .wordmark {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.14em;
  color: #fff;
}
.brand-logo .wordmark span { color: var(--brand-400); }

.main-nav { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 13px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 450;
  color: var(--text-2);
  transition: color 0.15s ease, background 0.15s ease;
}
/* Trigger (Gruppe) öffnet nur das Menü – navigiert nicht */
button.nav-link { font-family: inherit; border: 0; background: transparent; cursor: default; }
.nav-link:hover, .nav-item:hover .nav-link, .nav-item:focus-within .nav-link { color: #fff; background: var(--bg-2); }
.nav-link .chev { width: 10px; height: 10px; opacity: 0.4; transition: transform 0.2s ease, opacity 0.15s ease; }
.nav-item:hover .nav-link .chev, .nav-item:focus-within .nav-link .chev { transform: rotate(180deg); opacity: 0.7; }

/* Mega-Dropdown */
.mega {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.nav-item:hover .mega, .nav-item:focus-within .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.mega a svg { width: 15px; height: 15px; flex: none; }
.mega a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 14.5px;
  color: var(--text-2);
  transition: background 0.14s ease, color 0.14s ease;
}
.mega a:hover { background: var(--bg-2); color: #fff; }
.mega a .cnt { font-family: var(--ff-head); font-size: 12px; color: var(--muted); }
.mega .mega-head {
  padding: 8px 14px 6px;
  font-family: var(--ff-head);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--muted);
}

.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.icon-btn:hover { border-color: var(--brand-400); }
.icon-btn svg { width: 20px; height: 20px; }
.merk-count {
  position: absolute;
  top: -6px; right: -6px;
  min-width: 20px; height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 600;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
}
.merk-count.show { display: inline-flex; }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(60px, 11vw, 140px) clamp(50px, 8vw, 96px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero-title {
  font-size: clamp(46px, 9vw, 118px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 14px 0 26px;
}
.hero-title span { display: block; }
.hero-title span:nth-child(2) { color: var(--brand-400); }
.hero-title span:nth-child(3) {
  -webkit-text-stroke: 1.5px var(--brand);
  color: transparent;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--bg-2), var(--bg-1));
  aspect-ratio: 4 / 3.4;
  box-shadow: var(--shadow);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-media .tag {
  position: absolute;
  left: 16px; bottom: 16px;
  backdrop-filter: blur(8px);
}
.hero-stats { display: flex; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.hero-stat .n { font-family: var(--ff-head); font-size: clamp(26px, 4vw, 38px); font-weight: 600; color: #fff; letter-spacing: -0.02em; }
.hero-stat .l { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.14em; }

/* ---------- Section head ---------- */
.section-head { max-width: 760px; margin-bottom: clamp(30px, 5vw, 54px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 5vw, 52px); }
.section-head .center-eye { justify-content: center; }

/* ---------- Kategorie-Kacheln ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 18px; }
.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, var(--bg-2), var(--bg-1));
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.cat-card:hover { transform: translateY(-4px); border-color: rgba(41, 169, 224, 0.4); box-shadow: var(--shadow); }
.cat-card .cat-n { font-family: var(--ff-head); font-size: 12px; letter-spacing: 0.16em; color: var(--muted); text-transform: uppercase; }
.cat-card h3 { font-size: 22px; margin-top: 8px; }
.cat-card p { font-size: 14px; color: var(--text-2); margin: 0; }
.cat-card .cat-go {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-size: 14px;
  color: var(--brand-300);
  padding-top: 16px;
}
.cat-card .cat-go svg { transition: transform 0.2s ease; }
.cat-card:hover .cat-go svg { transform: translateX(4px); }
.cat-card .cat-deco {
  position: absolute; right: -30px; top: -30px;
  width: 150px; height: 150px; opacity: 0.08;
  background: var(--brand-400);
  border-radius: 50%;
  filter: blur(2px);
}

/* ---------- Produkt-Grid + Cards ---------- */
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: clamp(24px, 4vw, 44px); align-items: start; }
.filters { position: sticky; top: calc(var(--header-h) + 18px); }
.filter-group { border-bottom: 1px solid var(--line-soft); padding: 6px 0 16px; margin-bottom: 16px; }
.filter-group h4 { font-family: var(--ff-head); font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-bottom: 12px; }
.filter-list { display: flex; flex-direction: column; gap: 2px; }
.filter-list a {
  display: flex; justify-content: space-between; gap: 10px;
  padding: 8px 12px; border-radius: 9px; font-size: 14px; color: var(--text-2);
  transition: background 0.14s, color 0.14s;
}
.filter-list a:hover { background: var(--bg-2); color: #fff; }
.filter-list a.active { background: rgba(0, 113, 168, 0.16); color: var(--brand-300); }
.filter-list a .cnt { font-family: var(--ff-head); font-size: 12px; color: var(--muted); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-1);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover { transform: translateY(-4px); border-color: rgba(41, 169, 224, 0.4); box-shadow: var(--shadow); }
.pc-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--tile-grad);
  box-shadow: var(--tile-ring);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
}
.pc-media img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.pc-badge {
  position: absolute; top: 10px; left: 10px;
  font-family: var(--ff-head); font-size: 11px; font-weight: 500;
  letter-spacing: 0.05em; padding: 5px 10px; border-radius: 999px;
  background: rgba(10, 14, 18, 0.86); color: var(--brand-300);
  border: 1px solid rgba(41, 169, 224, 0.3);
}
.pc-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.pc-type { font-family: var(--ff-head); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.pc-title { font-family: var(--ff-body); font-weight: 600; font-size: 15px; line-height: 1.35; color: var(--text); margin: 0; }
.pc-title a::after { content: ""; position: absolute; inset: 0; }
.pc-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 6px; }
.pc-price { font-family: var(--ff-head); font-weight: 600; font-size: 17px; color: #fff; }
.pc-price .from { font-size: 11px; color: var(--muted); font-weight: 400; display: block; letter-spacing: 0.08em; text-transform: uppercase; }
.pc-price.req { font-size: 14px; color: var(--brand-300); }
.pc-add {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 11px;
  border: 1px solid var(--line); background: var(--bg-2); color: var(--text);
  cursor: pointer; transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.pc-add:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.pc-add.added { background: var(--ok); border-color: var(--ok); color: #06231a; }
.pc-add svg { width: 18px; height: 18px; }

.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.shop-toolbar .count { color: var(--muted); font-size: 14px; }

/* ---------- Produkt-Detail ---------- */
.pd-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 60px); align-items: start; }
.pd-gallery { position: sticky; top: calc(var(--header-h) + 18px); }
.pd-main {
  aspect-ratio: 1 / 1;
  background: var(--tile-grad);
  box-shadow: var(--tile-ring);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  overflow: hidden;
}
.pd-main img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.pd-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.pd-thumb {
  width: 74px; height: 74px; border-radius: 12px; background: var(--tile-grad);
  border: 1px solid var(--line); padding: 8px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s;
}
.pd-thumb img { mix-blend-mode: multiply; object-fit: contain; }
.pd-thumb.active { border-color: var(--brand-400); }

.tile-bg { background: var(--tile-grad) !important; box-shadow: var(--tile-ring); }

.pd-info .pd-vendor { font-family: var(--ff-head); font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--brand-400); }
.pd-info h1 { font-size: clamp(26px, 4vw, 40px); margin: 12px 0 18px; }
.pd-price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 8px; }
.pd-price { font-family: var(--ff-head); font-weight: 600; font-size: clamp(26px, 4vw, 34px); color: #fff; }
.pd-price.req { color: var(--brand-300); }
.pd-vat { font-size: 13px; color: var(--muted); }
.pd-desc { color: var(--text-2); margin-top: 18px; }
.pd-desc p { margin-bottom: 0.7em; }
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 2px; }
.feature-list li {
  position: relative; padding: 9px 0 9px 26px; font-size: 15px; color: var(--text-2);
  border-bottom: 1px solid var(--line-soft);
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list li::before {
  content: ""; position: absolute; left: 2px; top: 19px;
  width: 12px; height: 2px; border-radius: 2px; background: var(--brand-400);
}
.pd-actions { display: flex; gap: 12px; margin: 26px 0; flex-wrap: wrap; }

.variant-select { margin: 22px 0; }
.variant-select label { display: block; font-family: var(--ff-head); font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 10px; }
.select-wrap { position: relative; }
.select-wrap select {
  width: 100%; appearance: none; font-family: var(--ff-body); font-size: 15px;
  padding: 14px 44px 14px 16px; border-radius: 12px;
  background: var(--bg-2); border: 1px solid var(--line); color: var(--text); cursor: pointer;
}
.select-wrap select:focus { outline: none; border-color: var(--brand-400); }
.select-wrap::after { content: ""; position: absolute; right: 18px; top: 50%; width: 9px; height: 9px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: translateY(-70%) rotate(45deg); pointer-events: none; }

.spec-table { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 24px; }
.spec-table .row { display: grid; grid-template-columns: 40% 1fr; border-bottom: 1px solid var(--line-soft); }
.spec-table .row:last-child { border-bottom: 0; }
.spec-table .row-full { grid-template-columns: 1fr; }
.spec-table .row-full .v { color: var(--text-2); }
.spec-table .k { padding: 12px 16px; font-size: 13px; color: var(--muted); background: var(--bg-1); font-family: var(--ff-head); letter-spacing: 0.02em; }
.spec-table .v { padding: 12px 16px; font-size: 14px; color: var(--text); }

.pd-note {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px 18px; border-radius: var(--radius);
  background: rgba(0, 113, 168, 0.1); border: 1px solid rgba(41, 169, 224, 0.24);
  font-size: 14px; color: var(--text-2); margin-top: 20px;
}
.pd-note svg { flex: none; width: 20px; height: 20px; color: var(--brand-400); margin-top: 1px; }

/* ---------- Merkliste-Drawer ---------- */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(4, 7, 10, 0.6); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: opacity 0.25s, visibility 0.25s;
}
.drawer-backdrop.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; z-index: 201;
  width: min(440px, 100vw); height: 100dvh;
  background: var(--bg-1); border-left: 1px solid var(--line);
  transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 22px 18px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-size: 20px; margin: 0; }
.drawer-body { flex: 1; overflow-y: auto; padding: 12px 16px; }
.drawer-empty { text-align: center; color: var(--muted); padding: 60px 20px; }
.drawer-empty svg { width: 46px; height: 46px; opacity: 0.4; margin-bottom: 16px; }
.merk-item { display: flex; gap: 12px; padding: 12px 8px; border-bottom: 1px solid var(--line-soft); }
.merk-item .mi-img { width: 62px; height: 62px; flex: none; border-radius: 10px; background: var(--tile-grad); box-shadow: var(--tile-ring); padding: 6px; }
.merk-item .mi-img img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.merk-item .mi-body { flex: 1; min-width: 0; }
.merk-item .mi-title { font-size: 13.5px; font-weight: 600; line-height: 1.3; margin: 0 0 3px; }
.merk-item .mi-meta { font-size: 12px; color: var(--muted); }
.merk-item .mi-price { font-family: var(--ff-head); font-size: 13px; color: var(--brand-300); margin-top: 3px; }
.merk-item .mi-remove { flex: none; background: none; border: none; color: var(--muted); cursor: pointer; padding: 4px; align-self: flex-start; }
.merk-item .mi-remove:hover { color: #ff6b6b; }
.drawer-foot { padding: 18px 22px 24px; border-top: 1px solid var(--line); }
.drawer-foot .hint { font-size: 12.5px; color: var(--muted); margin-bottom: 14px; text-align: center; }

/* ---------- Info-Split (Story) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 5/4; background: var(--bg-2); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }

.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.usp {
  padding: 24px; border-radius: var(--radius); border: 1px solid var(--line);
  background: linear-gradient(165deg, var(--bg-2), var(--bg-1));
}
.usp .usp-ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(0,113,168,0.16); border: 1px solid rgba(41,169,224,0.3); display: flex; align-items: center; justify-content: center; color: var(--brand-300); margin-bottom: 16px; }
.usp .usp-ic svg { width: 22px; height: 22px; }
.usp h3 { font-size: 18px; margin-bottom: 6px; }
.usp p { font-size: 14px; color: var(--text-2); margin: 0; }

/* ---------- CTA-Band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(0,113,168,0.22), var(--bg-2) 60%);
  padding: clamp(36px, 6vw, 64px);
  text-align: center;
}
.cta-band h2 { font-size: clamp(28px, 4.5vw, 46px); }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* ---------- Formular ---------- */
.form-card { background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; color: var(--text-2); margin-bottom: 7px; font-family: var(--ff-head); letter-spacing: 0.02em; }
.field input, .field textarea {
  width: 100%; font-family: var(--ff-body); font-size: 15px; color: var(--text);
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 13px 15px;
  transition: border-color 0.15s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand-400); }
.field textarea { resize: vertical; min-height: 130px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.contact-info .ci-block { padding: 20px 0; border-bottom: 1px solid var(--line-soft); }
.contact-info .ci-block:first-child { padding-top: 0; }
.contact-info h4 { font-family: var(--ff-head); font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-bottom: 10px; }
.contact-info a, .contact-info p { color: var(--text); font-size: 16px; margin: 0; }
.contact-info a:hover { color: var(--brand-300); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-1); margin-top: clamp(60px, 8vw, 100px); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; padding-block: clamp(44px, 6vw, 68px); }
.footer-brand .wordmark { font-family: var(--ff-head); font-weight: 600; font-size: 22px; letter-spacing: 0.14em; color: #fff; }
.footer-brand .wordmark span { color: var(--brand-400); }
.footer-brand p { font-size: 14px; color: var(--muted); margin-top: 14px; max-width: 34ch; }
.footer-col h4 { font-family: var(--ff-head); font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14.5px; color: var(--text-2); padding: 5px 0; transition: color 0.14s; }
.footer-col a:hover { color: var(--brand-300); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--line); background: var(--bg-2); display: flex; align-items: center; justify-content: center; color: var(--text-2); }
.footer-social a:hover { border-color: var(--brand-400); color: #fff; }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid var(--line-soft); padding-block: 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--text-2); }

/* ---------- Breadcrumb ---------- */
.crumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 20px; flex-wrap: wrap; }
.crumb a:hover { color: var(--brand-300); }
.crumb span { opacity: 0.5; }

/* ---------- Page hero (Unterseiten) ---------- */
.page-hero { padding-block: clamp(50px, 8vw, 96px) clamp(30px, 4vw, 48px); }
.page-hero h1 { font-size: clamp(34px, 6vw, 68px); text-transform: uppercase; letter-spacing: -0.02em; }
.page-hero h1 .accent { color: var(--brand-400); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--bg-3); border: 1px solid var(--line); color: var(--text);
  padding: 13px 20px; border-radius: var(--radius-pill); font-size: 14px;
  box-shadow: var(--shadow); z-index: 300; opacity: 0; visibility: hidden;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s; display: flex; align-items: center; gap: 10px;
}
.toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.toast svg { width: 18px; height: 18px; color: var(--ok); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; aspect-ratio: 16/10; max-height: 360px; }
  .split { grid-template-columns: 1fr; }
  .pd-grid { grid-template-columns: 1fr; }
  .pd-gallery { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  :root { --header-h: 64px; }
  .main-nav, .header-actions .desktop-only { display: none; }
  .nav-toggle { display: inline-flex; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .filters-mobile-scroll { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .hero-stats { gap: 22px; }
  .btn { padding: 12px 20px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
}

/* ---------- Mobile Nav Panel ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 150;
  background: var(--bg); padding: calc(var(--header-h) + 20px) var(--gutter) 40px;
  transform: translateX(100%); transition: transform 0.3s ease; overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav .mn-group { border-bottom: 1px solid var(--line-soft); padding: 16px 0; }
.mobile-nav .mn-group > a, .mobile-nav .mn-group > .mn-h { font-family: var(--ff-head); font-size: 20px; color: #fff; display: block; margin-bottom: 10px; }
.mobile-nav .mn-sub { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav .mn-sub a { color: var(--text-2); font-size: 15px; padding: 8px 0; }
.mn-close { position: fixed; top: 14px; right: var(--gutter); z-index: 160; }

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; scroll-behavior: auto; }
}
