/* Local Fonts — Barlow & Barlow Condensed (DSGVO-konform, kein Google CDN) */
/* Font-Dateien muessen in assets/fonts/ liegen — Download: https://fonts.google.com/specimen/Barlow+Condensed */
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/barlow-condensed-v13-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/barlow-condensed-v13-latin-500.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/barlow-condensed-v13-latin-600.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/barlow-condensed-v13-latin-700.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 800; font-display: swap; src: url('../fonts/barlow-condensed-v13-latin-800.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/barlow-v13-latin-300.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/barlow-v13-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/barlow-v13-latin-500.woff2') format('woff2'); }

/* ===================================================
   StageXpress — Design System
   Clean/Modern B2B | Editorial/Industrial
   =================================================== */



/* --- CSS Variables --- */
:root {
  /* Color Option A: Refreshed Brand Orange (default) */
  --bg:         #F7F6F2;
  --bg-white:   #FFFFFF;
  --text:       #0A0A0A;
  --text-mid:   #4A4A4A;
  --text-light: #8A8A8A;
  --accent:     #00CDB8;
  --accent-hover: #00A898;
  --border:     #E0DFD9;
  --border-strong: #C0BFBA;
  --card-bg:    #FFFFFF;
  --nav-bg:     #0A0A0A;
  --nav-text:   #FFFFFF;
  --tag-bg:     #EFEDE7;

  /* Typography */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  /* Spacing */
  --max-w: 1280px;
  --section-pad: 96px;
  --gap: 32px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Layout --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--bg-white); }
.section--dark { background: var(--text); color: white; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: #0A0A0A;
  border-bottom-color: rgba(255,255,255,0.07);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.nav__logo img {
  height: 36px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav__links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.15s;
  letter-spacing: 0.01em;
}
.nav__links a:hover { color: white; background: rgba(255,255,255,0.1); }
.nav__links a.active { color: white; }
.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__anfrage {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: white !important;
  padding: 9px 16px 9px 18px !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  letter-spacing: 0.01em;
  transition: background 0.15s, box-shadow 0.15s !important;
  box-shadow: 0 2px 10px rgba(0,205,184,0.25);
  text-decoration: none !important;
}
.nav__anfrage:hover {
  background: var(--accent-hover) !important;
  box-shadow: 0 4px 16px rgba(0,205,184,0.35);
}
.nav__anfrage-text {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 0.9rem;
}
.nav__anfrage-text::before {
  content: '🛒';
  font-size: 0.85rem;
  margin-right: 6px;
}
.nav__anfrage-count {
  background: white;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.72rem;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* Hero needs padding-top to compensate for fixed nav */
.hero { padding-top: 0; }
.hero .hero__content { padding-top: 120px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.18s;
  letter-spacing: 0.01em;
}
.btn--primary {
  background: var(--accent);
  color: white;
}
.btn--primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn--primary:disabled, .btn--primary[disabled] { background: var(--border); color: var(--text-light); cursor: not-allowed; transform: none; box-shadow: none; }
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}
.btn--outline:hover { border-color: var(--text); background: var(--text); color: white; }
.btn--white {
  background: white;
  color: var(--text);
}
.btn--white:hover { background: var(--bg); }
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--sm { padding: 9px 20px; font-size: 0.8125rem; }

/* --- Hero --- */
.hero {
  position: relative;
  background: var(--text);
  color: white;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(232,80,0,0.15) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}
.hero__img {
  position: absolute;
  inset: -20px;
  object-fit: cover;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  opacity: 0.45;
  filter: blur(6px);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 40px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero__tag-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
  max-width: 700px;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
}
.hero__desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.65;
  font-weight: 300;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1;
}
.hero__stat-num span { color: var(--accent); }
.hero__stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* --- Section Headers --- */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-family: var(--font-body);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.65;
  font-weight: 300;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
}
.section-header--center { justify-content: center; text-align: center; flex-direction: column; align-items: center; }

/* --- Product Cards --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.22s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.product-card__img {
  aspect-ratio: 16/9;
  background: var(--tag-bg);
  overflow: hidden;
  position: relative;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s;
}
.product-card:hover .product-card__img img { transform: scale(1.04); }
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: white;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.product-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-card__size {
  font-size: 0.8125rem;
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 8px;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.1;
}
.product-card__features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  flex: 1;
}
.product-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.4;
}
.product-card__feature::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 1px;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
  flex-wrap: nowrap;
}
.product-card__price {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  min-width: 0;
  flex-shrink: 1;
}
.product-card__price small {
  font-size: 0.75rem;
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 400;
}
.add-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--accent);
  color: white;
  border: none;
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 0.775rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  font-family: var(--font-body);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none !important;
}
.add-btn:hover { background: var(--accent-hover); }

/* --- USP Strip --- */
.usp-strip {
  background: var(--text);
  color: white;
  padding: 32px 0;
}
.usp-strip__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  flex-wrap: wrap;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.usp-item__icon {
  width: 40px; height: 40px;
  background: rgba(232,80,0,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.usp-item__text strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font-display);
}
.usp-item__text span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* --- Category Tabs --- */
.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1.5px solid var(--border);
  margin-bottom: 40px;
}
.tab {
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1.5px;
  transition: all 0.15s;
}
.tab:hover { color: var(--text); }
.tab.active { color: var(--accent); border-bottom-color: var(--accent); }

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 32px;
}
.breadcrumb a { color: var(--text-mid); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--border-strong); }
.page-header .breadcrumb a, .led-hero .breadcrumb a, .anfrage-header .breadcrumb a { color: rgba(255,255,255,0.55); }
.page-header .breadcrumb a:hover, .led-hero .breadcrumb a:hover, .anfrage-header .breadcrumb a:hover { color: var(--accent); }
.page-header .breadcrumb span, .led-hero .breadcrumb span, .anfrage-header .breadcrumb span { color: rgba(255,255,255,0.75); }

/* --- Product Detail --- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.product-gallery {}
.product-gallery__main {
  border-radius: 16px;
  overflow: hidden;
  background: var(--tag-bg);
  aspect-ratio: 4/3;
  margin-bottom: 12px;
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.product-gallery__thumb {
  border-radius: 8px;
  overflow: hidden;
  background: var(--tag-bg);
  aspect-ratio: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.15s;
}
.product-gallery__thumb:first-child { border-color: var(--accent); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,80,0,0.1);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.product-info__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 8px;
}
.product-info__subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 28px;
}
.product-info__price-box {
  background: var(--tag-bg);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 28px;
  border: 1px solid var(--border);
}
.product-info__price-label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 4px;
}
.product-info__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.01em;
}
.product-info__price span { font-size: 1rem; font-family: var(--font-body); font-weight: 400; color: var(--text-mid); }
.product-info__price-note {
  font-size: 0.8125rem;
  color: var(--text-mid);
  margin-top: 8px;
  line-height: 1.5;
}
.feature-list {
  margin-bottom: 28px;
}
.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text-mid);
}
.feature-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 1px;
}
.anfrage-box {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin-top: 0;
}
.anfrage-box h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.15s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* --- LED Wall --- */
.led-hero {
  background: linear-gradient(135deg, #0A0A0A 60%, #1a1a1a 100%);
  color: white;
  padding: 80px 0;
}
.led-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.led-card {
  background: var(--card-bg);
  padding: 32px;
  transition: background 0.2s;
  cursor: pointer;
}
.led-card:hover { background: var(--tag-bg); }
.led-card__size {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}
.led-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.led-card__price {
  font-size: 0.9375rem;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.led-card .add-btn { width: 100%; justify-content: center; }
.led-specs {
  background: var(--text);
  color: white;
  border-radius: 16px;
  padding: 40px;
  margin-top: 48px;
}
.led-specs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}
.led-spec-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.led-spec-item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info__item {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  background: rgba(232,80,0,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info__label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-info__value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.contact-form h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.contact-form p {
  color: var(--text-mid);
  font-size: 0.9375rem;
  margin-bottom: 28px;
}

/* --- Anfrage Cart --- */
.anfrage-cart-banner {
  background: var(--accent);
  color: white;
  padding: 14px 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
}
.anfrage-page {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
}
.anfrage-items {}
.anfrage-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  align-items: center;
}
.anfrage-item__img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: var(--tag-bg);
  overflow: hidden;
  flex-shrink: 0;
}
.anfrage-item__img img { width: 100%; height: 100%; object-fit: cover; }
.anfrage-item__name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.anfrage-item__detail {
  font-size: 0.85rem;
  color: var(--text-mid);
}
.anfrage-item__remove {
  margin-left: auto;
  color: var(--text-light);
  cursor: pointer;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: color 0.15s;
}
.anfrage-item__remove:hover { color: var(--accent); }
.anfrage-summary {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: sticky;
  top: 84px;
}
.anfrage-summary h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 24px;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.summary-line:last-of-type { border-bottom: none; font-weight: 600; color: var(--text); font-size: 0.9375rem; }

/* --- Footer --- */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer__brand span { color: var(--accent); }
.footer__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.footer__col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer__links a:hover { color: white; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}
.footer__legal {
  display: flex;
  gap: 20px;
}
.footer__legal a {
  color: rgba(255,255,255,0.4);
  transition: color 0.15s;
}
.footer__legal a:hover { color: white; }



/* --- Responsive --- */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
  .anfrage-page { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .led-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav__inner { padding: 0 20px; }
  .nav__links { display: none; }
  .hero__content { padding: 56px 20px; }
  .hero__stats { flex-wrap: wrap; gap: 28px; }
  .product-grid { grid-template-columns: 1fr; }
  .led-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .section-header { flex-direction: column; align-items: flex-start; }
}

/* --- Reels Section --- */
.reels-section {
  background: var(--text);
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.reel-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 9/16;
  background: #111;
  cursor: pointer;
  group: true;
}
.reel-card video,
.reel-card > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s;
  background: #111;
}
.reel-card:hover video,
.reel-card:hover > img { transform: scale(1.03); }
.reel-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  transition: opacity 0.3s;
}
.reel-card:hover .reel-card__overlay { opacity: 0.7; }
.reel-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  border: none;
  box-shadow: 0 4px 16px rgba(0,205,184,0.35);
}
.reel-card:hover .reel-card__play {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 6px 24px rgba(0,205,184,0.5);
}
.reel-card__play svg { width: 20px; height: 20px; fill: white; margin-left: 3px; }
.reel-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px 18px;
}
.reel-card__label-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.reel-card__label-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

/* Reel Modal */
.reel-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.reel-modal.open { display: flex; }
.reel-modal__inner {
  position: relative;
  max-width: 400px;
  width: 90vw;
}
.reel-modal__video {
  width: 100%;
  border-radius: 16px;
  display: block;
}
.reel-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  padding: 8px;
  transition: color 0.15s;
}
.reel-modal__close:hover { color: white; }

/* Single reel embed (product page) */
.product-reel {
  border-radius: 14px;
  overflow: hidden;
  background: #0a0a0a;
  aspect-ratio: 9/16;
  max-width: 320px;
  position: relative;
  cursor: pointer;
}
.product-reel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-reel__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background 0.2s;
}
.product-reel:hover .product-reel__play { background: rgba(0,0,0,0.1); }
.product-reel__play-btn {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255,255,255,0.4);
}

@media (max-width: 900px) {
  .reels-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .reels-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* Pages without a hero image: nav solid dark immediately */
.page-has-header .nav,
.page-has-header .nav.scrolled {
  background: #0A0A0A;
  border-bottom-color: rgba(255,255,255,0.07);
}

/* Page headers need top padding for fixed nav */
.page-header { padding-top: calc(68px + 48px); }
.led-hero { padding-top: calc(68px + 56px); }
.anfrage-header { padding-top: calc(68px + 40px); }

/* --- FAQ --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 860px;
}
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item[open] {
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-color: rgba(232,80,0,0.2);
}
.faq-question {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
  color: var(--text);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  margin-top: -2px;
  padding-top: 14px;
}

/* FAQ grid on homepage */
#faq .faq-item { background: white; }
@media(max-width: 768px) {
  #faq > .container > div[style*="grid"] { grid-template-columns: 1fr !important; }
  .faq-list { max-width: 100%; }
}

/* --- Rental Info Hint --- */
.rental-info {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 4px 8px 8px 4px;
  padding: 10px 18px 8px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}
.rental-info__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.rental-info__list { display: flex; flex-wrap: wrap; gap: 3px 14px; }
.rental-info__item {
  font-size: 0.75rem; color: var(--text-mid); line-height: 1.5;
  padding-left: 10px; position: relative;
}
.rental-info__item::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 4px; height: 4px; border-radius: 50%; background: var(--accent);
}

/* --- Price Table --- */
.price-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); margin: 16px 0;
}
.price-table th {
  background: var(--text); color: white; padding: 12px 16px;
  text-align: left; font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price-table th:last-child { text-align: right; }
.price-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.price-table tr:last-child td { border-bottom: none; }
.price-table td:last-child { text-align: right; font-weight: 700; font-family: var(--font-display); color: var(--accent); }
.price-table tbody tr:hover { background: rgba(0,205,184,0.04); }
.price-table .table-note { font-size: 0.8rem; color: var(--text-light); font-style: italic; }

/* --- Tribune Cards --- */
.tribune-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tribune-card {
  background: var(--card-bg); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 28px 24px; text-align: center;
  transition: all 0.2s; position: relative; overflow: hidden;
}
.tribune-card:hover { border-color: var(--accent); box-shadow: 0 12px 40px rgba(0,0,0,0.07); transform: translateY(-4px); }
.tribune-card--featured { border-color: var(--accent); box-shadow: 0 4px 20px rgba(0,205,184,0.12); }
.tribune-card--featured::before {
  content: 'Beliebt'; position: absolute; top: 14px; right: -28px;
  background: var(--accent); color: white; padding: 3px 36px;
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; transform: rotate(45deg);
}
.tribune-card__img { height: 140px; object-fit: contain; margin: 0 auto 12px; }
.tribune-card__name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 2px; }
.tribune-card__size { font-size: 0.8rem; color: var(--text-light); margin-bottom: 12px; }
.tribune-card__specs { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; text-align: left; }
.tribune-card__spec { display: flex; justify-content: space-between; font-size: 0.8rem; padding: 5px 0; border-bottom: 1px solid var(--border); }
.tribune-card__spec:last-child { border-bottom: none; }
.tribune-card__spec-label { color: var(--text-mid); }
.tribune-card__spec-val { font-weight: 600; color: var(--text); }
.tribune-card__price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--accent); margin: 12px 0 2px; }
.tribune-card__price-note { font-size: 0.7rem; color: var(--text-light); margin-bottom: 14px; }

/* --- Notice Box update --- */
.notice-box-muted { background: var(--tag-bg); border-radius: 10px; padding: 14px 18px; font-size: 0.8rem; color: var(--text-mid); line-height: 1.6; }
.notice-box-muted strong { color: var(--text); }

/* --- Package Cards --- */
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.package-card {
  background: var(--card-bg); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 32px 24px; text-align: center;
  transition: all 0.2s; position: relative;
}
.package-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.07); }
.package-card--featured { border-color: var(--accent); border-width: 2px; }
.package-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: white; padding: 3px 14px;
  border-radius: 20px; font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.package-card__icon { font-size: 2.5rem; margin-bottom: 12px; }
.package-card__name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 2px; }
.package-card__subtitle { font-size: 0.8rem; color: var(--text-light); margin-bottom: 16px; }
.package-card__features { text-align: left; margin-bottom: 20px; }
.package-card__feature { font-size: 0.8rem; color: var(--text-mid); padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 8px; }
.package-card__feature:last-child { border-bottom: none; }
.package-card__check { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.package-card__price { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--accent); text-transform: uppercase; margin-top: 6px; }

/* --- Anfrage Options --- */
.anfrage-options { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0; }
.anfrage-option { display: flex; align-items: center; gap: 6px; background: var(--tag-bg); padding: 7px 12px; border-radius: 8px; font-size: 0.8rem; cursor: pointer; border: 1.5px solid transparent; transition: all 0.15s; }
.anfrage-option:hover { border-color: var(--accent); }
.anfrage-option input[type="checkbox"] { accent-color: var(--accent); }

/* --- Equal height companion/related cards --- */
.product-card-link { display: block; text-decoration: none; color: inherit; }
.related-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 20px; align-items: stretch; }
.companion-card { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 150px; }
.companion-card__add { margin-top: auto; }

@media (max-width: 1024px) {
  .tribune-grid, .package-grid { grid-template-columns: 1fr; }
  .rental-info { flex-direction: column; }
}

/* --- Anfrage Cart Page --- */
.anfrage-item { transition: background 0.15s; }
.anfrage-item:hover { background: var(--tag-bg) !important; }
.submit-btn { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }
.disclaimer {
  text-align: center; margin-top: 12px; font-size: 0.78rem;
  color: var(--text-mid); line-height: 1.55;
}
.disclaimer strong { color: var(--text); }

/* === MOBILE OPTIMIZATION === */
@media (max-width: 768px) {
  /* Anfrage box sidebar stacking */
  .anfrage-page { grid-template-columns: 1fr !important; }


  
  /* Price table scroll */
  .price-table { display: block; overflow-x: auto; }
  
  /* Tribune grid */
  .tribune-grid { grid-template-columns: 1fr !important; }
  .tribune-card--featured::before { display: none; }
  
  /* Package grid */
  .package-grid { grid-template-columns: 1fr !important; }
  .package-card--featured { margin-top: 16px; }
  .package-card__badge { position: static; transform: none; display: inline-block; margin-bottom: 12px; }
  
  /* LED size cards */
  .led-hero__inner { grid-template-columns: 1fr !important; }
  
  /* Stage detail cards */
  .stage-detail-card { grid-template-columns: 1fr !important; }
  .stage-detail-card__body { padding: 20px !important; }
  .stage-detail-card__actions { flex-wrap: wrap; }
  .stage-detail-card__price { margin-left: 0; text-align: left; width: 100%; margin-top: 8px; }
  
  /* Rental info */
  .rental-info { flex-direction: column; gap: 6px; }
  
  /* 2-col grids to 1-col */
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  
  /* 3-col grids to 1-col */
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns: 1fr 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr 1fr"] { grid-template-columns: 1fr !important; }
  
  /* 4-col grids to 2-col */
  [style*="grid-template-columns: repeat(4"],
  [style*="grid-template-columns:repeat(4"] { grid-template-columns: 1fr 1fr !important; }
  
  /* Companion grid */
  .companion-grid { grid-template-columns: 1fr 1fr !important; }
  .companion-card { min-height: auto !important; }
  
  /* Related grid */
  .product-card-link { display: block; text-decoration: none; color: inherit; }
.related-grid { grid-template-columns: 1fr !important; }
  
  /* Form rows */
  .form-row { grid-template-columns: 1fr !important; }
  
  /* CTA banners */
  [style*="display:flex"][style*="justify-content:space-between"][style*="padding:56px"] {
    flex-direction: column !important;
    padding: 32px !important;
    text-align: center !important;
  }
  
  /* Anfrage options wrap */
  .anfrage-options { gap: 6px; }
  .anfrage-option { font-size: 0.75rem; padding: 6px 10px; }
  
  /* Gallery thumbs */
  .thumb-row { grid-template-columns: repeat(5, 1fr) !important; gap: 4px !important; }
  
  /* Tab navigation */
  .tab-nav { overflow-x: auto; gap: 0; }
  .tab-nav .tab { font-size: 0.78rem; padding: 10px 12px; white-space: nowrap; }
  
  /* LED trailer card */
  .led-trailer-card { grid-template-columns: 1fr !important; padding: 24px !important; }
  
  /* Contact cards */
  .contact-cards { grid-template-columns: 1fr !important; }
  .contact-grid { grid-template-columns: 1fr !important; }
  
  /* Sizes grid on LED page */
  [style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: 1fr !important; }
  
  /* Summary box */
  .anfrage-sidebar { position: static !important; }
  .summary-box { position: static !important; }
  
  /* Hero content */
  .hero__title { font-size: 2.5rem !important; }
  .hero__stats { gap: 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav__inner { padding: 0 16px; }
  .section { padding: 40px 0; }
  .companion-grid { grid-template-columns: 1fr !important; }
  .thumb-row { grid-template-columns: repeat(3, 1fr) !important; }
}

/* === MOBILE & UX IMPROVEMENTS (v9) === */

/* Mobile floating CTA */
.mobile-cta-float {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: white; border-top: 1px solid var(--border);
  padding: 10px 16px; box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  gap: 8px; align-items: center;
}
.mobile-cta-float .btn { width: 100%; justify-content: center; }

/* Price table scroll wrapper */
.price-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 12px; }

/* Podest options 2-col */
.podest-options-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px;
}
.podest-options-grid label {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8125rem; cursor: pointer; padding: 3px 0;
}
.podest-options-grid input[type="checkbox"] { accent-color: var(--accent); flex-shrink: 0; margin: 0; }

/* Mobile hamburger */
.nav__hamburger {
  display: none; background: none; border: none; color: white;
  font-size: 1.5rem; cursor: pointer; padding: 4px;
}
.nav__mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--text); z-index: 99; padding: 16px 20px;
  flex-direction: column; gap: 4px; border-bottom: 2px solid var(--accent);
}
.nav__mobile-menu a {
  color: rgba(255,255,255,0.8); text-decoration: none; padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.9rem;
}
.nav__mobile-menu a:last-child { border-bottom: none; }
.nav__mobile-menu.open { display: flex; }

/* LED-Trailer teaser in hero */
.led-trailer-teaser {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0,205,184,0.12); border: 1px solid rgba(0,205,184,0.25);
  border-radius: 8px; padding: 8px 16px; margin-top: 16px;
  font-size: 0.8125rem; color: var(--accent); font-weight: 500;
  cursor: pointer; transition: all 0.15s; text-decoration: none;
}
.led-trailer-teaser:hover { background: rgba(0,205,184,0.2); }
.led-trailer-teaser .badge {
  background: var(--accent); color: white; padding: 1px 6px;
  border-radius: 3px; font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
}

@media (max-width: 900px) {
  .nav__links { display: none !important; }
  .nav__hamburger { display: block !important; }
  .nav__anfrage { font-size: 0.75rem !important; padding: 8px 12px !important; }
  .nav__anfrage-count { width: 18px !important; height: 18px !important; font-size: 0.6rem !important; }
}

@media (max-width: 768px) {
  .mobile-cta-float { display: flex; }
  body.page-has-header { padding-bottom: 64px; }


  .anfrage-page { grid-template-columns: 1fr !important; }
  .anfrage-sidebar { position: static !important; }
  .price-table { min-width: 520px; }
  .tribune-grid, .package-grid, .product-card-link { display: block; text-decoration: none; color: inherit; }
.related-grid { grid-template-columns: 1fr !important; }
  .stage-detail-card { grid-template-columns: 1fr !important; }
  .stage-detail-card__body { padding: 20px !important; }
  .rental-info { flex-direction: column; gap: 6px; padding: 8px 14px 6px; }
  .tab-nav { overflow-x: auto; gap: 0; flex-wrap: nowrap; }
  .tab-nav .tab { white-space: nowrap; font-size: 0.78rem; padding: 10px 12px; }
  .footer__grid { grid-template-columns: 1fr 1fr !important; gap: 24px !important; }
  .led-trailer-card { grid-template-columns: 1fr !important; padding: 24px !important; }
  .form-row { grid-template-columns: 1fr !important; }
  .cta-banner { flex-direction: column !important; text-align: center; padding: 32px !important; }
  .tribune-card--featured::before { display: none; }
  .contact-cards, .contact-grid { grid-template-columns: 1fr !important; }
  .product-reel { max-width: 100% !important; }
  .hero__title { font-size: clamp(2rem, 6vw, 2.8rem) !important; }
  .thumb-row { gap: 4px !important; }
  .size-selector { grid-template-columns: 1fr !important; }
  .led-hero__inner { grid-template-columns: 1fr !important; text-align: center; }
  .led-hero__inner img { max-height: 200px; margin: 0 auto; }
  .companion-grid { grid-template-columns: 1fr 1fr !important; }
  .podest-options-grid { grid-template-columns: 1fr; }
  /* Hero badge row */
  .hero__stats { flex-wrap: wrap; gap: 12px; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav__inner { padding: 0 12px; }
  .section { padding: 32px 0; }
  .footer__grid { grid-template-columns: 1fr !important; }
  .thumb-row { grid-template-columns: repeat(3, 1fr) !important; }
  .companion-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
}

/* === Gallery & Lightbox === */
.gallery-main-wrap { cursor: pointer; }
.thumb { opacity: 0.6; transition: all 0.15s; }
.thumb:hover, .thumb.active { opacity: 1; border-color: var(--accent) !important; }
.thumb-row { max-height: 180px; overflow-y: auto; scrollbar-width: thin; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.92); justify-content: center; align-items: center;
  cursor: pointer;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 8px; }
.lightbox__close {
  position: absolute; top: 20px; right: 24px;
  color: white; font-size: 2rem; cursor: pointer; z-index: 201;
  background: none; border: none; line-height: 1;
}

/* Video pair layout */
.video-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px;
}
.video-pair__item {
  border-radius: 14px; overflow: hidden; background: #0a0a0a;
  aspect-ratio: 16/9; position: relative;
}
.video-pair__item video { width: 100%; height: 100%; object-fit: cover; }
.video-pair__label {
  position: absolute; top: 10px; left: 10px;
  background: rgba(0,0,0,0.6); color: white; padding: 3px 10px;
  border-radius: 4px; font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.video-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: center; flex-direction: column; gap: 8px;
  color: rgba(255,255,255,0.3); font-size: 0.8rem;
}
.video-placeholder .icon { font-size: 2.5rem; }

@media (max-width: 768px) {
  .video-pair { grid-template-columns: 1fr; }
  .thumb-row { max-height: none; grid-template-columns: repeat(6, 1fr) !important; }
}

/* Prevent horizontal overflow on mobile */





@media (max-width: 768px) {
  .product-page { padding-left: 0; padding-right: 0; }
  .gallery-main-wrap { border-radius: 8px; }
  .gallery-main-wrap img { padding: 8px !important; }
  .anfrage-box { padding: 20px !important; }
  /* Inline styles grid overrides */
  [style*="grid-template-columns:1fr 200px"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: 1fr 200px"] { grid-template-columns: 1fr !important; }
}

/* Scoped mobile overflow fix - desktop untouched */
@media (max-width: 768px) {
  html { overflow-x: hidden; }
  img { max-width: 100%; }
}

/* Product detail mobile: anfrage first */
@media (max-width: 768px) {
  .product-detail {
    display: flex !important;
    flex-direction: column-reverse !important;
    gap: 24px !important;
  }
  .sticky-anfrage {
    position: static !important;
    width: 100% !important;
  }
}

/* === MOBILE FIX v14 === */
html, body { overflow-x: hidden; }

/* Nav: cart icon only on small phones */
@media (max-width: 520px) {
  .nav__anfrage-text { display: none !important; }
  .nav__anfrage { padding: 7px 11px !important; gap: 4px !important; }
  .nav__inner { padding: 0 14px !important; }
}

/* Product detail pages: fix inline-style grids */
@media (max-width: 768px) {
  .feature-grid { grid-template-columns: 1fr !important; }
  .product-card-link { display: block; text-decoration: none; color: inherit; }
.related-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .video-pair { grid-template-columns: 1fr !important; }
}

/* LED-Wall hero: compact on mobile */
@media (max-width: 768px) {
  .led-hero { padding: 32px 0 40px !important; }
}

/* Page-header: tighten top padding */
@media (max-width: 768px) {
  .page-header { padding: calc(68px + 24px) 0 32px !important; }
  .page-header__inner { padding: 0 20px !important; }
  .page-header h1 { font-size: clamp(1.8rem, 6vw, 2.5rem) !important; }
}

/* Breadcrumb: don't overflow */
.breadcrumb { flex-wrap: wrap; word-break: break-word; }

/* Tab nav: no scrollbar visible */
.tab-nav { -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.tab-nav::-webkit-scrollbar { display: none; }

/* Package cards on ausstattung.html */
@media (max-width: 900px) {
  .pkg-grid { grid-template-columns: 1fr !important; max-width: 520px; margin-left: auto; margin-right: auto; }
}
