/* ============================================================
   BAAM Sneaker Marketplace – style.css
   Geteiltes Stylesheet für ALLE Seiten (Header, Footer, Basis)
   ============================================================ */

/* ── Google Fonts (Schriften festlegen) ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ── CSS Variables (Farben & Schriften zentral festlegen) ── */
:root {
  --clr-black:   #111111;
  --clr-white:   #F5F3EF;
  --clr-red:     #D42B2B;
  --clr-red-dk:  #A81F1F;
  --clr-grey:    #2A2A2A;
  --clr-mid:     #555555;
  --clr-light:   #E8E5DF;
  --clr-border:  #D0CCC4;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --header-h: 64px;
  --radius: 2px;
  --transition: 0.22s ease;

  --container: 1300px;
  --pad-x: clamp(16px, 4vw, 48px);
}

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

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ============================================================
   ANIMATIONEN (Keyframes – Effekt-Typ: Animation)
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,43,43,0.55); }
  50%      { box-shadow: 0 0 0 8px rgba(212,43,43,0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ============================================================
   HEADER / NAV (auf jeder Seite identisch)
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--clr-black);
  height: var(--header-h);
  border-bottom: 3px solid var(--clr-red);
}
#site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 4px;
  color: var(--clr-white);
  position: relative;
  transition: color var(--transition);
}
.logo span { color: var(--clr-red); }
.logo:hover { color: var(--clr-red); }
.logo:hover span { color: var(--clr-white); }

/* Desktop nav */
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-light);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--clr-white); border-bottom-color: var(--clr-red); }

/* CTA-Link (Anmelden) – mit dezenter Puls-Animation */
.nav-cta {
  background: var(--clr-red);
  color: var(--clr-white) !important;
  border: none !important;
  padding: 8px 20px;
  font-weight: 700 !important;
  letter-spacing: 1px;
  border-radius: var(--radius);
  transition: background var(--transition) !important;
  animation: pulseGlow 2.6s infinite;
}
.nav-cta:hover { background: var(--clr-red-dk) !important; animation: none; }
.main-nav a.nav-cta.active { border-bottom-color: transparent; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--clr-white);
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
#mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--clr-black);
  padding: 24px var(--pad-x) 32px;
  z-index: 99;
  border-bottom: 2px solid var(--clr-red);
}
#mobile-nav.open { display: block; }
#mobile-nav a {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-light);
  padding: 12px 0;
  border-bottom: 1px solid var(--clr-grey);
  transition: color var(--transition);
}
#mobile-nav a:last-child { border-bottom: none; }
#mobile-nav a:hover,
#mobile-nav a.active { color: var(--clr-red); }

/* ============================================================
   BUTTONS (wiederverwendbar)
   ============================================================ */
.btn-primary {
  background: var(--clr-red);
  color: var(--clr-white);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 2px solid var(--clr-red);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  display: inline-block;
}
.btn-primary:hover { background: var(--clr-red-dk); border-color: var(--clr-red-dk); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--clr-white);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 2px solid var(--clr-white);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  display: inline-block;
}
.btn-outline:hover { background: var(--clr-white); color: var(--clr-black); }

/* ============================================================
   HERO (Startseite)
   ============================================================ */
#hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.hero-image {
  background: var(--clr-light);
  overflow: hidden;
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: float 5s ease-in-out infinite;
}
.hero-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 520px;
  background: linear-gradient(135deg, #DEDAD4 0%, #C8C3BB 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--clr-mid);
  gap: 12px;
}
.hero-image-placeholder svg { width: 72px; height: 72px; opacity: 0.35; }
.hero-image-placeholder p { font-size: 0.9rem; opacity: 0.6; }

.hero-content {
  background: var(--clr-black);
  padding: clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
/* Text-Animation: Hero-Inhalte erscheinen gestaffelt von unten */
.hero-content > * { animation: fadeInUp 0.7s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.18s; }
.hero-content > *:nth-child(3) { animation-delay: 0.31s; }
.hero-content > *:nth-child(4) { animation-delay: 0.44s; }
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-red);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.95;
  color: var(--clr-white);
  letter-spacing: 2px;
}
.hero-title em { color: var(--clr-red); font-style: normal; }
.hero-text {
  color: #AAA8A3;
  font-size: 1rem;
  max-width: 420px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   PAGE BANNER (Unterseiten – kleiner Kopfbereich)
   ============================================================ */
.page-banner {
  background: linear-gradient(135deg, var(--clr-black) 0%, var(--clr-grey) 100%);
  border-bottom: 3px solid var(--clr-red);
  padding: clamp(40px, 7vw, 80px) 0;
}
.page-banner .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-red);
  display: block;
  margin-bottom: 10px;
}
.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  letter-spacing: 2px;
  color: var(--clr-white);
  line-height: 1;
}
.page-banner p {
  color: #AAA8A3;
  max-width: 560px;
  margin-top: 14px;
}

/* ============================================================
   BRANDS BAR
   ============================================================ */
#brands-bar {
  background: var(--clr-black);
  border-top: 1px solid var(--clr-grey);
  padding: 14px var(--pad-x);
}
#brands-bar .container {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.brands-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-mid);
  flex-shrink: 0;
}
.brand-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.brand-chip {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
  padding: 5px 13px;
  border: 1.5px solid var(--clr-grey);
  border-radius: var(--radius);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
  background: none;
}
.brand-chip:hover,
.brand-chip.active { color: var(--clr-white); border-color: var(--clr-red); }

/* ============================================================
   SECTION HEADERS (wiederverwendbar)
   ============================================================ */
.section { padding: 64px 0; }
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 2px;
}
.section-link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-red);
  border-bottom: 1px solid var(--clr-red);
  transition: opacity var(--transition);
}
.section-link:hover { opacity: 0.7; }

/* ============================================================
   PRODUCT GRID (Sortiment + Featured)
   ============================================================ */
#sortiment, .section-products { background: var(--clr-white); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: #fff;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}
.product-img {
  aspect-ratio: 1 / 1;
  background: var(--clr-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ECEAE4 0%, #DEDAD4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #AAA;
  font-size: 0.8rem;
}
.product-info { padding: 14px; }
.product-brand { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--clr-mid); margin-bottom: 4px; }
.product-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 3px; }
.product-colorway { font-size: 0.78rem; color: var(--clr-mid); margin-bottom: 12px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 1px; }
.rating-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--clr-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.rating-badge.high { background: var(--clr-black); color: var(--clr-white); }
.rating-label { font-size: 0.65rem; color: var(--clr-mid); margin-top: 2px; text-align: center; }
.product-buy {
  display: block;
  margin: 12px 14px 14px;
  background: var(--clr-black);
  color: var(--clr-white);
  text-align: center;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 0;
  border: 2px solid var(--clr-black);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.product-buy:hover { background: transparent; color: var(--clr-black); }

/* ============================================================
   PROMOTIONS
   ============================================================ */
#promotionen, .section-promo {
  background: var(--clr-black);
}
#promotionen .section-title, .section-promo .section-title { color: var(--clr-white); }
.promo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
.promo-main-card {
  background: var(--clr-grey);
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  border-radius: var(--radius);
}
.promo-bg-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 0.9rem;
}
.promo-content { position: relative; z-index: 1; }
.promo-tag {
  display: inline-block;
  background: var(--clr-red);
  color: var(--clr-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 12px;
  border-radius: var(--radius);
  animation: pulseGlow 2.4s infinite;
}
.promo-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--clr-white);
  line-height: 1;
  margin-bottom: 10px;
}
.promo-text { color: #AAA; font-size: 0.9rem; margin-bottom: 20px; }
.promo-side { display: flex; flex-direction: column; gap: 12px; }
.promo-mini {
  background: var(--clr-grey);
  padding: 20px;
  border-left: 3px solid var(--clr-red);
  border-radius: var(--radius);
  flex: 1;
}
.promo-mini h4 { color: var(--clr-white); font-size: 0.9rem; margin-bottom: 6px; }
.promo-mini p { color: #888; font-size: 0.82rem; }
.drop-list { margin-top: 12px; display: flex; flex-direction: column; gap: 0; }
.drop-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--clr-grey);
  color: var(--clr-light);
  font-size: 0.85rem;
}
.drop-item:last-child { border-bottom: none; }
.drop-price { font-weight: 700; color: var(--clr-red); }

/* ============================================================
   ÜBER UNS
   ============================================================ */
.about-section { padding: 64px 0; }
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.about-card {
  background: #fff;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.10); }
.about-card .icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: inline-block;
}
.about-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.about-card p { color: var(--clr-mid); font-size: 0.9rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.team-card {
  background: var(--clr-light);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1.5px solid var(--clr-border);
  transition: transform var(--transition);
}
.team-card:hover { transform: translateY(-4px); }
.team-avatar {
  width: 80px; height: 80px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-red) 0%, var(--clr-red-dk) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 1px;
}
.team-card h4 { font-size: 1.1rem; margin-bottom: 2px; }
.team-card p { color: var(--clr-mid); font-size: 0.82rem; }

/* ============================================================
   FORMULAR (Anmelden) – Gradient-Hintergrund
   ============================================================ */
#formular {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--clr-light) 0%, #D8D3CB 60%, #C9C3B9 100%);
}
/* Form-Card mit Schatten (Effekt-Typ: Rahmen/Schatten) */
.form-card {
  background: #fff;
  border: 1.5px solid var(--clr-border);
  border-radius: 6px;
  padding: clamp(20px, 4vw, 36px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}
#anmelde-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-black);
}
.form-group label .req { color: var(--clr-red); margin-left: 2px; }
.form-control {
  border: 1.5px solid var(--clr-border);
  background: #fff;
  padding: 11px 14px;
  font-size: 0.95rem;
  color: var(--clr-black);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: var(--radius);
}
.form-control:focus { border-color: var(--clr-black); box-shadow: 0 0 0 3px rgba(17,17,17,0.08); }
.form-control.error { border-color: var(--clr-red); }
.form-control.valid { border-color: #3A9E3A; }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23111' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.field-error {
  font-size: 0.78rem;
  color: var(--clr-red);
  font-weight: 600;
  min-height: 18px;
  display: block;
}
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; }
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0;
  accent-color: var(--clr-black);
  cursor: pointer;
  margin-top: 2px;
}
.form-checkbox label { font-size: 0.88rem; color: var(--clr-mid); cursor: pointer; }
#form-success {
  display: none;
  background: #E8F5E9;
  border-left: 4px solid #3A9E3A;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 18px;
  font-weight: 600;
  color: #1B5E20;
  animation: fadeInUp 0.4s ease both;
}

/* ============================================================
   FOOTER (auf jeder Seite identisch)
   ============================================================ */
#site-footer {
  background: var(--clr-black);
  color: var(--clr-light);
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--clr-grey);
}
.footer-brand .logo { font-size: 2rem; margin-bottom: 12px; display: block; }
.footer-brand p { color: #888; font-size: 0.88rem; line-height: 1.7; max-width: 280px; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--clr-grey);
  border-radius: 50%;
  color: #888;
  font-size: 0.85rem;
  font-weight: 700;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.footer-social a:hover { color: var(--clr-white); border-color: var(--clr-red); background: var(--clr-red); }
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-mid);
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li { font-size: 0.9rem; color: #888; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: #888;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--clr-white); }
.footer-disclaimer {
  background: var(--clr-grey);
  border-left: 3px solid var(--clr-red);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin: 20px 0 0;
  color: var(--clr-light);
  font-size: 0.82rem;
}
.footer-bottom {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--clr-mid); }

/* Startseite: Brand-Chips + Rating-Hinweis */
.home-chips { margin-bottom: 28px; }
.rating-hint {
  margin-top: 22px;
  font-size: 0.85rem;
  color: var(--clr-mid);
}

/* Startseite: Promo-Banner (gestrichelter Rahmen wie im Wireframe) */
.promo-banner {
  border: 2px dashed var(--clr-red);
  border-radius: 6px;
  background: var(--clr-grey);
  padding: clamp(24px, 4vw, 40px);
  text-align: center;
}
.promo-banner .promo-title { margin: 6px 0 12px; }
.promo-banner .promo-text { max-width: 620px; margin: 0 auto 22px; }

/* ============================================================
   IMAGE-SLIDER (Sortiment)
   ============================================================ */
.slider-section { background: var(--clr-black); }
.slider {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  overflow: hidden;
}
.slides { display: flex; transition: transform 0.5s ease; }
.slide {
  min-width: 100%;
  height: clamp(220px, 34vw, 360px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  text-align: center;
}
.slide-1 { background: linear-gradient(135deg, #3a0d0d 0%, #1a1a1a 100%); }
.slide-2 { background: linear-gradient(135deg, #2A2A2A 0%, #111111 100%); }
.slide-3 { background: linear-gradient(135deg, #1c2b1c 0%, #161616 100%); }
.slide-inner { padding: 0 var(--pad-x); }
.slide-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 10px;
}
.slide-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: 2px;
}
.slide-inner p { color: #BBB; margin-top: 6px; }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(245,243,239,0.9);
  border: 2px solid var(--clr-white);
  color: var(--clr-black);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.slider-btn:hover { background: var(--clr-red); color: var(--clr-white); border-color: var(--clr-red); }
.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }
.slider-dots {
  position: absolute;
  bottom: 16px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px;
}
.slider-dots .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.slider-dots .dot.active { background: var(--clr-red); transform: scale(1.2); }

/* ============================================================
   SORTIMENT-LAYOUT: FILTER + PRODUKTE
   ============================================================ */
.sortiment-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}

/* Filter-Sidebar */
.filter-sidebar {
  border: 1.5px solid var(--clr-border);
  border-radius: 6px;
  background: #fff;
  padding: 22px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.filter-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.filter-group { margin-bottom: 22px; }
.filter-group h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-mid);
  margin-bottom: 10px;
}
.check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--clr-black);
  padding: 4px 0;
  cursor: pointer;
}
.check input { accent-color: var(--clr-red); width: 16px; height: 16px; cursor: pointer; }
.price-row { display: flex; align-items: center; gap: 8px; }
.price-input {
  width: 100%;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 8px 10px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.price-input:focus { border-color: var(--clr-black); }
.rating-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.f-rating {
  border: 1.5px solid var(--clr-border);
  background: #fff;
  border-radius: var(--radius);
  padding: 8px 0;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.f-rating:hover { border-color: var(--clr-black); }
.f-rating.active { background: var(--clr-black); color: var(--clr-white); border-color: var(--clr-black); }
.filter-reset {
  width: 100%;
  background: none;
  border: none;
  color: var(--clr-red);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 4px 0;
}
.filter-reset:hover { color: var(--clr-red-dk); }

/* Hauptbereich */
.sortiment-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.sortiment-head .section-title { margin: 0; }
.result-count { font-size: 0.85rem; color: var(--clr-mid); }
.toolbar {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.search-box { display: flex; flex: 1; min-width: 200px; }
.search-box input {
  flex: 1;
  border: 1.5px solid var(--clr-border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  padding: 11px 14px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.search-box input:focus { border-color: var(--clr-black); }
.search-box button {
  background: var(--clr-black);
  color: var(--clr-white);
  border: 1.5px solid var(--clr-black);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0 16px;
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--transition);
}
.search-box button:hover { background: var(--clr-red); border-color: var(--clr-red); }
#product-sort { max-width: 220px; }
.sortiment-grid { grid-template-columns: repeat(3, 1fr); }
.no-results {
  text-align: center;
  color: var(--clr-mid);
  padding: 40px 0;
  font-size: 0.95rem;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.page-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1.5px solid var(--clr-border);
  background: #fff;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.page-btn:hover { border-color: var(--clr-black); }
.page-btn.active { background: var(--clr-black); color: var(--clr-white); border-color: var(--clr-black); }
.page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ============================================================
   PROMOTION-SEITE
   ============================================================ */
.promo-hero {
  background: linear-gradient(135deg, #3a0d0d 0%, var(--clr-black) 60%, #1a1a1a 100%);
  border-bottom: 3px solid var(--clr-red);
  text-align: center;
  padding: clamp(40px, 7vw, 80px) 0;
}
.promo-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  letter-spacing: 2px;
  color: var(--clr-white);
}
.promo-hero-sub { color: #BBB; margin-top: 10px; }

.promo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.promo-about h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.promo-about-img {
  border: 1.5px solid var(--clr-border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--clr-light);
}
.promo-about-img img { width: 100%; height: auto; }
.promo-about h3 {
  font-size: 1.05rem;
  margin: 18px 0 8px;
}
.promo-about p { color: var(--clr-mid); }
.promo-steps { margin-top: 8px; }
.promo-steps li {
  position: relative;
  counter-increment: step;
  padding: 8px 0 8px 34px;
  color: var(--clr-mid);
  border-bottom: 1px solid var(--clr-border);
}
.promo-steps {
  counter-reset: step;
}
.promo-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 8px;
  width: 22px; height: 22px;
  background: var(--clr-red);
  color: #fff;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Formular-Card Kopf + Hinweise */
.form-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.form-card-head h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 1px;
}
.form-badge {
  background: var(--clr-black);
  color: var(--clr-white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius);
}
.form-sub { color: var(--clr-mid); font-size: 0.88rem; margin-bottom: 18px; }
.form-hint { font-size: 0.74rem; color: var(--clr-mid); }
.form-db-note {
  margin-top: 14px;
  font-size: 0.74rem;
  color: var(--clr-mid);
  background: var(--clr-light);
  border-left: 3px solid var(--clr-red);
  border-radius: var(--radius);
  padding: 8px 12px;
}
.form-db-note code {
  font-family: monospace;
  font-size: 0.72rem;
  color: var(--clr-black);
}

/* ============================================================
   INTERAKTIVES SPIEL – RUNNER
   ============================================================ */
.game-section { background: var(--clr-light); padding: 64px 0; }
.game-badge {
  background: var(--clr-red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius);
}
.game-sub { color: var(--clr-mid); margin-bottom: 20px; }
.game-wrap {
  background: #fff;
  border: 1.5px solid var(--clr-border);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.10);
  padding: clamp(16px, 3vw, 28px);
}
.game-hud {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.game-hud strong { color: var(--clr-red); }
#runner-canvas {
  display: block;
  width: 100%;
  height: auto;
  background: #FAFAF8;
  border: 2px dashed var(--clr-border);
  border-radius: var(--radius);
  cursor: pointer;
  touch-action: manipulation;
}
#runner-canvas:focus { outline: 2px solid var(--clr-red); outline-offset: 2px; }
.game-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.btn-outline-dark {
  background: transparent;
  color: var(--clr-black);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 2px solid var(--clr-black);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-outline-dark:hover { background: var(--clr-black); color: var(--clr-white); }
.game-hint { font-size: 0.8rem; color: var(--clr-mid); }

/* ============================================================
   RESPONSIVE (Web Page responsive auf allen Geräten)
   ============================================================ */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1000px) {
  .sortiment-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .filter-group { margin-bottom: 16px; }
  .promo-layout { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; }
  .hero-image { min-height: 280px; }
  .hero-image-placeholder { min-height: 280px; }
  .promo-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-grid, .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  #hero { grid-template-columns: 1fr; }
}

/* Reduzierte Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
