/* ================================================================
   Brett & Krug — Gemeinsame Stylesheet-Datei
   ----------------------------------------------------------------
   Genutzt von: index.html, sortiment.html, arche-nova.html, talisman.html
   Body-Klassen steuern Seitenkontext und Theming:
     .page-home        → Startseite
     .page-sortiment   → Übersicht aller Spiele
     .page-product     → jede Produkt-Detailseite (Arche Nova etc.)
     .page-arche-nova  → spezifisch Arche Nova
     .page-talisman    → spezifisch Talisman (Oxblood-Theme)
   ================================================================ */

/* ============================================
   1. CSS-Variablen
   ============================================ */
:root {
  --cream: #f4ecd8;
  --cream-deep: #ebe1c8;
  --ink: #1a1714;
  --ink-soft: #4a443c;
  --forest: #1f3d2f;
  --forest-deep: #142a20;
  --forest-light: #2d4a3a;
  --brass: #b8924f;
  --brass-light: #d4ae6a;
  --brass-deep: #8a6a35;
  --oxblood: #6e2424;
  --oxblood-deep: #4a1818;
  --paper: #fbf6e8;
  --wood: #6e4a2e;
  --wood-deep: #3d2415;
  --water: #c8dde3;
  --water-deep: #3a5d68;
}

/* ============================================
   2. Reset & Basis
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Subtile Papier-Textur als Overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(184, 146, 79, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(31, 61, 47, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Talisman-Variante: zweite Glow-Schicht in Oxblood statt Forest */
body.page-talisman::before {
  background-image:
    radial-gradient(circle at 25% 30%, rgba(184, 146, 79, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(110, 36, 36, 0.03) 0%, transparent 50%);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* ============================================
   3. Header & Navigation
   ============================================ */
header {
  position: sticky;
  top: 0;
  background: rgba(244, 236, 216, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 23, 20, 0.08);
  z-index: 100;
  padding: 1.25rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-decoration: none;
}
.logo span { color: var(--brass); }

nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
nav a:hover { color: var(--forest); }
nav a.active { color: var(--forest); }
nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--brass);
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brass);
  transition: width 0.3s ease;
}
nav a:not(.active):hover::after { width: 100%; }

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

.cart-btn {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 0.55rem 1.25rem;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-btn:hover {
  background: var(--ink);
  color: var(--cream);
}

.cart-count {
  background: var(--brass);
  color: var(--ink);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* ============================================
   4. Gemeinsame Elemente: Eyebrow, Buttons
   ============================================ */
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--brass);
}

.eyebrow-center {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow-center::before,
.eyebrow-center::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--brass);
}

.btn-primary {
  background: var(--forest);
  color: var(--cream);
  padding: 1rem 2rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 1px solid var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-primary:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
}
.btn-primary .arrow { transition: transform 0.3s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-secondary {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.btn-secondary:hover { color: var(--brass); }

/* ============================================
   5. Breadcrumb (Produkt-Detailseiten)
   ============================================ */
.breadcrumb {
  padding: 1.5rem 0 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb .sep { margin: 0 0.5rem; color: var(--brass); }

/* Talisman: Breadcrumb-Hover in Oxblood */
.page-talisman .breadcrumb a:hover { color: var(--oxblood); }

/* ================================================================
   STARTSEITE (.page-home)
   ================================================================ */

/* ----- Hero ----- */
.hero {
  padding: 6rem 0 5rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.hero h1 em {
  font-style: italic;
  color: var(--forest);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.1;
}

.hero-card {
  position: absolute;
  background: var(--paper);
  border: 1px solid rgba(26, 23, 20, 0.1);
  box-shadow: 0 30px 60px -20px rgba(20, 42, 32, 0.25), 0 8px 20px -8px rgba(20, 42, 32, 0.15);
  padding: 1.5rem;
  transition: transform 0.4s ease;
}

.hero-card-1 {
  top: 0;
  left: 0;
  width: 65%;
  height: 75%;
  transform: rotate(-4deg);
  background: linear-gradient(135deg, #1f3d2f 0%, #142a20 100%);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-card-1:hover { transform: rotate(-4deg) translateY(-8px); }

.hero-card-2 {
  bottom: 0;
  right: 0;
  width: 60%;
  height: 70%;
  transform: rotate(5deg);
  background: linear-gradient(135deg, #b8924f 0%, #8a6a35 100%);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-card-2:hover { transform: rotate(5deg) translateY(-8px); }

.hero-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 500;
}

.hero-card-title {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  font-style: italic;
}

.hero-card-deco {
  width: 60px;
  height: 60px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
}

/* ----- Marquee ----- */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 0;
  overflow: hidden;
  margin: 2rem 0 0;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
}

.marquee span {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.marquee .dot {
  color: var(--brass);
  font-style: normal;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----- Products (Featured) ----- */
.products {
  padding: 7rem 0 5rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 600px;
}
.section-title em {
  font-style: italic;
  color: var(--forest);
}

.view-all {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  transition: all 0.2s;
}
.view-all:hover {
  color: var(--brass);
  border-color: var(--brass);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.product-card {
  cursor: pointer;
  transition: transform 0.4s ease;
}
.product-card:hover { transform: translateY(-6px); }

.product-image {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--cream-deep);
}

.product-image-inner {
  text-align: center;
  padding: 2rem;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image-inner {
  transform: scale(1.05);
}
.product-image-inner .label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.product-image-inner h3 {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 400;
  font-style: italic;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}
.product-image-inner .accent {
  width: 40px;
  height: 1px;
  background: var(--brass);
  margin: 0 auto 1.5rem;
}
.product-image-inner .meta {
  font-size: 0.8rem;
  opacity: 0.85;
  letter-spacing: 0.05em;
  font-style: italic;
  font-family: 'Fraunces', serif;
}

.product-tag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--cream);
  color: var(--ink);
  padding: 0.4rem 0.85rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

.page-home .product-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.product-name {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
}

.product-desc {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 360px;
}

.product-price {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--forest);
  white-space: nowrap;
}

/* ----- Values / Über uns ----- */
.values {
  background: var(--forest);
  color: var(--cream);
  padding: 6rem 0;
  margin: 4rem 0 0;
  position: relative;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.values h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.1;
}
.values h2 em {
  font-style: italic;
  color: var(--brass-light);
}

.values-list {
  display: grid;
  gap: 2.5rem;
}

.value-item {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(244, 236, 216, 0.15);
}
.value-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.value-number {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--brass-light);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.value-item h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.value-item p {
  color: rgba(244, 236, 216, 0.75);
  line-height: 1.65;
  max-width: 480px;
}

/* ----- Newsletter ----- */
.newsletter {
  padding: 7rem 0;
  text-align: center;
}

.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
}

.newsletter h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.newsletter h2 em {
  font-style: italic;
  color: var(--forest);
}

.newsletter p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 480px;
  margin: 0 auto;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.5rem;
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.75rem 0;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  outline: none;
}
.newsletter-form input::placeholder {
  color: var(--ink-soft);
  opacity: 0.6;
}
.newsletter-form button {
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}
.newsletter-form button:hover { color: var(--brass); }

/* ================================================================
   SORTIMENT-SEITE (.page-sortiment)
   ================================================================ */

/* ----- Page-Hero ----- */
.page-hero {
  padding: 5rem 0 3rem;
}
.page-hero-inner {
  max-width: 800px;
}
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 144;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--forest);
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 600px;
  line-height: 1.65;
}

/* ----- Filter Bar ----- */
.filter-bar {
  padding: 2rem 0;
  border-top: 1px solid rgba(26, 23, 20, 0.1);
  border-bottom: 1px solid rgba(26, 23, 20, 0.1);
  margin-bottom: 4rem;
}
.filter-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.filter-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.pill {
  background: transparent;
  border: 1px solid rgba(26, 23, 20, 0.2);
  color: var(--ink-soft);
  padding: 0.5rem 1.25rem;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 999px;
}
.pill:hover {
  border-color: var(--forest);
  color: var(--forest);
}
.pill.active {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.filter-count {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-family: 'Fraunces', serif;
  font-style: italic;
}

/* ----- Spiele-Grid ----- */
.games-section {
  padding: 0 0 6rem;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.75rem;
}

.game-card {
  cursor: pointer;
  transition: transform 0.4s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.game-card:hover { transform: translateY(-6px); }

.game-image {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--cream-deep);
}

.game-image-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.5s ease;
  color: var(--cream);
}
.game-card:hover .game-image-inner {
  transform: scale(1.05);
}

.game-image-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 1rem;
  font-weight: 500;
}

.game-image h3 {
  font-family: 'Fraunces', serif;
  font-size: 2.25rem;
  font-weight: 400;
  font-style: italic;
  line-height: 0.95;
  margin-bottom: 1rem;
}

.game-image .accent {
  width: 30px;
  height: 1px;
  background: var(--brass);
  margin: 0 auto 1rem;
}

.game-image .meta {
  font-size: 0.75rem;
  opacity: 0.85;
  letter-spacing: 0.05em;
  font-family: 'Fraunces', serif;
  font-style: italic;
}

.game-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--cream);
  color: var(--ink);
  padding: 0.35rem 0.75rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.game-tag.soon {
  background: var(--ink);
  color: var(--brass-light);
}

.game-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.game-name {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.game-count {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.game-price {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--forest);
  white-space: nowrap;
}

/* ----- Spiel-Gradient-Hintergründe (für .product-image und .game-image) ----- */
.product-image.arche-nova,
.game-image.arche-nova {
  background:
    radial-gradient(circle at 30% 40%, rgba(184, 146, 79, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(31, 61, 47, 0.5) 0%, transparent 60%),
    linear-gradient(135deg, #2d4a3a 0%, #1f3d2f 50%, #142a20 100%);
}
.product-image.arche-nova {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}

.product-image.talisman,
.game-image.talisman {
  background:
    radial-gradient(circle at 70% 30%, rgba(212, 174, 106, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(110, 36, 36, 0.5) 0%, transparent 60%),
    linear-gradient(135deg, #2a1a0e 0%, #3d2415 50%, #1f1208 100%);
}
.product-image.talisman {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}

.game-image.wingspan {
  background:
    radial-gradient(circle at 30% 30%, rgba(244, 200, 150, 0.45) 0%, transparent 55%),
    radial-gradient(circle at 70% 75%, rgba(184, 146, 79, 0.4) 0%, transparent 60%),
    linear-gradient(135deg, #6b4527 0%, #8a5d35 50%, #5a3a20 100%);
}
.game-image.tmars {
  background:
    radial-gradient(circle at 60% 30%, rgba(232, 152, 90, 0.45) 0%, transparent 50%),
    radial-gradient(circle at 25% 70%, rgba(140, 50, 30, 0.5) 0%, transparent 60%),
    linear-gradient(135deg, #4a1d12 0%, #6a2818 50%, #3a1208 100%);
}
.game-image.brass {
  background:
    radial-gradient(circle at 70% 30%, rgba(184, 146, 79, 0.35) 0%, transparent 55%),
    radial-gradient(circle at 30% 70%, rgba(80, 80, 80, 0.4) 0%, transparent 60%),
    linear-gradient(135deg, #2a2620 0%, #3d3830 50%, #1f1c18 100%);
}
.game-image.everdell {
  background:
    radial-gradient(circle at 30% 40%, rgba(212, 174, 106, 0.4) 0%, transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(110, 70, 30, 0.45) 0%, transparent 60%),
    linear-gradient(135deg, #3d2e1a 0%, #5a4225 50%, #2a1f12 100%);
}
.game-image.carcassonne {
  background:
    radial-gradient(circle at 40% 30%, rgba(244, 230, 200, 0.4) 0%, transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(184, 146, 79, 0.35) 0%, transparent 60%),
    linear-gradient(135deg, #6a5530 0%, #826935 50%, #4a3920 100%);
}
.game-image.spirit {
  background:
    radial-gradient(circle at 30% 30%, rgba(140, 200, 180, 0.3) 0%, transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(50, 90, 110, 0.5) 0%, transparent 60%),
    linear-gradient(135deg, #1a3540 0%, #254855 50%, #122530 100%);
}
.game-image.scythe {
  background:
    radial-gradient(circle at 70% 30%, rgba(184, 146, 79, 0.4) 0%, transparent 55%),
    radial-gradient(circle at 30% 70%, rgba(80, 95, 50, 0.5) 0%, transparent 60%),
    linear-gradient(135deg, #2e3520 0%, #455028 50%, #1f2515 100%);
}

/* ----- Spiel-vorschlagen-Sektion ----- */
.suggest-section {
  background: var(--forest);
  color: var(--cream);
  padding: 5rem 0;
  position: relative;
}
.suggest-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.suggest-section h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.1;
}
.suggest-section h2 em {
  font-style: italic;
  color: var(--brass-light);
}
.suggest-text p {
  color: rgba(244, 236, 216, 0.8);
  line-height: 1.65;
  margin-top: 1rem;
  max-width: 480px;
}
.suggest-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.suggest-form input,
.suggest-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244, 236, 216, 0.3);
  padding: 0.85rem 0;
  font-family: inherit;
  font-size: 1rem;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}
.suggest-form input::placeholder,
.suggest-form textarea::placeholder {
  color: rgba(244, 236, 216, 0.5);
}
.suggest-form input:focus,
.suggest-form textarea:focus {
  border-bottom-color: var(--brass-light);
}
.suggest-form button {
  margin-top: 1rem;
  background: var(--brass);
  color: var(--ink);
  border: none;
  padding: 1rem 2rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.suggest-form button:hover {
  background: var(--brass-light);
  transform: translateY(-2px);
}

/* ================================================================
   PRODUKT-DETAILSEITEN (.page-product)
   ================================================================ */

/* ----- Produkt-Hero ----- */
.product-hero {
  padding: 3rem 0 5rem;
}
.product-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.product-gallery {
  position: relative;
}

.product-hero-image {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  margin-bottom: 1rem;
}
/* Standard-Variante: Arche Nova (Forest) */
.page-arche-nova .product-hero-image {
  background:
    radial-gradient(circle at 30% 40%, rgba(184, 146, 79, 0.3) 0%, transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(31, 61, 47, 0.5) 0%, transparent 60%),
    linear-gradient(135deg, #2d4a3a 0%, #1f3d2f 50%, #142a20 100%);
}
/* Talisman-Variante (Oxblood/Wood) */
.page-talisman .product-hero-image {
  background:
    radial-gradient(circle at 70% 30%, rgba(212, 174, 106, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(110, 36, 36, 0.5) 0%, transparent 60%),
    linear-gradient(135deg, #2a1a0e 0%, #3d2415 50%, #1f1208 100%);
}

.placeholder-mark {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(244, 236, 216, 0.15);
  backdrop-filter: blur(4px);
  color: var(--cream);
  padding: 0.4rem 0.85rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(244, 236, 216, 0.2);
}

.hero-image-content {
  text-align: center;
  padding: 2rem;
}
.hero-image-content .label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-image-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 400;
  font-style: italic;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}
.page-talisman .hero-image-content h3 {
  margin-bottom: 1rem;
}
.hero-image-content .edition {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--brass-light);
  margin-bottom: 1.5rem;
}
.hero-image-content .accent {
  width: 50px;
  height: 1px;
  background: var(--brass);
  margin: 0 auto 1.5rem;
}
.hero-image-content .meta {
  font-size: 0.85rem;
  opacity: 0.85;
  font-family: 'Fraunces', serif;
  font-style: italic;
}

/* ----- Thumbnails ----- */
.thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}
.thumb {
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thumb:hover { border-color: var(--brass); }
.thumb-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass-light);
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-style: italic;
  opacity: 0.4;
}

/* Arche-Nova Thumbnail-Hintergründe */
.page-arche-nova .thumb:nth-child(1) { background: linear-gradient(135deg, #2d4a3a, #1f3d2f); }
.page-arche-nova .thumb:nth-child(2) { background: linear-gradient(135deg, #6a5530, #4a3920); }
.page-arche-nova .thumb:nth-child(3) { background: linear-gradient(135deg, #1f3d2f, #142a20); }
.page-arche-nova .thumb:nth-child(4) { background: linear-gradient(135deg, #3d2e1a, #2a1f12); }
/* Talisman Thumbnail-Hintergründe */
.page-talisman .thumb:nth-child(1) { background: linear-gradient(135deg, #3d2415, #1f1208); }
.page-talisman .thumb:nth-child(2) { background: linear-gradient(135deg, #2a1a0e, #4a1818); }
.page-talisman .thumb:nth-child(3) { background: linear-gradient(135deg, #6a5530, #3d2e1a); }
.page-talisman .thumb:nth-child(4) { background: linear-gradient(135deg, #4a3920, #2a1f12); }

/* ----- Produkt-Info Spalte ----- */
.page-product .product-info {
  padding-top: 1rem;
}
/* Hinweis: Auf der Startseite hat .product-info eine andere Bedeutung
   (Flex-Row für die Featured-Karten) und ist mit .page-home gescopt. */

.product-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.product-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--brass);
}

.page-product .product-info h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.page-product .product-info h1 em {
  font-style: italic;
  color: var(--forest);
}
.page-talisman .product-info h1 em {
  color: var(--oxblood);
}

.product-subtitle {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.page-talisman .product-subtitle {
  margin-bottom: 0.5rem;
}

.edition-pill {
  display: inline-block;
  background: var(--ink);
  color: var(--brass-light);
  padding: 0.3rem 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2rem;
}

.product-lede {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.product-meta-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(26, 23, 20, 0.1);
  border-bottom: 1px solid rgba(26, 23, 20, 0.1);
}

.meta-pill {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.meta-pill strong {
  display: block;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  margin-bottom: 0.35rem;
}
.meta-pill span {
  color: var(--ink-soft);
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  font-style: italic;
}

/* ----- Konfigurator (Varianten / Farben) ----- */
.configurator {
  margin-bottom: 2rem;
}
.config-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Varianten-Auswahl (Arche Nova: Basis / Wasserwelten) */
.config-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.config-option {
  border: 1px solid rgba(26, 23, 20, 0.2);
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: all 0.25s;
  background: transparent;
  text-align: left;
  font-family: inherit;
  color: var(--ink);
}
.config-option:hover { border-color: var(--forest); }
.config-option.selected {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--cream);
}
.config-option-title {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.config-option-meta {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Farb-Auswahl (Talisman) */
.color-options {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.color-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  background: transparent;
  border: none;
  font-family: inherit;
  color: var(--ink);
  padding: 0.5rem;
  transition: opacity 0.2s;
}
.color-option:not(.selected) { opacity: 0.45; }
.color-option:hover { opacity: 0.8; }
.color-option.selected { opacity: 1; }
.color-swatch {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.color-option.selected .color-swatch { border-color: var(--oxblood); }
.color-swatch.natur { background: #ebe1c8; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1); }
.color-swatch.holz { background: #6e4a2e; }
.color-swatch.schwarz { background: #1a1714; }
.color-option-label {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* ----- Preis & Kauf ----- */
.price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.price {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--forest);
}
.page-talisman .price {
  color: var(--oxblood);
}
.price-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.buy-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--ink);
  height: 56px;
}
.qty-selector button {
  background: transparent;
  border: none;
  width: 40px;
  height: 100%;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--ink);
  transition: background 0.2s;
}
.qty-selector button:hover { background: rgba(26, 23, 20, 0.05); }
.qty-selector span {
  min-width: 32px;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
}

.btn-buy {
  flex: 1;
  background: var(--forest);
  color: var(--cream);
  border: none;
  padding: 0 2rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.btn-buy:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
}
.page-talisman .btn-buy {
  background: var(--oxblood);
}
.page-talisman .btn-buy:hover {
  background: var(--oxblood-deep);
}

.delivery-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 1rem;
}
.delivery-info::before {
  content: '●';
  color: var(--brass);
  font-size: 0.6rem;
}

/* ----- Edition-Note (Talisman) ----- */
.edition-note {
  background: var(--paper);
  border: 1px solid rgba(26, 23, 20, 0.1);
  border-left: 3px solid var(--oxblood);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}
.edition-note strong {
  color: var(--ink);
  font-style: normal;
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* ----- Features-Intro ----- */
.features-intro {
  padding: 7rem 0 5rem;
  text-align: center;
}
.features-intro h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}
.features-intro h2 em {
  font-style: italic;
  color: var(--forest);
}
.page-talisman .features-intro h2 em {
  color: var(--oxblood);
}
.features-intro p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ----- Feature-Sektionen ----- */
.feature {
  padding: 5rem 0;
}
.feature + .feature {
  border-top: 1px solid rgba(26, 23, 20, 0.08);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.feature.reverse .feature-grid {
  direction: rtl;
}
.feature.reverse .feature-grid > * {
  direction: ltr;
}

.feature-content .feature-number {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--brass);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.page-talisman .feature-content .feature-number {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.feature-content h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.feature-content h3 em {
  font-style: italic;
  color: var(--forest);
}
.page-talisman .feature-content h3 em {
  color: var(--oxblood);
}

.feature-content p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 480px;
}

.feature-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.feature-tag {
  border: 1px solid rgba(26, 23, 20, 0.2);
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  color: var(--ink-soft);
  border-radius: 999px;
  font-weight: 500;
}

.feature-image {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-image .placeholder-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  text-align: center;
  padding: 2rem;
}
.feature-image .placeholder-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.feature-image .placeholder-title {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.5rem;
  opacity: 0.85;
}

/* Arche-Nova: Feature-Bild Hintergründe */
.page-arche-nova .feature-image.f1 { background: linear-gradient(135deg, #2d4a3a, #1f3d2f); }
.page-arche-nova .feature-image.f2 { background: linear-gradient(135deg, #3d2e1a, #2a1f12); }
.page-arche-nova .feature-image.f3 {
  background:
    radial-gradient(circle at 50% 40%, rgba(212, 174, 106, 0.5) 0%, transparent 60%),
    linear-gradient(135deg, #6a5530, #3d2e1a);
}
.page-arche-nova .feature-image.f4 { background: linear-gradient(135deg, #1f3d2f, #142a20); }
.page-arche-nova .feature-image.f5 {
  background:
    radial-gradient(circle at 60% 30%, rgba(184, 146, 79, 0.4) 0%, transparent 55%),
    linear-gradient(135deg, #2d4a3a, #1f3d2f);
}

/* Talisman: Feature-Bild Hintergründe */
.page-talisman .feature-image.f1 { background: linear-gradient(135deg, #3d2415, #2a1a0e); }
.page-talisman .feature-image.f2 {
  background:
    radial-gradient(circle at 50% 40%, rgba(212, 174, 106, 0.3) 0%, transparent 55%),
    linear-gradient(135deg, #4a3920, #2a1f12);
}
.page-talisman .feature-image.f3 { background: linear-gradient(135deg, #4a1818, #2a1a0e); }

/* ----- Highlight-Sektion (Geländebox / Charakterboards) ----- */
.highlight-feature {
  background: var(--forest);
  color: var(--cream);
  padding: 6rem 0;
  margin: 5rem 0 0;
  position: relative;
}
.page-talisman .highlight-feature {
  background: var(--ink);
}

.highlight-feature::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  color: var(--forest);
  padding: 0.4rem 1.25rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
}

.highlight-badge {
  display: inline-block;
  background: var(--brass);
  color: var(--ink);
  padding: 0.4rem 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.highlight-feature .feature-content h3 {
  color: var(--cream);
}
.highlight-feature .feature-content h3 em {
  color: var(--brass-light);
}
.highlight-feature .feature-content p {
  color: rgba(244, 236, 216, 0.85);
  max-width: 520px;
}

.highlight-easter {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(244, 236, 216, 0.05);
  border-left: 2px solid var(--brass);
  font-style: italic;
  font-family: 'Fraunces', serif;
  color: var(--brass-light);
  font-size: 0.95rem;
}
.highlight-easter strong {
  color: var(--cream);
  font-style: normal;
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

/* Highlight-Bilder-Raster */
.highlight-images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  height: 100%;
}
.highlight-images > div {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Arche-Nova: Highlight-Bilder */
.page-arche-nova .highlight-images .img-1 {
  grid-row: 1 / 3;
  background:
    radial-gradient(circle at 50% 50%, rgba(212, 174, 106, 0.45) 0%, transparent 60%),
    linear-gradient(135deg, #2d4a3a, #142a20);
  aspect-ratio: auto;
}
.page-arche-nova .highlight-images .img-2 {
  background: linear-gradient(135deg, #6a5530, #3d2e1a);
  aspect-ratio: 1;
}
.page-arche-nova .highlight-images .img-3 {
  background:
    radial-gradient(circle at 30% 30%, rgba(184, 146, 79, 0.3) 0%, transparent 55%),
    linear-gradient(135deg, #1f3d2f, #142a20);
  aspect-ratio: 1;
}
/* Talisman: Highlight-Bilder */
.page-talisman .highlight-images .img-1 {
  grid-row: 1 / 3;
  background:
    radial-gradient(circle at 50% 50%, rgba(212, 174, 106, 0.4) 0%, transparent 60%),
    linear-gradient(135deg, #3d2415, #1f1208);
}
.page-talisman .highlight-images .img-2 {
  background: linear-gradient(135deg, #6a5530, #3d2e1a);
}
.page-talisman .highlight-images .img-3 {
  background:
    radial-gradient(circle at 30% 30%, rgba(184, 146, 79, 0.3) 0%, transparent 55%),
    linear-gradient(135deg, #4a1818, #2a1a0e);
}

/* Listen in Highlight-/Addon-Sektionen (Magnet, Addon-Features) */
.addon-feature-list,
.magnet-list {
  list-style: none;
  margin-top: 1.5rem;
}
.addon-feature-list li,
.magnet-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(244, 236, 216, 0.1);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.addon-feature-list li::before,
.magnet-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--brass-light);
  margin-top: 8px;
  flex-shrink: 0;
  transform: rotate(45deg);
}
.addon-feature-list strong,
.magnet-list strong {
  color: var(--cream);
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
}
.addon-feature-list span,
.magnet-list span {
  color: rgba(244, 236, 216, 0.7);
  font-size: 0.9rem;
}

/* ----- Precision-Sektion (Arche Nova) ----- */
.precision {
  padding: 6rem 0;
  text-align: center;
}
.precision-content {
  max-width: 700px;
  margin: 0 auto;
}
.precision h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.precision h2 em {
  font-style: italic;
  color: var(--forest);
}
.precision-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(26, 23, 20, 0.1);
}
.stat {
  text-align: center;
}
.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 0.5rem;
  font-style: italic;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ----- Addon-Sektion (Arche Nova) ----- */
.addon-section {
  background: var(--ink);
  color: var(--cream);
  padding: 6rem 0;
}
.addon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.addon-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass-light);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.addon-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--brass-light);
}
.addon-section h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.addon-section h2 em {
  font-style: italic;
  color: var(--brass-light);
}
.addon-section p {
  color: rgba(244, 236, 216, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 500px;
}
.addon-image {
  aspect-ratio: 4/5;
  background:
    radial-gradient(circle at 50% 30%, rgba(184, 146, 79, 0.35) 0%, transparent 55%),
    radial-gradient(circle at 30% 80%, rgba(50, 90, 110, 0.4) 0%, transparent 60%),
    linear-gradient(135deg, #1a3540, #122530);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}

/* ----- Icon-Showcase (Talisman) ----- */
.icons-showcase {
  padding: 6rem 0;
  background: var(--paper);
  border-top: 1px solid rgba(26, 23, 20, 0.08);
  border-bottom: 1px solid rgba(26, 23, 20, 0.08);
}
.icons-showcase-inner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.icons-showcase .feature-number {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--brass);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}
.icons-showcase h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.icons-showcase h3 em {
  font-style: italic;
  color: var(--oxblood);
}
.icons-showcase p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.icon-card {
  background: var(--cream);
  border: 1px solid rgba(26, 23, 20, 0.1);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.icon-card:hover {
  transform: translateY(-4px);
  border-color: var(--brass);
}
.icon-svg {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  color: var(--oxblood);
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.icon-card p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}
.icon-card .value-range {
  display: block;
  margin-top: 0.75rem;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--brass);
  font-size: 0.85rem;
}
.hauptbox-image {
  margin-top: 4rem;
  aspect-ratio: 16/9;
  background:
    radial-gradient(circle at 50% 50%, rgba(184, 146, 79, 0.3) 0%, transparent 60%),
    linear-gradient(135deg, #3d2415 0%, #2a1a0e 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hauptbox-image .placeholder-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  text-align: center;
}

/* ----- Included-Sektion ----- */
.included {
  padding: 6rem 0;
}
.included h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 3rem;
}
.included h2 em {
  font-style: italic;
  color: var(--forest);
}
.page-talisman .included h2 em {
  color: var(--oxblood);
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.included-item {
  padding: 1.5rem;
  background: var(--paper);
  border: 1px solid rgba(26, 23, 20, 0.1);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.included-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--brass);
  font-size: 1rem;
  font-weight: 500;
  min-width: 30px;
}
.included-item h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.included-item p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ================================================================
   FOOTER (auf allen Seiten)
   ================================================================ */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

footer .logo { color: var(--cream); font-size: 1.5rem; }
footer .logo span { color: var(--brass); }

.footer-tagline {
  color: rgba(244, 236, 216, 0.6);
  margin-top: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--brass-light);
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }

.footer-col a {
  color: rgba(244, 236, 216, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(244, 236, 216, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(244, 236, 216, 0.5);
}

/* ================================================================
   BILD-SLIDER (scroll-snap) & HOVER-SWAP
   ================================================================ */
.img-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--cream-deep);
}
.img-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.img-slider-track::-webkit-scrollbar { display: none; }
.img-slider-slide {
  flex: 0 0 100%;
  height: 100%;
  scroll-snap-align: start;
  position: relative;
}
.img-slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--cream-deep);
  display: block;
  cursor: zoom-in;
  transition: transform 0.4s ease;
}
.img-slider-slide img:hover {
  transform: scale(1.025);
}
.img-slider-dots {
  position: absolute;
  bottom: 0.85rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  z-index: 3;
  pointer-events: none;
}
.img-slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(244, 236, 216, 0.55);
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.2s, transform 0.2s;
}
.img-slider-dots button.is-active {
  background: var(--cream);
  transform: scale(1.3);
}
.img-slider-dots button:hover { background: var(--brass-light); }

/* Hover-Swap: vorderes Bild weicht bei Maus-drüber oder Tap zurück */
.img-hover-swap {
  position: relative;
  width: 100%;
  height: 100%;
}
.img-hover-swap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--cream-deep);
  transition: opacity 0.5s ease, transform 0.4s ease;
  cursor: zoom-in;
}
.img-hover-swap:hover img {
  transform: scale(1.025);
}
.img-hover-swap .img-back { opacity: 0; }
.img-hover-swap:hover .img-back,
.img-hover-swap.is-active .img-back { opacity: 1; }
.img-hover-swap:hover .img-front,
.img-hover-swap.is-active .img-front { opacity: 0; }
.img-hover-swap::after {
  content: 'Hover für Foto';
  position: absolute;
  bottom: 0.85rem;
  right: 0.85rem;
  background: rgba(26, 23, 20, 0.55);
  color: var(--cream);
  padding: 0.3rem 0.7rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.img-hover-swap:hover::after,
.img-hover-swap.is-active::after { opacity: 0; }

/* Produkt-Hero & Feature-Bilder: Hintergrund-Gradient ausblenden,
   sobald ein Slider oder Bild drin steckt */
.product-hero-image:has(.img-slider),
.product-hero-image:has(> img),
.feature-image:has(.img-slider),
.feature-image:has(> img),
.feature-image:has(.img-hover-swap),
.addon-image:has(.img-slider),
.addon-image:has(.img-hover-swap),
.highlight-images > div:has(> img) {
  background: var(--cream-deep);
}

/* Damit Slides die volle Fläche eines Feature-Image-Containers füllen */
.feature-image .img-slider,
.product-hero-image .img-slider,
.addon-image .img-slider {
  position: absolute;
  inset: 0;
}
.feature-image,
.product-hero-image,
.addon-image {
  position: relative;
}

/* Bild direkt in einem Highlight-Slot */
.highlight-images > div > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;          /* hier Cover gewollt: Slot ist Hero-Crop */
  cursor: zoom-in;
  transition: transform 0.4s ease;
}
.highlight-images > div > img:hover {
  transform: scale(1.025);
}

/* Bildunterschrift in Highlight-Slots */
.highlight-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(to top, rgba(20, 42, 32, 0.85), rgba(20, 42, 32, 0));
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  z-index: 2;
  pointer-events: none;
}
.highlight-caption strong {
  display: block;
  font-style: normal;
  font-family: 'Manrope', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

/* Thumbnails: jetzt mit echten Bildern (contain, damit nichts ungewollt
   beschnitten wird; aspect-ratio bleibt 1:1 vom Container) */
.thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.4s ease;
}
.thumb:hover img { transform: scale(1.05); }

/* Einzelne Feature-Bilder (.feature-image > img direkt) */
.feature-image > img,
.precision-image img,
.addon-image > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--cream-deep);
  display: block;
  cursor: zoom-in;
  transition: transform 0.4s ease;
}
.feature-image > img:hover,
.precision-image img:hover {
  transform: scale(1.025);
}

/* ----- Slider-Klickzonen links/rechts ----- */
.img-slider-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 22%;
  z-index: 4;
  background: transparent;
  border: none;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1.5rem;
  font-family: 'Fraunces', serif;
  font-style: italic;
}
.img-slider-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,23,20,0.35), rgba(26,23,20,0));
  pointer-events: none;
}
.img-slider-nav.is-next::before {
  background: linear-gradient(to left, rgba(26,23,20,0.35), rgba(26,23,20,0));
}
.img-slider-nav.is-prev { left: 0; }
.img-slider-nav.is-next { right: 0; }
.img-slider-nav span {
  position: relative;
  z-index: 1;
  background: rgba(244,236,216,0.92);
  color: var(--ink);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
}
.img-slider:hover .img-slider-nav { opacity: 1; }
.img-slider-nav:focus-visible {
  opacity: 1;
  outline: 2px solid var(--brass);
  outline-offset: -4px;
}
.img-slider-nav[disabled] {
  opacity: 0 !important;
  pointer-events: none;
}

/* ================================================================
   LIGHTBOX (Klick auf Bild → Vollbild-Overlay)
   ================================================================ */
.lightbox[hidden] { display: none !important; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 22, 18, 0.94);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(6px);
  animation: lightbox-fade 0.25s ease both;
}
@keyframes lightbox-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox-img {
  max-width: 96vw;
  max-height: 92vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}
.lightbox-btn {
  position: absolute;
  background: rgba(244,236,216,0.12);
  border: 1px solid rgba(244,236,216,0.25);
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(6px);
}
.lightbox-btn:hover {
  background: rgba(244,236,216,0.25);
  transform: scale(1.05);
}
.lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  border-radius: 50%;
}
.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 1.8rem;
  border-radius: 50%;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover {
  transform: translateY(-50%) scale(1.05);
}
.lightbox-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.9rem;
  text-align: center;
  max-width: 80vw;
  opacity: 0.85;
}
body.lightbox-open { overflow: hidden; }

@media (max-width: 600px) {
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-close { top: 0.75rem; right: 0.75rem; }
}

/* ================================================================
   PACKSEQUENZ-SEKTION (Video-Loop)
   ================================================================ */
.pack-sequence {
  padding: 6rem 0;
  text-align: center;
}
.pack-sequence-inner {
  max-width: 900px;
  margin: 0 auto;
}
.pack-sequence h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  margin: 1rem 0 1.5rem;
}
.pack-sequence h2 em {
  font-style: italic;
  color: var(--forest);
}
.page-talisman .pack-sequence h2 em { color: var(--oxblood); }
.pack-sequence p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.pack-video-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: var(--ink);
  border: 1px solid rgba(26, 23, 20, 0.1);
}
.pack-video-wrap video {
  width: 100%;
  height: auto;
  display: block;
}
.pack-video-caption {
  margin-top: 1.25rem;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* Precision-Sektion: optionales Makro-Bild zwischen Text und Stats */
.precision-image {
  margin: 3rem 0;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.precision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================================================================
   ANIMATIONEN
   ================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Startseite */
.page-home .hero > .container > .hero-grid > * { animation: fadeUp 0.8s ease both; }
.page-home .hero-content { animation-delay: 0.1s; }
.page-home .hero-visual { animation-delay: 0.3s; }

/* Sortimentseite */
.page-sortiment .page-hero > .container > * { animation: fadeUp 0.7s ease both; }
.page-sortiment .games-grid > * { animation: fadeUp 0.6s ease both; }
.page-sortiment .games-grid > *:nth-child(1) { animation-delay: 0.05s; }
.page-sortiment .games-grid > *:nth-child(2) { animation-delay: 0.1s; }
.page-sortiment .games-grid > *:nth-child(3) { animation-delay: 0.15s; }
.page-sortiment .games-grid > *:nth-child(4) { animation-delay: 0.2s; }
.page-sortiment .games-grid > *:nth-child(5) { animation-delay: 0.25s; }
.page-sortiment .games-grid > *:nth-child(6) { animation-delay: 0.3s; }
.page-sortiment .games-grid > *:nth-child(7) { animation-delay: 0.35s; }
.page-sortiment .games-grid > *:nth-child(8) { animation-delay: 0.4s; }
.page-sortiment .games-grid > *:nth-child(9) { animation-delay: 0.45s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1000px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .icons-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  nav ul { display: none; }
  .container { padding: 0 1.25rem; }

  /* Startseite */
  .hero-grid,
  .product-grid,
  .values-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual { max-width: 400px; margin: 0 auto; }
  .hero { padding: 4rem 0 3rem; }
  .products,
  .newsletter { padding: 4rem 0; }
  .values { padding: 4rem 0; }
  .section-header { margin-bottom: 2.5rem; }
  .product-image-inner h3 { font-size: 2rem; }

  /* Sortiment */
  .suggest-inner { grid-template-columns: 1fr; gap: 2rem; }
  .page-hero { padding: 3rem 0 2rem; }
  .game-image h3 { font-size: 1.75rem; }

  /* Produktseiten */
  .product-hero-grid,
  .feature-grid,
  .addon-grid,
  .highlight-images {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .feature.reverse .feature-grid { direction: ltr; }
  .highlight-images { grid-template-rows: auto; }
  .highlight-images .img-1 { grid-row: auto; aspect-ratio: 4/3; }
  .precision-stats { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 600px) {
  .games-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .filter-inner { flex-direction: column; align-items: flex-start; }
  .included-grid { grid-template-columns: 1fr; }
  .icons-grid { grid-template-columns: 1fr; }
  .config-options { grid-template-columns: 1fr; }
  .hero-image-content h3 { font-size: 2.25rem; }
}

/* ================================================================
   ITERATION 2 (Foto-Feinschliff)
   ================================================================ */

/* ----- Thumbnails: jetzt mit Label, Hover skaliert den ganzen Thumb ----- */
.thumb {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease;
  background: transparent;
  border: none;
  aspect-ratio: auto;            /* override alt: war 1 */
  position: relative;            /* override alt */
  align-items: stretch;
  justify-content: flex-start;
}
.thumb:hover {
  border-color: transparent;
  transform: scale(1.06);
  z-index: 5;
}
.thumb-img-wrap {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: var(--cream-deep);
  border: 1px solid rgba(26, 23, 20, 0.08);
  transition: border-color 0.25s, box-shadow 0.4s ease;
}
.thumb:hover .thumb-img-wrap {
  border-color: var(--brass);
  box-shadow: 0 14px 36px -10px rgba(20, 42, 32, 0.3);
}
.thumb-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}
/* Inner image transform zurücksetzen (Frame skaliert stattdessen) */
.thumb:hover .thumb-img-wrap img {
  transform: none;
}
.thumb-label {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding-top: 0.6rem;
  text-align: center;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.thumb:hover .thumb-label { color: var(--ink); }

/* ----- Hero-Slider: zweites Bild mit Cover (kein Letterbox) ----- */
.img-slider-slide img.cover {
  object-fit: cover;
  background: transparent;
}

/* ----- Feature 3 (Bank): Hover-Swap + kleines Detail-Foto nebeneinander ----- */
.feature-image-pair {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.5rem;
}
.feature-image-pair > .img-hover-swap {
  position: relative;
  width: 100%;
  height: 100%;
}
.feature-image-pair > .img-hover-swap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--cream-deep);
}
.feature-image-detail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform 0.4s ease;
}
.feature-image-detail:hover {
  transform: scale(1.03);
}

/* ----- Wasserwelten-Sektion: hellblau, dunkler Text ----- */
.page-arche-nova .addon-section {
  background: var(--water);
  color: var(--ink);
}
.page-arche-nova .addon-eyebrow {
  color: var(--water-deep);
}
.page-arche-nova .addon-eyebrow::before {
  background: var(--water-deep);
}
.page-arche-nova .addon-section h2 em {
  color: var(--water-deep);
}
.page-arche-nova .addon-section p {
  color: rgba(26, 23, 20, 0.72);
}

/* Wasserwelten: Hauptbild als Hover-Swap (statt Slider) */
.page-arche-nova .addon-image .img-hover-swap {
  position: absolute;
  inset: 0;
}

/* Wasserwelten: Magnet-Sub-Feature unter dem Hauptbereich */
.addon-subfeature {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 4rem;
  border-top: 1px solid rgba(26, 23, 20, 0.12);
}
.addon-subfeature-image {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.addon-subfeature-image .img-hover-swap {
  position: absolute;
  inset: 0;
}
.addon-subfeature-text h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--ink);
}
.addon-subfeature-text h3 em {
  font-style: italic;
  color: var(--water-deep);
}
.addon-subfeature-text > p {
  color: rgba(26, 23, 20, 0.72);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 480px;
}
.addon-subfeature-list {
  list-style: none;
  margin-top: 1rem;
}
.addon-subfeature-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(26, 23, 20, 0.12);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.addon-subfeature-list li:last-child {
  border-bottom: none;
}
.addon-subfeature-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--water-deep);
  margin-top: 8px;
  flex-shrink: 0;
  transform: rotate(45deg);
}
.addon-subfeature-list strong {
  color: var(--ink);
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
}
.addon-subfeature-list span {
  color: rgba(26, 23, 20, 0.65);
  font-size: 0.9rem;
}

/* ----- Was im Set: 3 Kästen ----- */
.included-groups {
  display: grid;
  gap: 1.5rem;
}
.included-group {
  background: var(--paper);
  border: 1px solid rgba(26, 23, 20, 0.1);
  padding: 2rem;
}
.included-group-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(26, 23, 20, 0.1);
}
.included-group-header h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 500;
}
.included-group-header h3 em {
  font-style: italic;
  color: var(--forest);
}
.included-group-header .count {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--brass);
  font-size: 0.95rem;
}
.included-group .included-grid {
  margin-bottom: 0;
}
.included-material {
  background: var(--ink);
  color: var(--cream);
  padding: 1.5rem 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.included-material .label {
  color: var(--brass-light);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  flex-shrink: 0;
  font-family: 'Manrope', sans-serif;
}
.included-material p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: rgba(244, 236, 216, 0.85);
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .addon-subfeature { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-image-pair { grid-template-columns: 1fr; grid-template-rows: 2fr 1fr; }
}

/* Wasserwelten-Hauptbild: Aspect für Landscape-Fotos sinnvoller */
.page-arche-nova .addon-image {
  aspect-ratio: 4/3;
}
.page-arche-nova .addon-image .img-hover-swap img {
  object-fit: cover;
  background: transparent;
}

/* ----- Einzelteile-Akkordeon (unauffällig, sekundär) ----- */
.parts-list {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(26, 23, 20, 0.08);
  padding-top: 0.5rem;
}
.parts-list summary {
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-soft);
  list-style: none;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.parts-list summary::-webkit-details-marker { display: none; }
.parts-list summary:hover {
  color: var(--forest);
}
.parts-list summary::after {
  content: '+';
  margin-left: auto;
  font-size: 1.25rem;
  color: var(--brass);
  font-family: 'Fraunces', serif;
  font-style: normal;
  line-height: 1;
}
.parts-list[open] summary::after {
  content: '−';
}
.parts-group {
  margin-top: 0.75rem;
}
.parts-group-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin-bottom: 0.4rem;
  margin-top: 0.85rem;
}
.parts-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.parts-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
  border-bottom: 1px dotted rgba(26, 23, 20, 0.1);
}
.parts-list li:last-child {
  border-bottom: none;
}
.parts-list li > span:last-child {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--forest);
  white-space: nowrap;
  margin-left: 1rem;
}
.page-talisman .parts-list li > span:last-child {
  color: var(--oxblood);
}

/* ================================================================
   ITERATION 3 - Thumb-Caption als Overlay + Rounded Corners
   ================================================================ */

/* Thumb-Label: jetzt als Overlay innerhalb des Wraps */
.thumb-img-wrap .thumb-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.6rem 0.75rem 0.65rem;
  background: linear-gradient(to top, rgba(20, 42, 32, 0.85), rgba(20, 42, 32, 0));
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  z-index: 2;
  pointer-events: none;
  text-align: center;
  /* aelteren Block ueberschreiben */
  padding-top: 1.6rem;
}
/* Hover beibehalten, aber Label bleibt cream */
.thumb:hover .thumb-img-wrap .thumb-label {
  color: var(--cream);
}

/* ----- Abgerundete Ecken auf allen Bild-Containern ----- */
.thumb-img-wrap,
.product-hero-image,
.feature-image,
.feature-image-detail,
.addon-image,
.addon-subfeature-image,
.highlight-images > div,
.precision-image,
.pack-video-wrap,
.lightbox-img {
  border-radius: 6px;
}
/* Slider innen ebenfalls runden (sonst sticht der innere Rand raus) */
.product-hero-image .img-slider,
.feature-image .img-slider,
.addon-image .img-slider,
.addon-subfeature-image .img-hover-swap,
.addon-image .img-hover-swap,
.feature-image .img-hover-swap {
  border-radius: 6px;
}
/* Bilder im Slider haben kein eigenes Radius (Container clipt) */

/* Pack-Sequenz-Video: Eckenrundung auf den Container, Video clip via overflow */
.pack-video-wrap {
  overflow: hidden;
}

/* Lightbox-Bild leicht runden fuer Konsistenz */
.lightbox-img {
  border-radius: 6px;
}
