/* ─────────────────────────────────────────────────────────
   FENNEXT — Storefront (Logitech-orientiert: flach, weiß, aufgeräumt)
   Tokens: Bold Teal · Deep Navy · Cool Slate · Fonts: Sora / Inter
   ───────────────────────────────────────────────────────── */

@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700;800;900&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --teal-50: #effefb;
  --teal-500: #06c2b1;
  --teal-600: #049c91;
  --teal-700: #087d75;
  --navy-700: #394872;
  --navy-950: #1a1f30;
  --ink: #14181f;
  --slate-50: #f6f7f9;
  --slate-100: #f0f2f5;
  --slate-200: #e3e6eb;
  --slate-300: #cdd2db;
  --slate-500: #6b7280;
  --slate-600: #4b5563;
  --tile: #e7e8ea;
  --h: "Figtree", ui-sans-serif, system-ui, sans-serif;
  --b: "Figtree", ui-sans-serif, system-ui, sans-serif;
  --maxw: 1280px;
  --headw: 1600px;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--b);
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--h);
}
button {
  font-family: var(--b);
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── TOP UTILITY BAR ──────────────────────────────────── */
.topbar {
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
}
.topbar__inner {
  max-width: var(--headw);
  margin: 0 auto;
  padding: 0 32px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.topbar a {
  font-size: 12px;
  font-weight: 500;
  color: var(--slate-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar a:hover {
  color: var(--ink);
}
.topbar .sep {
  width: 1px;
  height: 14px;
  background: var(--slate-300);
}
.topbar .gaming {
  font-weight: 700;
  color: var(--navy-950);
}
.topbar .gaming .g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--navy-950);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

/* ── HEADER ───────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--slate-200);
}
.header__inner {
  max-width: var(--headw);
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.logo {
  display: inline-flex;
  align-items: center;
}
.logo img {
  height: 38px;
  width: auto;
}
.nav {
  display: flex;
  gap: 2px;
  flex: 1;
  align-self: stretch;
  align-items: stretch;
}
.nav a {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.15s;
}
.nav a:hover,
.nav a.active {
  background: var(--slate-100);
}

/* ── MEGA MENU (Produkte) ─────────────────────────────── */
.nav-item {
  position: static;
  display: flex;
  align-items: stretch;
}
.nav-item > a {
  display: inline-flex;
  align-items: center;
}
.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-top: 1px solid var(--slate-200);
  box-shadow: 0 24px 40px -26px rgba(20, 24, 31, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 190;
}
.nav-item.has-mega:hover .mega,
.nav-item.has-mega:focus-within .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mega__inner {
  max-width: var(--headw);
  margin: 0 auto;
  padding: 40px 40px 48px;
  display: grid;
  grid-template-columns: 1.7fr 0.9fr 1.5fr 0.9fr;
  gap: 44px;
}
.mega__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-500);
  margin-bottom: 22px;
}
.mega-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mega-tile {
  text-align: center;
}
.mega-tile__img {
  aspect-ratio: 1 / 1;
  background: var(--tile);
  border-radius: 8px;
  overflow: hidden;
}
.mega-tile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.mega-tile:hover .mega-tile__img img {
  transform: scale(1.04);
}
.mega-tile__label {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.mega--apps .mega__inner {
  grid-template-columns: 1fr 1.1fr 1.2fr;
}
.mega--prod .mega__inner {
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 64px;
}
/* Produkt-Kacheln im Mega (Logitech-Stil: freigestellt auf grauem Kasten, Label im Kasten) */
.mega-pcat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.mega-pcat__tile {
  display: flex;
  flex-direction: column;
  background: var(--tile);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.15s ease;
}
.mega-pcat__tile:hover {
  box-shadow: 0 12px 26px -18px rgba(20, 24, 31, 0.3);
}
.mega-pcat__img {
  aspect-ratio: 1 / 1;
  padding: 14% 14% 4%;
}
.mega-pcat__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.3s ease;
}
.mega-pcat__tile:hover .mega-pcat__img img {
  transform: scale(1.04);
}
.mega-pcat__label {
  margin: auto 0 0;
  padding: 0 14px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.mega-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mega-links a {
  font-size: 14px;
  color: var(--slate-600);
}
.mega-links a:hover {
  color: var(--ink);
}
.mega-links__hint {
  color: var(--slate-300);
  font-weight: 400;
}
.mega-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mega-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 76px;
  display: flex;
  align-items: center;
}
.mega-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mega-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 24, 31, 0.6) 0%, rgba(20, 24, 31, 0.1) 70%);
}
.mega-card span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding-left: 18px;
}
.mega-card .g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--teal-500);
  color: var(--navy-950);
  font-size: 10px;
  font-weight: 800;
  margin-right: 6px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--ink);
  transition: background 0.15s;
}
.icon-btn:hover {
  background: var(--slate-100);
}
.cart-count {
  position: absolute;
  transform: translate(10px, -10px);
  background: var(--teal-600);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--b);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
}
.btn--dark {
  background: var(--navy-950);
  color: #fff;
}
.btn--dark:hover {
  background: var(--ink);
}
.btn--light {
  background: #fff;
  color: var(--ink);
  border-color: var(--slate-300);
}
.btn--light:hover {
  border-color: var(--ink);
}
.btn--teal {
  background: var(--teal-600);
  color: #fff;
}
.btn--teal:hover {
  background: var(--teal-700);
}
.btn--ghost-on-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--ghost-on-dark:hover {
  background: #fff;
  color: var(--ink);
}

/* ── HERO (Banner: Bild + Text links) ─────────────────── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-950);
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20, 24, 31, 0.9) 0%,
    rgba(20, 24, 31, 0.55) 45%,
    rgba(20, 24, 31, 0.1) 78%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
}
.hero__text {
  max-width: 480px;
}
.hero__eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-300);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(36px, 4.6vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
}
.hero p {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  max-width: 42ch;
  margin-bottom: 30px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── SECTION ──────────────────────────────────────────── */
.sec {
  padding: 96px 0;
}
.sec--gray {
  background: var(--slate-50);
}
.sec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}
.sec-head h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.sec-head .more {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-700);
  white-space: nowrap;
}
.sec-head .more:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── QUICK TILES (1:1 Bild + Label darunter) ──────────── */
.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.tile {
  display: block;
  text-align: center;
}
.tile__img {
  aspect-ratio: 1 / 1;
  background: var(--slate-100);
  border-radius: 10px;
  overflow: hidden;
}
.tile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.tile:hover .tile__img img {
  transform: scale(1.03);
}
.tile__label {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

/* ── VERTICAL CARDS (4:5) ─────────────────────────────── */
.vcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vcard {
  display: flex;
  flex-direction: column;
  background: var(--tile);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.15s ease;
}
.vcard:hover {
  box-shadow: 0 14px 30px -20px rgba(20, 24, 31, 0.3);
}
.vcard__img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 12%;
}
.vcard__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.3s ease;
}
.vcard:hover .vcard__img img {
  transform: scale(1.03);
}
.vcard__body {
  padding: 0 24px 24px;
}
.vcard__cat {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 4px;
}
.vcard h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.vcard__link {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-700);
}

/* ── INTEREST CARDS (Einrichtungen / Gaming / Beratung) ─ */
.interest {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.icard {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
}
.icard img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.icard:hover img {
  transform: scale(1.04);
}
.icard__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 24, 31, 0) 40%, rgba(20, 24, 31, 0.78) 100%);
}
.icard__body {
  position: relative;
  z-index: 1;
  padding: 28px;
  color: #fff;
}
.icard__kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 6px;
}
.icard h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.icard p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 32ch;
}
.icard__link {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.icard.gaming .icard__kicker {
  color: var(--teal-500);
  opacity: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.icard.gaming .g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--teal-500);
  color: var(--navy-950);
  font-size: 10px;
  font-weight: 800;
}

/* ── REASONS (Gründe für FENNEXT) ─────────────────────── */
.reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.reason__icon {
  width: 40px;
  height: 40px;
  color: var(--ink);
  margin-bottom: 14px;
}
.reason h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.reason p {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.6;
}

/* ── B2B STRIP ────────────────────────────────────────── */
.b2bstrip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 40px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
}
.b2bstrip h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.b2bstrip p {
  font-size: 15px;
  color: var(--slate-500);
  max-width: 60ch;
}
.b2bstrip__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── PROMO CARDS (gestaffelt) ─────────────────────────── */
.promos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.promo {
  display: flex;
  flex-direction: column;
}
.promo--tall {
  grid-row: span 2;
}
.promo__img {
  border-radius: 12px;
  overflow: hidden;
  background: var(--slate-100);
  aspect-ratio: 16 / 11;
}
.promo--tall .promo__img {
  aspect-ratio: 4 / 5;
}
.promo__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.promo:hover .promo__img img {
  transform: scale(1.03);
}
.promo__body {
  padding-top: 18px;
}
.promo h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 8px;
}
.promo p {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 42ch;
}

/* ── SHOP PAGE ────────────────────────────────────────── */
.page-hero {
  padding: 56px 0 8px;
}
.page-hero h1 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 17px;
  color: var(--slate-500);
  max-width: 60ch;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--slate-500);
  padding: 20px 0 0;
}
.breadcrumb a:hover {
  color: var(--ink);
}
.breadcrumb .sep {
  color: var(--slate-300);
}
.chiprow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.chip {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-600);
  border: 1px solid var(--slate-200);
  background: #fff;
  padding: 9px 16px;
  border-radius: 100px;
  transition:
    border-color 0.15s,
    color 0.15s;
}
.chip:hover,
.chip.active {
  border-color: var(--ink);
  color: var(--ink);
}

/* ── CATNAV (runde Kategorie-Icons) ───────────────────── */
.catnav {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 8px 0 4px;
  scrollbar-width: none;
}
.catnav::-webkit-scrollbar {
  display: none;
}
.catnav__item {
  flex: 0 0 auto;
  width: 96px;
  text-align: center;
}
.catnav__circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: var(--slate-600);
  transition:
    background 0.15s,
    color 0.15s;
}
.catnav__item:hover .catnav__circle {
  background: var(--slate-200);
}
.catnav__item.active .catnav__circle {
  background: var(--teal-600);
  color: #fff;
}
.catnav__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}

/* ── PRODUCT DETAIL (PDP) ─────────────────────────────── */
.pdp {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  padding: 40px 0 24px;
  align-items: start;
}
.pdp__gallery {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  position: sticky;
  top: 88px;
}

/* Galerie als 2-spaltiges Raster (Logitech-Stil), farb-gefiltert */
.pdp__gallery--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  position: static;
}
.pdp__shot {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: var(--tile);
}
.pdp__shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  padding: 9%;
}
.pdp__shot--photo img {
  object-fit: cover;
  mix-blend-mode: normal;
  padding: 0;
}
.pdp__shot .moodph {
  height: 100%;
}
.pdp-accent__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdp--gallery-grid .pdp__info {
  position: sticky;
  top: 88px;
  align-self: start;
}
@media (max-width: 860px) {
  .pdp--gallery-grid .pdp__info {
    position: static;
  }
}
.pdp__thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pdp__thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--tile);
  border: 1px solid transparent;
  cursor: pointer;
  padding: 8px;
}
.pdp__thumb.active {
  border-color: var(--ink);
}
.pdp__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdp__main {
  border-radius: 14px;
  overflow: hidden;
  background: var(--tile);
  aspect-ratio: 1 / 1;
}
.pdp__main {
  padding: 6%;
}
.pdp__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.pdp__thumb img {
  mix-blend-mode: multiply;
}
.pdp__brand {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 10px;
}
.pdp h1 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 10px;
}
.pdp__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--slate-500);
  margin-bottom: 22px;
}
.pdp__rating .stars {
  color: #f0a500;
  letter-spacing: 1px;
}
.pdp__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  margin-bottom: 26px;
}
.pdp__price .now {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
}
.pdp__price .unit {
  font-size: 13px;
  color: var(--slate-500);
}
.pdp__group {
  margin-bottom: 24px;
}
.pdp__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.pdp__label span {
  font-weight: 500;
  color: var(--slate-500);
}
.opt-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.opt {
  padding: 11px 18px;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-600);
  cursor: pointer;
  background: #fff;
  transition:
    border-color 0.15s,
    color 0.15s;
}
.opt:hover {
  border-color: var(--slate-300);
}
.opt.active {
  border-color: var(--ink);
  color: var(--ink);
}
.swatch-row {
  display: flex;
  gap: 10px;
}
.swatch {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: inset 0 0 0 1px var(--slate-200);
}
.swatch.active {
  border-color: var(--ink);
}
.pdp__buy {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  height: 52px;
}
.qty button {
  flex: 1;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--slate-600);
  cursor: pointer;
}
.qty span {
  width: 36px;
  text-align: center;
  font-weight: 600;
}
.btn--block {
  width: 100%;
  height: 52px;
}
.pdp__qa {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 18px 0 26px;
  padding: 16px 18px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-left: 3px solid var(--teal-500);
  border-radius: 10px;
}
.pdp__qa div {
  font-size: 13px;
  color: var(--slate-600);
}
.pdp__qa strong {
  display: block;
  color: var(--ink);
}
.pdp__usps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pdp__usp {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--slate-600);
}
.pdp__usp svg {
  color: var(--teal-600);
  flex-shrink: 0;
}

/* ── PDP UNTERER CONTENT-BEREICH (Logitech-Stil) ───────── */
.pdp-sections {
  margin-top: 40px;
}
.pdp-sec {
  padding: 56px 0;
  border-top: 1px solid var(--slate-200);
}
.pdp-sec__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 12px;
}
.pdp-sec__title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.pdp-sec__lead {
  font-size: 17px;
  color: var(--slate-600);
  max-width: 720px;
  margin-bottom: 36px;
}
/* Key Features */
.pdp-kf {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pdp-kf__item {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 28px 26px;
}
.pdp-kf__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-600);
  margin-bottom: 16px;
}
.pdp-kf__item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.pdp-kf__item p {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.6;
}
/* Highlight-Band (Bild + Text) */
.pdp-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--slate-200);
}
.pdp-band__media {
  background: var(--tile);
  min-height: 360px;
}
.pdp-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdp-band__body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pdp-band__body h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 12px;
}
.pdp-band__body p {
  font-size: 16px;
  color: var(--slate-600);
  line-height: 1.7;
}
.pdp-band--reverse .pdp-band__media {
  order: 2;
}
/* Tech-Specs */
.pdp-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 56px;
}
.pdp-specs__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--slate-200);
  font-size: 14px;
}
.pdp-specs__row dt {
  color: var(--slate-500);
  font-weight: 600;
}
.pdp-specs__row dd {
  color: var(--ink);
  font-weight: 600;
}
/* Lieferumfang */
.pdp-box {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.pdp-box li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  padding: 12px 16px;
}
.pdp-box li svg {
  color: var(--teal-600);
  flex-shrink: 0;
}
/* Bildsprache / Lifestyle (Logitech-Stil) */
.pdp-life__hero {
  border-radius: 18px;
  overflow: hidden;
  background: var(--tile);
}
.pdp-life__hero img {
  width: 100%;
  height: clamp(320px, 42vw, 560px);
  object-fit: cover;
}
.pdp-life__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 28px;
}
.pdp-life__card-img {
  border-radius: 14px;
  overflow: hidden;
  background: var(--tile);
  aspect-ratio: 4 / 3;
}
.pdp-life__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.pdp-life__card:hover .pdp-life__card-img img {
  transform: scale(1.03);
}
.pdp-life__card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 16px 0 6px;
}
.pdp-life__card p {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.6;
}

/* Detail-/Spezifikations-Links (öffnen Canvas) */
.pdp-detaillinks {
  margin-top: 28px;
  border-top: 1px solid var(--slate-200);
}
.pdp-detaillink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 4px;
  border-bottom: 1px solid var(--slate-200);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: pointer;
  font-family: var(--b);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}
.pdp-detaillink:hover {
  color: var(--teal-700);
}
.pdp-detaillink svg {
  color: var(--slate-500);
  flex-shrink: 0;
}

/* Slide-out Canvas (Sidebar) */
.canvas {
  position: fixed;
  inset: 0;
  z-index: 400;
  visibility: hidden;
  pointer-events: none;
}
.canvas.open {
  visibility: visible;
  pointer-events: auto;
}
.canvas__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 31, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.canvas.open .canvas__backdrop {
  opacity: 1;
}
.canvas__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 540px;
  max-width: 92vw;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}
.canvas.open .canvas__panel {
  transform: translateX(0);
}
.canvas__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--slate-200);
}
.canvas__head h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
}
.canvas__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}
.canvas__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px 40px;
}
.canvas__group + .canvas__group {
  margin-top: 28px;
}
.canvas__group h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 12px;
}
.spec-list {
  display: flex;
  flex-direction: column;
}
.spec-list__row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--slate-200);
  font-size: 14px;
}
.spec-list__row dt {
  color: var(--slate-500);
  font-weight: 600;
}
.spec-list__row dd {
  color: var(--ink);
  font-weight: 600;
}
.canvas__note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--slate-500);
  line-height: 1.6;
}

/* Trennbalken zwischen Produkt und Content */
.pdp-divider {
  height: 1px;
  background: var(--slate-200);
  margin: 8px 0 0;
}

/* Dummy-Stimmungsbild (Platzhalter im Brand-Stil) */
.moodph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e3efee 0%, #a9cdc8 100%);
  color: rgba(20, 24, 31, 0.55);
}
.moodph::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 80% 10%, rgba(255, 255, 255, 0.55), transparent 60%);
}
.moodph__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.4;
}
.moodph span {
  position: relative;
  z-index: 1;
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.moodph--a {
  background: linear-gradient(135deg, #dfeceb 0%, #9fc7c2 100%);
}
.moodph--b {
  background: linear-gradient(135deg, #ece6dc 0%, #cdbfa9 100%);
}
.moodph--c {
  background: linear-gradient(135deg, #dde3ea 0%, #9fb0c4 100%);
}
.moodph--dark {
  background: linear-gradient(135deg, #16323a 0%, #0a4a44 100%);
  color: rgba(255, 255, 255, 0.7);
}

/* Farbiges Akzent-Band (Trennung zu den Bewertungen, wie Logitech) */
.pdp-accent {
  background: var(--matters, #08332f);
  color: #fff;
  padding: 72px 0;
  margin: 8px 0 0;
}
.pdp-accent__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.pdp-accent__head h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.pdp-accent__head p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}
.pdp-accent__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pdp-accent__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
}
.pdp-accent__media {
  aspect-ratio: 16 / 11;
}
.pdp-accent__body {
  padding: 20px 22px 24px;
}
.pdp-accent__body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.pdp-accent__body p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}
@media (max-width: 860px) {
  .pdp-accent__grid {
    grid-template-columns: 1fr;
  }
}

/* Reviews-Fallback */
.pdp-reviews__placeholder {
  text-align: center;
  padding: 40px;
  background: var(--slate-50);
  border: 1px dashed var(--slate-300);
  border-radius: 14px;
  color: var(--slate-500);
  font-size: 14px;
}
@media (max-width: 860px) {
  .pdp-kf {
    grid-template-columns: 1fr;
  }
  .pdp-band {
    grid-template-columns: 1fr;
  }
  .pdp-band--reverse .pdp-band__media {
    order: 0;
  }
  .pdp-specs {
    grid-template-columns: 1fr;
  }
  .pdp-life__grid {
    grid-template-columns: 1fr;
  }
}

.acc {
  border-top: 1px solid var(--slate-200);
}
.acc__item {
  border-bottom: 1px solid var(--slate-200);
}
.acc__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.acc__body {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.7;
  padding-bottom: 18px;
}

/* ── PLP TOOLBAR (Filterleiste) ───────────────────────── */
.toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 8px 0 0;
}
.btn-allfilter {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--navy-950);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-allfilter:hover {
  background: var(--ink);
}
.fdrop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 100px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.fdrop:hover {
  border-color: var(--slate-300);
}
.fdrop svg {
  color: var(--slate-500);
}
.count {
  font-size: 13px;
  color: var(--slate-500);
  padding: 18px 0 28px;
}

/* ── PLP GRID ─────────────────────────────────────────── */
.plp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cat-banner {
  grid-row: span 2;
  background: var(--teal-600);
  color: #fff;
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cat-banner h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.cat-banner p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  max-width: 34ch;
}

.pcard {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  position: relative;
  color: inherit;
  transition:
    box-shadow 0.18s ease,
    transform 0.18s ease,
    border-color 0.18s ease;
}
.pcard:hover {
  box-shadow: 0 18px 34px -22px rgba(20, 24, 31, 0.3);
  transform: translateY(-3px);
  border-color: var(--slate-300);
}
.pcard__fav {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--slate-500);
  cursor: pointer;
}
.pcard__fav:hover {
  color: var(--ink);
}
.pcard__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  border: 1px solid var(--slate-200);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--ink);
}
.pcard__badge.sale {
  background: var(--teal-600);
  color: #fff;
  border-color: var(--teal-600);
}
.pcard__media {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0 8px;
  overflow: hidden;
  background: var(--tile);
  border-radius: 12px;
  padding: 9%;
}
.pcard__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.pcard__media:empty::before {
  content: "";
  width: 56px;
  height: 56px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cdd2db' stroke-width='1.5' stroke-linecap='round'%3E%3Cpath d='M4 6v12M9 3v18M15 8v8M20 5v14'/%3E%3C/svg%3E")
    center / contain no-repeat;
}
.pcard__swatches {
  display: flex;
  gap: 6px;
  margin: 4px 0 12px;
}
.pcard__swatches i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--slate-300);
  display: inline-block;
}
.pcard h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.pcard__sub {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.4;
  margin-bottom: 14px;
  flex: 1;
}
.pcard__price {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pcard__arrow {
  margin-left: auto;
  color: var(--slate-300);
  transition: color 0.15s;
}
.pcard:hover .pcard__arrow {
  color: var(--teal-700);
}
.pcard__price .old {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-500);
  text-decoration: line-through;
  margin-left: 6px;
}
.pcard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.pcard__cart {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  cursor: pointer;
}
.pcard__cart:hover {
  color: var(--teal-700);
}

.gpromo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 360px;
}
.gpromo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gpromo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 24, 31, 0.1), rgba(20, 24, 31, 0.78));
}
.gpromo__body {
  position: relative;
  z-index: 1;
  padding: 28px;
  color: #fff;
}
.gpromo__body h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}
.gpromo__body p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 14px;
  max-width: 26ch;
}

/* Trust-Tile (lockert das Grid auf, wie Logitech) */
.trust-tile {
  background: var(--navy-950);
  color: #fff;
  border-radius: 14px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.trust-tile__row {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}
.trust-tile__row svg {
  flex-shrink: 0;
  color: var(--teal-500);
  margin-top: 1px;
}
.trust-tile__row strong {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 2px;
}

/* ── FILTER DRAWER ────────────────────────────────────── */
.fdrawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s;
}
.fdrawer.open {
  visibility: visible;
  opacity: 1;
}
.fdrawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 31, 0.5);
}
.fdrawer__panel {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 420px;
  max-width: 90vw;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
}
.fdrawer.open .fdrawer__panel {
  transform: translateX(0);
}
.fdrawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 12px;
}
.fdrawer__head h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.fdrawer__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}
.fdrawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 0 28px;
}
.fgroup {
  border-top: 1px solid var(--slate-200);
}
.fgroup__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.fgroup__head svg {
  color: var(--slate-500);
}
.fgroup--open .fgroup__body {
  padding: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fopt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--slate-600);
  cursor: pointer;
}
.fopt input {
  width: 16px;
  height: 16px;
  accent-color: var(--teal-600);
}
.fopt span {
  flex: 1;
}
.fopt em {
  color: var(--slate-300);
  font-style: normal;
  font-size: 12px;
}
.fprice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 18px;
}
.fprice input {
  width: 90px;
  padding: 8px 10px;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  font-family: var(--b);
}
/* Toolbar-Sortierung */
.plp-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-600);
}
.plp-sort select {
  font-family: var(--b);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding: 9px 12px;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}
/* Produktkarten-Warenkorb-Form */
.pcard__addform {
  margin: 0;
}
/* Pagination */
.plp-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 48px;
}
.plp-pagination a,
.plp-pagination .current {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--slate-200);
  color: var(--slate-600);
}
.plp-pagination a:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.plp-pagination .current {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.fdrawer__foot {
  display: flex;
  gap: 12px;
  padding: 18px 28px;
  border-top: 1px solid var(--slate-200);
}
.fdrawer__foot .btn--teal {
  flex: 1;
  border-radius: 100px;
}
.fdrawer__foot .btn--light {
  border-radius: 100px;
}

@media (max-width: 1240px) {
  .plp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 980px) {
  .plp-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cat-banner {
    grid-row: auto;
    grid-column: span 2;
    min-height: 220px;
  }
}

/* ── PRODUKTKATEGORIE-TILES (Produkt auf Grau) ────────── */
.tiles--products {
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
}
.tiles--products .tile {
  display: flex;
  flex-direction: column;
  background: var(--tile);
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  transition: box-shadow 0.15s ease;
}
.tiles--products .tile:hover {
  box-shadow: 0 14px 30px -20px rgba(20, 24, 31, 0.3);
}
.tiles--products .tile__img {
  aspect-ratio: 1 / 1;
  padding: 16% 16% 6%;
  overflow: hidden;
}
.tiles--products .tile__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.3s ease;
}
.tiles--products .tile:hover .tile__img img {
  transform: scale(1.03);
}
.tiles--products .tile__label {
  margin: auto 0 0;
  padding: 0 20px 20px;
  text-align: left;
  font-size: 15px;
}

/* ── GRÜNDE-BLOCK (Intro links + Raster rechts) ───────── */
.reasons-wrap {
  display: grid;
  grid-template-columns: 0.85fr 2fr;
  gap: 56px;
  align-items: start;
}
.reasons-intro h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 16px;
}
.reasons-intro p {
  font-size: 15px;
  color: var(--slate-500);
  line-height: 1.7;
  max-width: 34ch;
}
.reasons-wrap .reasons {
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 32px;
}

/* ── EVERYTHING MATTERS (Nachhaltigkeit, dunkel) ──────── */
.matters {
  background: #08332f;
  color: #fff;
}
.matters__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 92px 40px;
}
.matters__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.matters__eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5fe3d3;
  margin-bottom: 14px;
}
.matters__head h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.matters__head p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 26px;
}
.matters__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  margin-top: 0;
}
.footer__top {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__brand img {
  height: 34px;
  margin-bottom: 16px;
}
.footer__brand p {
  font-size: 14px;
  color: var(--slate-500);
  max-width: 34ch;
  line-height: 1.6;
}
.footer__col h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  font-size: 14px;
  color: var(--slate-500);
}
.footer__col a:hover {
  color: var(--ink);
}
.footer__bottom {
  border-top: 1px solid var(--slate-200);
}
.footer__bottom-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--slate-500);
  flex-wrap: wrap;
}
.footer__bottom a {
  color: var(--slate-500);
}
.footer__bottom a:hover {
  color: var(--ink);
}

/* ── ACCENT LINK (Label + Teal-Strich darunter) ───────── */
.accent-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.accent-link::after {
  content: "";
  width: 44px;
  height: 3px;
  background: var(--teal-500);
  transition: width 0.2s ease;
}
.accent-link:hover::after {
  width: 72px;
}
.accent-link.on-dark {
  color: #fff;
}

/* ── FULL-BLEED FEATURE (Editorial-Bruch) ─────────────── */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
}
.feature__media {
  position: relative;
  overflow: hidden;
  background: var(--slate-100);
}
.feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature__panel {
  display: flex;
  align-items: center;
}
.feature__inner {
  max-width: 560px;
  padding: 48px 56px;
  margin: 0 auto;
  width: 100%;
}
.feature__eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 14px;
}
.feature__inner h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.feature__inner p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Heller Bruch */
.feature--light .feature__panel {
  background: var(--slate-50);
}
.feature--light .feature__inner h2 {
  color: var(--ink);
}
.feature--light .feature__inner p {
  color: var(--slate-500);
}

/* Dunkler Bruch (Kontrast) */
.feature--dark .feature__panel {
  background: var(--navy-950);
}
.feature--dark .feature__inner h2 {
  color: #fff;
}
.feature--dark .feature__inner p {
  color: #aab2c0;
}
.feature--dark .feature__eyebrow {
  color: var(--teal-500);
}

/* Bild rechts statt links */
.feature--reverse .feature__media {
  order: 2;
}

/* ── BRAND-WASSERZEICHEN ──────────────────────────────── */
.has-watermark {
  position: relative;
  overflow: hidden;
}
.has-watermark > .container {
  position: relative;
  z-index: 1;
}
.watermark {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  height: 150%;
  width: auto;
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 980px) {
  .feature {
    grid-template-columns: 1fr;
  }
  .feature__media {
    min-height: 280px;
  }
  .feature--reverse .feature__media {
    order: 0;
  }
  .tiles,
  .reasons {
    grid-template-columns: repeat(2, 1fr);
  }
  .vcards,
  .interest {
    grid-template-columns: 1fr;
  }
  .nav,
  .topbar {
    display: none;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── MOBILE-MENÜ (Hamburger + Drawer) ─────────────────── */
.menu-btn {
  display: none;
}
.mobile-menu,
.mobile-backdrop {
  display: none;
}

@media (max-width: 980px) {
  .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    color: var(--ink);
    cursor: pointer;
    background: none;
    border: none;
  }
  .menu-btn:hover {
    background: var(--slate-100);
  }

  .mobile-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 299;
    background: rgba(20, 24, 31, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 300;
    width: 320px;
    max-width: 86vw;
    background: #fff;
    padding: 20px 22px 28px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }
  .mnav-open .mobile-menu {
    transform: translateX(0);
  }
  .mnav-open .mobile-backdrop {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
  }
  .mobile-menu__close {
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    color: var(--ink);
    cursor: pointer;
  }
  .mobile-menu__title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-500);
    margin: 18px 0 10px;
  }
  .mobile-menu a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    padding: 12px 0;
    border-bottom: 1px solid var(--slate-200);
  }
  .mobile-menu a.sub {
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-600);
    padding: 9px 0;
  }
  .mobile-menu a.gaming-row {
    color: var(--navy-950);
    font-weight: 700;
  }
  .mobile-menu a.gaming-row .g {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    background: var(--navy-950);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    margin-right: 8px;
  }
}
