/* =========================================================
   BLUE BOYZ (BBZ) — Ultras FCJ — Zine / Underground Stylesheet
   Farben: Schwarz dominant, Blau Akzent, Weiß Text
   Mobile-first. Harte, schnelle Bewegungen.
========================================================= */

:root {
  --black:    #0a0a0a;
  --black-2:  #141414;
  --black-3:  #1c1c1c;
  --white:    #f4f4f4;
  --white-dim:#9a9a9a;
  --blue:     #1455ff;   /* harter Vereins-Blau-Akzent */
  --blue-2:   #0a3bcc;
  --line:     #2a2a2a;

  --f-display: 'Anton', 'Archivo Black', Impact, sans-serif;
  --f-body:    'Archivo', system-ui, sans-serif;

  --edge: 0px; /* keine Rundungen — alles kantig */
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--blue); color: #fff; }

a { color: inherit; text-decoration: none; }

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

/* =========================================================
   LAUFBAND / TICKER
========================================================= */
.ticker {
  position: relative;
  background: var(--blue);
  color: #fff;
  overflow: hidden;
  border-bottom: 3px solid var(--black);
  z-index: 60;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 18s linear infinite;
}
.ticker__track span {
  font-family: var(--f-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding: 6px 0;
  text-transform: uppercase;
}
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* =========================================================
   NAV
========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid var(--line);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.nav__logo {
  width: 38px;
  height: 38px;
  display: block;
  transition: transform 0.06s linear;
}
.nav__brand:active .nav__logo { transform: rotate(-4deg) scale(0.96); }
.nav__brandtext {
  font-family: var(--f-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
.nav__brand:hover .nav__brandtext { color: var(--blue); }

.nav__links {
  display: none;
  gap: 26px;
}
.nav__links a {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 3px;
  background: var(--blue);
  transition: width 0.08s linear; /* hart & schnell */
}
.nav__links a:hover::after { width: 100%; }
.nav__links a.is-active { color: var(--blue); }
.nav__links a.is-active::after { width: 100%; }

/* rechte Nav-Gruppe (Links + Korb + Burger) */
.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  border: 2px solid var(--line);
  padding: 7px 11px;
  white-space: nowrap;
  transition: border-color 0.06s linear, color 0.06s linear;
}
.nav__cart:hover,
.nav__cart.is-active { border-color: var(--blue); color: var(--blue); }
.js-cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 1.5em;
  height: 1.5em;
  padding: 0 0.3em;
  background: var(--line);
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1;
}
.js-cart-count.has-items { background: var(--blue); color: #fff; }
.js-cart-count.bump { animation: countpop 0.18s steps(3); }
@keyframes countpop { 50% { transform: scale(1.45); } }

/* Burger */
.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  width: 28px; height: 3px;
  background: var(--white);
  transition: transform 0.1s linear, opacity 0.1s linear;
}
.nav__burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu overlay */
.nav__mobile {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 28px;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.12s ease-out;
}
.nav__mobile.open { transform: translateX(0); }
.nav__mobile a {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 12vw, 4rem);
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--white);
}
.nav__mobile a:active { color: var(--blue); }

/* =========================================================
   BUTTONS
========================================================= */
.btn {
  display: inline-block;
  font-family: var(--f-body);
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 22px;
  border: 3px solid var(--blue);
  cursor: pointer;
  transition: transform 0.06s linear, background 0.06s linear, color 0.06s linear;
}
.btn:active { transform: translate(2px, 2px); }

.btn--solid {
  background: var(--blue);
  color: #fff;
}
.btn--solid:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--black);
}
.btn--block { width: 100%; text-align: center; }
.btn--discord { margin-top: 6px; }

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 20px 60px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0 38px,
      rgba(20,85,255,0.05) 38px 40px
    ),
    radial-gradient(circle at 80% 20%, rgba(20,85,255,0.25), transparent 55%),
    var(--black);
  z-index: -2;
}
/* grobes Korn / Rauschen für Zine-Look */
.hero__noise {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero__watermark {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 46vw;
  max-width: 460px;
  color: var(--blue);
  opacity: 0.08;
  z-index: -1;
  pointer-events: none;
}
.hero__kicker {
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
  border-left: 4px solid var(--blue);
  padding-left: 12px;
}
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 19vw, 11rem);
  line-height: 0.86;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero__title .line { display: block; }
.hero__title .accent { color: var(--blue); }
.hero__title .stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  text-stroke: 2px var(--white);
}
.hero__claim {
  max-width: 540px;
  font-size: 1.05rem;
  color: var(--white-dim);
  font-weight: 600;
  margin-bottom: 30px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__scroll {
  position: absolute;
  bottom: 18px;
  left: 20px;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: var(--white-dim);
  animation: nudge 1s steps(2) infinite;
}
@keyframes nudge {
  50% { transform: translateY(6px); }
}

/* =========================================================
   SECTIONS (generisch)
========================================================= */
.section {
  padding: 64px 20px;
  border-top: 2px solid var(--line);
  position: relative;
}
.section__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 34px;
}
.section__num {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--blue);
  padding-top: 8px;
}
.section__title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 14vw, 6rem);
  line-height: 0.84;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.section__title .accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--blue);
}

/* ÜBER */
.ueber__grid {
  display: grid;
  gap: 30px;
  max-width: 760px;
}
.ueber__lead {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 6vw, 2.4rem);
  line-height: 1.05;
  text-transform: uppercase;
}
.ueber__block { display: grid; gap: 12px; }
.ueber__sub {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 5.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--line);
}
.ueber__sub span {
  font-size: 0.85rem;
  color: var(--blue);
  letter-spacing: 0.05em;
}
.ueber p { color: var(--white-dim); font-weight: 600; }
.ueber__punch {
  margin-top: 12px;
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 4.5vw, 1.7rem);
  color: var(--white) !important;
  background: var(--blue);
  padding: 18px 20px;
  line-height: 1.1;
  text-transform: uppercase;
}

/* WERTE */
.werte__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 2px solid var(--line);
}
.werte__item {
  padding: 24px 20px;
  border-bottom: 2px solid var(--line);
  position: relative;
  transition: background 0.06s linear, color 0.06s linear;
}
.werte__item:last-child { border-bottom: none; }
.werte__item:hover { background: var(--blue); }
.werte__idx {
  font-family: var(--f-display);
  font-size: 0.95rem;
  color: var(--blue);
  display: block;
  margin-bottom: 8px;
}
.werte__item:hover .werte__idx { color: #fff; }
.werte__item h3 {
  font-family: var(--f-display);
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.werte__item p { color: var(--white-dim); font-weight: 600; font-size: 0.95rem; }
.werte__item:hover p { color: #fff; }

/* TERMINE */
.termine__list {
  list-style: none;
  display: grid;
  gap: 12px;
}
.termine__row {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "date body"
    "tag  tag";
  gap: 14px;
  align-items: center;
  padding: 18px;
  background: var(--black-2);
  border-left: 4px solid var(--blue);
  transition: transform 0.06s linear, background 0.06s linear;
}
.termine__row:hover { transform: translateX(6px); background: var(--black-3); }
.termine__date {
  grid-area: date;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--f-display);
  line-height: 0.9;
  min-width: 56px;
}
.termine__date b { font-size: 2.2rem; }
.termine__date i { font-style: normal; font-size: 0.85rem; color: var(--blue); letter-spacing: 0.1em; }
.termine__body { grid-area: body; }
.termine__body h3 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.termine__body p { color: var(--white-dim); font-weight: 600; font-size: 0.92rem; }
.termine__tag {
  grid-area: tag;
  justify-self: start;
  font-family: var(--f-body);
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  background: var(--blue);
  color: #fff;
  padding: 4px 10px;
}
.termine__note {
  margin-top: 18px;
  color: var(--white-dim);
  font-size: 0.82rem;
  font-weight: 600;
  font-style: italic;
}

/* SHOP */
.shop--page { border-top: none; }
.shop__back {
  text-decoration: none;
  transition: transform 0.06s linear, color 0.06s linear;
}
.shop__back:hover { color: var(--white); transform: translateX(-4px); }

.shop__intro {
  max-width: 760px;
  color: var(--white-dim);
  font-weight: 600;
  margin-bottom: 34px;
}
.shop__grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  /* Alle Zeilen gleich hoch ⇒ alle Karten gleich groß, unabhängig
     von der Textlänge. Bild-/Platzhalterfläche ist über aspect-ratio 4/3
     ohnehin einheitlich. */
  grid-auto-rows: 1fr;
  gap: 16px;
}
/* min-width: 0 erlaubt dem Grid-Item, auf die 1fr-Spaltenbreite zu
   schrumpfen — sonst sprengt ein langes Wort (z. B. „Auswärtsfahrer")
   die Spalte und die Karten werden unterschiedlich breit. */
.shop__grid > li { display: flex; min-width: 0; }
.shop__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  background: var(--black-2);
  border: 2px solid var(--line);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden; /* clippt den dezenten Bild-Zoom beim Hover */
  transition: transform 0.06s linear, border-color 0.06s linear;
}
.shop__card:hover,
.shop__card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--blue);
  outline: none;
}
/* Subtiler Bild-Zoom beim Hover — gleiche steps()-Härte wie der Reveal */
.shop__card .media__img,
.shop__card .shop__thumb {
  transition: transform 0.18s steps(4);
}
.shop__card:hover .media__img,
.shop__card:hover .shop__thumb,
.shop__card:focus-visible .media__img,
.shop__card:focus-visible .shop__thumb {
  transform: scale(1.035);
}
.shop__thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, transparent 0 26px, rgba(20,85,255,0.10) 26px 28px),
    var(--black);
  border-bottom: 2px solid var(--line);
}
.shop__thumb--blue {
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,0.18) 0 26px, transparent 26px 28px),
    var(--blue);
}
.shop__type {
  font-family: var(--f-display);
  font-size: clamp(2rem, 9vw, 3.2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  -webkit-text-stroke: 1px rgba(255,255,255,0.25);
}
.shop__thumb--blue .shop__type { color: #fff; -webkit-text-stroke: 1px rgba(255,255,255,0.4); }
.shop__mono {
  position: absolute;
  top: 10px;
  right: 12px;
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--blue);
  background: var(--black);
  padding: 2px 8px;
}
.shop__thumb--blue .shop__mono { color: var(--blue); background: #fff; }

.shop__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  flex: 1;
}
.shop__info h3 {
  font-family: var(--f-display);
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
}
.shop__info p { color: var(--white-dim); font-weight: 600; font-size: 0.92rem; overflow-wrap: anywhere; }
.shop__buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 6px;
}
.shop__price {
  font-family: var(--f-display);
  font-size: 1.6rem;
  color: var(--white);
}
.btn--buy {
  padding: 11px 16px;
  font-size: 0.78rem;
}
.btn--buy.added {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.shop__note {
  margin-top: 22px;
  color: var(--white-dim);
  font-size: 0.82rem;
  font-weight: 600;
  font-style: italic;
}

/* PRODUKT-DETAILSEITE (produkt.html) */
.pdp__head { align-items: center; }
.pdp__crumb {
  font-family: var(--f-body);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-dim);
  align-self: center;
}
.pdp__crumb:hover { color: var(--blue); }

.pdp__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.pdp__media .shop__thumb { aspect-ratio: 4 / 3; border: 2px solid var(--line); }

/* echte Produktfotos */
.media__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--black);
  border-bottom: 2px solid var(--line);
}
.pdp__main .media__img { aspect-ratio: 4 / 3; border: 2px solid var(--line); }
.pdp__thumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.pdp__thumb {
  width: 64px;
  height: 64px;
  padding: 0;
  background: var(--black);
  border: 2px solid var(--line);
  cursor: pointer;
  transition: border-color 0.06s linear, transform 0.06s linear;
}
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp__thumb:hover { border-color: var(--blue); }
.pdp__thumb:active { transform: translate(1px, 1px); }
.pdp__thumb.active { border-color: var(--blue); }
.cart__thumb .media__img { aspect-ratio: 1 / 1; border: 2px solid var(--line); border-bottom-width: 2px; }

.pdp__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pdp__title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 8vw, 3.4rem);
  line-height: 0.92;
  text-transform: uppercase;
}
.pdp__price {
  font-family: var(--f-display);
  font-size: 2.4rem;
  color: var(--blue);
  margin: -6px 0 0;
}
.pdp__desc { color: var(--white-dim); font-weight: 600; }

.pdp__options { display: grid; gap: 18px; margin: 6px 0 4px; }
.opt__group { display: grid; gap: 8px; }
.opt__label {
  font-family: var(--f-body);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}
.opt__group.missing .opt__label { color: #ff4d4d; }
.opt__group.missing .chip { border-color: #ff4d4d; }
.opt__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  border: 2px solid var(--line);
  padding: 11px 16px;
  cursor: pointer;
  transition: transform 0.06s linear, background 0.06s linear, color 0.06s linear, border-color 0.06s linear;
}
.chip:hover { border-color: var(--blue); }
.chip:active { transform: translate(1px, 1px); }
.chip.selected {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.pdp__hint {
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  min-height: 1.1em;
  margin: 0;
}
.pdp__hint.err { color: #ff4d4d; }
.pdp__hint.ok  { color: var(--blue); }
.pdp__backlink {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.pdp__backlink:hover { color: var(--blue); }

.pdp__notfound { display: grid; gap: 16px; max-width: 520px; }
.pdp__notfound h1 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 9vw, 3.4rem);
  text-transform: uppercase;
  line-height: 0.95;
}
.pdp__notfound p { color: var(--white-dim); font-weight: 600; }
.pdp__notfound .btn { justify-self: start; }

/* WARENKORB (warenkorb.html) */
.cart__empty { display: grid; gap: 16px; max-width: 520px; }
.cart__empty h1 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 9vw, 3.4rem);
  text-transform: uppercase;
  line-height: 0.95;
}
.cart__empty p { color: var(--white-dim); font-weight: 600; }
.cart__empty .btn { justify-self: start; }

.cart__list { list-style: none; display: grid; gap: 12px; }
.cart__row {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  grid-template-areas:
    "thumb info   remove"
    "thumb qty    line";
  gap: 10px 14px;
  align-items: center;
  background: var(--black-2);
  border: 2px solid var(--line);
  padding: 12px;
  transition: border-color 0.06s linear; /* dezenter Hover */
}
.cart__row:hover { border-color: var(--blue); }

/* Dezentes Einblenden beim ersten Aufbau (gestaffelt, nicht bei jedem Klick) */
.cart__row.is-enter { animation: cartrow 0.22s steps(4) both; }
.cart__row.is-enter:nth-child(2) { animation-delay: 45ms; }
.cart__row.is-enter:nth-child(3) { animation-delay: 90ms; }
.cart__row.is-enter:nth-child(4) { animation-delay: 135ms; }
.cart__row.is-enter:nth-child(5) { animation-delay: 180ms; }
.cart__row.is-enter:nth-child(6) { animation-delay: 225ms; }
@keyframes cartrow {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cart__thumb { grid-area: thumb; width: 84px; display: block; }
.cart__thumb .shop__thumb { aspect-ratio: 1 / 1; border: 2px solid var(--line); border-bottom-width: 2px; }
.cart__thumb .shop__type {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  -webkit-text-stroke: 0;
}
.cart__thumb .shop__mono { display: none; }

.cart__info { grid-area: info; display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.cart__name {
  font-family: var(--f-display);
  font-size: 1.15rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}
.cart__name:hover { color: var(--blue); }
.cart__variant {
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}
.cart__unit { color: var(--white-dim); font-weight: 600; font-size: 0.8rem; }

.cart__qty {
  grid-area: qty;
  display: inline-flex;
  align-items: stretch;
  border: 2px solid var(--line);
  width: max-content;
}
.cart__step {
  width: 34px;
  background: var(--black);
  color: var(--white);
  border: none;
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.06s linear, color 0.06s linear;
}
.cart__step:hover { background: var(--blue); color: #fff; }
.cart__num {
  min-width: 40px;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 1.1rem;
  background: var(--black-3);
}
.cart__line {
  grid-area: line;
  justify-self: end;
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: var(--white);
}
.cart__remove {
  grid-area: remove;
  justify-self: end;
  align-self: start;
  width: 32px;
  height: 32px;
  background: transparent;
  color: var(--white-dim);
  border: 2px solid var(--line);
  font-weight: 900;
  cursor: pointer;
  transition: background 0.06s linear, color 0.06s linear, border-color 0.06s linear;
}
.cart__remove:hover { background: #ff2e2e; color: #fff; border-color: #ff2e2e; }

.cart__summary {
  margin-top: 22px;
  display: grid;
  gap: 14px;
  max-width: 460px;
  margin-left: auto;
  background: var(--black-2);
  border: 2px solid var(--line);
  border-top: 4px solid var(--blue);
  padding: 20px;
}
.cart__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--f-display);
  text-transform: uppercase;
}
.cart__total span { font-size: 1.3rem; }
.cart__total b { font-size: 2.2rem; color: var(--blue); }
.cart__note { color: var(--white-dim); font-size: 0.8rem; font-weight: 600; font-style: italic; margin: 0; }
.cart__clear {
  justify-self: start;
  background: none;
  border: none;
  color: var(--white-dim);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: underline;
  cursor: pointer;
}
.cart__clear:hover { color: #ff4d4d; }
.cart__status {
  margin-top: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  min-height: 1.1em;
}
.cart__status.ok { color: var(--blue); }

/* KONTAKT */
.kontakt__grid {
  display: grid;
  gap: 34px;
}
.kontakt__big {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 7vw, 2.6rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 14px;
}
.kontakt__pitch p { color: var(--white-dim); font-weight: 600; margin-bottom: 14px; }
.kontakt__small { font-size: 0.85rem; }

.kontakt__form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label {
  font-family: var(--f-body);
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}
.field input,
.field textarea {
  background: var(--black-2);
  border: 2px solid var(--line);
  color: var(--white);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 14px;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: #5a5a5a; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--black-3);
}
.field input.invalid,
.field textarea.invalid { border-color: #ff2e2e; }

.form__status {
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  min-height: 1.2em;
}
.form__status.ok { color: var(--blue); }
.form__status.err { color: #ff4d4d; }

/* =========================================================
   FOOTER
========================================================= */
.footer {
  padding: 60px 20px 40px;
  border-top: 3px solid var(--blue);
  background: var(--black-2);
}
.footer__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 30px;
}
.footer__crest {
  width: 110px;
  height: 110px;
  flex: 0 0 auto;
}
.footer__big {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 15vw, 8rem);
  line-height: 0.84;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}
.footer__meta {
  display: grid;
  gap: 6px;
}
.footer__meta span {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* =========================================================
   REVEAL-ANIMATION (hart, kein Soft-Fade)
========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
  /* steps() => ruckartig, nicht smooth */
  transition: transform 0.18s steps(4), opacity 0.12s steps(3);
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  /* dezenten Bild-Zoom ebenfalls abschalten (ist eine Transition) */
  .shop__card:hover .media__img,
  .shop__card:hover .shop__thumb,
  .shop__card:focus-visible .media__img,
  .shop__card:focus-visible .shop__thumb { transform: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   DESKTOP / TABLET
========================================================= */
@media (min-width: 760px) {
  .nav { padding: 16px 40px; }
  .nav__links { display: flex; }
  .nav__burger { display: none; }

  .hero { padding: 100px 40px 80px; }
  .section { padding: 96px 40px; }

  .werte__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .werte__item { border-right: 2px solid var(--line); }
  .werte__item:nth-child(3n) { border-right: none; }
  .werte__item:nth-last-child(-n+3) { border-bottom: none; }

  .termine__row {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "date body tag";
  }
  .termine__tag { justify-self: end; }

  .shop__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .pdp__wrap {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: start;
  }
  .pdp__media { position: sticky; top: 90px; }

  .cart__row {
    grid-template-columns: 84px 1fr auto auto 40px;
    grid-template-areas: "thumb info qty line remove";
    gap: 20px;
  }
  .cart__remove { align-self: center; }
  .cart__line { min-width: 90px; }

  .kontakt__grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
  }

  .footer { padding: 90px 40px 50px; }
  .footer__top {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
  .footer__crest { width: 150px; height: 150px; }
  .footer__meta {
    grid-auto-flow: column;
    justify-content: space-between;
  }
}

@media (min-width: 1100px) {
  .hero__content, .section { max-width: 1200px; margin-inline: auto; }
  .section { width: 100%; }
  .shop__grid { grid-template-columns: repeat(3, 1fr); }
}
