/* ==========================================================
   Moody Fruits – styles.css
   Klar · minimalistisch · Apple-inspiriert
   ========================================================== */

:root {
  --color-bg: #ffffff;
  --color-bg-soft: #fbfaf7;
  --color-bg-alt: #f5f3ee;
  --color-ink: #1d1d1f;
  --color-ink-soft: #515154;
  --color-ink-mute: #86868b;
  --color-line: #e6e3dc;

  --color-accent: #ff7a59;        /* warmes Orange-Rot wie im Logo */
  --color-accent-soft: #ffe5dd;
  --color-secondary: #8b7bb8;     /* sanftes Lila wie im Logo */
  --color-yellow: #ffd166;
  --color-green: #8ec07c;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06), 0 12px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.10), 0 24px 64px rgba(0,0,0,0.12);

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
  --font-script: "Caveat", "Brush Script MT", cursive;

  --container: 1200px;
  --container-narrow: 800px;

  --header-h: 110px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
a:hover { opacity: .75; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1,h2,h3,h4 { font-family: var(--font-display); margin: 0; letter-spacing: -0.02em; line-height: 1.08; font-weight: 700; }

p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: var(--container-narrow); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(255,255,255,0);
  backdrop-filter: saturate(180%) blur(0px);
  -webkit-backdrop-filter: saturate(180%) blur(0px);
  transition: background .35s ease, backdrop-filter .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.header-inner {
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo { height: 96px; width: auto; object-fit: contain; }
.brand-tagline {
  font-family: var(--font-script);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-secondary);
  line-height: 1;
  margin-top: 2px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.brand-block { display: flex; flex-direction: column; justify-content: center; gap: 0; }

.nav-desktop { display: flex; gap: 28px; }
.nav-desktop a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-ink);
  opacity: .85;
}

.header-actions { display: flex; align-items: center; gap: 12px; }

.lang-switch {
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-ink);
  background: rgba(255,255,255,0.6);
  transition: background .2s ease, border-color .2s ease;
}
.lang-switch:hover { background: var(--color-bg-alt); }

/* Cart-Toggle im Header */
.cart-toggle {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  transition: background .2s ease, transform .15s ease;
}
.cart-toggle:hover { background: var(--color-bg-alt); }
.cart-toggle:active { transform: scale(0.96); }
.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav-toggle { display: none; width: 36px; height: 36px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--color-ink); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: absolute;
  top: var(--header-h); left: 0; right: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 14px;
  border-bottom: 1px solid var(--color-line);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 18px; font-weight: 600; padding: 8px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .25s ease, background .25s ease, color .25s ease, opacity .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-ink);
  color: #fff;
}
.btn-primary:hover { background: #000; transform: translateY(-1px); box-shadow: var(--shadow-md); opacity: 1; }
.btn-ghost {
  color: var(--color-ink);
  background: transparent;
  border: 1px solid var(--color-line);
}
.btn-ghost:hover { background: var(--color-bg-alt); opacity: 1; }

/* ---------- Sections ---------- */
.section { padding: 120px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.section-lead {
  margin-top: 20px;
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--color-ink-soft);
  line-height: 1.55;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,209,102,0.25), transparent 50%),
    radial-gradient(circle at 15% 80%, rgba(139,123,184,0.18), transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(255,122,89,0.10), transparent 60%),
    var(--color-bg);
}

.hero-content { z-index: 2; }
.hero-title {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}
.hero-title-line { display: block; }
.hero-title .accent {
  background: linear-gradient(120deg, var(--color-accent), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-sub {
  margin-top: 28px;
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--color-ink-soft);
  max-width: 520px;
  line-height: 1.5;
}

.hero-cta { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-logo {
  max-width: 100%;
  width: 520px;
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.12));
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 38px;
  border: 2px solid var(--color-ink-mute);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  opacity: .6;
}
.scroll-cue span {
  display: block;
  width: 3px;
  height: 8px;
  background: var(--color-ink-mute);
  border-radius: 2px;
  animation: scrollCue 1.5s ease-in-out infinite;
}
@keyframes scrollCue {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ---------- Story ---------- */
.section-story { background: var(--color-bg); }
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-points {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.story-points li {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-line);
  font-size: 17px;
  color: var(--color-ink-soft);
}
.story-points li:last-child { border-bottom: none; }
.story-points strong { color: var(--color-ink); margin-right: 6px; }

.story-visual {
  background: transparent;
  padding: 0;
  box-shadow: none;
}
.story-visual img { border-radius: 0; display: block; width: 100%; height: auto; }

/* ---------- Sets Übersicht ---------- */
.section-sets { background: var(--color-bg-soft); }
.sets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.set-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
  overflow: hidden;
}
.set-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(255,122,89,0.06));
  opacity: 0;
  transition: opacity .35s ease;
}
.set-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); opacity: 1; }
.set-card:hover::before { opacity: 1; }
.set-card-title { font-size: 28px; }
.set-card-fruits {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 4px;
  padding: 0;
}
.set-card-fruits img {
  flex: 1 1 33%;
  width: 33%;
  height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.12));
  transform: scale(var(--s, 1));
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.set-card:hover .set-card-fruits img {
  transform: scale(calc(var(--s, 1) * 1.05)) translateY(-3px);
}
.set-card:hover .set-card-fruits img:nth-child(2) { transition-delay: .04s; }
.set-card:hover .set-card-fruits img:nth-child(3) { transition-delay: .08s; }
.set-card-mood { margin-top: 4px; font-size: 16px; color: var(--color-ink-soft); flex: 1; }
.set-card-cta { margin-top: 16px; font-weight: 600; color: var(--color-accent); font-size: 15px; }

/* ---------- Detail-Sets ---------- */
.section-detail.alt { background: var(--color-bg-soft); }
.detail-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.detail-head .eyebrow { color: var(--color-secondary); }

.characters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.character {
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.character:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.section-detail.alt .character { background: var(--color-bg); }
.character-emoji { font-size: 64px; line-height: 1; margin-bottom: 16px; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.08)); }
.character-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,209,102,0.10), rgba(255,122,89,0.06));
  border-radius: var(--radius-md);
  overflow: hidden;
}
.character-image img {
  max-width: 78%;
  max-height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.18));
  transition: transform .5s cubic-bezier(.2,.8,.2,1), opacity .35s ease;
}
.character-image img.alt { position: absolute; opacity: 0; }
.character:hover .character-image img.primary { opacity: 0; transform: scale(0.96); }
.character:hover .character-image img.alt { opacity: 1; transform: scale(1.02); }
.character-name { font-size: 22px; font-weight: 700; }
.character-desc { margin-top: 10px; color: var(--color-ink-soft); font-size: 15px; line-height: 1.5; }
.character-specs {
  margin: 24px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--color-line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.character-specs > div { display: flex; flex-direction: column; gap: 2px; }
.character-specs dt { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-ink-mute); }
.character-specs dd { margin: 0; font-size: 15px; font-weight: 600; color: var(--color-ink); }

.detail-masse {
  margin-top: 64px;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.section-detail.alt .detail-masse { background: var(--color-bg); }
.detail-masse img { display: inline-block; max-height: 380px; width: auto; }

.detail-cta { margin-top: 48px; display: flex; justify-content: center; }

/* ---------- Zusammenfassungs-Banner (Bild6 ganz oben) ---------- */
.section-summary { background: var(--color-bg); padding: 88px 0 32px; }
.summary-banner {
  margin: 0 auto;
  max-width: 1080px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
}
.summary-banner img { display: block; width: 100%; height: auto; }
.summary-head { text-align: center; max-width: 720px; margin: 0 auto 32px; }

/* ---------- Set-Sektion: kompakt 2-Spalten ---------- */
.set-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}
.set-presentation {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: space-between;
}
.set-fruit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px 24px 22px;
  border-radius: var(--radius-md);
  background: var(--color-bg-soft);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.set-fruit-card:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.set-fruit-card-img {
  width: 100%;
  aspect-ratio: 17 / 10; /* festes Verhältnis -> Früchte überall gleich groß (Desktop wie Handy) */
  display: flex;
  align-items: center;
  justify-content: center;
}
.set-fruit-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: scale(var(--s, 1));
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.14));
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.set-fruit-card:hover .set-fruit-card-img img {
  transform: scale(calc(var(--s, 1) * 1.04));
}
.set-fruit-card-text {
  max-width: 360px;
}
.set-fruit-card-text strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.set-fruit-card-text p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-ink-soft);
  margin: 0;
}

@media (max-width: 560px) {
  .set-fruit-card { padding: 18px 18px 16px; }
  .set-fruit-card-text strong { font-size: 18px; }
  .set-fruit-card-text p { font-size: 14px; }
}
.set-fridge-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.set-fridge-stack .set-fridge-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
  transition: transform .35s ease, box-shadow .35s ease;
}
.set-fridge-stack .set-fridge-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.set-fridge-stack .set-fridge-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.set-fridge-stack .set-fridge-item:hover img { transform: scale(1.04); }

@media (max-width: 760px) {
  .set-layout { grid-template-columns: 1fr; gap: 20px; }
  .set-presentation { min-height: auto; padding: 16px; }
}

/* ---------- Maße-Sammelsektion ---------- */
.section-dimensions { background: var(--color-bg-soft); }
.dimensions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.dimensions-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.dimensions-card img {
  display: block;
  max-width: 100%;
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Schriftliche Maße-Tabelle */
.dimensions-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dim-set {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.dim-set-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 4px;
}
.dim-set h3 {
  font-size: 18px;
  margin-bottom: 18px;
}
.dim-fruit {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-line);
}
.dim-fruit:last-child { border-bottom: none; }
.dim-fruit-img {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dim-fruit-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  transform: scale(var(--s, 1));
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.10));
}
.dim-fruit-info { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.dim-fruit-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ink);
}
/* Beschriftete Höhe/Breite/Tiefe-Blöcke */
.dim-fruit-size {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 7px 16px;
}
.dim-chip { display: flex; flex-direction: column; gap: 2px; }
.dim-chip-lbl {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-ink-mute);
}
.dim-chip-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-ink);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.dim-unit { font-size: 11px; color: var(--color-ink-mute); align-self: flex-end; }
/* Halterungs-Bilder in der Maßtabelle – pro Set leicht skaliert für gleichmäßige Optik */
.dim-fruit-holder .dim-fruit-img img { transform: none; }
.dim-fruit-holder .dim-fruit-img img[src*="set1-halter"] { transform: scale(1.32); }
.dim-fruit-holder .dim-fruit-img img[src*="set2-halter"] { transform: scale(1.21); }
.dim-fruit-holder .dim-fruit-img img[src*="set3-halter"] { transform: scale(1.21); }

@media (max-width: 960px) {
  .dimensions-grid, .dimensions-table { grid-template-columns: 1fr; }
}

/* ---------- Material-Sektion ---------- */
.section-material {
  background: linear-gradient(180deg, #0a0a0c 0%, #1a1a1e 100%);
  color: #fff;
  overflow: hidden;
}
.section-material .eyebrow { color: var(--color-accent); }
.section-material .section-title { color: #fff; }
.section-material .section-lead { color: rgba(255,255,255,0.7); }
.material-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 32px;
}
.material-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transition: transform .6s ease;
}
.material-visual img { display: block; width: 100%; height: auto; }
.material-visual:hover { transform: translateY(-4px); }
.material-points { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px; }
.material-points li {
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: background .25s ease, border-color .25s ease;
}
.material-points li:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,122,89,0.3); }
.material-points h3 { font-size: 19px; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 10px; }
.material-points h3 .icon { font-size: 22px; }
.material-points p { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.55; }

/* ---------- Halterung-Sektion ---------- */
.section-holder { background: var(--color-bg-soft); }
.holder-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  margin-top: 24px;
}
.holder-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
}
.holder-visual img { display: block; width: 100%; height: auto; }
.holder-text h3 { font-size: 24px; margin-bottom: 12px; }
.holder-text p { color: var(--color-ink-soft); font-size: 17px; line-height: 1.55; }
.holder-text p + p { margin-top: 14px; }

/* ---------- Lifestyle-Sektion ---------- */
.section-lifestyle { background: var(--color-bg); }
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.lifestyle-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
  transition: transform .35s ease, box-shadow .35s ease;
  aspect-ratio: 1 / 1;
}
.lifestyle-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.lifestyle-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.lifestyle-item:hover img { transform: scale(1.05); }
.lifestyle-item.wide { grid-column: span 2; }

/* Responsive Updates */
@media (max-width: 960px) {
  .material-grid, .holder-grid { grid-template-columns: 1fr; gap: 32px; }
  .lifestyle-grid { grid-template-columns: repeat(2, 1fr); }
  .lifestyle-item.wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .lifestyle-grid { grid-template-columns: 1fr; }
  .lifestyle-item.wide { grid-column: auto; }
  .brand-tagline { display: none; }
}

/* ---------- Features ---------- */
.section-features { background: var(--color-ink); color: #fff; }
.section-features .eyebrow { color: var(--color-yellow); }
.section-features .section-title { color: #fff; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: transform .25s ease, background .25s ease;
}
.feature:hover { transform: translateY(-4px); background: rgba(255,255,255,0.09); }
.feature-icon { font-size: 36px; margin-bottom: 16px; }
.feature h3 { font-size: 20px; font-weight: 700; }
.feature p { margin-top: 8px; color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.5; }

.warning {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,209,102,0.10);
  border: 1px solid rgba(255,209,102,0.30);
  border-left: 5px solid #ffcc4d;
  border-radius: var(--radius-md);
  padding: 24px 28px;
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  line-height: 1.55;
}
.warning-icon { font-size: 24px; line-height: 1; flex-shrink: 0; }
.warning-sign {
  width: 150px;
  height: auto;
  flex-shrink: 0;
  border-radius: 12px;
  display: block;
}
.warning-text { min-width: 0; }
.warning-head {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffd166;
  margin-bottom: 6px;
}
.warning strong { color: #fff; }

/* ---------- Shop ---------- */
.section-shop { background: var(--color-bg); }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.shop-card {
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  border: 1px solid transparent;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.shop-card:hover { transform: translateY(-4px); border-color: var(--color-accent); box-shadow: var(--shadow-md); }
.shop-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  margin-bottom: 4px;
}
.shop-card-media img {
  max-width: 100%;
  max-height: 150px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,0.16));
}
/* Set 3 ist das schmalste Dreieck – ~10% hochskalieren für optisch gleiche Größe */
.shop-card-media img[src*="set3-halter"] { transform: scale(1.10); }
.shop-card-head { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.shop-card-num { font-size: 13px; font-weight: 700; letter-spacing: 0.16em; color: var(--color-accent); }
.shop-card-title { font-size: 28px; }
.shop-card-mood { color: var(--color-ink-soft); font-size: 15px; }
.shop-card-includes { color: var(--color-ink-mute); font-size: 13px; letter-spacing: 0.04em; }
.shop-card-price { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; margin-top: 4px; }
.shop-card .btn { margin-top: 4px; align-self: stretch; }
/* ---------- Premium Bundle-Karte ---------- */
.shop-card-bundle {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  text-align: left;
  padding: 48px 56px;
  border: 2px solid var(--color-accent);
  background:
    radial-gradient(130% 120% at 0% 0%, rgba(255,122,89,0.10), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--color-bg-soft) 100%);
  box-shadow: var(--shadow-lg);
}
.bundle-badge {
  position: absolute;
  top: 26px;
  right: -52px;
  transform: rotate(45deg);
  background: var(--color-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 60px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  z-index: 4;
}
/* Visual: gefächerte Halter-Gruppe */
.bundle-visual { display: flex; align-items: center; justify-content: center; }
.bundle-holders { display: flex; align-items: center; justify-content: center; width: 100%; }
.bundle-holders .bh {
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.22));
  transition: transform .4s ease;
}
.bundle-holders .bh-1 { width: 40%; margin-right: -7%; z-index: 1; transform: rotate(-7deg); }
.bundle-holders .bh-2 { width: 50%; z-index: 3; }
.bundle-holders .bh-3 { width: 46%; margin-left: -7%; z-index: 2; transform: rotate(7deg); }
.shop-card-bundle:hover .bh-1 { transform: rotate(-10deg) translateX(-5%); }
.shop-card-bundle:hover .bh-3 { transform: rotate(10deg) translateX(5%); }
/* Info-Spalte */
.bundle-info { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.bundle-eyebrow {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.shop-card-bundle .shop-card-title { font-size: 34px; line-height: 1.05; }
.shop-card-bundle .shop-card-mood { font-size: 16px; color: var(--color-ink-soft); max-width: 42ch; }
.bundle-list { list-style: none; padding: 0; margin: 6px 0 2px; display: flex; flex-direction: column; gap: 9px; }
.bundle-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--color-ink); }
.bundle-list li::before {
  content: "✓";
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--color-accent-soft); color: var(--color-accent);
  border-radius: 50%; font-size: 12px; font-weight: 800;
}
.bundle-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px 14px; margin-top: 8px; }
.bundle-price-old { font-size: 20px; color: var(--color-ink-mute); text-decoration: line-through; }
.bundle-price-now { font-size: 42px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.bundle-save {
  background: var(--color-accent-soft);
  color: var(--color-accent);
  font-weight: 700;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.shop-card-bundle .btn { align-self: stretch; margin-top: 14px; min-width: 0; }
.shop-note { text-align: center; margin-top: 32px; color: var(--color-ink-mute); font-size: 13px; }
.shop-safety {
  text-align: center;
  margin: 14px auto 0;
  max-width: 700px;
  color: #8a6d00;
  background: #fff7e0;
  border: 1px solid #ffe2a8;
  border-radius: 10px;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}
.cart-safety { font-size: 12px; color: var(--color-ink-soft); line-height: 1.45; margin-top: 2px; }

/* ---------- FAQ ---------- */
.section-faq { background: var(--color-bg-soft); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
  padding: 0 24px;
  transition: box-shadow .25s ease;
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-weight: 600;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: var(--color-ink-mute);
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0 20px; color: var(--color-ink-soft); font-size: 15px; line-height: 1.6; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-bg-alt); padding: 64px 0 32px; color: var(--color-ink-soft); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-line);
}
.footer-brand { max-width: 280px; }
.footer-logo { height: 160px; width: auto; margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: var(--color-ink-mute); line-height: 1.5; }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-ink); margin-bottom: 16px; }
.footer-col a { display: block; padding: 6px 0; font-size: 14px; color: var(--color-ink-soft); }
.footer-bottom { padding-top: 24px; font-size: 13px; color: var(--color-ink-mute); }

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(4px); }
.modal-content {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  width: min(440px, calc(100% - 32px));
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: modalIn .3s ease;
}
@keyframes modalIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close { position: absolute; top: 12px; right: 14px; width: 32px; height: 32px; font-size: 24px; color: var(--color-ink-mute); }
.modal-content h3 { font-size: 24px; }
.modal-content p { margin-top: 10px; color: var(--color-ink-soft); font-size: 15px; }
.modal-form { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.modal-form input {
  width: 100%;
  padding: 14px 16px;
  font: inherit;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  text-align: center;
  outline: none;
  transition: border-color .2s ease;
}
.modal-form input:focus { border-color: var(--color-accent); }
.modal-success { margin-top: 16px; color: var(--color-green); font-weight: 600; }

/* ---------- Cart Panel ---------- */
.cart-panel {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: none;
}
.cart-panel.open { display: block; }
.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
  animation: fadeIn .25s ease;
}
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 100%);
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,0.18);
  transform: translateX(100%);
  animation: slideIn .35s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes slideIn { to { transform: translateX(0) } }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--color-line);
}
.cart-header h3 { font-size: 20px; font-weight: 700; margin: 0; }
.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  font-size: 26px;
  color: var(--color-ink-mute);
  transition: background .2s ease;
}
.cart-close:hover { background: var(--color-bg-alt); color: var(--color-ink); }
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-empty {
  text-align: center;
  color: var(--color-ink-mute);
  padding: 60px 20px;
  font-size: 15px;
}
.cart-items { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  padding: 14px;
  background: var(--color-bg-soft);
  border-radius: var(--radius-md);
}
.cart-item-img {
  width: 72px;
  height: 72px;
  background: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cart-item-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cart-item-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cart-item-info strong { font-size: 15px; color: var(--color-ink); }
.cart-item-sub { font-size: 12px; color: var(--color-ink-mute); }
.cart-item-price { font-size: 14px; color: var(--color-ink); font-weight: 600; margin-top: 4px; }
.cart-item-actions { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 6px; }
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}
.qty-btn {
  width: 28px;
  height: 28px;
  font-size: 16px;
  color: var(--color-ink);
  transition: background .2s ease;
}
.qty-btn:hover { background: var(--color-bg-alt); }
.qty-value { min-width: 26px; text-align: center; font-size: 14px; font-weight: 600; }
.cart-item-remove {
  font-size: 18px;
  color: var(--color-ink-mute);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.cart-item-remove:hover { background: var(--color-bg-alt); color: var(--color-ink); }
.cart-footer {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--color-line);
  background: #fff;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
  font-size: 15px;
  color: var(--color-ink-soft);
}
.cart-total-row strong { font-size: 22px; color: var(--color-ink); font-weight: 700; letter-spacing: -0.01em; }
.cart-note { font-size: 12px; color: var(--color-ink-mute); margin-bottom: 14px; }
.cart-checkout { width: 100%; padding: 16px; font-size: 16px; }
.cart-checkout:disabled { opacity: 0.6; cursor: not-allowed; }

/* Checkout-Return-Banner */
.checkout-banner {
  position: fixed;
  top: calc(var(--header-h) + 20px);
  left: 50%;
  transform: translate(-50%, -120%);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  z-index: 300;
  max-width: 90%;
  text-align: center;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.checkout-banner.show { transform: translate(-50%, 0); }
.checkout-banner-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.checkout-banner-cancel { background: #fff3cd; color: #856404; border: 1px solid #ffeaa7; }

/* ---------- Reveal Animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .section { padding: 88px 0; }
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--header-h) + 24px);
    padding-bottom: 60px;
    gap: 32px;
    min-height: auto;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-logo { width: 360px; }
  .scroll-cue { display: none; }

  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .story-visual { padding: 0; }

  .sets-grid, .characters, .shop-grid, .features-grid { grid-template-columns: 1fr; }

  .shop-card-bundle { grid-template-columns: 1fr; gap: 28px; text-align: center; padding: 36px 28px; }
  .bundle-info { align-items: center; }
  .bundle-list { align-items: flex-start; }
  .shop-card-bundle .shop-card-mood { max-width: none; }
  .shop-card-bundle .shop-card-title { font-size: 30px; }

  .warning { flex-direction: column; align-items: center; text-align: center; }
  .warning-sign { width: 200px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .container, .header-inner, .hero { padding-left: 20px; padding-right: 20px; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }
  .hero-title { font-size: 44px; }
  .hero-cta .btn { width: 100%; }
  .character-specs { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .character-specs dd { font-size: 13px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .set-card, .shop-card { padding: 32px 24px; }
}
