/* ═══════════════════════════════════════════════════════════════
   TOXIC OVERRIDE OF NOVA TOKENS — appended on top so Toxic mint
   replaces NOVA yellow everywhere (links, hovers, focus, accents)
   ═══════════════════════════════════════════════════════════════ */
:root {
  --primary: #10E0B4 !important;
  --primary-rgb: 16, 224, 180 !important;
  --primary-dark: #0DFFCB !important;
  --link-color: #ECEFEE !important;
  --link-hover-color: #10E0B4 !important;
  --body-bg: #0B0C0D !important;
  --color-primary: #10E0B4 !important;
  --warning: #FFC857 !important;
  --info: #10E0B4 !important;
}
/* Force-override NOVA's anchor colors site-wide (excluding tx-* explicit colors) */
a:not([class*="tx-"]):hover,
a:not([class*="tx-"]):focus { color: #10E0B4 !important; }
a:not([class*="tx-"]) { color: #ECEFEE; }

/* Buttons: NOVA's btn-primary uses --primary background */
.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #10E0B4 !important;
  border-color: #10E0B4 !important;
  color: #0B0C0D !important;
}
/* Form inputs focus rings */
.form-control:focus,
input:focus, textarea:focus, select:focus {
  border-color: #10E0B4 !important;
  box-shadow: 0 0 0 .2rem rgba(16,224,180,.25) !important;
}
/* Body bg fallback in case NOVA fights us */
body { background: #0B0C0D !important; color: #ECEFEE !important; }

/* ───────────────────────────────────────────────────────────────
   TOXIC SYSTEMS — Production-ready shop CSS
   Drop-in for JTL: all classes are tx-* prefixed, no globals
   leak. Replace --tx-* tokens with your theme variables if needed.
   ─────────────────────────────────────────────────────────────── */

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

:root,
[data-theme="dark"] {
  --tx-mint: #10E0B4;
  --tx-mint-2: #0DFFCB;
  --tx-mint-soft: rgba(16, 224, 180, 0.16);
  --tx-mint-glow: rgba(16, 224, 180, 0.05);
  --tx-bg: #0B0C0D;
  --tx-bg-2: #101113;
  --tx-bg-3: #16181A;
  --tx-card: #14171A;
  --tx-card-2: #0F1214;
  --tx-line: #25282A;
  --tx-line-2: #353A3D;
  --tx-text: #ECEFEE;
  --tx-text-dim: #A8AFB1;
  --tx-text-mute: #6E7479;
  --tx-danger: #FF5570;
  --tx-warn: #FFC857;
  --tx-shadow: rgba(0,0,0,0.6);
  --tx-hex-stroke: %231F2528;

  --tx-h: 'Inter', system-ui, -apple-system, sans-serif;
  --tx-sub: 'Rajdhani', 'Inter', sans-serif;

  /* Landing-Page-Akzent · pro Aktion austauschbar
     Standard: Crimson Desert Rot. Override via Theme-Klasse am body
     (z.B. body.tx-lp-theme--nvidia) oder inline style="--lp-accent:..." */
  --lp-accent: #C8252C;
  --lp-accent-light: #FF5570;
  --lp-accent-rgb: 200, 37, 44;
}

/* Landing-Page Theme-Varianten · class auf <body> oder einem Wrapper */
.tx-lp-theme--amd      { --lp-accent: #ED1C24; --lp-accent-light: #FF5570; --lp-accent-rgb: 237, 28, 36; }
.tx-lp-theme--nvidia   { --lp-accent: #76B900; --lp-accent-light: #A4D81F; --lp-accent-rgb: 118, 185, 0; }
.tx-lp-theme--intel    { --lp-accent: #0071C5; --lp-accent-light: #41B0F4; --lp-accent-rgb: 0, 113, 197; }
.tx-lp-theme--corsair  { --lp-accent: #FFC857; --lp-accent-light: #FFE680; --lp-accent-rgb: 255, 200, 87; }
.tx-lp-theme--asus     { --lp-accent: #C8102E; --lp-accent-light: #FF5570; --lp-accent-rgb: 200, 16, 46; }
.tx-lp-theme--mint     { --lp-accent: #06A87E; --lp-accent-light: #10E0B4; --lp-accent-rgb: 16, 224, 180; }

[data-theme="light"] {
  --tx-mint: #06A87E;
  --tx-mint-2: #08C091;
  --tx-mint-soft: rgba(6, 168, 126, 0.16);
  --tx-mint-glow: rgba(6, 168, 126, 0.04);
  --tx-bg: #F7F8F7;
  --tx-bg-2: #FFFFFF;
  --tx-bg-3: #EEF1F0;
  --tx-card: #FFFFFF;
  --tx-card-2: #F4F6F5;
  --tx-line: #DEE3E1;
  --tx-line-2: #C2CCC8;
  --tx-text: #0F1414;
  --tx-text-dim: #4F5C58;
  --tx-text-mute: #7E8A86;
  --tx-shadow: rgba(0,0,0,0.08);
  --tx-hex-stroke: %23E0E5E3;
}
[data-theme="light"] .tx-btn--primary { color: #FFFFFF; }
[data-theme="light"] .tx-badge-tag--recommended,
[data-theme="light"] .tx-badge-tag--new,
[data-theme="light"] .tx-badge-tag--top { color: #FFFFFF; }
[data-theme="light"] .tx-nav__pill { color: #FFFFFF; }
[data-theme="light"] .tx-cfg-row__title .req { color: var(--tx-mint); }
[data-theme="light"] .tx-statusbar { border-bottom-color: var(--tx-line); }
[data-theme="light"] .tx-megamenu { background: var(--tx-bg-2); }
[data-theme="light"] .tx-megamenu__feature::after { background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.85)); }
[data-theme="light"] .tx-megamenu__feature h3 { color: var(--tx-text); }
[data-theme="light"] .tx-cat::after { background: linear-gradient(to top, rgba(15,20,20,0.85) 0%, rgba(15,20,20,0.3) 50%, transparent 100%); }
[data-theme="light"] .tx-cat h3,
[data-theme="light"] .tx-cat .tx-cat__sub,
[data-theme="light"] .tx-cat .tx-cat__cta { color: #FFFFFF; }
[data-theme="light"] .tx-cat .tx-cat__sub { color: rgba(255,255,255,0.85); }
[data-theme="light"] .tx-builtdiff { background: var(--tx-bg-2); }
[data-theme="light"] .tx-pillar { background: var(--tx-card); }
[data-theme="light"] .tx-cfg-bd__pillar { background: var(--tx-card); }
[data-theme="light"] .tx-cfg-sticky { background: rgba(255,255,255,0.97); }
[data-theme="light"] .tx-hero-slider__arrow { background: rgba(255,255,255,0.85); color: var(--tx-text); }
[data-theme="light"] .tx-hexbg {
  background-image:
    radial-gradient(ellipse at 20% 30%, rgba(6,168,126,0.06), transparent 60%),
    radial-gradient(ellipse at 90% 80%, rgba(6,168,126,0.03), transparent 60%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='56' height='64' viewBox='0 0 56 64'><path d='M28 1l26 15v32L28 63 2 48V16z' fill='none' stroke='%23DEE3E1' stroke-width='1'/></svg>");
}
[data-theme="light"] .tx-builtdiff__bg {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='56' height='64' viewBox='0 0 56 64'><path d='M28 1l26 15v32L28 63 2 48V16z' fill='none' stroke='%23DEE3E1' stroke-width='1'/></svg>");
  opacity: 0.5;
}
[data-theme="light"] .tx-cfg-bd::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='56' height='64' viewBox='0 0 56 64'><path d='M28 1l26 15v32L28 63 2 48V16z' fill='none' stroke='%23DEE3E1' stroke-width='1'/></svg>");
  opacity: 0.5;
}
[data-theme="light"] .tx-plp-intro::before {
  background-image:
    radial-gradient(ellipse at 70% 30%, rgba(6,168,126,0.05), transparent 60%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='56' height='64' viewBox='0 0 56 64'><path d='M28 1l26 15v32L28 63 2 48V16z' fill='none' stroke='%23DEE3E1' stroke-width='1'/></svg>");
  opacity: 0.7;
}
[data-theme="light"] .tx-icon-btn { color: var(--tx-text); }
[data-theme="light"] .tx-search { background: var(--tx-card); }

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--tx-h);
  background: var(--tx-bg);
  color: var(--tx-text);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  max-width: 100%;
}
img, video, svg { max-width: 100%; height: auto; }
.tx-hero, .tx-hero-slider, .tx-section, .tx-plp, .tx-cfg-detail, .tx-megamenu-wrap { max-width: 100vw; }
:focus-visible {
  outline: 2px solid var(--tx-mint);
  outline-offset: 2px;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

img { max-width: 100%; display: block; }

.tx-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── STATUS BAR ──────────────────────────────────────────────── */
.tx-statusbar {
  background: var(--tx-bg);
  border-bottom: 1px solid var(--tx-line);
  font-family: var(--tx-sub);
  font-size: 13px;
  font-weight: 500;
}
.tx-statusbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 32px;
  max-width: 1440px;
  margin: 0 auto;
}
.tx-statusbar__left { display: flex; gap: 24px; }
.tx-statusbar__right { display: flex; gap: 18px; color: var(--tx-text-dim); }
.tx-statusbar__item { display: inline-flex; align-items: center; gap: 8px; color: var(--tx-text-dim); }
.tx-statusbar__item svg { color: var(--tx-mint); }
.tx-statusbar__right a:hover { color: var(--tx-mint); }
.tx-statusbar__right a + a { padding-left: 18px; border-left: 1px solid var(--tx-line); }

/* ─── HEADER ──────────────────────────────────────────────────── */
.tx-header {
  background: var(--tx-bg);
  border-bottom: 1px solid var(--tx-line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}
.tx-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 10px 28px;
  max-width: 1440px;
  margin: 0 auto;
}
.tx-logo {
  display: flex;
  align-items: center;
  height: 30px;
  min-width: 0;
  flex-shrink: 0;
}
.tx-logo img { height: 30px; width: auto; max-width: 100%; }

.tx-nav {
  display: flex;
  gap: 2px;
  align-items: center;
  justify-self: start;
  margin-left: 8px;
}
.tx-nav__item {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFFFFF !important;
  text-decoration: none !important;
  padding: 14px 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
  transition: color .15s;
}
.tx-nav__item::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px;
  bottom: 6px;
  height: 2px;
  background: var(--tx-mint);
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: center;
  transition: opacity .15s, transform .2s;
}
.tx-nav__item.is-active::after,
.tx-nav__item:hover::after,
.tx-nav__item.is-open::after { opacity: 1; transform: scaleX(1); }
.tx-nav__item.is-active,
.tx-nav__item:hover,
.tx-nav__item.is-open { color: var(--tx-mint) !important; }
.tx-nav__item__chev {
  font-size: 10px;
  opacity: 0.85;
  margin-left: 2px;
  transition: transform .2s;
}
.tx-nav__item.is-open .tx-nav__item__chev { transform: rotate(180deg); }
.tx-nav__item--cfg { color: var(--tx-mint); }
.tx-nav__pill {
  display: inline-flex;
  align-items: center;
  background: var(--tx-mint);
  color: #062019;
  font-family: var(--tx-h);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 3px 6px;
  margin-left: 4px;
  text-transform: uppercase;
}

.tx-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--tx-bg-3);
  border: 1px solid var(--tx-line);
  padding: 7px 12px;
  width: 240px;
  font-family: var(--tx-sub);
  font-size: 13px;
  color: var(--tx-text-dim);
  transition: border-color .15s, width .2s;
}
.tx-search:focus-within { border-color: var(--tx-mint); width: 280px; }
.tx-search input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  color: var(--tx-text);
  outline: none;
  font: inherit;
}
.tx-search kbd {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  padding: 1px 5px;
  border: 1px solid var(--tx-line-2);
  color: var(--tx-text-mute);
  flex-shrink: 0;
}

.tx-iconbar { display: flex; gap: 4px; }
.tx-icon-btn {
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--tx-line);
  color: var(--tx-text);
  display: inline-flex;
  align-items: center; justify-content: center;
  position: relative;
  transition: border-color .15s, color .15s;
}
.tx-icon-btn:hover { border-color: var(--tx-mint); color: var(--tx-mint); }
.tx-icon-btn .tx-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--tx-mint);
  color: #062019;
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 10px;
  padding: 1px 5px;
  border-radius: 9px;
  min-width: 16px;
  text-align: center;
}

/* mega menu (closed by default; open via .is-open) */
.tx-megamenu-wrap {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  z-index: 60;
  pointer-events: none;
}
.tx-megamenu {
  position: absolute;
  inset: 0 0 auto 0;
  background: var(--tx-bg-2);
  border-top: 2px solid var(--tx-mint);
  border-bottom: 1px solid var(--tx-line);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility 0s linear .18s;
}
.tx-megamenu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .18s ease, visibility 0s linear 0s;
}
.tx-megamenu__inner {
  display: grid;
  grid-template-columns: 320px repeat(4, 1fr);
  gap: 36px;
  padding: 36px 32px;
  max-width: 1440px;
  margin: 0 auto;
}
.tx-megamenu__feature {
  position: relative;
  background:
    linear-gradient(180deg, rgba(11,15,16,0.4) 0%, rgba(11,15,16,0.95) 100%),
    var(--tx-card);
  border: 1px solid var(--tx-line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  overflow: hidden;
}
.tx-megamenu__feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--mm-img, none);
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  z-index: 0;
}
.tx-megamenu__feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,13,13,0.2), rgba(10,13,13,0.95));
  z-index: 1;
}
.tx-megamenu__feature > * { position: relative; z-index: 2; }
.tx-megamenu__feature h4 {
  font-family: var(--tx-h);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tx-mint);
  margin: 0 0 8px;
  font-weight: 700;
}
.tx-megamenu__feature h3 {
  font-family: var(--tx-h);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 12px;
  line-height: 1.05;
  color: var(--tx-text);
}
.tx-megamenu__feature p {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--tx-text-dim);
  line-height: 1.5;
}
.tx-megamenu__feature .tx-btn { align-self: flex-start; padding: 12px 20px; font-size: 12px; }
.tx-megamenu__col h5 {
  font-family: var(--tx-h);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tx-mint);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--tx-line);
  font-weight: 700;
}
.tx-megamenu__col ul { list-style: none; padding: 0; margin: 0; }
.tx-megamenu__col li {
  padding: 7px 0;
  font-size: 14px;
  color: var(--tx-text);
  cursor: pointer;
  font-family: var(--tx-sub);
  font-weight: 500;
}
.tx-megamenu__col li:hover { color: var(--tx-mint); }
.tx-megamenu__col li.is-emph {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 13px;
}

/* ─── BUTTONS ─────────────────────────────────────────────────── */
/* Toxic-style cut-corner buttons */
.tx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--tx-h);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 26px;
  border: 0;
  cursor: pointer;
  position: relative;
  transition: transform .15s, filter .15s;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.tx-btn--primary {
  background: var(--tx-mint);
  color: #062019;
}
.tx-btn--primary:hover { filter: brightness(1.1); transform: translateY(-1px); }
.tx-btn--ghost {
  background: transparent;
  color: var(--tx-mint);
  box-shadow: inset 0 0 0 1px var(--tx-mint);
}
.tx-btn--ghost:hover { background-color: rgba(16,224,180,0.08); color: var(--tx-mint); }
.tx-btn--mint-outline {
  background: transparent;
  color: var(--tx-mint);
  box-shadow: inset 0 0 0 1px var(--tx-mint);
}
.tx-btn--mint-outline:hover { background-color: var(--tx-mint); color: #062019; }

.tx-btn .tx-arr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  font-size: 11px;
}

/* ─── KICKER & HEADINGS ───────────────────────────────────────── */
.tx-kicker {
  font-family: var(--tx-sub);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--tx-mint);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tx-kicker::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--tx-mint);
}
.tx-kicker--no-line::before { display: none; }

.tx-section-title {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 12px 0 0;
  color: var(--tx-text);
}
.tx-section-title em {
  font-style: normal;
  color: var(--tx-mint);
  font-weight: 700;
}
.tx-section-title--big {
  font-size: 56px;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.tx-section-sub {
  font-family: var(--tx-sub);
  font-size: 16px;
  color: var(--tx-text-dim);
  max-width: 680px;
  margin: 16px 0 0;
  line-height: 1.5;
}
@media (max-width: 1180px) {
  .tx-section-title { font-size: 36px; }
  .tx-section-title--big { font-size: 44px; }
}
@media (max-width: 720px) {
  .tx-section-title { font-size: 28px; }
  .tx-section-title--big { font-size: 34px; }
}

.tx-section { padding: 96px 0; position: relative; }
.tx-section--tight { padding: 64px 0; }
.tx-section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 56px;
}
.tx-section__head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.tx-section__head--center .tx-section-sub { text-align: center; margin-left: auto; margin-right: auto; }

/* hex bg overlay */
.tx-hexbg {
  background-image:
    radial-gradient(ellipse at 20% 30%, rgba(16,224,180,0.08), transparent 60%),
    radial-gradient(ellipse at 90% 80%, rgba(16,224,180,0.04), transparent 60%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='56' height='64' viewBox='0 0 56 64'><path d='M28 1l26 15v32L28 63 2 48V16z' fill='none' stroke='%231F2528' stroke-width='1'/></svg>");
}

/* ─── HERO SLIDER ─────────────────────────────────────────────── */
.tx-hero-slider {
  position: relative;
  background: var(--tx-bg);
  border-bottom: 1px solid var(--tx-line);
  overflow: hidden;
}
.tx-hero-slider__track {
  position: relative;
}
.tx-hero-slide {
  display: none;
  animation: tx-slide-in .5s ease;
}
.tx-hero-slide.is-active { display: block; }
@keyframes tx-slide-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* arrows */
.tx-hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  background: rgba(11,15,16,0.7);
  border: 1px solid var(--tx-line-2);
  color: var(--tx-text);
  display: inline-flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 5;
  backdrop-filter: blur(8px);
  transition: border-color .15s, color .15s, background .15s;
}
.tx-hero-slider__arrow:hover { border-color: var(--tx-mint); color: var(--tx-mint); background: rgba(11,15,16,0.9); }
.tx-hero-slider__arrow--prev { left: 24px; }
.tx-hero-slider__arrow--next { right: 24px; }

/* bar pagination */
.tx-hero-slider__bars {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.tx-hero-slider__bar {
  width: 32px;
  height: 8px;
  background: transparent;
  border: 1px solid var(--tx-line-2);
  cursor: pointer;
  padding: 0;
  clip-path: polygon(0 0, calc(100% - 3px) 0, 100% 3px, 100% 100%, 3px 100%, 0 calc(100% - 3px));
  transition: background .15s, border-color .15s;
}
.tx-hero-slider__bar:hover { border-color: var(--tx-text-dim); }
.tx-hero-slider__bar.is-active {
  background: var(--tx-mint);
  border-color: var(--tx-mint);
  width: 48px;
}

/* slide promo strip below header */
.tx-hero-slider__strip {
  background: var(--tx-bg-2);
  border-bottom: 1px solid var(--tx-line);
  padding: 12px 0;
  text-align: center;
  font-family: var(--tx-sub);
  font-size: 14px;
  color: var(--tx-text);
  letter-spacing: 0.02em;
}
.tx-hero-slider__strip em { font-style: normal; color: var(--tx-mint); font-weight: 700; }

/* ─── HERO ────────────────────────────────────────────────────── */
.tx-hero {
  position: relative;
  min-height: 720px;
  padding: 80px 0 64px;
  overflow: hidden;
  border-bottom: 1px solid var(--tx-line);
}
.tx-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.tx-hero__title {
  font-family: var(--tx-h);
  font-weight: 900;
  font-size: 96px;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 24px 0 8px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 40px rgba(255,255,255,.08);
}
.tx-hero__title em {
  font-style: normal;
  color: var(--tx-mint);
  display: block;
  text-shadow: 0 0 60px rgba(16,224,180,0.4);
}
.tx-hero__lead {
  font-family: var(--tx-sub);
  font-size: 19px;
  color: var(--tx-text-dim);
  max-width: 480px;
  line-height: 1.5;
  margin: 22px 0 30px;
}
.tx-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 30px;
  max-width: 520px;
}
.tx-stat {
  border: 1px solid var(--tx-line);
  background: rgba(0,0,0,0.3);
  padding: 14px 16px;
}
.tx-stat__label {
  font-family: var(--tx-sub);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tx-text-dim);
}
.tx-stat__val {
  font-family: var(--tx-h);
  font-weight: 800;
  font-size: 18px;
  color: var(--tx-text);
  margin-top: 4px;
}
.tx-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.tx-hero__visual {
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tx-hero__visual::before {
  content: '';
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(16,224,180,0.4), transparent 60%);
  filter: blur(80px);
  z-index: 0;
}
.tx-hero__visual img {
  position: relative;
  max-height: 600px;
  width: auto;
  z-index: 1;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
}
/* corner brackets */
.tx-hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--tx-mint) 2px, transparent 2px) 0 0/24px 1px no-repeat,
    linear-gradient(to bottom, var(--tx-mint) 2px, transparent 2px) 0 0/1px 24px no-repeat,
    linear-gradient(to left, var(--tx-mint) 2px, transparent 2px) 100% 0/24px 1px no-repeat,
    linear-gradient(to bottom, var(--tx-mint) 2px, transparent 2px) 100% 0/1px 24px no-repeat,
    linear-gradient(to right, var(--tx-mint) 2px, transparent 2px) 0 100%/24px 1px no-repeat,
    linear-gradient(to top, var(--tx-mint) 2px, transparent 2px) 0 100%/1px 24px no-repeat,
    linear-gradient(to left, var(--tx-mint) 2px, transparent 2px) 100% 100%/24px 1px no-repeat,
    linear-gradient(to top, var(--tx-mint) 2px, transparent 2px) 100% 100%/1px 24px no-repeat;
  pointer-events: none;
}
.tx-hero__hud {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--tx-sub);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--tx-mint);
  z-index: 3;
}
.tx-hero__hud::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--tx-mint);
  margin-right: 8px;
  box-shadow: 0 0 12px var(--tx-mint);
  animation: tx-blink 1.5s infinite;
}
@keyframes tx-blink { 50% { opacity: 0.3; } }
.tx-hero__chip {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  gap: 8px;
  z-index: 3;
}
.tx-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--tx-sub);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tx-mint);
  border: 1px solid var(--tx-mint);
  background: rgba(16,224,180,0.06);
  padding: 5px 10px;
}
.tx-chip--dim { color: var(--tx-text-dim); border-color: var(--tx-line-2); background: transparent; }
.tx-chip--danger { color: var(--tx-danger); border-color: var(--tx-danger); background: rgba(255,85,112,0.08); }
.tx-chip--top { color: #062019; background: var(--tx-mint); border-color: var(--tx-mint); }

/* hero side gauge */
.tx-hero__sidebar {
  position: absolute;
  top: 80px;
  bottom: 64px;
  right: 32px;
  width: 96px;
  border-left: 1px solid var(--tx-line);
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--tx-sub);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tx-text-dim);
  z-index: 1;
  pointer-events: none;
}

/* ─── USP BAR (under hero) ────────────────────────────────────── */
.tx-uspbar {
  background: var(--tx-bg-2);
}
.tx-uspbar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}
.tx-usp {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 24px;
  border-right: 1px solid var(--tx-line);
}
.tx-usp:last-child { border-right: 0; }
.tx-usp__icon {
  width: 36px; height: 36px;
  color: var(--tx-text-dim);
  flex-shrink: 0;
}
.tx-usp__label {
  font-family: var(--tx-h);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--tx-text);
}
.tx-usp__sub {
  font-family: var(--tx-sub);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--tx-text-dim);
  margin-top: 2px;
}

/* ─── WÄHLE DEIN SYSTEM (image-led category cards) ────────────── */
.tx-cats {
  background: var(--tx-bg-3);
  padding: 88px 0;
}
.tx-cats__head { margin-bottom: 40px; }
.tx-cats__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  height: 580px;
}
/* OPC-Variante: KEIN festes Grid, damit das Mountpoint die volle Breite
   bekommt und Banner-/Grid-Layout-Portlets ihr eigenes Bootstrap-Layout
   entfalten können. Höhe + Spalten regelt der Redakteur in OPC. */
.tx-cats__grid--opc {
  display: block;
  grid-template-columns: none;
  grid-template-rows: none;
  height: auto;
  gap: 0;
}

/* ── OPC-Karten "Partner-Editionen-Style" ────────────────────────
   Live-HTML pro Spalte (data-area-id="col-N") enthält direkt:
     - <div class="banner"> mit <picture><img></picture>  (das Bild)
     - <h1>/<h2>/<h3>                                     (Überschrift)
     - <div><p>...</p></div>                              (Rich Text)
     - <div class="opc-Button"><button|a>                 (Schaltfläche)
   CSS layert das Bild als gedimmtes Backdrop, der Rest sitzt darüber. */

/* Row → CSS-Grid mit 24px Gap. Überschreibt Bootstraps Float-Layout,
   damit zwischen den Karten echtes Spacing entsteht. Responsive: 3→2→1. */
.tx-cats__grid--opc .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
}
@media (max-width: 991px) {
  .tx-cats__grid--opc .row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .tx-cats__grid--opc .row { grid-template-columns: 1fr; }
}
/* Bootstrap-Clearfixes innerhalb der Row neutralisieren, sonst zerreißen
   sie das Grid (sie wollen auf Float-Layout reagieren). */
.tx-cats__grid--opc .row > .clearfix { display: none !important; }

.tx-cats__grid--opc [data-area-id^="col-"] {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 440px;
  /* Grid setzt Width — Bootstrap-col-Klassen übersteuern */
  width: auto;
  max-width: none;
  flex: none;
  border: 1px solid var(--tx-line);
  background: linear-gradient(135deg, #0F1011 0%, #14161A 100%);
  overflow: hidden;
  isolation: isolate;
  transition: border-color .2s, transform .2s;
  padding: 36px 32px;
  margin: 0;
}
.tx-cats__grid--opc [data-area-id^="col-"]:hover {
  border-color: var(--tx-mint, #10E0B4);
  transform: translateY(-3px);
}
/* Lesbarkeits-Gradient — deutlich weicher (Bild bleibt klar, nur unten ein Hauch) */
.tx-cats__grid--opc [data-area-id^="col-"]::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(11,12,13,0) 55%, rgba(11,12,13,0.50) 100%);
  pointer-events: none;
}

/* Banner = Backdrop: absolut, full-bleed, gedimmt */
.tx-cats__grid--opc [data-area-id^="col-"] > .banner {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
  padding: 0;
}
.tx-cats__grid--opc [data-area-id^="col-"] > .banner picture {
  display: block;
  width: 100%;
  height: 100%;
}
.tx-cats__grid--opc [data-area-id^="col-"] > .banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.85;
  transition: transform .5s ease, opacity .3s ease;
}
.tx-cats__grid--opc [data-area-id^="col-"]:hover > .banner img {
  transform: scale(1.04);
  opacity: 1;
}
/* Banner-Hotspots ausblenden — wir benutzen den CTA stattdessen */
.tx-cats__grid--opc [data-area-id^="col-"] > .banner .area,
.tx-cats__grid--opc [data-area-id^="col-"] > .banner .area-desc {
  display: none !important;
}

/* Alle Direkt-Kinder außer .banner sitzen über dem Backdrop */
.tx-cats__grid--opc [data-area-id^="col-"] > *:not(.banner) {
  position: relative;
  z-index: 3;
}

/* Überschrift (h1–h6 als direktes Kind der col) */
.tx-cats__grid--opc [data-area-id^="col-"] > :is(h1,h2,h3,h4,h5,h6) {
  font-family: "Raleway", "Open Sans", sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}

/* Rich-Text Subline (div mit p drin, nicht .banner / nicht .opc-Button) */
.tx-cats__grid--opc [data-area-id^="col-"] > div:not(.banner):not(.opc-Button) p {
  color: rgba(236, 239, 238, .82);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 18px;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}

/* CTA-Button: mint, unterstrichen, Pfeil */
.tx-cats__grid--opc [data-area-id^="col-"] .opc-Button {
  margin: 0;
}
.tx-cats__grid--opc [data-area-id^="col-"] .opc-Button :is(a, button, .btn) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid var(--tx-mint, #10E0B4) !important;
  border-radius: 0 !important;
  color: var(--tx-mint, #10E0B4) !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 4px 0 6px !important;
  transition: gap .15s ease;
  box-shadow: none !important;
}
.tx-cats__grid--opc [data-area-id^="col-"] .opc-Button :is(a, button, .btn)::after {
  content: "→";
  font-size: 14px;
  line-height: 1;
  transition: transform .2s ease;
}
.tx-cats__grid--opc [data-area-id^="col-"]:hover .opc-Button :is(a, button, .btn)::after {
  transform: translateX(4px);
}

/* ──────────────────────────────────────────────────────────────────
   OPC-Karten "Stack-Style" (Partner-Editionen)
   Reihenfolge im OPC pro Spalte:
     1. Überschrift  (z. B. "Du bestimmst dein Schicksal")
     2. Banner       (Bild 1200×675, 16:9)
     3. Rich Text    (Beschreibung)
     4. Schaltfläche (CTA)
   Bild = Backdrop, Text+CTA liegen DRAUF (Mifcom-Style).
   Erste Row = Hero (16:9 hoch). Zweite Row = Banner-Strip (16:6 flach).
   Layout: 2 Spalten Desktop → 1 Spalte Mobile.
   ────────────────────────────────────────────────────────────────── */

.tx-cards-stack--opc .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 0 0 24px;
}
.tx-cards-stack--opc .row:last-child { margin-bottom: 0; }
@media (max-width: 767px) {
  .tx-cards-stack--opc .row { grid-template-columns: 1fr; }
}
.tx-cards-stack--opc .row > .clearfix { display: none !important; }

/* Erste Row (Hero): Text oben links, Button unten links */
.tx-cards-stack--opc .row:first-of-type [data-area-id^="col-"] {
  justify-content: flex-start;
}
.tx-cards-stack--opc .row:first-of-type [data-area-id^="col-"] .opc-Button {
  margin-top: auto;
}
/* Erste Row: CTA als mint Cut-Corner-Button (wie ANSEHEN / JETZT KONFIGURIEREN) */
.tx-cards-stack--opc .row:first-of-type [data-area-id^="col-"] .opc-Button :is(a, button, .btn) {
  background: var(--tx-mint, #10E0B4) !important;
  color: #062019 !important;
  border: 0 !important;
  border-bottom: 0 !important;
  padding: 14px 22px !important;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: filter .15s, transform .15s;
}
.tx-cards-stack--opc .row:first-of-type [data-area-id^="col-"]:hover .opc-Button :is(a, button, .btn) {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* Zweite (und weitere) Row → Banner-Strip (16:6, kompakter) */
.tx-cards-stack--opc .row:nth-of-type(n+2) [data-area-id^="col-"] {
  aspect-ratio: 16 / 6;
  padding: 22px 28px;
}
.tx-cards-stack--opc .row:nth-of-type(n+2) [data-area-id^="col-"] > :is(h1,h2,h3,h4,h5,h6) {
  font-size: 22px;
  margin-bottom: 6px;
}
.tx-cards-stack--opc .row:nth-of-type(n+2) [data-area-id^="col-"] > div:not(.banner):not(.opc-Button) p {
  font-size: 13px;
  margin-bottom: 10px;
}

.tx-cards-stack--opc [data-area-id^="col-"] {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: auto;
  max-width: none;
  flex: none;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--tx-line);
  background: #0F1011;
  overflow: hidden;
  isolation: isolate;
  transition: border-color .2s, transform .2s;
  padding: 32px;
  margin: 0;
}
.tx-cards-stack--opc [data-area-id^="col-"]:hover {
  border-color: var(--tx-mint, #10E0B4);
  transform: translateY(-3px);
}
/* Lesbarkeits-Gradient zwischen Bild (z=1) und Text (z=3) */
.tx-cards-stack--opc [data-area-id^="col-"]::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(11,12,13,0) 35%, rgba(11,12,13,0.50) 70%, rgba(11,12,13,0.87) 100%);
  pointer-events: none;
}
/* Alle Direkt-Kinder außer .banner sitzen über dem Backdrop */
.tx-cards-stack--opc [data-area-id^="col-"] > *:not(.banner) {
  position: relative;
  z-index: 3;
}

/* Überschrift — auf dem Bild liegend */
.tx-cards-stack--opc [data-area-id^="col-"] > :is(h1,h2,h3,h4,h5,h6) {
  font-family: "Raleway", "Open Sans", sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
  padding: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,.55);
}

/* Banner = Backdrop (absolut, full-bleed) */
.tx-cards-stack--opc [data-area-id^="col-"] > .banner {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
  padding: 0;
}
.tx-cards-stack--opc [data-area-id^="col-"] > .banner picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* Banner-Bild */
.tx-cards-stack--opc [data-area-id^="col-"] > .banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  transition: transform .5s ease, opacity .3s ease;
}
.tx-cards-stack--opc [data-area-id^="col-"]:hover > .banner img {
  transform: scale(1.04);
  opacity: 1;
}
.tx-cards-stack--opc [data-area-id^="col-"] > .banner .area,
.tx-cards-stack--opc [data-area-id^="col-"] > .banner .area-desc {
  display: none !important;
}

/* Rich-Text Subline (überlagert) */
.tx-cards-stack--opc [data-area-id^="col-"] > div:not(.banner):not(.opc-Button) p {
  color: rgba(236, 239, 238, .85);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 18px;
  padding: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}

/* CTA-Button (überlagert) */
.tx-cards-stack--opc [data-area-id^="col-"] .opc-Button {
  margin: 0;
  padding: 0;
}
.tx-cards-stack--opc [data-area-id^="col-"] .opc-Button :is(a, button, .btn) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid var(--tx-mint, #10E0B4) !important;
  border-radius: 0 !important;
  color: var(--tx-mint, #10E0B4) !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 4px 0 6px !important;
  transition: gap .15s ease;
  box-shadow: none !important;
}
.tx-cards-stack--opc [data-area-id^="col-"] .opc-Button :is(a, button, .btn)::after {
  content: "→";
  font-size: 14px;
  line-height: 1;
  transition: transform .2s ease;
}
.tx-cards-stack--opc [data-area-id^="col-"]:hover .opc-Button :is(a, button, .btn)::after {
  transform: translateX(4px);
}
.tx-cat {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--tx-line);
  background: var(--tx-card);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  cursor: pointer;
  transition: border-color .15s, transform .2s;
}
.tx-cat:hover { border-color: var(--tx-mint); transform: translateY(-2px); }
.tx-cat:first-child { grid-row: 1 / span 2; }
.tx-cat__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: brightness(0.65) contrast(1.05);
  transition: transform .4s, filter .3s;
}
.tx-cat:hover .tx-cat__img { transform: scale(1.04); filter: brightness(0.75); }
.tx-cat::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,7,7,0.95) 0%, rgba(5,7,7,0.4) 50%, transparent 100%);
  z-index: 1;
}
.tx-cat > * { position: relative; z-index: 2; }
.tx-cat__powered {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: var(--tx-sub);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(5,7,7,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 12px;
  z-index: 3;
}
.tx-cat__count {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--tx-sub);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--tx-text-dim);
  z-index: 3;
}
.tx-cat h3 {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.tx-cat:first-child h3 { font-size: 48px; font-weight: 600; }
.tx-cat__sub {
  font-family: var(--tx-sub);
  font-size: 14px;
  color: var(--tx-text-dim);
  margin-bottom: 14px;
}
.tx-cat__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tx-mint);
}

/* ─── BESTSELLER GRID ─────────────────────────────────────────── */
.tx-bestseller-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tx-product-card {
  background: var(--tx-card);
  border: 1px solid var(--tx-line);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color .15s, transform .2s;
}
.tx-product-card:hover {
  border-color: var(--tx-mint);
  transform: translateY(-4px);
}
.tx-product-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit !important;
  text-decoration: none !important;
}
.tx-product-card__sub {
  font-family: var(--tx-sub);
  font-size: 13px;
  line-height: 1.45;
  color: var(--tx-text-dim);
  margin: 0 0 14px;
}
.tx-plp__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
  border: 1px dashed var(--tx-line);
  background: var(--tx-card);
}
.tx-plp__empty p {
  font-family: var(--tx-h);
  font-size: 16px;
  color: var(--tx-text-dim);
  margin: 0 0 24px;
}
.tx-plp__pager {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 32px;
}
.tx-plp__pager a {
  font-family: var(--tx-h);
  font-weight: 600;
  font-size: 14px;
  color: var(--tx-text) !important;
  text-decoration: none !important;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tx-line);
  background: var(--tx-card);
  transition: border-color .12s, color .12s;
}
.tx-plp__pager a:hover { border-color: var(--tx-mint); color: var(--tx-mint) !important; }
.tx-plp__pager a.is-active {
  border-color: var(--tx-mint);
  color: var(--tx-mint) !important;
  background: rgba(16,224,180,0.08);
}
.tx-product-card__media {
  position: relative;
  aspect-ratio: 4/3;
  background:
    radial-gradient(ellipse at center, rgba(16,224,180,0.18), transparent 70%),
    var(--tx-bg-3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tx-product-card__media img {
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.6));
  transition: transform .4s;
}
.tx-product-card:hover .tx-product-card__media img { transform: scale(1.04); }
.tx-product-card__badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.tx-badge-tag {
  font-family: var(--tx-sub);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 8px;
  background: var(--tx-mint);
  color: #062019;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.tx-badge-tag--new { background: var(--tx-mint); color: #062019; }
.tx-badge-tag--top { background: var(--tx-mint); color: #062019; }
.tx-badge-tag--sale { background: var(--tx-danger); color: #fff; }
.tx-badge-tag--recommended { background: var(--tx-mint); color: #062019; }
.tx-badge-tag--recommended::before {
  content: '★';
  font-size: 11px;
}
.tx-product-card__fav {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border: 1px solid var(--tx-line-2);
  background: rgba(0,0,0,0.5);
  color: var(--tx-text-dim);
  display: inline-flex;
  align-items: center; justify-content: center;
  z-index: 2;
}
.tx-product-card__fav:hover { color: var(--tx-mint); border-color: var(--tx-mint); }

.tx-product-card__case {
  position: absolute;
  bottom: 10px; left: 12px;
  font-family: var(--tx-sub);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tx-text);
  z-index: 2;
}
.tx-product-card__case::before {
  content: '●';
  color: var(--tx-mint);
  margin-right: 6px;
  font-size: 10px;
}

.tx-product-card__body {
  padding: 18px;
  border-top: 1px solid var(--tx-line);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tx-product-card__class {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.tx-product-card__tier {
  font-family: var(--tx-sub);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tx-text-dim);
}
.tx-product-card__perf {
  display: flex;
  gap: 6px;
}
.tx-product-card__perf span {
  font-family: var(--tx-sub);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 2px 6px;
  background: rgba(16,224,180,0.12);
  color: var(--tx-mint);
  border: 1px solid rgba(16,224,180,0.4);
}
.tx-product-card__name {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.tx-product-card__specs {
  font-family: var(--tx-sub);
  font-size: 13px;
  margin-bottom: 14px;
}
.tx-product-card__specs > div {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(31,45,45,0.6);
}
.tx-product-card__specs > div:last-child { border-bottom: 0; }
.tx-product-card__specs dt {
  color: var(--tx-text-dim);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tx-product-card__specs dt::before {
  content: '›';
  color: var(--tx-text-mute);
}
.tx-product-card__specs dd {
  margin: 0;
  color: var(--tx-text);
  font-weight: 500;
  text-align: right;
}
.tx-product-card__specs dd em {
  font-style: normal;
  color: var(--tx-mint);
}

.tx-product-card__rma {
  border: 1px solid var(--tx-line-2);
  padding: 8px 10px;
  font-family: var(--tx-sub);
  font-size: 12px;
  color: var(--tx-text-dim);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tx-product-card__rma::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--tx-mint);
  box-shadow: 0 0 8px var(--tx-mint);
}
.tx-product-card__rma em { font-style: normal; color: var(--tx-text); font-weight: 600; }

.tx-product-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}
.tx-price__old {
  font-family: var(--tx-sub);
  font-size: 14px;
  color: var(--tx-text-mute);
  text-decoration: line-through;
}
.tx-price__now {
  font-family: var(--tx-h);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.02em;
}
.tx-price__meta {
  font-family: var(--tx-sub);
  font-size: 11px;
  color: var(--tx-text-dim);
  margin-top: 2px;
  display: flex;
  gap: 10px;
}
.tx-price__meta em { font-style: normal; color: var(--tx-mint); }
.tx-price__meta em::before {
  content: '●';
  margin-right: 4px;
}

/* ─── SYSTEM SELECTOR ─────────────────────────────────────────── */
.tx-syssel {
  background: var(--tx-bg);
}
.tx-syssel__head {
  padding: 64px 32px 24px;
  max-width: 1440px;
  margin: 0 auto;
}
.tx-syssel__tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}
.tx-syssel__tabs::after {
  content: '';
  position: absolute;
  left: 32px; right: 32px; bottom: 0;
  height: 1px;
  background: var(--tx-line);
  pointer-events: none;
}
.tx-syssel__tab {
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--tx-text-dim);
  font-family: var(--tx-h);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 18px 28px;
  cursor: pointer;
  white-space: nowrap;
  transition: color .15s, border-color .15s;
  position: relative;
}
.tx-syssel__tab.is-active {
  color: var(--tx-mint);
  border-bottom-color: var(--tx-mint);
}
.tx-syssel__tab.is-active::after {
  content: '';
  position: absolute;
  inset: 0 0 -1px 0;
  background: linear-gradient(to top, rgba(16,224,180,0.08), transparent);
  pointer-events: none;
}
.tx-syssel__tab:hover { color: var(--tx-text); }
.tx-syssel__tab small {
  font-family: var(--tx-sub);
  font-weight: 500;
  font-size: 11px;
  margin-left: 6px;
  color: var(--tx-text-mute);
}

.tx-syssel__body {
  display: grid;
  grid-template-columns: 320px repeat(4, 1fr);
  gap: 20px;
  padding: 32px;
  max-width: 1440px;
  margin: 0 auto;
}
.tx-syssel__intro {
  background: var(--tx-card);
  border: 1px solid var(--tx-line);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.tx-syssel__intro .tx-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tx-danger);
  color: #fff;
  padding: 4px 10px;
  font-family: var(--tx-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  align-self: flex-start;
  margin-bottom: 20px;
}
.tx-syssel__intro h3 {
  font-family: var(--tx-h);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.tx-syssel__intro p {
  font-family: var(--tx-sub);
  color: var(--tx-text-dim);
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.5;
}
.tx-syssel__intro ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-family: var(--tx-sub);
}
.tx-syssel__intro li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(31,45,45,0.6);
  font-size: 14px;
}
.tx-syssel__intro li::before {
  content: '›';
  color: var(--tx-text-dim);
  font-weight: 700;
}

.tx-syssel-card {
  background: var(--tx-card);
  border: 1px solid var(--tx-line);
  padding: 18px;
  display: flex;
  flex-direction: column;
  transition: border-color .15s, transform .2s;
}
.tx-syssel-card:hover { border-color: var(--tx-mint); transform: translateY(-3px); }
.tx-syssel-card__media {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at center, rgba(16,224,180,0.15), transparent 70%);
  margin-bottom: 16px;
}
.tx-syssel-card__media img { max-height: 95%; max-width: 95%; }
.tx-syssel-card__brand {
  font-family: var(--tx-sub);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tx-text-dim);
}
.tx-syssel-card h4 {
  font-family: var(--tx-h);
  font-weight: 800;
  font-size: 20px;
  margin: 4px 0 10px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.tx-syssel-card__price {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 16px;
  color: var(--tx-text);
  margin-bottom: 12px;
}
.tx-syssel-card__price em { font-style: normal; color: var(--tx-text-dim); font-weight: 500; font-size: 13px; margin-right: 4px; }
.tx-syssel-card__cfg {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tx-mint);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ─── BUILT DIFFERENT (4 pillars) ─────────────────────────────── */
.tx-builtdiff {
  background: var(--tx-bg);
  position: relative;
  overflow: hidden;
}
.tx-builtdiff__bg {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='56' height='64' viewBox='0 0 56 64'><path d='M28 1l26 15v32L28 63 2 48V16z' fill='none' stroke='%231F2528' stroke-width='1'/></svg>");
}
.tx-builtdiff__inner { position: relative; z-index: 1; }
.tx-builtdiff__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.tx-pillar {
  background: rgba(14,17,19,0.92);
  border: 1px solid var(--tx-line-2);
  padding: 28px;
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(2px);
}
.tx-pillar__num {
  position: absolute;
  top: 16px; right: 18px;
  font-family: var(--tx-sub);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--tx-mint);
}
.tx-pillar__corner {
  position: absolute;
  top: 12px; right: 12px;
  width: 16px; height: 16px;
  border-top: 1px solid var(--tx-mint);
  border-right: 1px solid var(--tx-mint);
}
.tx-pillar__icon {
  font-family: var(--tx-sub);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--tx-mint);
  margin-bottom: 24px;
}
.tx-pillar h3 {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0 0 10px;
  line-height: 1.05;
  color: #fff;
}
[data-theme="light"] .tx-pillar h3 { color: var(--tx-text); }
.tx-pillar h3 em {
  font-style: normal;
  color: var(--tx-mint);
}
.tx-pillar__sub {
  font-family: var(--tx-sub);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tx-mint);
  font-weight: 600;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--tx-line-2);
  position: relative;
}
.tx-pillar__sub::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 32px; height: 1px;
  background: var(--tx-mint);
}
.tx-pillar p {
  font-family: var(--tx-sub);
  color: var(--tx-text-dim);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* ─── CONFIGURATOR (full-width section) ───────────────────────── */
.tx-config {
  background: var(--tx-bg-2);
  border-top: 1px solid var(--tx-line);
  border-bottom: 1px solid var(--tx-line);
  padding: 80px 0;
}
.tx-config__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: flex-start;
}
.tx-config__visual {
  position: sticky;
  top: 100px;
  background: var(--tx-card);
  border: 1px solid var(--tx-line);
  padding: 24px;
}
.tx-config__hero {
  position: relative;
  aspect-ratio: 4/3;
  background:
    radial-gradient(ellipse at center, rgba(16,224,180,0.22), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.tx-config__hero img { max-height: 100%; max-width: 100%; }
.tx-config__hero-tag {
  position: absolute;
  top: 14px; left: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}
.tx-config__hero-tools {
  position: absolute;
  bottom: 14px; right: 14px;
  display: flex;
  gap: 6px;
}
.tx-config__hero-tools button {
  width: 36px; height: 36px;
  border: 1px solid var(--tx-line-2);
  background: rgba(0,0,0,0.5);
  color: var(--tx-text);
}
.tx-config__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.tx-config__thumb {
  aspect-ratio: 1/1;
  background: var(--tx-bg-3);
  border: 1px solid var(--tx-line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 6px;
}
.tx-config__thumb.is-active { border-color: var(--tx-mint); }
.tx-config__thumb img { max-height: 100%; max-width: 100%; }

.tx-config__details h2 {
  font-family: var(--tx-h);
  font-weight: 900;
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 16px 0 20px;
  text-transform: uppercase;
}
.tx-config__details h2 em {
  font-style: normal;
  color: var(--tx-mint);
}
.tx-config__crumbs {
  font-family: var(--tx-sub);
  font-size: 12px;
  color: var(--tx-text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.tx-config__crumbs em { font-style: normal; color: var(--tx-text); }
.tx-config__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-family: var(--tx-sub);
  font-size: 14px;
  color: var(--tx-text-dim);
}
.tx-config__rating .tx-stars { color: var(--tx-mint); letter-spacing: 2px; }
.tx-config__rating em { font-style: normal; color: var(--tx-text); font-weight: 700; }

.tx-config__lead {
  font-family: var(--tx-sub);
  font-size: 16px;
  color: var(--tx-text-dim);
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 24px;
}

.tx-config__buybox {
  background: var(--tx-card);
  border: 1px solid var(--tx-line);
  padding: 28px;
  margin-bottom: 24px;
}
.tx-config__buybox-eyebrow {
  font-family: var(--tx-sub);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--tx-text-dim);
  margin-bottom: 8px;
}
.tx-config__buybox h3 {
  font-family: var(--tx-h);
  font-weight: 800;
  font-size: 24px;
  margin: 0 0 4px;
  text-transform: uppercase;
}
.tx-config__buybox-base {
  font-family: var(--tx-sub);
  font-size: 13px;
  color: var(--tx-text-dim);
  margin-bottom: 16px;
}
.tx-config__buybox-price {
  font-family: var(--tx-h);
  font-weight: 800;
  font-size: 56px;
  color: var(--tx-mint);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.tx-config__buybox-vat {
  font-family: var(--tx-sub);
  font-size: 13px;
  color: var(--tx-text-dim);
  margin-bottom: 22px;
}
.tx-config__buybox .tx-btn { width: 100%; margin-bottom: 8px; }

.tx-config__assurance {
  border-top: 1px solid var(--tx-line);
  padding-top: 18px;
  font-family: var(--tx-sub);
  font-size: 13px;
}
.tx-config__assurance > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: var(--tx-text-dim);
}
.tx-config__assurance > div::before {
  content: '✓';
  color: var(--tx-mint);
  font-weight: 700;
}

/* configurator components list */
.tx-config__components {
  margin-top: 48px;
  grid-column: 1 / -1;
}
.tx-config__components-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}
.tx-config__components-head h3 {
  font-family: var(--tx-h);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.tx-comp-row {
  background: var(--tx-card);
  border: 1px solid var(--tx-line);
  margin-bottom: 8px;
}
.tx-comp-row__head {
  display: grid;
  grid-template-columns: 60px 1fr auto 36px;
  gap: 20px;
  padding: 16px 20px;
  align-items: center;
  cursor: pointer;
}
.tx-comp-row__icon {
  width: 40px; height: 40px;
  border: 1px solid var(--tx-line-2);
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--tx-mint);
}
.tx-comp-row__title {
  font-family: var(--tx-sub);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tx-text-dim);
  display: flex;
  align-items: center;
  gap: 10px;
}
.tx-comp-row__title em.req {
  font-style: normal;
  background: var(--tx-mint);
  color: #062019;
  font-size: 9px;
  letter-spacing: 0.2em;
  padding: 2px 6px;
  font-weight: 800;
}
.tx-comp-row__val {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 16px;
  color: var(--tx-text);
  margin-top: 2px;
  text-transform: none;
  letter-spacing: 0;
}
.tx-comp-row__val small {
  font-family: var(--tx-sub);
  font-weight: 500;
  font-size: 13px;
  color: var(--tx-mint);
  margin-left: 8px;
}
.tx-comp-row__price {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 14px;
  color: var(--tx-text-dim);
}
.tx-comp-row__price em { font-style: normal; color: var(--tx-mint); }
.tx-comp-row__chev {
  width: 28px; height: 28px;
  border: 1px solid var(--tx-line-2);
  color: var(--tx-text-dim);
  display: inline-flex;
  align-items: center; justify-content: center;
}
.tx-comp-row__info {
  border-top: 1px dashed var(--tx-line);
  padding: 12px 20px;
  font-family: var(--tx-sub);
  font-size: 12px;
  color: var(--tx-text-dim);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tx-comp-row__info::before {
  content: 'INFO';
  font-weight: 700;
  color: var(--tx-mint);
  letter-spacing: 0.2em;
  font-size: 10px;
  padding-right: 12px;
  border-right: 1px solid var(--tx-line);
}

/* delivery / what you get cards */
.tx-config__deliver {
  background: var(--tx-card);
  border: 1px solid var(--tx-line);
  padding: 28px;
}
.tx-config__deliver h3 {
  font-family: var(--tx-h);
  font-weight: 800;
  font-size: 28px;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.tx-config__deliver-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--tx-line);
}
.tx-config__deliver-item:first-of-type { border-top: 0; }
.tx-config__deliver-item strong {
  font-family: var(--tx-sub);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--tx-mint);
}
.tx-config__deliver-item h4 {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 16px;
  margin: 4px 0 4px;
}
.tx-config__deliver-item p {
  font-family: var(--tx-sub);
  font-size: 13px;
  color: var(--tx-text-dim);
  margin: 0;
  line-height: 1.4;
}

/* ─── PARTNER SECTION ─────────────────────────────────────────── */
.tx-partners {
  padding: 88px 0;
  background: var(--tx-bg-3);
}
.tx-partners__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.tx-partner-card {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #16191B 0%, #0B0C0D 100%);
  border: 1px solid var(--tx-line);
  overflow: hidden;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tx-partner-card--feature {
  background:
    radial-gradient(ellipse at 25% 50%, rgba(16,224,180,0.08), transparent 60%),
    linear-gradient(135deg, #181B1D 0%, #0B0C0D 100%);
}
.tx-partner-card__cta {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #ECEFEE;
  text-transform: uppercase;
  border-bottom: 1px solid var(--tx-mint);
  padding-bottom: 4px;
  align-self: flex-start;
}
.tx-partner-card__cta:hover { color: var(--tx-mint); }
.tx-partner-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tx-mint);
  color: #062019;
  font-family: var(--tx-sub);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 10px;
  align-self: flex-start;
}
.tx-partner-card h3 {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 18px 0 8px;
  text-transform: uppercase;
  color: #ECEFEE;
}
.tx-partner-card p {
  font-family: var(--tx-sub);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 360px;
  margin: 0 0 20px;
  line-height: 1.45;
}
.tx-partner-card__brand {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}
.tx-partner-card__brand::before {
  content: '';
  width: 28px; height: 1px;
  background: rgba(255, 255, 255, 0.4);
}
.tx-partner-card__cta {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--tx-mint);
  text-transform: uppercase;
}

.tx-partners__second {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.tx-partner-mini {
  position: relative;
  background: linear-gradient(135deg, #181B1D 0%, #0B0C0D 100%);
  border: 1px solid var(--tx-line);
  padding: 32px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.tx-partner-mini--silent { background: linear-gradient(135deg, #1A1A18 0%, #0B0C0D 100%); }
.tx-partner-mini h4 {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #ECEFEE;
}
.tx-partner-mini p {
  font-family: var(--tx-sub);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tx-warn);
  font-weight: 600;
  margin: 0;
}

/* logo row */
.tx-partners--logos-only {
  padding: 64px 0;
  background: var(--tx-bg-3);
}
.tx-partners--logos-only .tx-section__head { margin-bottom: 64px; }
.tx-partners--logos-only .tx-section-title { font-size: 32px; }
.tx-partners__logos {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  /* 10-Spalten-Grid → Brick-Pattern: 5 oben, 4 unten versetzt */
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  align-items: center;
  justify-items: center;
  gap: 48px 0;
}
/* Top-Row: 5 Logos auf den Spaltenpaaren 1/3/5/7/9 */
.tx-partners__logos > :nth-child(1) { grid-column: 1 / span 2; }
.tx-partners__logos > :nth-child(2) { grid-column: 3 / span 2; }
.tx-partners__logos > :nth-child(3) { grid-column: 5 / span 2; }
.tx-partners__logos > :nth-child(4) { grid-column: 7 / span 2; }
.tx-partners__logos > :nth-child(5) { grid-column: 9 / span 2; }
/* Bottom-Row: 4 Logos um halbe Zelle versetzt — Spaltenpaare 2/4/6/8 */
.tx-partners__logos > :nth-child(6) { grid-column: 2 / span 2; }
.tx-partners__logos > :nth-child(7) { grid-column: 4 / span 2; }
.tx-partners__logos > :nth-child(8) { grid-column: 6 / span 2; }
.tx-partners__logos > :nth-child(9) { grid-column: 8 / span 2; }
/* Responsive: Tablet 3-spaltig (alles flach), Mobile 2-spaltig */
@media (max-width: 991px) {
  .tx-partners__logos { grid-template-columns: repeat(3, 1fr); gap: 36px 24px; }
  .tx-partners__logos > * { grid-column: auto !important; }
}
@media (max-width: 575px) {
  .tx-partners__logos { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
}

.tx-partners__logos img {
  max-width: 100%;
  max-height: 32px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Logos auf Mono-Weiß zwingen, dezent ausblenden, mint auf Hover */
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity .2s ease, filter .2s ease, transform .2s ease;
}
.tx-partners__logos img:hover {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(16,224,180,.45));
  transform: translateY(-1px);
}
@media (max-width: 720px) {
  .tx-partners--logos-only .tx-section-title { font-size: 24px; }
}

/* ─── FOOTER ──────────────────────────────────────────────────── */
.tx-footer {
  background: #050707;
  border-top: 1px solid var(--tx-line);
  padding: 64px 0 24px;
}
.tx-footer__cols {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.tx-footer h5 {
  font-family: var(--tx-sub);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tx-mint);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--tx-line);
}
.tx-footer ul { list-style: none; padding: 0; margin: 0; }
.tx-footer li {
  padding: 6px 0;
  font-family: var(--tx-sub);
  font-size: 14px;
  color: var(--tx-text-dim);
  cursor: pointer;
}
.tx-footer li:hover { color: var(--tx-mint); }
.tx-footer__intro p {
  font-family: var(--tx-sub);
  color: var(--tx-text-dim);
  font-size: 14px;
  line-height: 1.5;
  margin: 16px 0;
  max-width: 320px;
}
.tx-footer__social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.tx-footer__social a {
  width: 36px; height: 36px;
  border: 1px solid var(--tx-line);
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--tx-text-dim);
}
.tx-footer__social a:hover { color: var(--tx-mint); border-color: var(--tx-mint); }

.tx-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--tx-line);
  font-family: var(--tx-sub);
  font-size: 12px;
  color: var(--tx-text-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 16px;
}

/* ─── CART ────────────────────────────────────────────────────── */
.tx-cart {
  background: var(--tx-bg);
  padding: 56px 0 80px;
}
.tx-cart__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}
.tx-cart__head { margin-bottom: 32px; }
.tx-cart__head h1 {
  font-family: var(--tx-h);
  font-weight: 900;
  font-size: 44px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 8px 0 12px;
}
.tx-cart__head h1 em { color: var(--tx-mint); font-style: normal; }
.tx-cart__head p {
  font-family: var(--tx-sub);
  font-size: 16px;
  color: var(--tx-text-dim);
  margin: 0;
}
.tx-cart__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: flex-start;
}

/* Cart line items */
.tx-cart__items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tx-cart-item {
  background: var(--tx-card);
  border: 1px solid var(--tx-line);
  display: grid;
  grid-template-columns: 140px 1fr auto auto auto;
  gap: 22px;
  padding: 18px;
  align-items: center;
}
.tx-cart-item__media {
  aspect-ratio: 1/1;
  background:
    radial-gradient(ellipse at center, rgba(16,224,180,0.06), transparent 70%),
    var(--tx-bg-3);
  border: 1px solid var(--tx-line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.tx-cart-item__media img { max-width: 100%; max-height: 100%; }
.tx-cart-item__main { min-width: 0; }
.tx-cart-item__tier {
  display: inline-block;
  font-family: var(--tx-sub);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tx-mint);
  margin-bottom: 4px;
}
.tx-cart-item h3 {
  font-family: var(--tx-h);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.tx-cart-item__specs {
  font-family: var(--tx-sub);
  font-size: 13.5px;
  color: var(--tx-text-dim);
  line-height: 1.5;
  margin-bottom: 8px;
}
.tx-cart-item__specs strong { color: var(--tx-text); font-weight: 600; }
.tx-cart-item__edit {
  font-family: var(--tx-sub);
  font-size: 13px;
  color: var(--tx-mint);
  text-decoration: underline dotted;
  text-underline-offset: 3px;
}
.tx-cart-item__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--tx-line-2);
}
.tx-cart-item__qty button {
  width: 36px; height: 36px;
  background: transparent;
  border: 0;
  color: var(--tx-text);
  font-size: 16px;
  cursor: pointer;
  font-family: var(--tx-h);
}
.tx-cart-item__qty button:hover { color: var(--tx-mint); }
.tx-cart-item__qty input {
  width: 40px;
  height: 36px;
  background: transparent;
  border: 0;
  border-left: 1px solid var(--tx-line-2);
  border-right: 1px solid var(--tx-line-2);
  text-align: center;
  color: var(--tx-text);
  font-family: var(--tx-h);
  font-weight: 700;
}
.tx-cart-item__price {
  font-family: var(--tx-h);
  font-weight: 800;
  font-size: 22px;
  color: var(--tx-text);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.tx-cart-item__remove {
  background: transparent;
  border: 1px solid var(--tx-line-2);
  width: 36px; height: 36px;
  color: var(--tx-text-dim);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tx-cart-item__remove:hover { color: var(--tx-danger); border-color: var(--tx-danger); }

/* Cart aside summary */
.tx-cart__aside {
  position: sticky;
  top: 32px;
  background: var(--tx-card);
  border: 1px solid var(--tx-line);
  padding: 28px;
}
.tx-cart__aside h2 {
  font-family: var(--tx-h);
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--tx-line);
  letter-spacing: -0.005em;
}
.tx-cart__line {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-family: var(--tx-sub);
  font-size: 14.5px;
  color: var(--tx-text-dim);
}
.tx-cart__line strong { color: var(--tx-text); font-weight: 600; }
.tx-cart__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0 12px;
  margin-top: 12px;
  border-top: 1px solid var(--tx-line);
}
.tx-cart__total-label {
  font-family: var(--tx-h);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tx-cart__total-val {
  font-family: var(--tx-h);
  font-weight: 900;
  font-size: 32px;
  color: var(--tx-mint);
  letter-spacing: -0.02em;
}
.tx-cart__vat {
  font-family: var(--tx-sub);
  font-size: 12px;
  color: var(--tx-text-mute);
  margin-bottom: 18px;
}
.tx-cart__voucher {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}
.tx-cart__voucher input {
  flex: 1;
  padding: 10px 12px;
  background: var(--tx-bg-3);
  border: 1px solid var(--tx-line);
  color: var(--tx-text);
  font-family: var(--tx-sub);
  font-size: 14px;
}
.tx-cart__voucher button {
  padding: 10px 14px;
  background: transparent;
  border: 1px solid var(--tx-line-2);
  color: var(--tx-text);
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.tx-cart__voucher button:hover { border-color: var(--tx-mint); color: var(--tx-mint); }
.tx-cart__aside .tx-btn { width: 100%; margin-bottom: 8px; }
.tx-cart__pay-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--tx-line);
}
.tx-cart__pay-icon {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--tx-text-dim);
  border: 1px solid var(--tx-line);
  padding: 5px 8px;
  text-transform: uppercase;
}

.tx-cart__empty {
  background: var(--tx-card);
  border: 1px solid var(--tx-line);
  padding: 48px;
  text-align: center;
}
.tx-cart__empty h2 {
  font-family: var(--tx-h);
  font-weight: 800;
  font-size: 24px;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.tx-cart__empty p { font-family: var(--tx-sub); color: var(--tx-text-dim); margin: 0 0 18px; }

@media (max-width: 1024px) {
  .tx-cart__layout { grid-template-columns: 1fr; }
  .tx-cart__aside { position: static; }
}
@media (max-width: 720px) {
  .tx-cart-item { grid-template-columns: 90px 1fr; gap: 14px; }
  .tx-cart-item__qty,
  .tx-cart-item__price,
  .tx-cart-item__remove { grid-column: 2; justify-self: start; }
  .tx-cart__head h1 { font-size: 32px; }
}

/* ─── RICH PDP (System Detail) ────────────────────────────────── */
.tx-pdp-hero {
  background: var(--tx-bg);
  padding: 36px 0 48px;
  border-bottom: 1px solid var(--tx-line);
}
.tx-pdp-hero__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}
.tx-pdp-hero__media {
  position: relative;
  aspect-ratio: 1/1;
  background:
    radial-gradient(ellipse at center, rgba(16,224,180,0.12), transparent 65%),
    var(--tx-bg-3);
  border: 1px solid var(--tx-line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tx-pdp-hero__media img { max-width: 88%; max-height: 88%; filter: drop-shadow(0 30px 70px rgba(0,0,0,0.7)); }
.tx-pdp-hero__media::before,
.tx-pdp-hero__media::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--tx-text-dim);
  opacity: 0.5;
}
.tx-pdp-hero__media::before { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.tx-pdp-hero__media::after  { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }

.tx-pdp-hero__info { padding-top: 12px; }
.tx-pdp-hero__crumbs {
  font-family: var(--tx-sub);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--tx-text-mute);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.tx-pdp-hero__crumbs em { color: var(--tx-text); font-style: normal; }
.tx-pdp-hero__crumbs a:hover { color: var(--tx-mint); }

.tx-pdp-hero h1 {
  font-family: var(--tx-h);
  font-weight: 900;
  font-size: 48px;
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.tx-pdp-hero h1 em { font-style: normal; color: var(--tx-mint); display: block; }
.tx-pdp-hero__lead {
  font-family: var(--tx-sub);
  font-size: 17px;
  line-height: 1.55;
  color: var(--tx-text-dim);
  margin: 0 0 24px;
  max-width: 540px;
}
.tx-pdp-hero__keyspecs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.tx-pdp-hero__price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
}
.tx-pdp-hero__price {
  font-family: var(--tx-h);
  font-weight: 900;
  font-size: 44px;
  color: var(--tx-mint);
  letter-spacing: -0.025em;
  line-height: 1;
}
.tx-pdp-hero__price-old {
  font-family: var(--tx-sub);
  font-size: 17px;
  color: var(--tx-text-mute);
  text-decoration: line-through;
}
.tx-pdp-hero__finance {
  font-family: var(--tx-sub);
  font-size: 14px;
  color: var(--tx-text-dim);
  margin-bottom: 22px;
}
.tx-pdp-hero__finance em { color: var(--tx-text); font-style: normal; font-weight: 700; }
.tx-pdp-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.tx-pdp-hero__assurance {
  border-top: 1px solid var(--tx-line);
  padding-top: 16px;
  font-family: var(--tx-sub);
  font-size: 13.5px;
  color: var(--tx-text-dim);
  display: grid;
  gap: 6px;
}
.tx-pdp-hero__assurance > div::before {
  content: '✓';
  color: var(--tx-mint);
  margin-right: 8px;
  font-weight: 700;
}

/* Tabs */
.tx-pdp-tabs {
  background: var(--tx-bg);
  border-bottom: 1px solid var(--tx-line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}
.tx-pdp-tabs__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 0;
  overflow-x: auto;
}
.tx-pdp-tabs__item {
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--tx-text-dim);
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 18px 22px;
  cursor: pointer;
  white-space: nowrap;
  transition: color .15s, border-color .15s;
}
.tx-pdp-tabs__item:hover { color: var(--tx-text); }
.tx-pdp-tabs__item.is-active {
  color: var(--tx-mint);
  border-bottom-color: var(--tx-mint);
}

/* Long description body */
.tx-pdp-body {
  background: var(--tx-bg);
  padding: 56px 0;
}
.tx-pdp-body__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}
.tx-pdp-body p {
  font-family: var(--tx-sub);
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--tx-text);
  margin: 0 0 18px;
}
.tx-pdp-body h2 {
  font-family: var(--tx-h);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 48px 0 24px;
  color: var(--tx-text);
}
.tx-pdp-body h2:first-of-type { margin-top: 0; }

/* Highlights – 3 spotlight cards */
.tx-pdp-highlights {
  background: var(--tx-bg);
  padding: 32px 0 64px;
}
.tx-pdp-highlights__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}
.tx-pdp-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tx-pdp-highlight {
  background: var(--tx-card);
  border: 1px solid var(--tx-line);
  display: flex;
  flex-direction: column;
}
.tx-pdp-highlight__media {
  aspect-ratio: 4/3;
  background:
    radial-gradient(ellipse at center, rgba(16,224,180,0.06), transparent 70%),
    var(--tx-bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--tx-line);
  overflow: hidden;
}
.tx-pdp-highlight__media img {
  max-width: 80%;
  max-height: 80%;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,0.5));
}
.tx-pdp-highlight__body { padding: 22px 24px 26px; }
.tx-pdp-highlight__tag {
  display: inline-block;
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tx-mint);
  border: 1px solid var(--tx-mint);
  padding: 4px 10px;
  margin-bottom: 14px;
}
.tx-pdp-highlight h3 {
  font-family: var(--tx-h);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.tx-pdp-highlight__sub {
  font-family: var(--tx-sub);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tx-text-dim);
  margin-bottom: 14px;
}
.tx-pdp-highlight p {
  font-family: var(--tx-sub);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--tx-text-dim);
  margin: 0;
}

/* Component spotlight rows (Mainboard / Gehäuse / Kühlung etc.) */
.tx-pdp-spotlight {
  background: var(--tx-bg);
  padding: 24px 0;
}
.tx-pdp-spotlight__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}
.tx-pdp-spotlight__row {
  background: var(--tx-card);
  border: 1px solid var(--tx-line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.tx-pdp-spotlight__row--reverse { grid-template-columns: 1fr 1fr; }
.tx-pdp-spotlight__row--reverse .tx-pdp-spotlight__media { order: 2; }
.tx-pdp-spotlight__media {
  aspect-ratio: 4/3;
  background:
    radial-gradient(ellipse at center, rgba(16,224,180,0.08), transparent 70%),
    var(--tx-bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.tx-pdp-spotlight__media img {
  max-width: 78%;
  max-height: 78%;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.6));
}
.tx-pdp-spotlight__media-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border: 1px solid var(--tx-line-2);
  background: rgba(0,0,0,0.4);
  color: var(--tx-text);
  display: inline-flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: border-color .15s, color .15s;
}
.tx-pdp-spotlight__media-arrow:hover { border-color: var(--tx-mint); color: var(--tx-mint); }
.tx-pdp-spotlight__media-arrow--prev { left: 16px; }
.tx-pdp-spotlight__media-arrow--next { right: 16px; }
.tx-pdp-spotlight__body {
  padding: 36px 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tx-pdp-spotlight__tag {
  display: inline-block;
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tx-mint);
  border: 1px solid var(--tx-mint);
  padding: 4px 10px;
  align-self: flex-start;
  margin-bottom: 18px;
}
.tx-pdp-spotlight h3 {
  font-family: var(--tx-h);
  font-weight: 900;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.tx-pdp-spotlight__sub {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tx-text);
  margin-bottom: 16px;
}
.tx-pdp-spotlight__row p {
  font-family: var(--tx-sub);
  font-size: 15px;
  line-height: 1.65;
  color: var(--tx-text-dim);
  margin: 0 0 18px;
}
.tx-pdp-spotlight__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--tx-line);
  padding-top: 16px;
  margin-top: auto;
}
.tx-pdp-spotlight__feat {
  border-right: 1px solid var(--tx-line);
  padding: 0 14px;
}
.tx-pdp-spotlight__feat:last-child { border-right: 0; }
.tx-pdp-spotlight__feat-label {
  font-family: var(--tx-h);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.005em;
  margin-bottom: 2px;
  text-transform: uppercase;
}
.tx-pdp-spotlight__feat-sub {
  font-family: var(--tx-sub);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tx-text-dim);
}

/* Reviews + Finance simple panels */
.tx-pdp-panel {
  background: var(--tx-bg);
  padding: 56px 0;
}
.tx-pdp-panel__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.tx-pdp-panel.is-hidden,
[data-panel].is-hidden { display: none; }

.tx-pdp-rating {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--tx-line);
}
.tx-pdp-rating__big {
  font-family: var(--tx-h);
  font-weight: 900;
  font-size: 56px;
  color: var(--tx-mint);
  line-height: 1;
  letter-spacing: -0.025em;
}
.tx-pdp-rating__stars {
  font-size: 22px;
  color: var(--tx-mint);
  letter-spacing: 4px;
  margin-bottom: 4px;
}
.tx-pdp-review {
  border-bottom: 1px solid var(--tx-line);
  padding: 18px 0;
}
.tx-pdp-review:last-child { border-bottom: 0; }
.tx-pdp-review__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-family: var(--tx-sub);
  font-size: 13px;
  color: var(--tx-text-dim);
}
.tx-pdp-review__head em { color: var(--tx-mint); font-style: normal; letter-spacing: 2px; }
.tx-pdp-review h4 {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 4px;
}
.tx-pdp-review p {
  font-family: var(--tx-sub);
  font-size: 15px;
  line-height: 1.6;
  color: var(--tx-text-dim);
  margin: 0;
}

@media (max-width: 1024px) {
  .tx-pdp-hero__inner { grid-template-columns: 1fr; }
  .tx-pdp-hero h1 { font-size: 40px; }
  .tx-pdp-spotlight__row { grid-template-columns: 1fr; }
  .tx-pdp-spotlight__row--reverse .tx-pdp-spotlight__media { order: 0; }
  .tx-pdp-highlights__grid { grid-template-columns: 1fr; }
  .tx-pdp-spotlight__features { grid-template-columns: repeat(2, 1fr); }
}

/* ─── LEGAL / STATIC PAGES ────────────────────────────────────── */
.tx-legal {
  background: var(--tx-bg);
  padding: 56px 0 80px;
}
.tx-legal__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}
.tx-legal__crumbs {
  font-family: var(--tx-sub);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tx-text-mute);
  margin-bottom: 18px;
}
.tx-legal__crumbs a:hover { color: var(--tx-mint); }
.tx-legal__crumbs em { color: var(--tx-text); font-style: normal; }
.tx-legal h1 {
  font-family: var(--tx-h);
  font-weight: 900;
  font-size: 48px;
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 28px;
}
.tx-legal h2 {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 22px;
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
}
.tx-legal h3 {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 16px;
  margin: 24px 0 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.tx-legal p,
.tx-legal address {
  font-family: var(--tx-sub);
  font-size: 16px;
  line-height: 1.65;
  color: var(--tx-text);
  margin: 0 0 16px;
  font-style: normal;
}
.tx-legal ul, .tx-legal ol {
  font-family: var(--tx-sub);
  font-size: 16px;
  line-height: 1.65;
  color: var(--tx-text);
  padding-left: 22px;
  margin: 0 0 16px;
}
.tx-legal a { color: var(--tx-mint); text-decoration: underline dotted; text-underline-offset: 3px; }
.tx-legal__lead {
  font-family: var(--tx-sub);
  font-size: 17px;
  color: var(--tx-text-dim);
  line-height: 1.55;
  border-left: 2px solid var(--tx-mint);
  padding: 4px 0 4px 18px;
  margin: 0 0 28px;
}
.tx-legal__contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.tx-legal__contact-card {
  background: var(--tx-card);
  border: 1px solid var(--tx-line);
  padding: 24px;
}
.tx-legal__contact-card h3 {
  margin-top: 0;
  color: var(--tx-mint);
  font-size: 12px;
  letter-spacing: 0.18em;
}
@media (max-width: 720px) {
  .tx-legal h1 { font-size: 36px; }
  .tx-legal__contact-grid { grid-template-columns: 1fr; }
}

/* ─── CONTACT PAGE ────────────────────────────────────────────── */

/* Trust strip below the lead */
.tx-contact-trust {
  display: flex;
  gap: 0;
  margin: 28px 0 40px;
  border: 1px solid var(--tx-line);
}
.tx-contact-trust__item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-right: 1px solid var(--tx-line);
}
.tx-contact-trust__item:last-child { border-right: 0; }
.tx-contact-trust__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--tx-mint);
}
.tx-contact-trust__copy { min-width: 0; }
.tx-contact-trust__val {
  font-family: var(--tx-h);
  font-size: 13px;
  font-weight: 800;
  color: var(--tx-text);
  white-space: nowrap;
}
.tx-contact-trust__desc {
  font-size: 11px;
  color: var(--tx-text-dim);
  margin-top: 1px;
}

/* Main 2-col layout */
.tx-contact-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

/* Form card */
.tx-contact-form-card {
  background: var(--tx-card);
  border: 1px solid var(--tx-line);
  border-top: 3px solid var(--tx-mint);
  padding: 32px;
}
.tx-contact-form-card__title {
  font-family: var(--tx-h);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tx-text);
  margin: 0 0 24px;
}
.tx-contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.tx-contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.tx-contact-form__group--full { grid-column: 1 / -1; }
.tx-contact-form__label {
  font-family: var(--tx-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tx-text-dim);
}
.tx-contact-form__label span { color: var(--tx-mint); margin-left: 2px; }
.tx-contact-form__input,
.tx-contact-form__select,
.tx-contact-form__textarea {
  background: var(--tx-bg-3);
  border: 1px solid var(--tx-line);
  border-bottom-width: 2px;
  color: var(--tx-text);
  font: inherit;
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  transition: border-color .15s, background .15s;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  box-sizing: border-box;
}
.tx-contact-form__input:focus,
.tx-contact-form__select:focus,
.tx-contact-form__textarea:focus {
  border-color: var(--tx-mint);
  background: var(--tx-card);
}
.tx-contact-form__input::placeholder,
.tx-contact-form__textarea::placeholder { color: var(--tx-text-mute); }
.tx-contact-form__select-wrap { position: relative; }
.tx-contact-form__select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--tx-mint);
  font-size: 11px;
}
.tx-contact-form__textarea { resize: vertical; min-height: 130px; }
.tx-contact-form__hint {
  font-size: 11px;
  color: var(--tx-text-mute);
  line-height: 1.5;
}
.tx-contact-form__submit { grid-column: 1 / -1; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.tx-contact-form__fine {
  font-size: 11px;
  color: var(--tx-text-mute);
  line-height: 1.5;
}
.tx-contact-form__fine a { color: var(--tx-mint); text-decoration: none; }
.tx-contact-form__fine a:hover { text-decoration: underline; }

/* Success state */
.tx-contact-form__success {
  display: none;
  grid-column: 1 / -1;
  background: var(--tx-mint-soft);
  border: 1px solid var(--tx-mint);
  padding: 22px 26px;
  color: var(--tx-mint);
  font-family: var(--tx-h);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.tx-contact-form--sent .tx-contact-form__success { display: block; }
.tx-contact-form--sent .tx-contact-form__fields { display: none; }

/* Sidebar */
.tx-contact-aside {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--tx-line);
  border-top: 3px solid var(--tx-line-2);
  overflow: hidden;
}
.tx-contact-aside__block {
  padding: 20px 22px;
  border-bottom: 1px solid var(--tx-line);
}
.tx-contact-aside__block:last-child { border-bottom: 0; }
.tx-contact-aside__label {
  font-family: var(--tx-h);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tx-mint);
  margin-bottom: 10px;
}
.tx-contact-aside__val {
  font-size: 13px;
  color: var(--tx-text);
  line-height: 1.6;
}
.tx-contact-aside__val strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--tx-text);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.tx-contact-aside__val a { color: var(--tx-mint); text-decoration: none; font-weight: 600; }
.tx-contact-aside__val a:hover { text-decoration: underline; }
.tx-contact-aside__hours {
  margin-top: 10px;
  font-size: 12px;
  color: var(--tx-text-dim);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tx-contact-aside__hours span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--tx-line);
}
.tx-contact-aside__hours span:last-child { border-bottom: 0; padding-bottom: 0; }
.tx-contact-aside__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--tx-mint);
  margin-top: 8px;
}
.tx-contact-aside__status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tx-mint);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--tx-mint);
}

/* FAQ strip */
.tx-contact-faq {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--tx-line);
}
.tx-contact-faq__title {
  font-family: var(--tx-h);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tx-text-dim);
  margin-bottom: 14px;
}
.tx-contact-faq__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.tx-contact-faq__list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--tx-card);
  border: 1px solid var(--tx-line);
  padding: 13px 16px;
  color: var(--tx-text-dim);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: border-color .15s, color .15s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tx-contact-faq__list li a:hover { border-color: var(--tx-mint); color: var(--tx-mint); }
.tx-contact-faq__list li a svg { flex-shrink: 0; color: var(--tx-mint); }

@media (max-width: 960px) {
  .tx-contact-wrap { grid-template-columns: 1fr; }
  .tx-contact-aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top-width: 1px;
  }
  .tx-contact-aside__block { border-right: 1px solid var(--tx-line); border-bottom: 1px solid var(--tx-line); }
  .tx-contact-aside__block:nth-child(2n) { border-right: 0; }
  .tx-contact-aside__block:nth-last-child(-n+2) { border-bottom: 0; }
  .tx-contact-trust { flex-wrap: wrap; }
  .tx-contact-trust__item { flex: 0 0 50%; border-bottom: 1px solid var(--tx-line); }
  .tx-contact-trust__item:nth-child(2) { border-right: 0; }
  .tx-contact-faq__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .tx-contact-form { grid-template-columns: 1fr; }
  .tx-contact-form-card { padding: 20px; }
  .tx-contact-aside { grid-template-columns: 1fr; }
  .tx-contact-aside__block { border-right: 0 !important; }
  .tx-contact-aside__block:nth-last-child(-n+2) { border-bottom: 1px solid var(--tx-line); }
  .tx-contact-aside__block:last-child { border-bottom: 0; }
  .tx-contact-faq__list { grid-template-columns: 1fr; }
  .tx-contact-trust__item { flex: 0 0 100%; border-right: 0 !important; }
  .tx-contact-form__submit { flex-direction: column; align-items: flex-start; }
}

/* ─── BLOG TEASER ─────────────────────────────────────────────── */
.tx-blog {
  background: var(--tx-bg);
  padding: 88px 0;
}
.tx-blog__head { margin-bottom: 44px; }
.tx-blog__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 460px;
}
.tx-blog-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--tx-line);
  background: var(--tx-card);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  cursor: pointer;
  transition: transform .2s, border-color .15s;
}
.tx-blog-card:first-child { grid-row: 1 / span 2; padding: 32px; }
.tx-blog-card:hover { border-color: var(--tx-text-dim); transform: translateY(-2px); }
.tx-blog-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: brightness(0.7) contrast(1.05);
  transition: transform .4s, filter .3s;
}
.tx-blog-card:hover .tx-blog-card__img { transform: scale(1.04); filter: brightness(0.85); }
.tx-blog-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,7,7,0.96) 0%, rgba(5,7,7,0.5) 50%, transparent 100%);
  z-index: 1;
}
.tx-blog-card > *:not(.tx-blog-card__img) { position: relative; z-index: 2; color: var(--tx-text); }
.tx-blog-card__tag {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--tx-sub);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tx-mint);
  z-index: 3;
}
.tx-blog-card h3 {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 4px;
  color: #FFFFFF;
}
.tx-blog-card:first-child h3 { font-size: 28px; font-weight: 700; }
.tx-blog-card__sub {
  font-family: var(--tx-sub);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

/* ─── NEWS / BLOG · DETAIL HERO ───────────────────────────────── */
.tx-news-hero {
  margin: 0 0 32px;
  border: 1px solid var(--tx-line);
  overflow: hidden;
  background: var(--tx-card);
  border-radius: 2px;
}
.tx-news-hero img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .tx-news-hero { margin-bottom: 20px; }
  .tx-news-hero img { max-height: 280px; }
}

/* ─── SOCIALS STRIP ───────────────────────────────────────────── */
.tx-socials {
  background: var(--tx-bg-3);
  padding: 72px 0 88px;
}
.tx-socials__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.tx-socials__head h2 {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 36px;
  margin: 12px 0 0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.tx-socials__icons { display: flex; gap: 8px; }
.tx-socials__icon {
  width: 40px; height: 40px;
  border: 1px solid var(--tx-line-2);
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--tx-text);
  transition: border-color .15s, color .15s, background .15s;
}
.tx-socials__icon:hover { border-color: var(--tx-mint); color: var(--tx-mint); }
.tx-socials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.tx-socials__tile {
  position: relative;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  background-color: var(--tx-card);
  border: 1px solid var(--tx-line);
  cursor: pointer;
  overflow: hidden;
  transition: transform .2s, border-color .15s;
}
.tx-socials__tile:hover { border-color: var(--tx-text-dim); transform: translateY(-2px); }
.tx-socials__tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.7));
  opacity: 0;
  transition: opacity .2s;
}
.tx-socials__tile:hover::after { opacity: 1; }
.tx-socials__tile-meta {
  position: absolute;
  bottom: 12px; left: 14px;
  font-family: var(--tx-sub);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFFFFF;
  opacity: 0;
  z-index: 2;
  transition: opacity .2s;
}
.tx-socials__tile:hover .tx-socials__tile-meta { opacity: 1; }

/* ─── PLP (PRODUKTÜBERSICHT) ──────────────────────────────────── */
.tx-plp-crumbs {
  background: var(--tx-bg);
  border-bottom: 1px solid var(--tx-line);
  padding: 14px 0;
  font-family: var(--tx-sub);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tx-text-mute);
}
.tx-plp-crumbs__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tx-plp-crumbs a:hover { color: var(--tx-mint); }
.tx-plp-crumbs em { font-style: normal; color: var(--tx-text); }
.tx-plp-crumbs__sep { color: var(--tx-mint); }

.tx-plp-intro {
  background: var(--tx-bg);
  padding: 56px 0 40px;
  position: relative;
  overflow: hidden;
}
.tx-plp-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 70% 30%, rgba(16,224,180,0.06), transparent 60%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='56' height='64' viewBox='0 0 56 64'><path d='M28 1l26 15v32L28 63 2 48V16z' fill='none' stroke='%231F2528' stroke-width='1'/></svg>");
  opacity: 0.6;
  pointer-events: none;
}
.tx-plp-intro__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}
.tx-plp-intro h1 {
  font-family: var(--tx-h);
  font-weight: 900;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #FFFFFF !important;
  margin: 0 0 24px;
  max-width: 920px;
}
.tx-plp-intro h1 em {
  font-style: normal;
  color: var(--tx-mint);
}
.tx-plp-intro__lead {
  font-family: var(--tx-sub);
  font-size: 16px;
  color: var(--tx-text-dim);
  line-height: 1.55;
  max-width: 640px;
  margin: 0;
}

.tx-plp {
  background: var(--tx-bg);
  padding: 32px 0 80px;
}
.tx-plp__layout {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: flex-start;
}
.tx-plp__layout--no-sidebar {
  grid-template-columns: 1fr;
}

/* Sidebar */
.tx-plp__sidebar {
  position: sticky;
  top: 80px;
}
.tx-filter-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--tx-line);
}
.tx-filter-head h2 {
  font-family: var(--tx-h);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0;
}
.tx-filter-head a {
  font-family: var(--tx-sub);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--tx-text-dim);
  text-decoration: underline dotted;
  text-underline-offset: 3px;
}
.tx-filter-head a:hover { color: var(--tx-mint); }

.tx-filter-section {
  border-bottom: 1px solid var(--tx-line);
  padding: 14px 0;
}
.tx-filter-section__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tx-text);
  padding: 4px 0;
  user-select: none;
}
.tx-filter-section__chev {
  font-size: 11px;
  color: var(--tx-text-dim);
  transition: transform .15s;
}
.tx-filter-section.is-open .tx-filter-section__chev { transform: rotate(180deg); color: var(--tx-mint); }
.tx-filter-section__body {
  padding: 12px 0 4px;
  display: none;
}
.tx-filter-section.is-open .tx-filter-section__body { display: block; }

/* Range slider (cosmetic) */
.tx-filter-range {
  display: flex;
  justify-content: space-between;
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
}
.tx-filter-range em { font-style: normal; }
.tx-filter-track {
  position: relative;
  height: 4px;
  background: var(--tx-line);
  margin: 6px 0 14px;
}
.tx-filter-track__range {
  position: absolute;
  top: 0; bottom: 0;
  left: 18%;
  right: 28%;
  background: var(--tx-mint);
  box-shadow: 0 0 12px rgba(16,224,180,0.5);
}
.tx-filter-track__handle {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  background: var(--tx-bg);
  border: 2px solid var(--tx-mint);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px rgba(16,224,180,0.12);
}

/* Checkbox list */
.tx-filter-list { list-style: none; padding: 0; margin: 0; }
.tx-filter-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-family: var(--tx-sub);
  font-size: 13.5px;
  color: var(--tx-text);
  cursor: pointer;
}
.tx-filter-list li:hover .tx-filter-check { border-color: var(--tx-text-dim); }
.tx-filter-check {
  width: 16px;
  height: 16px;
  border: 1px solid var(--tx-line-2);
  background: var(--tx-bg-3);
  flex-shrink: 0;
  position: relative;
  transition: border-color .15s, background .15s;
}
.tx-filter-list li.is-checked .tx-filter-check {
  background: var(--tx-mint);
  border-color: var(--tx-mint);
}
.tx-filter-list li.is-checked .tx-filter-check::after {
  content: '';
  position: absolute;
  left: 4px; top: 1px;
  width: 5px; height: 9px;
  border: solid #062019;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.tx-filter-list li > span:first-of-type { flex: 1; }
.tx-filter-list li .tx-filter-count {
  font-family: var(--tx-sub);
  font-size: 12px;
  color: var(--tx-text-mute);
}

/* Top bar */
.tx-plp__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--tx-line);
}
.tx-plp__count {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.tx-plp__count em {
  font-style: normal;
  color: var(--tx-mint);
  margin-right: 4px;
}
.tx-plp__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
}
.tx-plp__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--tx-sub);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--tx-text);
  border: 1px solid var(--tx-line-2);
  background: rgba(16,224,180,0.04);
  padding: 5px 10px;
}
.tx-plp__chip button {
  background: none;
  border: 0;
  color: var(--tx-text-dim);
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.tx-plp__chip button:hover { color: var(--tx-danger); }

.tx-plp__sort {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--tx-sub);
  font-size: 13px;
  color: var(--tx-text-dim);
}
.tx-plp__sort select {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--tx-text);
  background: var(--tx-bg-3);
  border: 1px solid var(--tx-line-2);
  padding: 8px 28px 8px 12px;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%2310E0B4' stroke-width='2'><path d='M2 4l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
}

.tx-plp__view {
  display: flex;
  gap: 4px;
}
.tx-plp__view button {
  width: 36px; height: 36px;
  border: 1px solid var(--tx-line-2);
  background: transparent;
  color: var(--tx-text-dim);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tx-plp__view button.is-active { color: var(--tx-mint); border-color: var(--tx-mint); }

/* Card grid */
.tx-plp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
/* PLP card uses simpler spec list */
.tx-plp__grid .tx-product-card__specs--compact {
  font-family: var(--tx-sub);
  font-size: 13px;
  margin-bottom: 14px;
}
.tx-plp__grid .tx-product-card__specs--compact > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(31,45,45,0.5);
}
.tx-plp__grid .tx-product-card__specs--compact > div:last-child { border-bottom: 0; }
.tx-plp__grid .tx-product-card__specs--compact dt {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--tx-text-mute);
  text-transform: uppercase;
}
.tx-plp__grid .tx-product-card__specs--compact dd {
  margin: 0;
  color: var(--tx-text);
  font-weight: 600;
}
.tx-plp__grid .tx-product-card__specs--compact dd em {
  font-style: normal;
  color: var(--tx-mint);
  font-weight: 700;
}

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1280px) {
  .tx-search { width: 200px; }
  .tx-search:focus-within { width: 240px; }
  .tx-nav__item { padding: 10px 11px; font-size: 12px; }
}
@media (max-width: 1180px) {
  .tx-search { display: none; }
  .tx-bestseller-grid { grid-template-columns: repeat(2, 1fr); }
  .tx-builtdiff__grid { grid-template-columns: repeat(2, 1fr); }
  .tx-syssel__body { grid-template-columns: 1fr 1fr; }
  .tx-footer__cols { grid-template-columns: 1fr 1fr; }
  .tx-plp__layout { grid-template-columns: 220px 1fr; gap: 24px; }
  .tx-plp__grid { grid-template-columns: repeat(2, 1fr); }
  .tx-plp-intro h1 { font-size: 44px; }
}
@media (max-width: 880px) {
  .tx-plp__layout { grid-template-columns: 1fr; }
  .tx-plp__sidebar { position: static; }
  .tx-plp__grid { grid-template-columns: 1fr; }
  .tx-blog__grid { grid-template-columns: 1fr; height: auto; }
  .tx-blog-card { aspect-ratio: 16/9; }
  .tx-blog-card:first-child { grid-row: auto; }
  .tx-socials__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1180px) {
  .tx-blog__grid { height: 420px; }
}
@media (max-width: 880px) {
  .tx-hero__inner { grid-template-columns: 1fr; }
  .tx-hero__title { font-size: 56px; }
  .tx-config__inner { grid-template-columns: 1fr; }
  .tx-section-title { font-size: 36px; }
  .tx-nav, .tx-search, .tx-statusbar { display: none; }
  .tx-bestseller-grid, .tx-builtdiff__grid, .tx-syssel__body, .tx-partners__row, .tx-footer__cols { grid-template-columns: 1fr; }
}

/* ─── PDP · Description headline + lead + perf strip ─────────── */
.tx-pdp-body__headline {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 12px 0 18px;
  color: var(--tx-text);
}
.tx-pdp-body__headline em {
  font-style: normal;
  color: var(--tx-mint);
  font-weight: 700;
  display: block;
}
.tx-pdp-body__lead {
  font-family: var(--tx-sub);
  font-size: 18px;
  line-height: 1.55;
  color: var(--tx-text);
  margin: 0 0 32px;
  max-width: 780px;
}
.tx-pdp-perfstrip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 0 0 44px;
  border: 1px solid var(--tx-line-2);
  background: var(--tx-bg-3);
}
.tx-pdp-perfstrip__cell {
  padding: 22px 20px;
  border-right: 1px solid var(--tx-line-2);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tx-pdp-perfstrip__cell:last-child { border-right: 0; }
.tx-pdp-perfstrip__num {
  font-family: var(--tx-h);
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--tx-text);
}
.tx-pdp-perfstrip__num em {
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  color: var(--tx-text-dim);
  margin-left: 3px;
  letter-spacing: 0;
}
.tx-pdp-perfstrip__lbl {
  font-family: var(--tx-sub);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tx-text-dim);
}

/* ─── PDP · Highlights — kicker, title, numbered cards ────────── */
.tx-pdp-highlights__title {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 12px 0 28px;
  color: var(--tx-text);
}
.tx-pdp-highlight {
  position: relative;
}
.tx-pdp-highlight__num {
  position: absolute;
  top: 12px; right: 14px;
  font-family: var(--tx-sub);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--tx-mint);
  z-index: 2;
}

/* ─── PDP · Reviews (rating bars, filters, list, foot) ────────── */
.tx-pdp-reviews-summary {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  padding: 28px 32px;
  border: 1px solid var(--tx-line-2);
  background: var(--tx-bg-3);
  margin-bottom: 32px;
}
.tx-pdp-reviews-summary__score { text-align: left; }
.tx-pdp-reviews-summary__score .tx-pdp-rating__big { margin-bottom: 4px; }
.tx-pdp-reviews-summary__count {
  font-family: var(--tx-sub);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tx-text-dim);
  margin-top: 6px;
}
.tx-pdp-reviews-summary__rec {
  font-family: var(--tx-sub);
  font-size: 15px;
  color: var(--tx-text);
  margin-top: 8px;
}
.tx-pdp-reviews-summary__rec strong { color: var(--tx-mint); font-weight: 700; }

.tx-pdp-reviews-summary__bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tx-pdp-rating-bar {
  display: grid;
  grid-template-columns: 36px 1fr 48px;
  align-items: center;
  gap: 14px;
  font-family: var(--tx-sub);
  font-size: 13px;
}
.tx-pdp-rating-bar__lbl {
  color: var(--tx-text-dim);
  font-weight: 600;
}
.tx-pdp-rating-bar__track {
  height: 8px;
  background: var(--tx-bg);
  border: 1px solid var(--tx-line);
  position: relative;
  overflow: hidden;
}
.tx-pdp-rating-bar__fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--tx-mint);
  display: block;
}
.tx-pdp-rating-bar__pct {
  color: var(--tx-text);
  font-weight: 600;
  text-align: right;
}

.tx-pdp-review-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.tx-pdp-review-filter {
  background: transparent;
  border: 1px solid var(--tx-line-2);
  color: var(--tx-text-dim);
  font-family: var(--tx-h);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 14px;
  cursor: pointer;
  transition: border-color .15s, color .15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tx-pdp-review-filter small {
  font-family: var(--tx-sub);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--tx-text-mute);
  font-weight: 500;
}
.tx-pdp-review-filter:hover { color: var(--tx-text); border-color: var(--tx-text-dim); }
.tx-pdp-review-filter.is-active {
  color: var(--tx-mint);
  border-color: var(--tx-mint);
}
.tx-pdp-review-filter.is-active small { color: var(--tx-mint); }

.tx-pdp-reviews-list { margin-top: 8px; }
.tx-pdp-review { padding: 22px 0; }
.tx-pdp-review__head strong { color: var(--tx-text); font-weight: 700; }
.tx-pdp-review__foot {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-family: var(--tx-sub);
  font-size: 12px;
  color: var(--tx-text-mute);
  letter-spacing: 0.04em;
}
.tx-pdp-review__vote {
  background: transparent;
  border: 1px solid var(--tx-line-2);
  color: var(--tx-text-dim);
  font-family: var(--tx-sub);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  margin-left: 6px;
  cursor: pointer;
  transition: border-color .15s, color .15s;
}
.tx-pdp-review__vote:hover { border-color: var(--tx-mint); color: var(--tx-mint); }

.tx-pdp-reviews-loadmore {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* ─── PDP · Hero rating (Sterne neben dem Produktnamen) ────────── */
.tx-pdp-hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 14px;
  font-family: var(--tx-sub);
  font-size: 14px;
  color: var(--tx-text-dim);
}
.tx-pdp-hero__stars {
  color: var(--tx-mint);
  letter-spacing: 3px;
  font-size: 16px;
}
.tx-pdp-hero__rating strong {
  color: var(--tx-text);
  font-weight: 700;
  font-size: 15px;
}
.tx-pdp-hero__rating a {
  color: var(--tx-text-dim);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .15s;
}
.tx-pdp-hero__rating a:hover { color: var(--tx-mint); }

/* ─── PDP · Erwartete Performance (FPS pro Spiel in Buybox) ──── */
.tx-pdp-hero__perf {
  margin: 22px 0 14px;
  padding: 18px 18px 14px;
  background: var(--tx-bg-3);
  border: 1px solid var(--tx-line-2);
}
.tx-pdp-hero__perf-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.tx-pdp-hero__perf-title {
  font-family: var(--tx-sub);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tx-text);
}
.tx-pdp-hero__perf-meta {
  font-family: var(--tx-sub);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tx-text-mute);
}
.tx-pdp-hero__perf-row {
  display: grid;
  grid-template-columns: minmax(140px, 1.4fr) 1fr 76px;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--tx-line);
}
.tx-pdp-hero__perf-row:last-of-type { border-bottom: 0; }
.tx-pdp-hero__perf-game {
  font-family: var(--tx-h);
  font-size: 13px;
  font-weight: 700;
  color: var(--tx-text);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tx-pdp-hero__perf-game em {
  font-style: normal;
  font-family: var(--tx-sub);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tx-text-mute);
  font-weight: 500;
}
.tx-pdp-hero__perf-bar {
  height: 6px;
  background: var(--tx-bg);
  border: 1px solid var(--tx-line);
  position: relative;
  display: block;
}
.tx-pdp-hero__perf-bar > span {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--tx-mint);
  display: block;
}
.tx-pdp-hero__perf-fps {
  font-family: var(--tx-h);
  font-weight: 800;
  font-size: 18px;
  color: var(--tx-text);
  text-align: right;
  letter-spacing: -0.01em;
}
.tx-pdp-hero__perf-fps em {
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--tx-text-mute);
  margin-left: 4px;
}
.tx-pdp-hero__perf-note {
  font-family: var(--tx-sub);
  font-size: 11px;
  line-height: 1.45;
  color: var(--tx-text-mute);
  margin: 12px 0 0;
}

/* ─── PDP · Highlight Card · Spec-Pills (unter dem Body-Text) ──── */
.tx-pdp-highlight__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.tx-pdp-highlight__pills span {
  font-family: var(--tx-sub);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tx-text-dim);
  border: 1px solid var(--tx-line-2);
  padding: 4px 9px;
  background: var(--tx-bg);
  font-weight: 600;
}

/* ─── PDP · Body Notice (Inline-Disclaimer im Intro) ─────────── */
.tx-pdp-body__notice {
  font-family: var(--tx-sub) !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  color: var(--tx-text-dim) !important;
  background: var(--tx-bg-3);
  border-left: 2px solid var(--tx-mint);
  padding: 12px 16px !important;
  margin: 0 0 28px !important;
}
.tx-pdp-body__notice strong { color: var(--tx-text); font-weight: 700; letter-spacing: 0.04em; }
.tx-pdp-body__notice em { font-style: normal; color: var(--tx-mint); font-weight: 700; }

/* ─── PDP · Toxic Build-Prozess (4 Schritte, alternative Karten) ─ */
.tx-pdp-process {
  background: var(--tx-bg-3);
  padding: 56px 0 64px;
}
.tx-pdp-process__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}
.tx-pdp-process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.tx-pdp-process__steps li {
  background: var(--tx-bg);
  border: 1px solid var(--tx-line-2);
  padding: 26px 22px 22px;
  position: relative;
}
.tx-pdp-process__step {
  font-family: var(--tx-h);
  font-weight: 900;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--tx-mint);
  display: block;
  line-height: 1;
  margin-bottom: 14px;
  font-feature-settings: 'tnum';
}
.tx-pdp-process__steps h4 {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--tx-text);
  line-height: 1.25;
}
.tx-pdp-process__steps p {
  font-family: var(--tx-sub);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--tx-text-dim);
  margin: 0;
}

/* ─── PDP · Disclaimer (Pflichthinweise am Ende des Rich Content) ─ */
.tx-pdp-disclaimer {
  background: var(--tx-bg);
  padding: 40px 0 56px;
}
.tx-pdp-disclaimer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tx-pdp-disclaimer__row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-top: 1px solid var(--tx-line);
}
.tx-pdp-disclaimer__row:first-child { border-top: 0; padding-top: 0; }
.tx-pdp-disclaimer__lbl {
  font-family: var(--tx-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tx-mint);
  padding-top: 4px;
}
.tx-pdp-disclaimer__row p {
  font-family: var(--tx-sub);
  font-size: 13px;
  line-height: 1.6;
  color: var(--tx-text-dim);
  margin: 0;
}
.tx-pdp-disclaimer__row p strong { color: var(--tx-text); font-weight: 700; }

@media (max-width: 880px) {
  .tx-pdp-process__steps { grid-template-columns: 1fr 1fr; }
  .tx-pdp-disclaimer__row { grid-template-columns: 1fr; gap: 6px; }
  .tx-pdp-hero__perf-row { grid-template-columns: 1fr 60px; }
  .tx-pdp-hero__perf-bar { display: none; }
}

@media (max-width: 880px) {
  .tx-pdp-body__headline { font-size: 32px; }
  .tx-pdp-perfstrip { grid-template-columns: repeat(2, 1fr); }
  .tx-pdp-perfstrip__cell { border-right: 1px solid var(--tx-line-2); border-bottom: 1px solid var(--tx-line-2); }
  .tx-pdp-perfstrip__cell:nth-child(2n) { border-right: 0; }
  .tx-pdp-perfstrip__cell:last-child { border-bottom: 0; }
  .tx-pdp-reviews-summary { grid-template-columns: 1fr; gap: 24px; }
  .tx-pdp-highlights__title { font-size: 26px; }
}

/* ═══════════════════════════════════════════════════════════════
   LANDING PAGE · Promo (Crimson Desert / Bundle / etc.)
   Composer-orientiert: jeder Block ist ein eigenes Section-Element
   mit klar abgegrenzten Feldern (Bild, Headline, Text, CTA, Liste).
   ═══════════════════════════════════════════════════════════════ */

/* ─── HERO ─────────────────────────────────────────────────────── */
.tx-lp-hero {
  position: relative;
  background: var(--tx-bg);
  overflow: hidden;
  border-bottom: 1px solid var(--tx-line);
}
.tx-lp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(var(--lp-accent-rgb), 0.22), transparent 55%),
    radial-gradient(ellipse at 20% 90%, rgba(16, 224, 180, 0.06), transparent 50%),
    linear-gradient(180deg, #0F1112 0%, #0B0C0D 70%);
}
.tx-lp-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='56' height='64' viewBox='0 0 56 64'><path d='M28 1l26 15v32L28 63 2 48V16z' fill='none' stroke='%231F2528' stroke-width='1'/></svg>");
  opacity: 0.18;
}
.tx-lp-hero .tx-container { position: relative; z-index: 1; }
.tx-lp-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  min-height: 540px;
  padding: 72px 0 80px;
}
.tx-lp-hero__content { max-width: 620px; }
.tx-lp-hero__title {
  font-family: var(--tx-h);
  font-weight: 800;
  font-size: 84px;
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 16px 0 12px;
  color: var(--tx-text);
}
.tx-lp-hero__title em {
  font-style: normal;
  display: block;
  color: var(--tx-text);
  background: linear-gradient(90deg, #FFFFFF 0%, var(--lp-accent-light) 60%, var(--lp-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tx-lp-hero__sub {
  font-family: var(--tx-sub);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tx-text-dim);
  margin: 0 0 18px;
}
.tx-lp-hero__desc {
  font-family: var(--tx-sub);
  font-size: 17px;
  line-height: 1.55;
  color: var(--tx-text);
  margin: 0 0 28px;
  max-width: 520px;
}
.tx-lp-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.tx-lp-hero__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--tx-line);
}
.tx-lp-hero__brands span {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tx-text-dim);
  opacity: 0.75;
}
.tx-lp-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}
.tx-lp-hero__halo {
  position: absolute;
  inset: 50% 0 0 0;
  background: radial-gradient(ellipse at center, rgba(var(--lp-accent-rgb), 0.25), transparent 65%);
  filter: blur(20px);
  z-index: 0;
}
.tx-lp-hero__visual img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 480px;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.7))
          drop-shadow(0 0 40px rgba(var(--lp-accent-rgb), 0.25));
}

/* ─── TRUST-STRIP ─────────────────────────────────────────────── */
.tx-lp-trust {
  background: var(--tx-bg-2);
}
.tx-lp-trust .tx-uspbar__inner {
  grid-template-columns: repeat(3, 1fr);
}

/* ─── INTRO (zentriert) ───────────────────────────────────────── */
.tx-lp-intro {
  background: var(--tx-bg);
  padding: 80px 0 56px;
}
.tx-lp-intro__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 32px;
}
.tx-lp-intro__inner .tx-kicker { justify-content: center; }
.tx-lp-intro__inner .tx-section-title { margin-top: 12px; }
.tx-lp-intro__inner .tx-section-sub {
  margin: 18px auto 0;
  text-align: center;
  max-width: 720px;
}

/* ─── FEATURE-CARDS ───────────────────────────────────────────── */
.tx-lp-features {
  background: var(--tx-bg);
  padding: 24px 0 88px;
}
.tx-lp-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tx-lp-feature {
  background: var(--tx-bg-3);
  border: 1px solid var(--tx-line);
  display: flex;
  flex-direction: column;
  transition: border-color .18s, transform .2s;
}
.tx-lp-feature:hover { border-color: var(--tx-text-dim); transform: translateY(-3px); }
.tx-lp-feature__media {
  aspect-ratio: 16/10;
  background:
    radial-gradient(ellipse at center, rgba(var(--lp-accent-rgb), 0.16), transparent 70%),
    var(--tx-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--tx-line);
  overflow: hidden;
  position: relative;
}
.tx-lp-feature__media img {
  max-width: 70%;
  max-height: 80%;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.6));
}
.tx-lp-feature__body { padding: 24px 26px 28px; }
.tx-lp-feature__tag {
  font-family: var(--tx-sub);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tx-mint);
  display: block;
  margin-bottom: 10px;
}
.tx-lp-feature h3 {
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 10px;
  line-height: 1.1;
}
.tx-lp-feature p {
  font-family: var(--tx-sub);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--tx-text-dim);
  margin: 0;
}

/* ─── BUNDLE-INCLUSION ───────────────────────────────────────── */
.tx-lp-bundle {
  background: var(--tx-bg-3);
  padding: 88px 0;
  position: relative;
}
.tx-lp-bundle__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.tx-lp-bundle__copy .tx-section-title { margin-top: 12px; }
.tx-lp-bundle__copy .tx-section-title em {
  display: block;
  background: linear-gradient(90deg, #FFFFFF 0%, var(--lp-accent-light) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tx-lp-bundle__items {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  font-family: var(--tx-sub);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tx-lp-bundle__items li {
  padding: 14px 0;
  border-top: 1px solid var(--tx-line);
  font-size: 15px;
  color: var(--tx-text-dim);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding-left: 28px;
}
.tx-lp-bundle__items li:last-child { border-bottom: 1px solid var(--tx-line); }
.tx-lp-bundle__items li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--tx-mint);
  font-weight: 700;
  font-size: 14px;
}
.tx-lp-bundle__items li strong { color: var(--tx-text); font-weight: 700; }

.tx-lp-bundle__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tx-lp-bundle__chip,
.tx-lp-bundle__pass {
  background: var(--tx-bg);
  border: 1px solid var(--tx-line-2);
  padding: 28px 28px 26px;
  position: relative;
  overflow: hidden;
}
.tx-lp-bundle__chip {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(var(--lp-accent-rgb), 0.18), transparent 60%),
    var(--tx-bg);
  min-height: 180px;
}
.tx-lp-bundle__pass {
  background:
    radial-gradient(ellipse at 30% 70%, rgba(16, 224, 180, 0.12), transparent 60%),
    var(--tx-bg);
  min-height: 130px;
}
.tx-lp-bundle__chip-tag {
  display: inline-block;
  font-family: var(--tx-sub);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tx-mint);
  margin-bottom: 14px;
}
.tx-lp-bundle__chip-title {
  display: block;
  font-family: var(--tx-h);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--tx-text);
  margin-bottom: 6px;
  line-height: 1.05;
}
.tx-lp-bundle__chip-sub {
  font-style: normal;
  font-family: var(--tx-sub);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--tx-text-dim);
}

/* ─── FINANZIERUNG ────────────────────────────────────────────── */
.tx-lp-finance {
  background: var(--tx-bg);
  padding: 80px 0;
}
.tx-lp-finance__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}
.tx-lp-finance__copy .tx-section-title { margin-top: 12px; }
.tx-lp-finance__copy .tx-section-title em {
  display: block;
  color: var(--tx-mint);
  font-style: normal;
}
.tx-lp-finance__copy .tx-btn { margin-top: 24px; }
.tx-lp-finance__visual {
  background: var(--tx-bg-3);
  border: 1px solid var(--tx-line-2);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tx-lp-finance__partner {
  font-family: var(--tx-h);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--tx-text);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--tx-line);
}
.tx-lp-finance__partner em {
  display: block;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--tx-text-dim);
  margin-top: 4px;
  font-weight: 600;
}
.tx-lp-finance__legal {
  font-family: var(--tx-sub);
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--tx-text-mute);
  margin: 0;
}

/* ─── PRODUCT-GRID Wrapper ────────────────────────────────────── */
.tx-lp-products {
  background: var(--tx-bg-3);
  padding: 80px 0 96px;
}
.tx-lp-products .tx-bestseller-grid {
  margin-top: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1180px) {
  .tx-lp-products .tx-bestseller-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .tx-lp-products .tx-bestseller-grid { grid-template-columns: 1fr; }
}

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1180px) {
  .tx-lp-hero__title { font-size: 64px; }
  .tx-lp-features__grid { grid-template-columns: 1fr 1fr; }
  .tx-lp-features__grid .tx-lp-feature:last-child { grid-column: 1 / -1; }
}
@media (max-width: 880px) {
  .tx-lp-hero__inner { grid-template-columns: 1fr; min-height: 0; padding: 56px 0 64px; }
  .tx-lp-hero__title { font-size: 44px; }
  .tx-lp-hero__sub { font-size: 14px; letter-spacing: 0.14em; }
  .tx-lp-hero__desc { font-size: 15px; }
  .tx-lp-hero__visual { min-height: 280px; }
  .tx-lp-features__grid { grid-template-columns: 1fr; }
  .tx-lp-features__grid .tx-lp-feature:last-child { grid-column: auto; }
  .tx-lp-bundle__grid,
  .tx-lp-finance__grid { grid-template-columns: 1fr; gap: 32px; }
  .tx-lp-trust .tx-uspbar__inner { grid-template-columns: 1fr; }
  .tx-lp-bundle__chip-title { font-size: 22px; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE SWEEP · finale Mobile-Coverage für alle Seiten
   Breakpoints: 880 (tablet/landscape), 720 (small tablet),
                480 (phone)
   ═══════════════════════════════════════════════════════════════ */

/* ─── HAMBURGER NAV ───────────────────────────────────────────── */
.tx-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--tx-line-2);
  width: 38px; height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--tx-text);
  cursor: pointer;
  padding: 0;
  transition: border-color .15s, color .15s;
}
.tx-nav-toggle:hover { border-color: var(--tx-mint); color: var(--tx-mint); }
.tx-nav-toggle svg { width: 20px; height: 20px; }

.tx-mobnav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(2px);
}
.tx-mobnav.is-open { display: block; }
.tx-mobnav__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  background: var(--tx-bg-2);
  border-left: 1px solid var(--tx-line);
  padding: 24px 22px 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.tx-mobnav__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--tx-line);
}
.tx-mobnav__head img { height: 28px; }
.tx-mobnav__close {
  background: transparent;
  border: 0;
  color: var(--tx-text);
  cursor: pointer;
  padding: 6px;
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.tx-mobnav__close:hover { color: var(--tx-mint); }
.tx-mobnav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.tx-mobnav__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--tx-h);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tx-text);
  text-decoration: none;
  padding: 16px 4px;
  border-bottom: 1px solid var(--tx-line);
}
.tx-mobnav__list a:hover,
.tx-mobnav__list a.is-active { color: var(--tx-mint); }
.tx-mobnav__list a span { color: var(--tx-text-mute); font-weight: 500; font-size: 14px; }
.tx-mobnav__usp {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--tx-line);
  font-family: var(--tx-sub);
  font-size: 13px;
  color: var(--tx-text-dim);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tx-mobnav__usp svg { width: 16px; height: 16px; color: var(--tx-mint); margin-right: 8px; flex-shrink: 0; }
.tx-mobnav__usp > div { display: flex; align-items: center; }
.tx-mobnav__cta { margin-top: 24px; }
.tx-mobnav__cta .tx-btn { width: 100%; }
body.is-nav-open { overflow: hidden; }

/* ─── HEADER · Mobile-spezifisch ──────────────────────────────── */
@media (max-width: 1024px) {
  .tx-header__inner { padding: 14px 20px; gap: 16px; }
}

@media (max-width: 880px) {
  .tx-nav-toggle { display: inline-flex; }
  .tx-nav { display: none; }
  .tx-header__inner { gap: 12px; }
  .tx-iconbar { gap: 6px; }
  .tx-iconbar .tx-icon-btn { width: 36px; height: 36px; }
  .tx-statusbar { display: none; }
}

/* ─── HOMEPAGE · Hero ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tx-hero { min-height: 600px; padding: 56px 0 48px; }
  .tx-hero__title { font-size: 72px; }
}

@media (max-width: 880px) {
  .tx-hero { min-height: auto; padding: 40px 0 48px; }
  .tx-hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .tx-hero__sidebar { display: none; }
  .tx-hero__title { font-size: 44px; }
  .tx-hero__lead { font-size: 16px; margin: 18px 0 24px; }
  .tx-hero__stats { grid-template-columns: repeat(3, 1fr); gap: 8px; max-width: none; }
  .tx-hero__visual { aspect-ratio: 4/3; }
  .tx-hero__visual img { max-height: 320px; }
  .tx-hero-slider__arrow { width: 36px; height: 36px; }
  .tx-hero-slider__arrow--prev { left: 8px; }
  .tx-hero-slider__arrow--next { right: 8px; }
}

@media (max-width: 480px) {
  .tx-hero__title { font-size: 34px; }
  .tx-hero__lead { font-size: 15px; }
  .tx-hero__cta .tx-btn { font-size: 11px; padding: 14px 18px; }
  .tx-hero__stats { grid-template-columns: 1fr 1fr; }
  .tx-hero__stats .tx-stat:nth-child(3) { grid-column: 1 / -1; }
  .tx-stat__val { font-size: 16px; }
  .tx-hero-slider__arrow { display: none; }
  .tx-hero__hud { font-size: 10px; top: 12px; left: 12px; }
}

/* ─── HOMEPAGE · USP-Bar ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .tx-uspbar__inner { grid-template-columns: repeat(2, 1fr); }
  .tx-usp:nth-child(2n) { border-right: 0; }
  .tx-usp { padding: 18px 18px; }
}
@media (max-width: 480px) {
  .tx-uspbar__inner { grid-template-columns: 1fr; padding: 0 20px; }
  .tx-usp { border-right: 0; border-bottom: 1px solid var(--tx-line); }
  .tx-usp:last-child { border-bottom: 0; }
}

/* ─── HOMEPAGE · Section-Heads & Container Padding ────────────── */
@media (max-width: 720px) {
  .tx-container { padding: 0 20px; }
  .tx-section { padding: 64px 0; }
  .tx-section__head { flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 32px; }
  .tx-section__head > div:nth-child(2) { align-self: stretch; justify-content: flex-end; }
}
@media (max-width: 480px) {
  .tx-container { padding: 0 16px; }
  .tx-section { padding: 48px 0; }
}

/* ─── HOMEPAGE · Cats-Grid (Wähle dein System) ────────────────── */
@media (max-width: 1024px) {
  .tx-cats__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; height: auto; gap: 14px; }
  .tx-cats__grid .tx-cat:first-child { grid-row: auto; grid-column: 1 / -1; aspect-ratio: 16/9; }
  .tx-cats__grid .tx-cat { aspect-ratio: 4/3; }
}
@media (max-width: 720px) {
  .tx-cats__grid { grid-template-columns: 1fr; }
  .tx-cats__grid .tx-cat:first-child { grid-column: auto; }
}

/* ─── HOMEPAGE · Syssel (Dein Gaming PC) ──────────────────────── */
@media (max-width: 1180px) {
  .tx-syssel__body { grid-template-columns: 280px repeat(3, 1fr); }
  .tx-syssel__body .tx-syssel-card:nth-child(5) { display: none; }
}
@media (max-width: 880px) {
  .tx-syssel__body { grid-template-columns: 1fr 1fr; padding: 24px 20px; }
  .tx-syssel__body .tx-syssel-card:nth-child(5) { display: flex; }
  .tx-syssel__intro { grid-column: 1 / -1; }
  .tx-syssel__head { padding: 48px 20px 16px; }
}
@media (max-width: 480px) {
  .tx-syssel__body { grid-template-columns: 1fr; }
  .tx-syssel__intro h3 { font-size: 22px; }
}

/* ─── HOMEPAGE · Partners (Highlights) ────────────────────────── */
@media (max-width: 720px) {
  .tx-partners__row,
  .tx-partners__second { grid-template-columns: 1fr; }
  .tx-partner-card { aspect-ratio: 4/3; padding: 24px; }
  .tx-partner-card h3 { font-size: 28px; }
  .tx-partner-mini { padding: 22px; min-height: 180px; }
}

/* ─── HOMEPAGE · Built-Different ──────────────────────────────── */
@media (max-width: 720px) {
  .tx-builtdiff__grid { grid-template-columns: 1fr; gap: 14px; }
  .tx-pillar { min-height: auto; padding: 22px; }
  .tx-pillar h3 { font-size: 19px; }
}

/* ─── HOMEPAGE · Socials ──────────────────────────────────────── */
@media (max-width: 480px) {
  .tx-socials__grid { grid-template-columns: 1fr 1fr; }
  .tx-socials__head { gap: 12px; }
  .tx-socials__head h2 { font-size: 28px; }
}

/* ─── HOMEPAGE · Blog ─────────────────────────────────────────── */
@media (max-width: 720px) {
  .tx-blog__grid { grid-template-columns: 1fr; height: auto; }
  .tx-blog-card { aspect-ratio: 16/10; min-height: 220px; }
  .tx-blog-card:first-child h3 { font-size: 24px; }
}

/* ─── HOMEPAGE · Logo-wall ────────────────────────────────────── */
@media (max-width: 720px) {
  .tx-partners__logos { gap: 18px 28px; justify-content: flex-start; }
  .tx-partners__logos div { font-size: 14px; }
}

/* ─── FOOTER ──────────────────────────────────────────────────── */
@media (max-width: 880px) {
  .tx-footer__cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .tx-footer__intro { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .tx-footer__cols { grid-template-columns: 1fr; }
  .tx-footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ─── PDP · Mobile ────────────────────────────────────────────── */
@media (max-width: 720px) {
  .tx-pdp-hero__inner { padding: 0 20px; }
  .tx-pdp-hero h1 { font-size: 30px; }
  .tx-pdp-hero__keyspecs { grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
  .tx-pdp-hero__price { font-size: 36px; }
  .tx-pdp-hero__cta { flex-direction: column; }
  .tx-pdp-hero__cta .tx-btn { width: 100%; }
  .tx-pdp-tabs__inner { padding: 0 20px; }
  .tx-pdp-tabs__item { padding: 14px 16px; font-size: 11px; }
  .tx-pdp-spotlight__features { grid-template-columns: 1fr 1fr; }
  .tx-pdp-process__steps { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .tx-pdp-hero h1 { font-size: 26px; }
  .tx-pdp-hero__price { font-size: 30px; }
  .tx-pdp-hero__price-row { flex-wrap: wrap; gap: 8px; }
}

/* ─── PLP · Mobile ────────────────────────────────────────────── */
@media (max-width: 720px) {
  .tx-plp-intro { padding: 40px 20px 24px; }
  .tx-plp-intro h1 { font-size: 32px; }
  .tx-plp__layout { padding: 0 20px; }
  .tx-plp-tabs { gap: 6px; flex-wrap: wrap; }
  .tx-plp-tabs__item { padding: 10px 14px; font-size: 11px; }
}

/* Konfigurator-Mobile-Regeln liegen in configurator.css */

/* ─── CART / WARENKORB · Mobile ───────────────────────────────── */
@media (max-width: 880px) {
  .tx-cart__layout { grid-template-columns: 1fr; }
  .tx-cart__aside { position: static; }
}
@media (max-width: 720px) {
  .tx-cart__item { grid-template-columns: 80px 1fr; gap: 14px; padding: 16px 0; }
  .tx-cart__item-foot { grid-column: 1 / -1; }
}

/* ─── LANDING · zusätzliches Mobile-Tuning ────────────────────── */
@media (max-width: 720px) {
  .tx-lp-hero__title { font-size: 38px; }
  .tx-lp-hero__cta { flex-direction: column; align-items: stretch; }
  .tx-lp-hero__cta .tx-btn { width: 100%; }
  .tx-lp-hero__brands { gap: 16px 24px; padding-top: 18px; }
  .tx-lp-hero__brands span { font-size: 11px; }
  .tx-lp-features { padding: 16px 0 56px; }
  .tx-lp-bundle,
  .tx-lp-finance,
  .tx-lp-products { padding: 56px 0; }
  .tx-lp-bundle__items li { font-size: 14px; padding: 12px 0 12px 24px; }
}
@media (max-width: 480px) {
  .tx-lp-hero__title { font-size: 30px; }
  .tx-lp-bundle__chip-title,
  .tx-lp-finance__partner { font-size: 18px; }
}

/* ─── HEADER-ICONBAR Light-Mode Mobile-Drawer ─────────────────── */
[data-theme="light"] .tx-mobnav { background: rgba(0,0,0,0.45); }
[data-theme="light"] .tx-mobnav__panel { background: var(--tx-bg-2); }

/* ════════════════════════════════════════════════════════════════
   THERMAL GRIZZLY · CO-BRAND STRIP (PDP)
   Dezenter Übergang Hero → Rich-Content. Original-Logo behält
   seine Markenfarbe; der Rahmen drumherum ist transparent/dezent.
   ════════════════════════════════════════════════════════════════ */
:root {
  --tg-orange: #ff6b1a;
  --tg-orange-soft: rgba(255, 107, 26, 0.08);
  --tg-orange-line: rgba(255, 107, 26, 0.22);
}
[data-theme="light"] {
  --tg-orange: #d6470a;
  --tg-orange-soft: rgba(214, 71, 10, 0.06);
  --tg-orange-line: rgba(214, 71, 10, 0.25);
}

.tx-tg-strip {
  background: var(--tx-bg);
  padding: 18px 0 26px;
  position: relative;
}
.tx-tg-strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tx-tg-strip__lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--tx-sub);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--tx-text-mute);
  text-transform: uppercase;
}
.tx-tg-strip__lockup-mark--tg { color: var(--tg-orange); }
.tx-tg-strip__lockup-x { opacity: 0.5; font-weight: 400; }

.tx-tg-strip__main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 18px 22px;
  background: var(--tg-orange-soft);
  border: 1px solid var(--tg-orange-line);
  border-left: 3px solid var(--tg-orange);
  border-radius: 4px;
}

.tx-tg-strip__logo {
  width: 130px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}
.tx-tg-strip__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* Hide fallback when a real logo image is present as sibling */
.tx-tg-strip__logo:has(img) .tx-tg-strip__logo-fallback { display: none; }

.tx-tg-strip__logo-fallback {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  line-height: 1;
}
.tx-tg-strip__logo-fallback em {
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  color: var(--tg-orange);
  letter-spacing: -0.01em;
}
.tx-tg-strip__logo-fallback strong {
  font-style: normal;
  font-weight: 800;
  font-size: 19px;
  color: var(--tg-orange);
  letter-spacing: 0.02em;
}

.tx-tg-strip__copy { min-width: 0; }
.tx-tg-strip__title {
  font-family: var(--tx-sub);
  font-size: 15px;
  font-weight: 600;
  color: var(--tx-text);
  margin: 0 0 4px;
  letter-spacing: 0.005em;
}
.tx-tg-strip__title strong { color: var(--tg-orange); font-weight: 700; }
.tx-tg-strip__lead {
  font-family: var(--tx-sub);
  font-size: 13px;
  color: var(--tx-text-dim);
  margin: 0;
  line-height: 1.55;
}
.tx-tg-strip__lead strong { color: var(--tx-text); font-weight: 600; }

.tx-tg-strip__cta {
  font-family: var(--tx-sub);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--tx-mint);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 1px solid rgba(16,224,180,0.32);
  padding: 11px 18px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.18s ease;
}
.tx-tg-strip__cta:hover {
  background: var(--tx-mint-soft);
  border-color: var(--tx-mint);
}
.tx-tg-strip__cta .tx-arr { font-size: 9px; }

@media (max-width: 820px) {
  .tx-tg-strip__main {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    text-align: left;
  }
  .tx-tg-strip__logo { width: 110px; height: 44px; }
  .tx-tg-strip__cta { justify-content: center; text-align: center; }
}

/* ════════════════════════════════════════════════════════════════
   DIRECT-CART CTA · Klassen-abhängige Sichtbarkeit
   Default: Direct-Cart sichtbar.
   Versteckt für: flagship, enthusiast (= JTL High-End Tier).
   In JTL: <body data-system-class="..."> aus Custom-Feld setzen.
   ════════════════════════════════════════════════════════════════ */
body[data-system-class="flagship"] .tx-pdp-hero__cta--direct,
body[data-system-class="enthusiast"] .tx-pdp-hero__cta--direct {
  display: none;
}

/* ════════════════════════════════════════════════════════════════
   BRAND-STRIP · "Wir bauen mit den Besten"
   Greyscale-Logos → Hover Color. Text-Fallback kommt aus
   <img onerror>, falls SVG nicht existiert.
   In JTL: weitere <li>-Items im Markup duplizieren.
   ════════════════════════════════════════════════════════════════ */
.tx-brandstrip {
  background: var(--tx-bg-2);
  border-top: 1px solid var(--tx-line);
  padding: 56px 0 48px;
}
.tx-brandstrip__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.tx-brandstrip__head {
  text-align: center;
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.tx-brandstrip__head .tx-kicker {
  display: inline-block;
  margin-bottom: 12px;
}
.tx-brandstrip__head h2 {
  font-family: var(--tx-h);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--tx-text);
  margin: 0 0 10px;
}
.tx-brandstrip__head p {
  font-family: var(--tx-sub);
  font-size: 14px;
  line-height: 1.55;
  color: var(--tx-text-dim);
  margin: 0;
}

.tx-brandstrip__logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--tx-line);
  border: 1px solid var(--tx-line);
}
.tx-brandstrip__logo {
  background: var(--tx-bg-2);
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  filter: grayscale(1) brightness(0.85);
  opacity: 0.6;
  transition: all 0.3s ease;
}
.tx-brandstrip__logo:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  background: var(--tx-bg-3);
}
.tx-brandstrip__logo img {
  max-width: 100%;
  max-height: 44px;
  object-fit: contain;
}

/* Text-Fallback wenn Logo-SVG fehlt — wird via onerror eingesetzt */
.tx-brandstrip__logo-fb {
  font-family: var(--tx-h);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--tx-text);
  text-transform: uppercase;
  white-space: nowrap;
}
.tx-brandstrip__logo-fb--tg {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  letter-spacing: 0;
  text-transform: none;
}
.tx-brandstrip__logo-fb--tg em {
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: #ff6b1a;
}
.tx-brandstrip__logo-fb--tg strong {
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  color: #ff6b1a;
}

@media (max-width: 880px) {
  .tx-brandstrip__logos { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .tx-brandstrip { padding: 40px 0 32px; }
  .tx-brandstrip__head h2 { font-size: 22px; }
  .tx-brandstrip__logos { grid-template-columns: repeat(3, 1fr); }
  .tx-brandstrip__logo { height: 76px; padding: 14px 16px; }
  .tx-brandstrip__logo img { max-height: 36px; }
  .tx-brandstrip__logo-fb { font-size: 13px; }
}
@media (max-width: 380px) {
  .tx-brandstrip__logos { grid-template-columns: repeat(2, 1fr); }
}


/* ─── REDUCED MOTION ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── CONTACT PAGE OVERRIDES ──────────────────────────────────── */
/* Wider container for 2-col contact layout */
.tx-legal--contact .tx-legal__inner {
  max-width: 1040px;
}

/* Mobile touch targets for form inputs */
@media (max-width: 600px) {
  .tx-contact-form__input,
  .tx-contact-form__select,
  .tx-contact-form__textarea {
    min-height: 44px;
    font-size: 16px; /* prevents iOS auto-zoom */
  }
}

/* Error state: field-level message */
.tx-contact-form__error {
  display: none;
  font-size: 11px;
  color: #ff5252;
  margin-top: 4px;
  font-weight: 500;
}
.tx-contact-form__group--invalid .tx-contact-form__error { display: block; }
.tx-contact-form__group--invalid .tx-contact-form__input,
.tx-contact-form__group--invalid .tx-contact-form__select,
.tx-contact-form__group--invalid .tx-contact-form__textarea {
  border-color: #ff5252;
  border-bottom-color: #ff5252;
}
.tx-contact-form__group--valid .tx-contact-form__input,
.tx-contact-form__group--valid .tx-contact-form__select {
  border-bottom-color: var(--tx-mint);
}

/* Trust items: cursor feedback */
.tx-contact-trust__item[href],
.tx-contact-trust__item--link { cursor: pointer; }
