/* AustriansUnited — Sportmerch Fan-Shop AT */
:root {
  --bg-deep: #0a0e14;
  --bg-card: #121a24;
  --bg-elevated: #1a2433;
  --accent: #e63946;
  --accent-glow: rgba(230, 57, 70, 0.45);
  --gold: #d4af37;
  --gold-dim: rgba(212, 175, 55, 0.15);
  --text: #f0f4f8;
  --text-muted: #94a3b8;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --font-display: "Bebas Neue", "Impact", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --header-h: 72px;
  --search-h: 52px;
  --header-stack-h: calc(var(--header-h) + 58px);
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 10001;
  padding: 0.65rem 1.15rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.45);
  transition: top 0.2s ease, box-shadow 0.2s ease;
}

.skip-link:focus {
  outline: none;
}

.skip-link:focus-visible {
  top: 1rem;
  box-shadow: 0 0 0 3px var(--accent-glow), 0 6px 24px rgba(0, 0, 0, 0.35);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(230, 57, 70, 0.12), transparent),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(212, 175, 55, 0.06), transparent);
  min-width: 300px;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: #f0d78c;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); color: var(--text); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1rem; color: var(--text-muted); }

.container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

@media (max-width: 360px) {
  .container {
    width: 100%;
    padding-inline: 0.75rem;
  }
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 14, 20, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.5rem;
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: 0.06em;
  color: var(--text);
  white-space: nowrap;
}

.logo span {
  color: var(--accent);
}

.logo:hover {
  color: var(--text);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-desktop a {
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--text);
  background: var(--gold-dim);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition), transform 0.2s ease;
}

/* Anker-Variante (Favoriten / Warenkorb): ganze Fläche klickbar, Tab-Navigation */
a.icon-btn {
  text-decoration: none;
  color: var(--text);
  -webkit-tap-highlight-color: transparent;
}

.header-actions > a.icon-btn {
  z-index: 2;
}

a.icon-btn .badge-count {
  pointer-events: none;
}

a.icon-btn svg {
  pointer-events: none;
}

.icon-btn:hover {
  background: var(--bg-elevated);
  transform: translateY(-2px);
}

.icon-btn svg {
  width: 24px;
  height: 24px;
}

.badge-count {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: var(--radius-sm);
}

.burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity 0.3s;
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
  .nav-desktop {
    display: none;
  }

  .burger {
    display: flex;
  }
}

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--header-stack-h);
  background: rgba(10, 14, 20, 0.98);
  z-index: 999;
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform var(--transition);
}

.nav-mobile.open {
  transform: translateX(0);
}

@media (max-width: 991px) {
  .nav-mobile {
    display: flex;
  }
}

.nav-mobile a {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

/* ——— Search bar ——— */
.search-bar-wrap {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
}

.search-form {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.search-form input {
  width: 100%;
  height: var(--search-h);
  padding: 0 1rem 0 3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.search-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.search-form .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  pointer-events: none;
}

.search-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-height: 320px;
  overflow-y: auto;
  display: none;
  z-index: 50;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.search-suggestions.visible {
  display: block;
}

.search-suggestions button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.search-suggestions button:hover,
.search-suggestions button:focus {
  background: var(--gold-dim);
}

.search-suggestions .sug-type {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.15rem;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow var(--transition), background var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #c1121f);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ——— Hero slider ——— */
.hero-slider {
  position: relative;
  min-height: min(70vh, 560px);
  overflow: hidden;
}

.hero-slides-inner {
  position: relative;
  min-height: min(70vh, 560px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 14, 20, 0.92) 0%, rgba(10, 14, 20, 0.55) 55%, transparent 100%);
}

/* Fotos vom Merch rechts stärker sichtbar, Text links lesbar */
.hero-slide--photo::after {
  background: linear-gradient(
    105deg,
    rgba(10, 14, 20, 0.94) 0%,
    rgba(10, 14, 20, 0.72) 38%,
    rgba(10, 14, 20, 0.35) 62%,
    rgba(10, 14, 20, 0.08) 100%
  );
}

@media (max-width: 768px) {
  .hero-slide--photo {
    background-position: center center !important;
  }

  .hero-slide--photo::after {
    background: linear-gradient(
      180deg,
      rgba(10, 14, 20, 0.15) 0%,
      rgba(10, 14, 20, 0.82) 45%,
      rgba(10, 14, 20, 0.95) 100%
    );
  }
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  width: min(1200px, 100% - 2rem);
  padding: 2rem 0;
}

.hero-slide h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--text);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.5rem;
}

.hero-slide p {
  font-size: 1.15rem;
  max-width: 520px;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.5rem;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform 0.2s;
}

.hero-dots button.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.15);
}

/* ——— Sections ——— */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-head {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.15rem;
}

.section-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  box-shadow: 0 0 20px var(--accent-glow);
}

.section-head h2 {
  margin: 0 0 0.5rem;
}

.section-head .lead {
  max-width: 560px;
  margin: 0;
  line-height: 1.65;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——— Product grid ——— */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.product-card-media {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--bg-elevated), #0d1218);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
}

.product-card-media .product-thumb-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
  box-sizing: border-box;
}

.product-card-media .product-card-fallback {
  position: relative;
  z-index: 1;
}

.product-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, var(--accent-glow), transparent 55%);
  opacity: 0.6;
}

.product-card-body {
  padding: 1.25rem;
}

.product-card-body h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0.5rem 0 1rem;
}

.product-card-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.product-card-actions .btn {
  flex: 1;
  min-width: 120px;
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
}

/* ——— Club cards ——— */
.club-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
}

.club-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem 1.65rem 1.6rem;
  display: block;
  transition: transform var(--transition), border-color var(--transition), box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.club-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.club-card-inner {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.club-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0.05em;
  color: var(--text);
  margin: 0;
  padding-bottom: 0.75rem;
  position: relative;
  text-transform: none;
}

.club-card-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  box-shadow: 0 0 16px var(--accent-glow);
}

.club-meta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
  opacity: 0.95;
}

.club-card-desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ——— Homepage: volle Breite, Band-Hintergrund ——— */
.section--band {
  width: 100%;
  margin-inline: 0;
  background: var(--bg-card);
  border-block: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.section--band .container {
  position: relative;
}

/* ——— Katalog-CTA (Startseite) ——— */
.catalog-cta-wrap {
  margin-top: 2rem;
}

.btn-catalog-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: linear-gradient(165deg, rgba(30, 38, 52, 0.95) 0%, rgba(14, 18, 26, 0.98) 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 12px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.btn-catalog-cta__glow {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(120deg, var(--accent), var(--gold), var(--accent));
  opacity: 0.35;
  z-index: 0;
  filter: blur(12px);
  transition: opacity 0.3s ease;
}

.btn-catalog-cta__inner {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.btn-catalog-cta__icon {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease;
}

.btn-catalog-cta:hover {
  color: var(--gold);
  border-color: rgba(212, 175, 55, 0.85);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.2),
    0 16px 48px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-catalog-cta:hover .btn-catalog-cta__glow {
  opacity: 0.55;
}

.btn-catalog-cta:hover .btn-catalog-cta__icon {
  transform: translateX(4px);
  background: rgba(212, 175, 55, 0.22);
}

.btn-cta-catalog {
  padding-inline: 2rem;
  min-width: min(100%, 220px);
}

/* ——— Sport-Kacheln mit Fotos ——— */
.sport-pills {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 140px), 1fr));
  gap: 1rem;
}

.sport-pills--visual {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 172px), 1fr));
  gap: 1.25rem;
}

.sport-pill {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 168px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.sport-pill-bg {
  position: absolute;
  inset: 0;
  background-color: var(--bg-card);
  background-size: cover;
  background-position: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.sport-pill[data-sport="fussball"] .sport-pill-bg {
  background-image: url("../images/sports/fussball.jpg");
}

.sport-pill[data-sport="hockey"] .sport-pill-bg {
  background-image: url("../images/sports/hockey.jpg");
}

.sport-pill[data-sport="basketball"] .sport-pill-bg {
  background-image: url("../images/sports/basketball.jpg");
}

.sport-pill[data-sport="mma"] .sport-pill-bg {
  background-image: url("../images/sports/mma.jpg");
}

.sport-pill[data-sport="formel1"] .sport-pill-bg {
  background-image: url("../images/sports/formel1.jpg");
  background-position: center 40%;
}

.sport-pill[data-sport="handball"] .sport-pill-bg {
  background-image: url("../images/sports/handball.jpg");
  background-position: center 35%;
}

.sport-pill-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    185deg,
    rgba(10, 14, 20, 0.15) 0%,
    rgba(10, 14, 20, 0.55) 45%,
    rgba(10, 14, 20, 0.92) 100%
  );
  pointer-events: none;
}

.sport-pill-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  min-height: 168px;
  padding: 1.15rem 0.85rem 1.2rem;
}

.sport-pill:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(212, 175, 55, 0.12);
}

.sport-pill:hover .sport-pill-bg {
  transform: scale(1.07);
}

.sport-pill .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(10, 14, 20, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.35);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.sport-pill svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
}

.sport-pill-label {
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
}

/* ——— Reviews carousel ——— */
.reviews-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.review-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.review-slide {
  min-width: 100%;
  padding: 2rem;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (max-width: 600px) {
  .review-slide {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

.review-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--gold);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  background: var(--bg-elevated);
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.review-text {
  color: var(--text);
  font-style: italic;
  margin: 0 0 0.5rem;
}

.review-name {
  color: var(--gold);
  font-weight: 700;
}

.review-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border-top: 1px solid var(--border);
}

.review-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.review-nav button:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
}

/* ——— Newsletter ——— */
.newsletter-block {
  background: linear-gradient(135deg, var(--bg-card) 0%, #1a1520 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-block::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  pointer-events: none;
}

.newsletter-block h2 {
  position: relative;
  color: var(--text);
}

.newsletter-block .highlight {
  color: var(--gold);
  font-size: 1.5rem;
  font-family: var(--font-display);
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 480px;
  margin: 1.5rem auto 0;
  position: relative;
}

/* Newsletter Danke-Modal */
.newsletter-modal {
  position: fixed;
  inset: 0;
  z-index: 2400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.newsletter-modal:not([hidden]) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.newsletter-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 12, 0.82);
  backdrop-filter: blur(6px);
}

.newsletter-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: clamp(1.75rem, 4vw, 2.25rem);
  background: linear-gradient(165deg, rgba(28, 36, 48, 0.98), rgba(12, 16, 22, 0.99));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(212, 175, 55, 0.12);
  text-align: center;
}

.newsletter-modal__dialog::before {
  content: "";
  display: block;
  height: 3px;
  margin: -1.75rem -1.75rem 1.25rem;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

@media (min-width: 480px) {
  .newsletter-modal__dialog::before {
    margin: -2rem -2rem 1.25rem;
  }
}

.newsletter-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  letter-spacing: 0.04em;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.newsletter-modal__text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

.newsletter-modal__btn {
  min-width: 160px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-deep);
  color: var(--text);
}

/* ——— Shop layout ——— */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 991px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
}

.filters-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  position: sticky;
  top: calc(var(--header-stack-h) + 24px);
}

@media (max-width: 991px) {
  .filters-panel {
    position: static;
  }
}

.filters-panel h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.filter-group {
  margin-bottom: 1.25rem;
}

.filter-group select,
.filter-group input[type="number"] {
  width: 100%;
  padding: 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  margin-top: 0.35rem;
}

.filter-checkboxes label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.toolbar select {
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
}

/* ——— Blog ——— */
.blog-toolbar {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: linear-gradient(165deg, rgba(22, 30, 42, 0.55), rgba(10, 14, 20, 0.92));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.blog-toolbar__head {
  margin-bottom: 1.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.blog-toolbar__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: 0.06em;
  color: var(--text);
  margin: 0 0 0.35rem;
}

.blog-toolbar__lead {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 52ch;
}

.blog-toolbar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
  gap: 1rem 1.25rem;
}

.blog-field--wide {
  grid-column: 1 / -1;
}

@media (min-width: 900px) {
  .blog-field--wide {
    grid-column: span 2;
  }
}

.blog-field__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.blog-field__control {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-field__control:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.blog-toolbar__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.blog-toolbar__count {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.blog-toolbar__reset {
  flex-shrink: 0;
}

.blog-empty {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.blog-card {
  display: grid;
  grid-template-columns: min(320px, 38vw) 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow 0.3s ease;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12);
}

.blog-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}

@media (max-width: 800px) {
  .blog-card {
    grid-template-columns: 1fr;
  }
}

.blog-card-thumb {
  position: relative;
  min-height: 220px;
  background: linear-gradient(160deg, var(--bg-elevated), var(--accent-glow));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--text);
}

.blog-card-thumb--img {
  padding: 0;
  text-decoration: none;
  color: inherit;
}

.blog-card-thumb--img img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-card-thumb--img img {
  transform: scale(1.04);
}

.blog-card-thumb--fallback {
  min-height: 220px;
}

.blog-card-body {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.blog-card-title {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.5rem;
}

.blog-card-title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-title a:hover {
  color: var(--gold);
}

.blog-card-excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1rem;
  flex: 1;
}

.blog-card-cta {
  margin-top: auto;
}

.blog-meta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  opacity: 0.95;
}

.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.share-row a {
  padding: 0.35rem 0.75rem;
  background: var(--bg-elevated);
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.share-row a:hover {
  color: var(--accent);
}

/* ——— Article page prose ——— */
.prose {
  max-width: 720px;
}

.prose.article-page {
  max-width: none;
  width: 100%;
}

.prose h2 {
  margin-top: 2rem;
}

.prose p {
  font-size: 1.05rem;
  line-height: 1.75;
}

.page-head--article-wide .page-head__card {
  max-width: none;
}

.article-body {
  width: 100%;
}

.article-hero {
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  background: var(--bg-elevated);
}

.article-hero img {
  width: 100%;
  height: auto;
  max-height: min(70vh, 520px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.article-content {
  width: 100%;
}

.article-content > p:first-of-type.article-lead {
  margin-top: 0;
}

.article-lead {
  font-size: clamp(1.08rem, 2.2vw, 1.22rem);
  line-height: 1.65;
  color: var(--text);
  padding: 1rem 0 1rem 1.15rem;
  border-left: 4px solid rgba(212, 175, 55, 0.55);
  margin-bottom: 1.75rem;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.06), transparent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.article-page .article-content p {
  font-size: 1.08rem;
  line-height: 1.82;
  margin-bottom: 1.1rem;
}

.article-page .article-content p:last-child {
  margin-bottom: 0;
}

/* ——— Product detail ——— */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .product-detail {
    grid-template-columns: 1fr;
  }
}

.product-detail-head {
  margin-bottom: 1.15rem;
}

.product-detail-head .page-head__card {
  padding: clamp(1rem, 2.5vw, 1.5rem) clamp(1rem, 2.5vw, 1.75rem);
}

.product-detail-meta {
  margin: 0.35rem 0 0;
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.prose > .page-head--article {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.product-gallery {
  aspect-ratio: 1;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  overflow: hidden;
}

.product-gallery .product-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  box-sizing: border-box;
}

.product-gallery .product-card-fallback {
  font-size: 4rem;
}

.size-stock-hint {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 400px;
  margin: 0 0 1rem;
}

select[data-p-size] option:disabled {
  color: var(--text-muted);
}

/* ——— Footer ——— */
.site-footer {
  background: #06090d;
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 0.5rem;
}

.footer-grid a {
  color: var(--text-muted);
}

.footer-grid a:hover {
  color: var(--text);
}

.footer-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 220px;
}

.footer-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

.footer-payments svg {
  height: 28px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-payments svg:hover {
  opacity: 1;
}

.phone-link {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ——— Cookie banner ——— */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 1.25rem;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  width: min(1100px, 100% - 2rem);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-inner p {
  flex: 1;
  min-width: 240px;
  margin: 0;
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ——— About / text blocks ——— */
.about-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.about-block p {
  margin-bottom: 1rem;
}

/* ——— Page hero & page headers ——— */
.page-hero {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
}

.page-hero__card {
  position: relative;
  background: linear-gradient(155deg, rgba(22, 30, 42, 0.92) 0%, rgba(10, 14, 20, 0.97) 45%, rgba(18, 24, 34, 0.95) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4.5vw, 3rem);
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.25),
    0 32px 64px rgba(0, 0, 0, 0.22);
}

.page-hero__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--gold) 45%, var(--accent) 100%);
  border-radius: var(--radius) var(--radius) 0 0;
}

.page-hero__card::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: min(55%, 420px);
  height: 180%;
  background: radial-gradient(ellipse at center, var(--accent-glow), transparent 68%);
  opacity: 0.28;
  pointer-events: none;
}

.page-hero__eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.page-hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 1.25rem;
  font-size: clamp(2.35rem, 5.5vw, 3.85rem);
  line-height: 1.02;
  letter-spacing: 0.03em;
  color: var(--text);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.page-hero h1 .page-hero__title-accent {
  color: var(--gold);
}

.page-hero .sub {
  position: relative;
  z-index: 1;
  color: var(--text-muted);
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  border-left: 3px solid rgba(212, 175, 55, 0.45);
  line-height: 1.68;
}

.page-hero .sub:last-child {
  margin-bottom: 0;
}

/* Kompakte Seitenköpfe (Warenkorb, Favoriten, Rechtliches, Produkt/Artikel) */
.page-head {
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.page-head__card {
  position: relative;
  background: linear-gradient(160deg, rgba(20, 28, 38, 0.95), rgba(10, 14, 20, 0.98));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.35rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2.25rem);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.page-head__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: var(--radius) var(--radius) 0 0;
}

.page-head__card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 100% 100%, var(--accent-glow), transparent 70%);
  opacity: 0.2;
  pointer-events: none;
}

.page-head__eyebrow {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  opacity: 0.95;
}

.page-head__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: 0.04em;
  color: var(--text);
  margin: 0 0 0.65rem;
}

.page-head__intro {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text-muted);
  max-width: 52ch;
  line-height: 1.65;
  font-size: 0.98rem;
}

.page-head__card > .list-page-intro {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text-muted);
  max-width: 52ch;
  line-height: 1.65;
  font-size: 0.98rem;
}

.page-head--article .page-head__meta {
  position: relative;
  z-index: 1;
  font-size: 0.88rem;
  color: var(--gold);
  margin: 0.25rem 0 0;
  letter-spacing: 0.04em;
}

.page-back {
  margin: 0 0 1rem;
}

.page-back a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.35rem 0;
  transition: color var(--transition), transform 0.2s ease;
}

.page-back a:hover {
  color: var(--gold);
  transform: translateX(-3px);
}

/* Rechtstext: erster Block nach Kopf */
main.prose.page-prose > h2:first-of-type,
main.prose > .page-head + h2 {
  margin-top: 0;
}

main.prose .page-head {
  margin-bottom: 2rem;
}

/* Utilities */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mb-0 { margin-bottom: 0; }

.empty-state {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
}

.list-page-intro {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 0 1.75rem;
  line-height: 1.6;
}

/* Warenkorb / Favoriten: nur Liste oder leerer Zustand */
.list-page-state {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 520px;
  margin: 0 auto;
}

.list-page-state__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text);
  letter-spacing: 0.04em;
  margin: 0 0 0.75rem;
}

.list-page-state__text {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  line-height: 1.65;
}

.list-page-grid {
  margin-top: 0.5rem;
}

.list-page-card {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1rem;
  padding: 1rem !important;
}

.list-page-card__body {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.list-page-card__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.list-page-card__title a {
  color: var(--text);
  text-decoration: none;
}

.list-page-card__title a:hover {
  color: var(--gold);
}

.list-page-card__meta {
  color: var(--text-muted);
  margin: 0;
}

.list-page-summary {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.list-page-hint {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0.5rem 0 0;
}

/* Warenkorb + Checkout */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr min(min(100%, 420px), 38%);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

.checkout-layout__main {
  min-width: 0;
}

.checkout-items__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--text);
  margin: 0 0 1rem;
}

.checkout-items__hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 1rem 0 0;
  max-width: 560px;
}

.checkout-aside {
  position: sticky;
  top: calc(var(--header-stack-h) + 16px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
  .checkout-aside {
    position: static;
  }
}

.checkout-form__heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin: 0 0 1rem;
  padding-top: 0.25rem;
}

.checkout-form__heading:not(:first-child) {
  margin-top: 1.75rem;
}

.checkout-form__heading--small {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.checkout-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
}

.checkout-field {
  grid-column: 1 / -1;
}

.checkout-field--half {
  grid-column: span 1;
}

@media (max-width: 480px) {
  .checkout-field--half {
    grid-column: 1 / -1;
  }
}

.checkout-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.checkout-field input,
.checkout-field select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.checkout-field input:focus,
.checkout-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-glow);
}

.checkout-field input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.checkout-pay-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checkout-pay-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  font-size: 0.95rem;
  color: var(--text);
}

.checkout-pay-option:hover {
  border-color: rgba(212, 175, 55, 0.35);
  background: var(--bg-elevated);
}

.checkout-pay-option input {
  accent-color: var(--accent);
}

.checkout-totals {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.checkout-totals__rows {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1.5rem;
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.checkout-totals__rows dt {
  margin: 0;
  font-weight: 500;
}

.checkout-totals__rows dd {
  margin: 0;
  text-align: right;
  color: var(--text);
}

.checkout-totals__grand {
  font-family: var(--font-display);
  font-size: 1.35rem !important;
  letter-spacing: 0.04em;
  color: var(--gold) !important;
  padding-top: 0.5rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--border);
  grid-column: 1;
}

.checkout-totals__rows dd.checkout-totals__grand {
  border-top: 1px solid var(--border);
  padding-top: 0.5rem;
}

.checkout-totals__note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0.75rem 0 0;
  line-height: 1.45;
}

.checkout-legal {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checkout-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-muted);
  cursor: pointer;
}

.checkout-checkbox input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.checkout-checkbox a {
  color: var(--gold);
}

.btn-checkout {
  width: 100%;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
}

.checkout-form__demo {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0.85rem 0 0;
  line-height: 1.4;
}

/* ——— Konsultant (Chat-Widget) ——— */
body.au-consult-body-lock {
  overflow: hidden;
}

.au-consult {
  --au-fab-size: 60px;
  position: fixed;
  z-index: 2300;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  font-family: var(--font-body);
  pointer-events: none;
}

.au-consult > * {
  pointer-events: auto;
}

.au-consult__fab {
  position: relative;
  width: var(--au-fab-size);
  height: var(--au-fab-size);
  border-radius: 20px;
  border: 3px solid var(--accent);
  background: linear-gradient(155deg, #2a1518 0%, #1a0a0c 40%, #0f1419 100%);
  color: #f4e6c8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(230, 57, 70, 0.45),
    0 4px 0 rgba(0, 0, 0, 0.35),
    0 14px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    color 0.25s ease;
}

.au-consult__fab-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    125deg,
    transparent 35%,
    rgba(255, 255, 255, 0.14) 48%,
    transparent 62%
  );
  background-size: 200% 200%;
  animation: au-consult-shine 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes au-consult-shine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.au-consult__fab:hover {
  transform: translateY(-3px);
  border-color: #ff4d5c;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 0 28px rgba(230, 57, 70, 0.55),
    0 6px 0 rgba(0, 0, 0, 0.28),
    0 20px 44px rgba(230, 57, 70, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  color: #fffdf5;
}

.au-consult__fab:focus-visible {
  outline: none;
  border-color: #ff6b78;
  box-shadow:
    0 0 0 3px var(--accent-glow),
    0 0 24px rgba(230, 57, 70, 0.5),
    0 14px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.au-consult__fab-icon {
  width: 34px;
  height: 34px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.au-consult--open .au-consult__fab {
  color: var(--gold);
  border-color: var(--accent);
  background: linear-gradient(155deg, #1e2a3a 0%, #121a24 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.45),
    0 0 22px rgba(230, 57, 70, 0.4),
    0 2px 0 rgba(0, 0, 0, 0.4),
    0 10px 28px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(212, 175, 55, 0.15);
}

.au-consult__panel {
  position: absolute;
  right: 0;
  bottom: calc(var(--au-fab-size) + 0.75rem);
  width: min(392px, calc(100vw - 2rem));
  max-height: min(580px, calc(100vh - var(--header-stack-h) - 5rem));
  display: flex;
  flex-direction: column;
  transform-origin: bottom right;
  transform: translateY(16px) rotate(1.2deg);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.38s ease,
    visibility 0.38s ease;
}

.au-consult--open .au-consult__panel {
  transform: translateY(0) rotate(0deg);
  opacity: 1;
  visibility: visible;
}

.au-consult__panel[hidden] {
  display: none !important;
}

.au-consult__panel-inner {
  display: flex;
  flex-direction: column;
  max-height: inherit;
  background:
    radial-gradient(ellipse 90% 60% at 100% 0%, rgba(230, 57, 70, 0.12), transparent 55%),
    linear-gradient(180deg, #141c28 0%, #0a0e14 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px 22px 10px 22px;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.07),
    0 28px 70px rgba(0, 0, 0, 0.55),
    -6px 0 40px rgba(230, 57, 70, 0.06);
  overflow: hidden;
}

.au-consult__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.1rem 1rem 1rem;
  flex-shrink: 0;
  background: linear-gradient(
    90deg,
    rgba(230, 57, 70, 0.2) 0%,
    rgba(20, 28, 40, 0.95) 45%,
    rgba(10, 14, 20, 0.98) 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.au-consult__title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}

.au-consult__subtitle {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.75);
}

.au-consult__close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.au-consult__close:hover {
  color: var(--text);
  background: rgba(230, 57, 70, 0.2);
  border-color: rgba(230, 57, 70, 0.35);
}

.au-consult__messages {
  flex: 1;
  min-height: 210px;
  max-height: 300px;
  overflow-y: auto;
  padding: 1rem 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(230, 57, 70, 0.4) transparent;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 11px, 11px 100%;
  background-color: #080c11;
}

.au-consult__msg {
  display: flex;
  gap: 0.6rem;
  align-items: flex-end;
}

.au-consult__msg--user {
  flex-direction: row-reverse;
}

.au-consult__avatar {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(145deg, #e63946, #7a1219);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(230, 57, 70, 0.35);
}

.au-consult__bubble {
  position: relative;
  max-width: calc(100% - 42px);
  padding: 0.7rem 0.95rem;
  font-size: 0.9rem;
  line-height: 1.58;
}

.au-consult__bubble--bot {
  background: #121a22;
  color: #b8c5d4;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px 18px 18px 5px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.au-consult__bubble--bot p {
  margin: 0 0 0.5rem;
  color: inherit;
}

.au-consult__bubble--bot p:last-child {
  margin-bottom: 0;
}

.au-consult__bubble--bot a {
  color: #e8c84a;
  font-weight: 600;
}

.au-consult__bubble--bot strong {
  color: #e8eef5;
}

.au-consult__bubble--user {
  background: linear-gradient(135deg, #1e2d42, #152030);
  border: 1px solid rgba(212, 175, 55, 0.22);
  color: var(--text);
  border-radius: 18px 18px 5px 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.au-consult__bot-lead {
  margin: 0 0 0.5rem !important;
  font-size: 0.82rem;
  color: #8b9cb0;
}

.au-consult__products {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.au-consult__product {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  background: #0a0e14;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.au-consult__product:hover {
  border-color: rgba(230, 57, 70, 0.35);
  background: rgba(230, 57, 70, 0.08);
  transform: translateX(2px);
}

.au-consult__product-name {
  display: block;
  font-weight: 700;
  color: var(--text);
  font-size: 0.86rem;
}

.au-consult__product-meta {
  display: block;
  font-size: 0.76rem;
  color: #8b9cb0;
  margin-top: 0.12rem;
}

.au-consult__bubble--typing {
  display: flex;
  gap: 6px;
  padding: 0.9rem 1.05rem;
  align-items: center;
}

.au-consult__bubble--typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e63946;
  opacity: 0.45;
  animation: au-consult-dot 1.1s ease-in-out infinite;
}

.au-consult__bubble--typing span:nth-child(2) {
  animation-delay: 0.15s;
  background: var(--gold);
}

.au-consult__bubble--typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes au-consult-dot {
  0%,
  80%,
  100% {
    opacity: 0.25;
    transform: translateY(0) scale(1);
  }
  40% {
    opacity: 1;
    transform: translateY(-5px) scale(1.05);
  }
}

.au-consult__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0 1rem 0.75rem;
  flex-shrink: 0;
}

.au-consult__chip {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--accent);
  background: rgba(18, 26, 34, 0.9);
  color: #9fb0c3;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.au-consult__chip:hover {
  border-color: rgba(212, 175, 55, 0.35);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
}

.au-consult__form {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0.85rem 0.85rem;
  padding: 0.35rem 0.35rem 0.35rem 1rem;
  border-radius: 999px;
  flex-shrink: 0;
  background: #06090d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.au-consult__input {
  flex: 1;
  min-width: 0;
  padding: 0.55rem 0;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 0.92rem;
}

.au-consult__input::placeholder {
  color: #5c6b7d;
}

.au-consult__input:focus {
  outline: none;
}

.au-consult__form:focus-within {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(212, 175, 55, 0.12);
}

.au-consult__send {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(145deg, var(--accent), #9d1a24);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.au-consult__send:hover {
  transform: scale(1.05);
  filter: brightness(1.06);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.5);
}

.au-consult__send:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--accent-glow), 0 4px 14px rgba(230, 57, 70, 0.4);
}

.au-consult .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 480px) {
  .au-consult__panel {
    width: calc(100vw - 1.5rem);
    max-height: min(74vh, 560px);
  }

  .au-consult {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
  }
}
