@import url("https://fonts.googleapis.com/css2?family=Syne:wght@700;800&display=swap");

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

:root {
  /* Pastel retro palette */
  --pastel-lavender: #E4D4F5;
  --pastel-peach: #FFE8DC;
  --pastel-mint: #C8EDE8;
  --pastel-butter: #FFF4D6;
  --pastel-rose: #F8D4E4;
  --pastel-sky: #D4E8F8;
  --pastel-cream: #FAF7F2;

  --accent-teal: #6BBFB5;
  --accent-coral: #E8898A;
  --accent-lilac: #B89FD4;
  --accent-gold: #D4A853;
  --accent-plum: #6B5B7A;

  /* legacy aliases */
  --90-teal: var(--accent-teal);
  --90-cyan: #8ECAE6;
  --90-magenta: var(--accent-coral);
  --90-purple: var(--accent-lilac);
  --90-yellow: var(--accent-gold);
  --90-lime: #A8D5A2;
  --90-navy: #2D2640;
  --90-indigo: #4A3F5C;

  --cream: var(--pastel-cream);
  --peach: var(--pastel-peach);
  --amber: var(--pastel-butter);
  --rose: var(--pastel-rose);
  --sage: var(--pastel-mint);
  --fuji-deep: var(--accent-coral);
  --lumix-deep: var(--accent-teal);
  --ink: #2D2640;
  --ink-soft: rgba(45, 38, 64, 0.78);
  --ink-muted: rgba(45, 38, 64, 0.52);
  --link: var(--accent-teal);

  --glass-bg: rgba(255, 255, 255, 0.42);
  --glass-bg-strong: rgba(255, 255, 255, 0.62);
  --glass-bg-light: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(255, 255, 255, 0.72);
  --glass-border-light: rgba(255, 255, 255, 0.88);
  --glass-blur: blur(28px) saturate(180%);
  --glass-blur-heavy: blur(40px) saturate(200%);
  --nav-h: 96px;
  --max: 960px;
  --radius-lg: 22px;
  --radius-pill: 980px;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", system-ui, sans-serif;
  background: var(--pastel-lavender);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.ambient {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
  background:
    radial-gradient(ellipse 75% 55% at 10% 8%, rgba(228, 212, 245, 0.9) 0%, transparent 55%),
    radial-gradient(ellipse 65% 50% at 90% 15%, rgba(255, 232, 220, 0.85) 0%, transparent 50%),
    radial-gradient(ellipse 60% 65% at 50% 95%, rgba(200, 237, 232, 0.7) 0%, transparent 55%),
    linear-gradient(165deg, #EDE4F8 0%, #F8EDE8 42%, #E8F4F2 100%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.55; }
.orb-1 { width: 45vw; height: 45vw; top: -8%; left: -8%; background: var(--pastel-rose); opacity: 0.45; }
.orb-2 { width: 38vw; height: 38vw; top: 50%; right: -10%; background: var(--pastel-mint); opacity: 0.4; }
.orb-3 { width: 32vw; height: 32vw; bottom: -5%; left: 28%; background: var(--pastel-sky); opacity: 0.38; }
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px;
  mix-blend-mode: overlay;
}

/* Bokeh layer — homepage & global depth */
.bokeh {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.bokeh__dot {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: bokeh-drift 18s ease-in-out infinite alternate;
}
.bokeh__dot--1 { width: 180px; height: 180px; top: 12%; left: 8%; background: rgba(232, 212, 245, 0.9); animation-delay: 0s; }
.bokeh__dot--2 { width: 120px; height: 120px; top: 28%; right: 12%; background: rgba(255, 228, 220, 0.85); animation-delay: -3s; filter: blur(32px); }
.bokeh__dot--3 { width: 220px; height: 220px; bottom: 18%; left: 22%; background: rgba(200, 237, 232, 0.75); animation-delay: -6s; }
.bokeh__dot--4 { width: 90px; height: 90px; top: 55%; left: 55%; background: rgba(255, 244, 214, 0.8); animation-delay: -2s; filter: blur(28px); }
.bokeh__dot--5 { width: 140px; height: 140px; bottom: 8%; right: 18%; background: rgba(248, 212, 228, 0.7); animation-delay: -8s; }
.bokeh__dot--6 { width: 70px; height: 70px; top: 8%; right: 35%; background: rgba(212, 232, 248, 0.85); animation-delay: -4s; filter: blur(22px); }
.bokeh__dot--7 { width: 160px; height: 160px; top: 42%; left: 3%; background: rgba(184, 159, 212, 0.5); animation-delay: -10s; filter: blur(48px); }
.bokeh__dot--8 { width: 100px; height: 100px; bottom: 35%; right: 8%; background: rgba(107, 191, 181, 0.45); animation-delay: -5s; filter: blur(36px); }
@keyframes bokeh-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(12px, -18px) scale(1.06); }
}

.page { position: relative; z-index: 2; padding-top: var(--nav-h); min-height: 100vh; }

/* ── Apple Glass Nav ── */
.global-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 20px 0;
  pointer-events: none;
}
.global-nav-pill {
  pointer-events: auto;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: var(--max);
  margin: 0 auto;
  min-height: 68px;
  height: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 20px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(255, 255, 255, 0.42) 48%,
    rgba(236, 220, 255, 0.38) 100%
  );
  backdrop-filter: blur(44px) saturate(210%);
  -webkit-backdrop-filter: blur(44px) saturate(210%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-top-color: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(255, 255, 255, 0.38);
  border-radius: var(--radius-pill);
  box-shadow:
    0 2px 8px rgba(45, 38, 64, 0.04),
    0 12px 40px rgba(107, 91, 122, 0.14),
    0 24px 64px rgba(45, 38, 64, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(255, 255, 255, 0.28);
}
.global-nav-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.62) 0%,
    rgba(255, 255, 255, 0.08) 38%,
    transparent 62%
  );
  pointer-events: none;
  z-index: 0;
}
.global-nav-pill::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.42);
  pointer-events: none;
  z-index: 0;
}
.nav-logo {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  padding: 2px 4px 2px 0;
  font-family: "Syne", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  text-decoration: none;
  transition: filter 0.35s ease, transform 0.25s ease;
  filter:
    drop-shadow(0 1px 0 rgba(45, 38, 64, 0.22))
    drop-shadow(0 0 12px rgba(26, 158, 140, 0.45))
    drop-shadow(0 0 20px rgba(139, 95, 191, 0.35));
}
.nav-logo:hover {
  transform: scale(1.02);
  filter:
    drop-shadow(0 1px 0 rgba(45, 38, 64, 0.28))
    drop-shadow(0 0 16px rgba(26, 158, 140, 0.65))
    drop-shadow(0 0 28px rgba(139, 95, 191, 0.55));
}
.nav-logo__look,
.nav-logo__craft {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  transition: background-position 0.45s ease;
}
.nav-logo__look {
  background-image: linear-gradient(
    135deg,
    #0f6b60 0%,
    #14776a 35%,
    #1a9e8c 55%,
    #22c4b0 78%,
    #14776a 100%
  );
}
.nav-logo__craft {
  background-image: linear-gradient(
    135deg,
    #4a2f75 0%,
    #6b4c9a 35%,
    #8b5fbf 58%,
    #c45c7a 82%,
    #6b4c9a 100%
  );
}
.nav-logo:hover .nav-logo__look,
.nav-logo:hover .nav-logo__craft {
  background-position: 100% center;
}
/* Fallback wenn nav.js noch nicht geladen */
.nav-logo:not(.nav-logo--glass) {
  color: var(--ink);
  background: linear-gradient(
    120deg,
    #14776a 0%,
    #2d2640 40%,
    #6b4c9a 72%,
    #c45c7a 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links {
  position: relative;
  z-index: 1;
  display: flex; list-style: none; flex: 1;
  justify-content: center; gap: 6px;
  align-items: flex-end;
}
.nav-link {
  position: relative;
  z-index: 1;
  font-size: 12.5px; font-weight: 500; color: var(--ink-muted);
  text-decoration: none; padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.nav-link--film {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 6px 10px 5px;
  min-width: 62px;
}
.nav-link__label {
  line-height: 1.1;
  white-space: nowrap;
}
.nav-film-strip {
  display: flex;
  flex-direction: column;
  width: 48px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(45, 38, 64, 0.2),
    inset 0 0 0 1px rgba(0, 0, 0, 0.35);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.nav-film-strip__perf {
  height: 4px;
  flex-shrink: 0;
  background: #141414;
  mask-image: repeating-linear-gradient(90deg, #000 0 3px, transparent 3px 6px);
  -webkit-mask-image: repeating-linear-gradient(90deg, #000 0 3px, transparent 3px 6px);
}
.nav-film-strip__frame {
  height: 16px;
  background: #222 center / cover no-repeat;
  filter: saturate(1.05) contrast(1.04);
}
.nav-film--lumix .nav-film-strip__frame { background-color: #3d8a82; }
.nav-film--fuji .nav-film-strip__frame { background-color: #c97a7b; }
.nav-film--lr .nav-film-strip__frame { background-color: #a88840; }
.nav-film--icons .nav-film-strip__frame {
  background-color: #7eb8d4;
  background-size: contain;
  background-repeat: no-repeat;
  filter: none;
}
.nav-link:hover .nav-film-strip {
  transform: translateY(-1px);
  box-shadow:
    0 4px 12px rgba(45, 38, 64, 0.22),
    inset 0 0 0 1px rgba(0, 0, 0, 0.35);
}
.nav-link.active .nav-film-strip {
  box-shadow:
    0 3px 10px rgba(45, 38, 64, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25),
    0 0 0 1px rgba(107, 191, 181, 0.45);
}
.nav-link.active.nav-link--film {
  padding-bottom: 4px;
}
.nav-link:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 2px 10px rgba(45, 38, 64, 0.06);
}
.nav-link.active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(190%);
  -webkit-backdrop-filter: blur(20px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(255, 255, 255, 0.35),
    0 4px 14px rgba(45, 38, 64, 0.08);
  font-weight: 600;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: var(--glass-blur-heavy);
  -webkit-backdrop-filter: var(--glass-blur-heavy);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-lg);
  box-shadow:
    0 16px 48px rgba(45, 38, 64, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

/* Glass button base */
.glass-btn,
.buy-btn,
.compare-tabs button {
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(24px) saturate(190%);
  -webkit-backdrop-filter: blur(24px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(255, 255, 255, 0.25),
    0 8px 24px rgba(45, 38, 64, 0.1);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.glass-btn:hover,
.buy-btn:hover,
.compare-tabs button:hover {
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 12px 28px rgba(45, 38, 64, 0.14);
}

.text-link {
  font-size: 15px; font-weight: 500; color: var(--90-teal); text-decoration: none;
}
.text-link:hover { color: var(--90-cyan); }
.text-link::after { content: " ›"; }

.hero {
  text-align: center;
  padding: 48px 22px 28px;
  max-width: var(--max);
  margin: 0 auto;
}
.hero--wide { padding-bottom: 20px; }
.hero h1 {
  font-size: clamp(40px, 7vw, 62px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.05;
  background: linear-gradient(105deg, var(--accent-teal) 0%, var(--ink) 40%, var(--accent-lilac) 75%, var(--accent-coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  margin-top: 14px;
  font-size: clamp(15px, 2vw, 18px);
  color: var(--ink-muted); line-height: 1.5;
  letter-spacing: 0.01em;
}

.section { max-width: var(--max); margin: 0 auto; padding: 0 22px 56px; }

/* ── Homepage hero showcase — breit, zweispaltig ── */
.hero-showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  max-width: var(--max);
  width: calc(100% - 44px);
  margin: 0 auto 40px;
  padding: 28px 28px 32px;
}
.hero-showcase__visual {
  position: relative;
  min-width: 0;
}
.hero-showcase__film-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 6;
  filter: drop-shadow(0 8px 20px rgba(45, 38, 64, 0.22));
  transform: rotate(-6deg);
  pointer-events: none;
}
.hero-showcase__film-badge .film-box {
  width: 88px;
}
.hero-showcase__film-badge .film-box__iso {
  font-size: 24px;
}
.hero-showcase__compare {
  max-width: none;
  margin: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(45, 38, 64, 0.12);
}
.hero-showcase__compare .compare-container {
  aspect-ratio: 4 / 3;
  width: 100%;
  min-height: 280px;
  max-height: 420px;
}
.hero-showcase__panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 8px 0;
}
.hero-showcase__tag {
  position: static;
  margin-bottom: 12px;
}
.hero-showcase__title-link {
  color: inherit;
  text-decoration: none;
}
.hero-showcase__title-link:hover { opacity: 0.85; }
.hero-showcase__title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero-showcase__spec {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.hero-showcase__type {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-teal);
  margin-bottom: 4px;
}
.hero-showcase__tabs {
  margin-top: 20px;
  justify-content: flex-start;
}
.hero-showcase__panel .compare-caption {
  text-align: left;
  margin-top: 12px;
}
.hero-showcase__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(45, 38, 64, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-showcase__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(45, 38, 64, 0.12);
}

/* legacy film-hero-card (falls noch referenziert) */
.film-hero-card {
  max-width: 520px;
  margin: 0 auto 32px;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(45, 38, 64, 0.07);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(45, 38, 64, 0.1);
}
.film-hero-card__scene {
  min-height: 200px;
  margin-bottom: 0;
}
.film-hero-card__roll {
  flex: 1;
  min-width: 0;
}
.film-hero-card__strip {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  border: 2px solid #1a1a1a;
  border-left: none;
  border-radius: 0 3px 3px 0;
  box-shadow: 3px 5px 14px rgba(45, 38, 64, 0.15);
}
.film-hero-card__strip .film-roll__perfs {
  height: 9px;
  background: #111;
  flex-shrink: 0;
}
.film-hero-card__compare {
  flex: 1;
  max-width: none;
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}
.film-hero-card .compare-container {
  aspect-ratio: 4/5;
  width: 100%;
  max-height: 300px;
  min-height: 200px;
}
.film-hero-card .film-box {
  width: 96px;
  flex-shrink: 0;
}
.film-hero-card .film-box__iso {
  font-size: 26px;
}
.film-hero-card .film-roll__canister--sm {
  width: 46px;
  height: 46px;
  margin: 0 -5px;
  z-index: 4;
}
.film-hero-card .film-roll__canister--sm .film-roll__iso {
  font-size: 10px;
}
.film-hero-card__body {
  padding: 12px 6px 4px;
  border-top: 1px solid rgba(45, 38, 64, 0.06);
  margin-top: 12px;
}
.film-hero-card__type {
  font-size: 12px !important;
  color: var(--accent-teal) !important;
  font-weight: 600;
}
.film-hero-card .compare-tabs {
  margin-top: 14px;
}
.film-hero-card .compare-caption {
  margin-top: 10px;
  margin-bottom: 0;
}
.film-hero-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-teal);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.film-hero-card__cta:hover { opacity: 0.75; }
.film-hero-card__title-link {
  color: inherit;
  text-decoration: none;
}
.film-hero-card__title-link:hover { opacity: 0.85; }

.compare-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 20px 56px rgba(45, 38, 64, 0.14);
  max-width: 420px;
  margin: 0 auto;
}
.compare-container {
  position: relative; aspect-ratio: 4/5;
  cursor: col-resize; user-select: none; background: #1a1614;
}
.compare-before, .compare-after { position: absolute; inset: 0; overflow: hidden; }
.compare-after { width: 50%; z-index: 2; }
.compare-before img, .compare-after-inner {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none;
}
.compare-after-inner { width: 200%; max-width: none; }
.compare-handle {
  position: absolute; top: 0; bottom: 0; width: 1px; left: 50%;
  transform: translateX(-50%); background: #fff; z-index: 10;
}
.compare-handle::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-light);
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}
.compare-labels {
  position: absolute; inset: 0; z-index: 5; pointer-events: none;
  display: flex; justify-content: space-between; align-items: flex-end;
  padding: 14px 16px;
}
.compare-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95);
}
.compare-label--after {
  background: rgba(200, 237, 232, 0.75);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.9);
}
.compare-tabs button {
  font: inherit; font-size: 12px; font-weight: 500;
  padding: 8px 16px; border-radius: var(--radius-pill);
  color: var(--ink-soft); cursor: pointer;
}
.compare-tabs button:hover { color: var(--ink); }
.compare-tabs button.active {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 4px 16px rgba(45, 38, 64, 0.1);
}
.compare-tabs {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  margin-top: 16px;
}
.compare-caption { text-align: center; font-size: 13px; color: var(--ink-muted); margin-top: 12px; }
.compare-caption strong { color: var(--accent-teal); font-weight: 600; }

.film-shop-header {
  text-align: center;
  margin-bottom: 28px;
}

.product-list { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; }
.product-row {
  text-align: center;
  padding: 36px 24px 32px;
}
.product-row.glass-panel { padding: 36px 24px 32px; }
.product-row .tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 10px;
}
.product-row .tag.lumix { color: var(--90-teal); }
.product-row .tag.fuji { color: var(--90-magenta); }
.product-row .tag.lr { color: var(--90-yellow); }
.product-row .tag.icon { color: var(--90-cyan); }
.product-row h2 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.1;
  margin-bottom: 6px;
}
.product-row .sub { font-size: 16px; color: var(--ink-soft); margin-bottom: 4px; }
.product-row .price {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px; color: var(--accent-gold); margin-bottom: 16px;
}
.product-row .links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 8px; }
.product-row .roll-shop--mini {
  max-width: 100%;
  width: 100%;
  margin: 20px auto 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.product-row .film-product--mini {
  text-align: left;
}
.product-row .thumb {
  max-width: 640px; margin: 24px auto 0; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
}
.product-row .thumb img { width: 100%; display: block; aspect-ratio: 4/5; object-fit: cover; }

footer {
  border-top: 1px solid var(--glass-border);
  padding: 28px 22px 40px;
  max-width: var(--max); margin: 0 auto;
  font-size: 12px; color: var(--ink-muted);
  text-align: center; line-height: 1.7;
}
footer a { color: var(--90-teal); text-decoration: none; }
footer a:hover { color: var(--90-cyan); }

.legal-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 32px 22px 48px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.legal-page__crumb { margin-bottom: 24px; font-size: 13px; }
.legal-page__crumb a { color: var(--90-teal); text-decoration: none; }
.legal-page__crumb a:hover { color: var(--90-cyan); }
.legal-page__note {
  padding: 14px 16px;
  margin-bottom: 28px;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  background: var(--glass-bg);
  font-size: 13px;
  color: var(--ink-muted);
}
.legal-page h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 12px;
  color: var(--ink);
}
.legal-page h2 {
  font-size: 1rem;
  margin: 28px 0 10px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.legal-page p { margin: 0 0 12px; font-size: 14px; }
.legal-page ul { margin: 0 0 12px 1.2em; font-size: 14px; }
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--90-teal); }
.legal-page a:hover { color: var(--90-cyan); }
.legal-page em { color: var(--ink-muted); font-size: 13px; }
.legal-page__form {
  padding: 18px 20px;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  background: var(--glass-bg);
  font-size: 14px;
  line-height: 1.8;
}

.sub-hero {
  text-align: center;
  padding: 40px 22px 32px;
  max-width: 600px;
  margin: 0 auto;
}
.sub-hero .back {
  display: inline-block; font-size: 12px; color: var(--ink-muted);
  text-decoration: none; margin-bottom: 18px;
  padding: 6px 14px; border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}
.sub-hero .back:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}
.sub-hero .tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 10px;
}
.sub-hero .tag.lumix { color: var(--90-teal); }
.sub-hero .tag.fuji { color: var(--90-magenta); }
.sub-hero .tag.lr { color: var(--90-yellow); }
.sub-hero .tag.icon { color: var(--90-cyan); }
.sub-hero h1 {
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.08;
  background: linear-gradient(100deg, var(--ink) 20%, var(--accent-teal) 55%, var(--accent-coral) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sub-hero .lead {
  margin-top: 12px; font-size: 17px; color: var(--ink-soft); line-height: 1.5;
}

/* ── Rollei-style collection hero (Filme & Entwickler) ── */
.collection-hero {
  position: relative;
  margin: 0 16px 28px;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  min-height: clamp(280px, 42vw, 380px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #141210 0%, #1e1c18 40%, #252219 100%);
  color: #fff;
  box-shadow: 0 24px 64px rgba(45, 38, 64, 0.18);
}
.collection-hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(14, 12, 10, 0.97) 0%, rgba(14, 12, 10, 0.82) 38%, rgba(14, 12, 10, 0.2) 68%, transparent 100%),
    linear-gradient(180deg, rgba(14, 12, 10, 0.35) 0%, transparent 40%, rgba(14, 12, 10, 0.5) 100%);
  pointer-events: none;
}
.collection-hero__content {
  position: relative;
  z-index: 3;
  padding: clamp(36px, 6vw, 56px) clamp(24px, 5vw, 48px);
  max-width: 520px;
}
.collection-hero__crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}
.collection-hero__crumb a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s;
}
.collection-hero__crumb a:hover { color: #fff; }
.collection-hero__crumb svg {
  width: 14px; height: 14px;
  opacity: 0.55;
  flex-shrink: 0;
}
.collection-hero__crumb span[aria-hidden="true"] { opacity: 0.4; }
.collection-hero h1 {
  font-size: clamp(32px, 5.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 16px;
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
}
.collection-hero__intro {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 420px;
}
.collection-hero__tag {
  display: inline-block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.collection-hero__tag.lumix { color: var(--pastel-mint); border-color: rgba(200, 237, 232, 0.35); }
.collection-hero__tag.fuji { color: var(--pastel-rose); border-color: rgba(248, 212, 228, 0.35); }
.collection-hero__tag.lr { color: var(--pastel-butter); border-color: rgba(255, 244, 214, 0.35); }

.collection-hero__film {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-film-strip {
  position: absolute;
  right: -8%;
  top: 50%;
  width: min(720px, 85vw);
  transform: translateY(-42%) rotate(-11deg) perspective(900px) rotateY(-8deg);
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.55));
}
.hero-film-strip__edge {
  height: 14px;
  background: #0a0a0a;
  mask-image: repeating-linear-gradient(90deg, #000 0 7px, transparent 7px 14px);
  -webkit-mask-image: repeating-linear-gradient(90deg, #000 0 7px, transparent 7px 14px);
}
.hero-film-strip__edge--top { border-bottom: 1px solid #222; }
.hero-film-strip__edge--bottom { border-top: 1px solid #222; }
.hero-film-strip__body {
  display: flex;
  background: #0c0c0c;
  border-left: 3px solid #1a1a1a;
  border-right: 3px solid #1a1a1a;
  position: relative;
}
.hero-film-strip__body::before {
  content: "KODAK · PORTRA · 400";
  position: absolute;
  top: 4px;
  left: 12px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
  color: rgba(255, 200, 80, 0.75);
  z-index: 2;
  text-transform: uppercase;
}
.hero-film-strip__frames {
  display: flex;
  flex: 1;
}
.hero-film-strip__frame {
  flex: 1;
  min-width: 0;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-left: 2px solid #111;
  border-right: 2px solid #111;
  position: relative;
}
.hero-film-strip__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(0.25) saturate(1.15) hue-rotate(-15deg) contrast(1.05);
}
.hero-film-strip__frame::after {
  content: attr(data-frame);
  position: absolute;
  bottom: 4px;
  right: 6px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 210, 80, 0.85);
  letter-spacing: 0.06em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}
.hero-film-strip--warm .hero-film-strip__body::before { content: "FUJIFILM · SUPERIA · 400"; color: rgba(255, 180, 120, 0.8); }
.hero-film-strip--lr .hero-film-strip__body::before { content: "ILFORD · HP5 · PLUS"; color: rgba(180, 200, 255, 0.75); }

@media (max-width: 768px) {
  .collection-hero { min-height: 320px; }
  .hero-film-strip {
    right: -25%;
    width: 120vw;
    opacity: 0.55;
    transform: translateY(-38%) rotate(-14deg);
  }
  .collection-hero__content { max-width: 100%; }
}

.story {
  max-width: 520px; margin: 0 auto 40px; padding: 16px 22px;
  font-size: 15px; line-height: 1.65; color: var(--ink-soft);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}
.story p + p { margin-top: 1em; }

.icon-section { max-width: 900px; margin: 0 auto 56px; padding: 0 22px; }
.icon-section h2 {
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-muted);
  margin-bottom: 8px; text-align: center;
}
.icon-section__lead {
  font-size: 14px; color: var(--ink-muted); margin: 0 0 20px;
  text-align: center; line-height: 1.5;
}
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 16px;
}
.icon-grid figure {
  text-align: center;
}
.icon-grid img {
  width: 80px; height: 80px; object-fit: contain;
  margin: 0 auto 8px; display: block;
  filter: drop-shadow(0 4px 12px rgba(44,36,32,0.08));
}
.icon-grid figcaption {
  font-size: 11px; color: var(--ink-muted);
  line-height: 1.3;
}
.icon-grid--mini {
  margin-top: 12px;
  grid-template-columns: repeat(4, 1fr);
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.icon-spec,
.icon-install {
  max-width: 640px; margin: 0 auto 40px; padding: 28px 32px;
}
.icon-spec h2,
.icon-install h2 {
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-muted);
  margin-bottom: 16px; text-align: center;
}
.icon-spec__list {
  margin: 0; padding-left: 1.2em; line-height: 1.7; font-size: 14px; color: var(--ink-soft);
}
.icon-spec__list li { margin-bottom: 6px; }
.icon-install__steps {
  margin: 0 0 12px; padding-left: 1.2em; line-height: 1.7; font-size: 14px; color: var(--ink-soft);
}
.icon-install__steps li { margin-bottom: 8px; }
.icon-install__note {
  font-size: 13px; color: var(--ink-muted); margin: 0; text-align: center;
}
.icon-install code, .icon-spec code {
  font-size: 12px; background: rgba(255,255,255,0.5); padding: 2px 6px; border-radius: 4px;
}

.buy-bar {
  text-align: center; padding: 32px 22px 56px;
}
.buy-bar .price-big {
  font-size: 14px; color: var(--ink-muted); margin-bottom: 16px;
}
.buy-bar .price-big strong { font-size: 28px; color: var(--ink); font-weight: 700; }
.buy-btn {
  display: inline-block; font: inherit; font-size: 14px; font-weight: 600;
  padding: 13px 32px; border-radius: var(--radius-pill);
  color: var(--ink); text-decoration: none;
  cursor: pointer;
}
.buy-btn:hover {
  transform: translateY(-2px);
}

.film-shop-section {
  max-width: calc(var(--max) - 44px);
  margin: 0 auto 32px;
  padding: 28px 22px 40px;
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: var(--glass-blur-heavy);
  -webkit-backdrop-filter: var(--glass-blur-heavy);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  box-shadow:
    0 20px 60px rgba(45, 38, 64, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.film-shop-header h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--ink);
  text-shadow: none;
}
.film-shop-filter {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-plum);
}
.film-shop-filter--bar {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(45, 38, 64, 0.08);
}

.film-shop {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.film-shop--mini {
  max-width: 480px;
  margin: 28px auto 0;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.film-pack {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.film-pack:hover { transform: translateY(-6px) rotate(-0.5deg); }

.film-pack__perforation {
  height: 14px;
  background: var(--ink);
  mask-image: repeating-linear-gradient(90deg, #000 0 6px, transparent 6px 12px);
  -webkit-mask-image: repeating-linear-gradient(90deg, #000 0 6px, transparent 6px 12px);
  border-radius: 4px 4px 0 0;
  opacity: 0.85;
}

.film-pack__inner {
  padding: 14px 16px 18px;
  border: 1px solid rgba(44, 36, 32, 0.12);
  border-top: none;
  border-radius: 0 0 6px 6px;
  position: relative;
  background: linear-gradient(180deg, #faf3e8 0%, #f0e4d0 100%);
  box-shadow: 0 8px 24px rgba(44, 36, 32, 0.08);
}
.film-pack__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  border-radius: inherit;
}

.film-pack__brand {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: block;
  margin-bottom: 8px;
}
.film-pack__iso {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 3px 7px;
  border: 1px solid rgba(44, 36, 32, 0.2);
  border-radius: 3px;
  background: rgba(255, 252, 248, 0.5);
  color: var(--ink-soft);
}

.film-pack__window {
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 2px solid rgba(44, 36, 32, 0.15);
  border-radius: 2px;
  margin-bottom: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}
.film-pack__window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.02);
}

.film-pack__title {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.film-pack__meta {
  font-size: 11px;
  color: var(--ink-muted);
  line-height: 1.4;
  margin-bottom: 10px;
}
.film-pack__price {
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding-top: 10px;
  border-top: 1px dashed rgba(44, 36, 32, 0.15);
}

.film-pack__badge {
  position: absolute;
  top: 22px;
  left: -8px;
  z-index: 2;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--ink);
  color: var(--cream);
  transform: rotate(-3deg);
}

/* Tone variants — retro film stock colors */
.film-pack.tone-portra .film-pack__inner {
  background: linear-gradient(165deg, #faf0dc 0%, #e8d5b5 50%, #d4bc96 100%);
}
.film-pack.tone-portra .film-pack__title { color: #6b4f2a; }

.film-pack.tone-warm .film-pack__inner {
  background: linear-gradient(165deg, #fcefd8 0%, #e8c88a 50%, #c9956a 100%);
}
.film-pack.tone-warm .film-pack__title { color: #5c3d1e; }

.film-pack.tone-neon .film-pack__inner {
  background: linear-gradient(165deg, #2c2420 0%, #4a3f38 40%, #6b5e56 100%);
  border-color: rgba(255, 255, 255, 0.08);
}
.film-pack.tone-neon .film-pack__brand,
.film-pack.tone-neon .film-pack__meta { color: rgba(253, 246, 238, 0.55); }
.film-pack.tone-neon .film-pack__title { color: #f5d0c0; }
.film-pack.tone-neon .film-pack__price { color: #f0d9a8; border-top-color: rgba(255,255,255,0.12); }
.film-pack.tone-neon .film-pack__iso {
  color: #f5d0c0;
  border-color: rgba(245, 208, 192, 0.3);
  background: rgba(0, 0, 0, 0.2);
}

.film-pack.tone-vintage .film-pack__inner {
  background: linear-gradient(165deg, #f5e6c8 0%, #d4a574 50%, #a67b52 100%);
}
.film-pack.tone-vintage .film-pack__title { color: #3d2914; }

.film-pack.tone-sage .film-pack__inner {
  background: linear-gradient(165deg, #e8f0ec 0%, #b8d4c8 50%, #8bafb5 100%);
}
.film-pack.tone-sage .film-pack__title { color: #2d4a4f; }

.film-pack.tone-lr .film-pack__inner {
  background: linear-gradient(165deg, #2c2420 0%, #6b5e56 50%, #c9956a 100%);
}
.film-pack.tone-lr .film-pack__brand,
.film-pack.tone-lr .film-pack__meta { color: rgba(253, 246, 238, 0.55); }
.film-pack.tone-lr .film-pack__title { color: #f0d9a8; }
.film-pack.tone-lr .film-pack__price { color: var(--cream); border-top-color: rgba(255,255,255,0.12); }

.film-pack.tone-master .film-pack__inner {
  background: linear-gradient(165deg, #1a1614 0%, #3d3530 50%, #a67b52 100%);
}
.film-pack.tone-master .film-pack__brand,
.film-pack.tone-master .film-pack__meta { color: rgba(253, 246, 238, 0.5); }
.film-pack.tone-master .film-pack__title { color: var(--cream); font-size: 18px; }
.film-pack.tone-master .film-pack__price { color: #f0d9a8; border-top-color: rgba(255,255,255,0.1); }

.film-pack.collection .film-pack__inner {
  box-shadow: 0 10px 28px rgba(44, 36, 32, 0.12), inset 0 1px 0 rgba(255,255,255,0.3);
}

.film-pack__desc {
  font-size: 11px;
  line-height: 1.45;
  color: var(--ink-muted);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.film-pack.tone-neon .film-pack__desc,
.film-pack.tone-lr .film-pack__desc,
.film-pack.tone-master .film-pack__desc { color: rgba(253, 246, 238, 0.5); }

.film-pack.tone-cinematic .film-pack__inner {
  background: linear-gradient(165deg, #141210 0%, #2a2420 45%, #4a3f38 100%);
  border-color: rgba(255, 255, 255, 0.06);
}
.film-pack.tone-cinematic .film-pack__brand,
.film-pack.tone-cinematic .film-pack__meta,
.film-pack.tone-cinematic .film-pack__desc { color: rgba(253, 246, 238, 0.5); }
.film-pack.tone-cinematic .film-pack__title { color: var(--cream); }
.film-pack.tone-cinematic .film-pack__price { color: #f0d9a8; border-top-color: rgba(255,255,255,0.1); }
.film-pack.tone-cinematic .film-pack__iso {
  color: #f0d9a8; border-color: rgba(240, 217, 168, 0.25);
  background: rgba(0, 0, 0, 0.25);
}

/* ── Product Box — retro Schachtel für LUTs & Fuji Recipes ── */
.box-shop { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.box-shop--mini { max-width: 520px; }

.product-box {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  padding-top: 4px;
}
.product-box__wrap {
  position: relative;
  transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1);
  filter: drop-shadow(0 14px 32px rgba(44, 36, 32, 0.12));
}
.product-box:hover .product-box__wrap {
  transform: translateY(-10px) rotate(-1deg);
}

.product-box__top {
  height: 30px;
  margin: 0 16px 0 0;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 3;
  clip-path: polygon(6px 100%, calc(100% - 6px) 100%, 100% 0, 0 0);
  border: 1px solid rgba(44, 36, 32, 0.1);
  border-bottom: none;
}
.product-box__brand {
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}
.product-box__tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border: 1px solid rgba(44, 36, 32, 0.18);
  border-radius: 2px;
  background: rgba(255, 252, 248, 0.35);
}

.product-box__body {
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 2;
}
.product-box__front {
  flex: 1;
  border: 1px solid rgba(44, 36, 32, 0.14);
  border-right: none;
  border-radius: 0 0 0 4px;
  overflow: hidden;
  position: relative;
}
.product-box__front::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}
.product-box__depth {
  width: 16px;
  flex-shrink: 0;
  border: 1px solid rgba(44, 36, 32, 0.12);
  border-left: none;
  border-radius: 0 4px 4px 0;
  position: relative;
}
.product-box__depth::after {
  content: "";
  position: absolute;
  top: 20%;
  bottom: 20%;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-50%);
}

.product-box__art {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 1px solid rgba(44, 36, 32, 0.08);
  position: relative;
  z-index: 0;
}
.product-box__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.96) contrast(1.03);
}
.product-box__label {
  padding: 13px 14px 15px;
  position: relative;
  z-index: 0;
}
.product-box__title {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.product-box__desc {
  font-size: 11px;
  line-height: 1.45;
  color: var(--ink-muted);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-box__meta {
  font-size: 10px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.product-box__price {
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  font-weight: 500;
  padding-top: 10px;
  border-top: 1px dashed rgba(44, 36, 32, 0.14);
}

.product-box__base {
  height: 7px;
  margin: 0 16px 0 6px;
  border-radius: 0 0 4px 4px;
  position: relative;
  z-index: 1;
}

.product-box__badge {
  position: absolute;
  top: 18px;
  left: -6px;
  z-index: 5;
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  background: var(--ink);
  color: var(--cream);
  transform: rotate(-4deg);
  box-shadow: 0 2px 8px rgba(44, 36, 32, 0.2);
}

.product-box--mini .product-box__desc { display: none; }
.product-box--mini .product-box__title { font-size: 16px; }
.product-box--mini .product-box__label { padding: 10px 12px 12px; }
.product-box--mini .product-box__top { height: 24px; }
.product-box--mini .product-box__tag { font-size: 8px; }

/* Box tone variants */
.product-box.tone-portra .product-box__top { background: linear-gradient(180deg, #e8d5b5, #d4bc96); }
.product-box.tone-portra .product-box__front { background: linear-gradient(180deg, #faf0dc, #f0e4d0); }
.product-box.tone-portra .product-box__depth { background: linear-gradient(180deg, #c9ad82, #a88b62); }
.product-box.tone-portra .product-box__base { background: #8b7355; }
.product-box.tone-portra .product-box__title { color: #6b4f2a; }

.product-box.tone-warm .product-box__top { background: linear-gradient(180deg, #e8c88a, #c9956a); }
.product-box.tone-warm .product-box__front { background: linear-gradient(180deg, #fcefd8, #f0dcc0); }
.product-box.tone-warm .product-box__depth { background: linear-gradient(180deg, #b87850, #965a38); }
.product-box.tone-warm .product-box__base { background: #7a4a2e; }
.product-box.tone-warm .product-box__title { color: #5c3d1e; }

.product-box.tone-neon .product-box__top { background: linear-gradient(180deg, #3d3530, #2c2420); }
.product-box.tone-neon .product-box__front { background: linear-gradient(180deg, #4a3f38, #2c2420); }
.product-box.tone-neon .product-box__depth { background: linear-gradient(180deg, #1a1614, #0f0d0c); }
.product-box.tone-neon .product-box__base { background: #0a0908; }
.product-box.tone-neon .product-box__brand,
.product-box.tone-neon .product-box__meta,
.product-box.tone-neon .product-box__desc { color: rgba(253, 246, 238, 0.5); }
.product-box.tone-neon .product-box__title { color: #f5d0c0; }
.product-box.tone-neon .product-box__price { color: #f0d9a8; border-top-color: rgba(255,255,255,0.1); }
.product-box.tone-neon .product-box__tag { color: #f5d0c0; border-color: rgba(245,208,192,0.25); background: rgba(0,0,0,0.25); }
.product-box.tone-neon .product-box__front { border-color: rgba(255,255,255,0.08); }

.product-box.tone-vintage .product-box__top { background: linear-gradient(180deg, #d4a574, #a67b52); }
.product-box.tone-vintage .product-box__front { background: linear-gradient(180deg, #f5e6c8, #e8cfa8); }
.product-box.tone-vintage .product-box__depth { background: linear-gradient(180deg, #8b6340, #6b4a28); }
.product-box.tone-vintage .product-box__base { background: #523618; }
.product-box.tone-vintage .product-box__title { color: #3d2914; }

.product-box.tone-sage .product-box__top { background: linear-gradient(180deg, #b8d4c8, #8bafb5); }
.product-box.tone-sage .product-box__front { background: linear-gradient(180deg, #e8f0ec, #d4e4dc); }
.product-box.tone-sage .product-box__depth { background: linear-gradient(180deg, #6a9498, #4a7478); }
.product-box.tone-sage .product-box__base { background: #3a5a5e; }
.product-box.tone-sage .product-box__title { color: #2d4a4f; }

.product-box.tone-cinematic .product-box__top { background: linear-gradient(180deg, #3d3530, #1a1614); }
.product-box.tone-cinematic .product-box__front { background: linear-gradient(180deg, #2a2420, #141210); }
.product-box.tone-cinematic .product-box__depth { background: linear-gradient(180deg, #1a1614, #0a0908); }
.product-box.tone-cinematic .product-box__base { background: #050504; }
.product-box.tone-cinematic .product-box__brand,
.product-box.tone-cinematic .product-box__meta,
.product-box.tone-cinematic .product-box__desc { color: rgba(253, 246, 238, 0.45); }
.product-box.tone-cinematic .product-box__title { color: var(--cream); }
.product-box.tone-cinematic .product-box__price { color: #f0d9a8; border-top-color: rgba(255,255,255,0.08); }
.product-box.tone-cinematic .product-box__tag { color: #f0d9a8; border-color: rgba(240,217,168,0.2); background: rgba(0,0,0,0.3); }
.product-box.tone-cinematic .product-box__front { border-color: rgba(255,255,255,0.06); }

.product-box.tone-master .product-box__top { background: linear-gradient(180deg, #6b5344, #3d3530); }
.product-box.tone-master .product-box__front { background: linear-gradient(180deg, #3d3530, #1a1614); }
.product-box.tone-master .product-box__depth { background: linear-gradient(180deg, #2a2420, #0f0d0c); }
.product-box.tone-master .product-box__base { background: #0a0908; }
.product-box.tone-master .product-box__brand,
.product-box.tone-master .product-box__meta,
.product-box.tone-master .product-box__desc { color: rgba(253, 246, 238, 0.45); }
.product-box.tone-master .product-box__title { color: var(--cream); font-size: 17px; }
.product-box.tone-master .product-box__price { color: #f0d9a8; border-top-color: rgba(255,255,255,0.08); }
.product-box.tone-master .product-box__tag { color: #f0d9a8; border-color: rgba(240,217,168,0.2); background: rgba(0,0,0,0.3); }

.product-box.collection .product-box__wrap {
  filter: drop-shadow(0 18px 36px rgba(44, 36, 32, 0.16));
}

/* ── Herzawg-inspired: Mega Pack, Looks in Action, Carousel ── */
.mega-pack {
  max-width: var(--max);
  margin: 0 auto 64px;
  padding: 0 22px;
}
.mega-pack__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #1a1614;
  color: var(--cream);
  box-shadow: 0 24px 56px rgba(44, 36, 32, 0.14);
}
.mega-pack__visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
.mega-pack__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.05);
}
.mega-pack__visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, #1a1614 100%);
}
.mega-pack__body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mega-pack__eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253, 246, 238, 0.45);
  margin-bottom: 10px;
}
.mega-pack__body h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 12px;
}
.mega-pack__body > p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(253, 246, 238, 0.65);
  margin-bottom: 20px;
}
.mega-pack__faq { margin-bottom: 24px; }
.mega-pack__faq details {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 0;
}
.mega-pack__faq details:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.mega-pack__faq summary {
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(253, 246, 238, 0.85);
}
.mega-pack__faq summary::-webkit-details-marker { display: none; }
.mega-pack__faq summary::after { content: "+"; font-size: 16px; opacity: 0.5; }
.mega-pack__faq details[open] summary::after { content: "−"; }
.mega-pack__faq p {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(253, 246, 238, 0.5);
  margin-top: 8px;
  padding-right: 20px;
}
.mega-pack__cta {
  display: inline-block;
  align-self: flex-start;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  background: var(--cream);
  color: var(--ink);
  text-decoration: none;
}
.mega-pack__cta:hover { opacity: 0.92; }

.looks-section {
  max-width: var(--max);
  margin: 0 auto 72px;
  padding: 0 22px;
}
.looks-section__head {
  text-align: center;
  margin-bottom: 48px;
}
.looks-section__head h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.looks-section__head p {
  font-size: 15px;
  color: var(--ink-muted);
  max-width: 480px;
  margin: 0 auto;
}

.look-showcase {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 56px;
}
.look-showcase .compare-wrap {
  max-width: 380px;
}
.look-showcase:last-child { margin-bottom: 0; }
.look-showcase--flip { direction: rtl; }
.look-showcase--flip > * { direction: ltr; }
.look-showcase__text h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.look-showcase__text p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.look-showcase__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--link);
  text-decoration: none;
}
.look-showcase__link:hover { text-decoration: underline; }
.look-showcase__link::after { content: " ›"; }

.collection-carousel {
  max-width: var(--max);
  margin: 0 auto 64px;
  padding: 0 22px;
  text-align: center;
}
.collection-carousel h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  margin-bottom: 20px;
}
.collection-carousel__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.collection-carousel__track::-webkit-scrollbar { display: none; }
.collection-carousel__pill {
  flex: 0 0 auto;
  scroll-snap-align: center;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 980px;
  border: 1px solid rgba(44, 36, 32, 0.12);
  background: rgba(255, 252, 248, 0.7);
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.collection-carousel__pill:hover,
.collection-carousel__pill.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* legacy alias — old nav inner maps to pill styles */
.global-nav-inner {
  pointer-events: auto;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: var(--max); margin: 0 auto; min-height: 68px;
  display: flex; align-items: center; gap: 10px;
  padding: 0 10px 0 20px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(255, 255, 255, 0.42) 48%,
    rgba(236, 220, 255, 0.38) 100%
  );
  backdrop-filter: blur(44px) saturate(210%);
  -webkit-backdrop-filter: blur(44px) saturate(210%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-top-color: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-pill);
  box-shadow:
    0 12px 40px rgba(107, 91, 122, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}
.global-nav ul a.nav-link.active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

/* Mobile nav toggle — nur unter 768px sichtbar */
.nav-toggle,
.nav-backdrop { display: none; }

/* ── 80s Film Roll Shop ── */
.roll-shop {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.roll-shop--mini {
  max-width: 560px;
  margin: 24px auto 0;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.film-roll {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 16px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}
.film-roll:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-light);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.film-roll__visual {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.film-roll__canister {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  background: radial-gradient(circle at 38% 32%, #555 0%, #2a2a2a 35%, #111 65%, #000 100%);
  box-shadow:
    inset 0 3px 6px rgba(255,255,255,0.12),
    inset 0 -4px 8px rgba(0,0,0,0.5),
    0 8px 20px rgba(0,0,0,0.45);
}
.film-roll__hub {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #444, #0a0a0a 70%);
  border: 2px solid #333;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.6);
}
.film-roll__hub::after {
  content: "";
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
}
.film-roll__label {
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
  overflow: hidden;
  padding: 2px;
}
.film-roll__brand {
  font-family: "IBM Plex Mono", monospace;
  font-size: 5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  line-height: 1;
}
.film-roll__iso {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.film-roll__name {
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.film-roll__strip {
  flex: 1;
  min-width: 0;
  margin-left: -10px;
  display: flex;
  flex-direction: column;
  background: #0c0c0c;
  border: 2px solid #2a2a2a;
  border-left: none;
  box-shadow: 4px 4px 12px rgba(0,0,0,0.35);
}
.film-roll__perfs {
  height: 10px;
  background: #1a1a1a;
  mask-image: repeating-linear-gradient(90deg, #000 0 5px, transparent 5px 10px);
  -webkit-mask-image: repeating-linear-gradient(90deg, #000 0 5px, transparent 5px 10px);
  border-bottom: 1px solid #333;
}
.film-roll__perfs:last-child { border-bottom: none; border-top: 1px solid #333; }
.film-roll__frame {
  flex: 1;
  aspect-ratio: 4/5;
  max-height: 100px;
  overflow: hidden;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
.film-roll__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.05);
}

.film-roll__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px dashed var(--glass-border);
}
.film-roll__type {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.film-roll__price {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--90-yellow);
}

/* 80s film stock label colors */
.film-roll.tone-portra .film-roll__label {
  background: linear-gradient(180deg, #FFD600 0%, #FF8C00 100%);
  color: #1a0a00;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.15);
}
.film-roll.tone-warm .film-roll__label {
  background: linear-gradient(180deg, #FF3333 0%, #CC0000 100%);
  color: #fff;
}
.film-roll.tone-vintage .film-roll__label {
  background: linear-gradient(180deg, #D4A853 0%, #8B6914 100%);
  color: #1a1000;
}
.film-roll.tone-neon .film-roll__label {
  background: linear-gradient(180deg, #CC00FF 0%, #6600CC 100%);
  color: #fff;
}
.film-roll.tone-sage .film-roll__label {
  background: linear-gradient(180deg, #00CC99 0%, #006655 100%);
  color: #fff;
}
.film-roll.tone-master .film-roll__label {
  background: linear-gradient(180deg, #333 0%, #111 100%);
  color: var(--90-yellow);
  border: 1px solid var(--90-yellow);
}
.film-roll.tone-lr .film-roll__label {
  background: linear-gradient(180deg, #31A8FF 0%, #001E36 100%);
  color: #fff;
}

.film-roll--mini { padding: 12px; }
.film-roll--mini .film-roll__canister { width: 64px; height: 64px; }
.film-roll--mini .film-roll__iso { font-size: 10px; }
.film-roll--mini .film-roll__frame { max-height: 72px; }
.film-roll--hero {
  pointer-events: none;
  max-width: 320px;
  margin: 0 auto 28px;
}

/* ── Film product card (Referenz: Schachtel + Rolle + Streifen) ── */
.film-product {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(45, 38, 64, 0.07);
  border-radius: 20px;
  box-shadow: 0 10px 32px rgba(45, 38, 64, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.film-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(45, 38, 64, 0.13);
}

.film-product__scene {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 10px;
  min-height: 132px;
  padding: 14px 10px;
  border-radius: 14px;
  background: linear-gradient(180deg, #FCFBF9 0%, #F3F0EA 100%);
  border: 1px solid rgba(45, 38, 64, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Classic 35mm film box — Rollei clean retro */
.film-box {
  width: 112px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  border-radius: 5px;
  overflow: hidden;
  box-shadow:
    0 10px 28px rgba(45, 38, 64, 0.18),
    0 2px 6px rgba(45, 38, 64, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  border: 1px solid rgba(45, 38, 64, 0.1);
}
.film-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.film-box__header {
  padding: 6px 7px 5px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.film-box__brand {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
}
.film-box__line {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.07em;
  opacity: 0.9;
}
.film-box__face {
  padding: 8px 7px 10px;
  position: relative;
  min-height: 78px;
  display: flex;
  flex-direction: column;
}
.film-box__name {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}
.film-box__iso {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-top: 3px;
}
.film-box__swatches {
  display: flex;
  gap: 2px;
  margin-top: auto;
  padding-top: 6px;
}
.film-box__swatches span {
  flex: 1;
  height: 8px;
  border-radius: 1px;
}
.film-box__format {
  font-family: "IBM Plex Mono", monospace;
  font-size: 6px;
  letter-spacing: 0.06em;
  padding: 3px 6px;
  text-align: right;
  opacity: 0.7;
}

.film-product__roll {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  margin-left: -10px;
}
.film-roll__canister--sm {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  z-index: 4;
  margin: 0 -6px;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.35),
    inset 0 2px 5px rgba(255, 255, 255, 0.18),
    inset 0 -3px 6px rgba(0, 0, 0, 0.4);
}
.film-roll__canister--sm .film-roll__label {
  inset: 22%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}
.film-roll__canister--sm .film-roll__iso {
  font-size: 12px;
  font-weight: 800;
}
.film-product__roll .film-roll__strip {
  flex: 1;
  min-width: 0;
  margin-left: -4px;
  border: 2px solid #1a1a1a;
  border-left: none;
  box-shadow: 3px 5px 14px rgba(45, 38, 64, 0.15);
  border-radius: 0 2px 2px 0;
  background: #0a0a0a;
}
.film-product__roll .film-roll__perfs {
  height: 9px;
  background: #111;
}
.film-product__roll .film-roll__frame {
  max-height: 76px;
  aspect-ratio: 5/3;
}

.film-product__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 6px 2px;
}
.film-product__meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.film-product__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.film-product__spec {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.03em;
  color: var(--ink-muted);
}
.film-product__price {
  font-family: "IBM Plex Mono", monospace;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-gold);
  flex-shrink: 0;
}
.film-product__tag {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-top: 6px;
  padding-left: 6px;
}

.film-product--mini { padding: 10px; border-radius: 16px; }
.film-product--mini .film-box { width: 76px; }
.film-product--mini .film-box__name { font-size: 10px; }
.film-product--mini .film-box__iso { font-size: 22px; }
.film-product--mini .film-product__scene { min-height: 118px; padding: 12px 8px; }
.film-product--mini .film-roll__canister--sm { width: 44px; height: 44px; }
.film-product--mini .film-roll__canister--sm .film-roll__iso { font-size: 10px; }
.film-product--mini .film-product__roll .film-roll__frame { max-height: 58px; }
.film-product--mini .film-product__spec { font-size: 8px; }
.film-product--mini .film-product__title { font-size: 13px; }
.film-product--mini .film-product__price { font-size: 13px; }
.film-product--mini .film-product__meta-row { flex-direction: row; align-items: baseline; }
.film-product--mini .film-product__tag { font-size: 8px; margin-top: 4px; }

.shop-error {
  font-size: 13px;
  color: var(--ink-muted);
  text-align: center;
  padding: 16px;
}

.film-product--hero {
  pointer-events: none;
  max-width: 340px;
  margin: 0 auto 28px;
  padding: 20px;
}
.film-product--hero .film-box { width: 130px; }
.film-product--hero .film-box__iso { font-size: 34px; }
.film-product--hero .film-roll__canister--sm { width: 64px; height: 64px; }

/* ── Stock variants (analog-fotografie.net reference) ── */

/* Solara — eigenes Warm-Look-Pack, nicht Kodak Portra 400 */
.stock-solara .film-box { background: #FFF5EE; color: #3d2010; }
.stock-solara .film-box__header { background: linear-gradient(180deg, #FFB88A 0%, #FF8C69 100%); color: #3d2010; }
.stock-solara .film-box__face { background: linear-gradient(180deg, #FFF8F2 0%, #FFE4CC 100%); }
.stock-solara .film-box__name { color: #C45C26; letter-spacing: 0.08em; }
.stock-solara .film-box__iso { color: #E87830; font-size: 14px; font-weight: 800; letter-spacing: 0.04em; }
.stock-solara .film-box__swatches span:nth-child(1) { background: #FF8C69; }
.stock-solara .film-box__swatches span:nth-child(2) { background: #FFD4A8; }
.stock-solara .film-box__swatches span:nth-child(3) { background: #E87830; }
.stock-solara .film-box__swatches span:nth-child(4) { background: #F4C4A0; }
.stock-solara .film-box__format { background: #FF8C69; color: #3d2010; font-size: 7px; }
.stock-solara .film-roll__label { background: linear-gradient(180deg, #FFD4A8, #FF8C69); color: #3d2010; }

/* Kodak Portra 400 — yellow + purple blocks */
.stock-portra400 .film-box { background: #FFF8E7; color: #1a0a2e; }
.stock-portra400 .film-box__header { background: #FFD100; color: #1a0a2e; }
.stock-portra400 .film-box__face { background: linear-gradient(180deg, #FFFDF5 0%, #FFF0C2 100%); }
.stock-portra400 .film-box__name { color: #4A148C; }
.stock-portra400 .film-box__iso { color: #4A148C; }
.stock-portra400 .film-box__swatches span:nth-child(1) { background: #7B3FA0; }
.stock-portra400 .film-box__swatches span:nth-child(2) { background: #E879A8; }
.stock-portra400 .film-box__swatches span:nth-child(3) { background: #FFCC00; }
.stock-portra400 .film-box__swatches span:nth-child(4) { background: #00A8CC; }
.stock-portra400 .film-box__format { background: #FFCC00; }
.stock-portra400 .film-roll__label { background: linear-gradient(180deg, #FFCC00, #E8A800); color: #5B2D8E; }

/* Kodak Portra 800 */
.stock-portra800 .film-box { background: #FFF5E0; color: #1a0a2e; }
.stock-portra800 .film-box__header { background: #FFB800; color: #1a0a2e; }
.stock-portra800 .film-box__name { color: #8B4513; }
.stock-portra800 .film-box__iso { color: #CC6600; }
.stock-portra800 .film-box__swatches span:nth-child(1) { background: #CC6600; }
.stock-portra800 .film-box__swatches span:nth-child(2) { background: #FFB800; }
.stock-portra800 .film-box__swatches span:nth-child(3) { background: #E879A8; }
.stock-portra800 .film-box__swatches span:nth-child(4) { background: #8B4513; }
.stock-portra800 .film-box__format { background: #FFB800; }
.stock-portra800 .film-roll__label { background: #FFB800; color: #5a3000; }

/* Kodak Gold 200 — yellow + magenta */
.stock-gold200 .film-box { background: #FFEB3B; color: #1a0a2e; }
.stock-gold200 .film-box__header { background: #FFD600; }
.stock-gold200 .film-box__face { background: linear-gradient(180deg, #FFEB3B 45%, #FF1493 45%); }
.stock-gold200 .film-box__name { color: #1a0a2e; font-size: 18px; font-weight: 900; }
.stock-gold200 .film-box__iso { color: #1a0a2e; }
.stock-gold200 .film-box__swatches span { background: #FF1493; }
.stock-gold200 .film-box__format { background: #FF1493; color: #fff; }
.stock-gold200 .film-roll__label { background: linear-gradient(180deg, #FFEB3B, #FF1493); color: #1a0a2e; }

/* Kodak UltraMax 400 — yellow + blue */
.stock-ultramax400 .film-box { background: #FFEB3B; color: #1a0a2e; }
.stock-ultramax400 .film-box__header { background: #FFEB3B; }
.stock-ultramax400 .film-box__face { background: linear-gradient(180deg, #FFEB3B 55%, #1565C0 55%); }
.stock-ultramax400 .film-box__name { color: #1565C0; }
.stock-ultramax400 .film-box__iso { color: #fff; text-shadow: 0 1px 0 #1565C0; }
.stock-ultramax400 .film-box__swatches span:nth-child(1) { background: #1565C0; }
.stock-ultramax400 .film-box__swatches span:nth-child(2) { background: #FFEB3B; }
.stock-ultramax400 .film-box__format { background: #1565C0; color: #fff; }
.stock-ultramax400 .film-roll__label { background: #1565C0; color: #FFEB3B; }

/* Kodak Tri-X 400 — yellow + black */
.stock-trix400 .film-box { background: #FFEB3B; color: #000; }
.stock-trix400 .film-box__header { background: #FFEB3B; }
.stock-trix400 .film-box__face { background: linear-gradient(180deg, #FFEB3B 40%, #111 40%); }
.stock-trix400 .film-box__name { color: #111; font-size: 16px; }
.stock-trix400 .film-box__iso { color: #fff; }
.stock-trix400 .film-box__swatches span { background: #333; }
.stock-trix400 .film-box__format { background: #111; color: #FFEB3B; }
.stock-trix400 .film-roll__label { background: #111; color: #FFEB3B; }

/* Ilford HP5 Plus — white + green */
.stock-hp5 .film-box { background: #F5F5F0; color: #1a1a1a; border: 1px solid #ccc; }
.stock-hp5 .film-box__header { background: #fff; border-bottom: 2px solid #2E7D32; }
.stock-hp5 .film-box__brand { color: #2E7D32; font-size: 9px; }
.stock-hp5 .film-box__face { background: #fff; }
.stock-hp5 .film-box__name { color: #2E7D32; font-size: 13px; }
.stock-hp5 .film-box__iso { color: #1a1a1a; font-size: 22px; }
.stock-hp5 .film-box__swatches span { background: #2E7D32; }
.stock-hp5 .film-box__format { background: #E8F5E9; color: #2E7D32; }
.stock-hp5 .film-roll__label { background: #2E7D32; color: #fff; }

/* Fujifilm 400 — green */
.stock-fuji400 .film-box { background: #009B3A; color: #fff; }
.stock-fuji400 .film-box__header { background: #007A2F; }
.stock-fuji400 .film-box__face { background: #009B3A; }
.stock-fuji400 .film-box__name { color: #fff; font-size: 12px; letter-spacing: 0.04em; }
.stock-fuji400 .film-box__iso { color: #fff; }
.stock-fuji400 .film-box__swatches span { background: rgba(255,255,255,0.35); }
.stock-fuji400 .film-box__format { background: #007A2F; color: #fff; }
.stock-fuji400 .film-roll__label { background: #009B3A; color: #fff; border: 1px solid rgba(255,255,255,0.3); }

/* CineStill 800T — blue */
.stock-cinestill800 .film-box { background: #0066CC; color: #fff; }
.stock-cinestill800 .film-box__header { background: #004999; }
.stock-cinestill800 .film-box__face { background: linear-gradient(180deg, #0080FF 0%, #004999 100%); }
.stock-cinestill800 .film-box__name { color: #fff; font-size: 11px; }
.stock-cinestill800 .film-box__iso { color: #FF3366; font-size: 22px; }
.stock-cinestill800 .film-box__swatches span:nth-child(1) { background: #FF3366; }
.stock-cinestill800 .film-box__swatches span:nth-child(2) { background: #00CCFF; }
.stock-cinestill800 .film-box__swatches span:nth-child(3) { background: #004999; }
.stock-cinestill800 .film-box__format { background: #004999; color: #fff; }
.stock-cinestill800 .film-roll__label { background: #0066CC; color: #fff; }

/* Product detail page */
.product-detail {
  max-width: var(--max);
  margin: 0 auto 24px;
  padding: 28px 22px 32px;
}
.product-story {
  margin: 32px 0 20px;
  padding: 20px 22px;
  border-left: 3px solid var(--90-magenta);
  background: rgba(255, 0, 110, 0.06);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.product-story h2 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--90-magenta);
  margin-bottom: 10px;
}
.product-story p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-style: italic;
}
.product-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin-bottom: 24px;
  text-align: center;
}
.product-specs dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.product-specs dl > div {
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}
.product-specs dt {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.product-specs dd {
  font-size: 13px;
  color: var(--ink-soft);
}

.product-install {
  margin-top: 24px;
  padding: 20px 22px;
  text-align: left;
}
.product-install h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.product-install p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.product-install__pack code {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(255,255,255,0.5);
}
.product-pack-contents {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(45, 38, 64, 0.08);
}
.product-pack-contents > h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
}
.product-pack-group {
  margin-bottom: 14px;
}
.product-pack-group h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 6px;
}
.product-pack-group ul,
.product-pack-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-pack-group li code,
.product-pack-list code {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--ink-soft);
}

@media (max-width: 768px) {
  :root { --nav-h: 74px; }

  .global-nav {
    padding: max(10px, env(safe-area-inset-top, 0px)) 14px 0;
  }
  .global-nav-pill,
  .global-nav-inner {
    padding: 8px 8px 8px 14px;
    min-height: 56px;
    justify-content: flex-start;
    overflow: visible;
  }

  body.nav-open .global-nav { z-index: 103; }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    cursor: pointer;
    z-index: 2;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-toggle__bar {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  body.nav-open .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  body.nav-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(45, 38, 64, 0.28);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .nav-backdrop[hidden] { display: none; }

  .nav-links,
  .global-nav ul { display: none; }

  body.nav-open {
    overflow: hidden;
  }
  body.nav-open .nav-links,
  body.nav-open .global-nav ul,
  body.nav-open .nav-menu-panel {
    display: flex;
    position: fixed;
    top: calc(56px + env(safe-area-inset-top, 0px) + 12px);
    left: 14px;
    right: 14px;
    z-index: 104;
    pointer-events: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    margin: 0;
    list-style: none;
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(255, 255, 255, 0.82) 100%
    );
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(45, 38, 64, 0.18);
    max-height: calc(100dvh - 80px - env(safe-area-inset-top, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  body.nav-open .nav-menu-panel > li {
    width: 100%;
  }
  body.nav-open .nav-link {
    font-size: 15px;
    font-weight: 500;
    padding: 12px 14px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
  }
  body.nav-open .nav-link--film {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-width: 0;
    width: 100%;
    padding: 10px 14px;
  }
  body.nav-open .nav-film-strip {
    width: 52px;
    flex-shrink: 0;
  }
  body.nav-open .nav-film-strip__frame { height: 20px; }

  .nav-link--film { min-width: 0; padding: 4px 6px; }
  .nav-film-strip { width: 36px; }
  .nav-film-strip__frame { height: 12px; }
  .nav-link__label { font-size: 11px; }
  .nav-logo { font-size: 17px; }

  .hero { padding: 32px 18px 20px; }
  .hero h1 { font-size: clamp(32px, 9vw, 42px); }
  .hero p { font-size: 15px; }

  .hero-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
    width: calc(100% - 28px);
    padding: 18px 16px 22px;
  }
  .hero-showcase__panel {
    align-items: center;
    text-align: center;
  }
  .hero-showcase__tabs { justify-content: center; }
  .hero-showcase__panel .compare-caption { text-align: center; }
  .hero-showcase__compare .compare-container {
    aspect-ratio: 4 / 5;
    min-height: 240px;
    max-height: none;
  }
  .hero-showcase__film-badge .film-box { width: 72px; }
  .hero-showcase__cta {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .compare-handle::after {
    width: 44px;
    height: 44px;
  }

  .collection-hero {
    margin: 0 12px 24px;
    min-height: 260px;
  }
  .collection-hero__content {
    max-width: 100%;
    padding: 28px 20px;
  }
  .collection-hero h1 { font-size: clamp(28px, 8vw, 36px); }

  .sub-hero { padding: 28px 18px 24px; }
  .sub-hero h1 { font-size: clamp(28px, 8vw, 34px); }
  .sub-hero .lead { font-size: 15px; }

  .section { padding: 0 16px 40px; }
  .product-detail { padding: 20px 16px 28px; }

  .film-shop-section {
    width: calc(100% - 28px);
    max-width: none;
    padding: 22px 16px 32px;
  }

  .look-showcase,
  .look-showcase--flip {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .look-showcase .compare-wrap { max-width: none; }

  .icon-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .icon-grid img { width: 64px; height: 64px; }
  .icon-spec,
  .icon-install { padding: 22px 18px; }

  .film-shop { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .film-shop--mini { grid-template-columns: 1fr 1fr; }
  .film-pack__title { font-size: 16px; }
  .box-shop { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .roll-shop { grid-template-columns: 1fr; }
  .roll-shop--mini { grid-template-columns: 1fr 1fr; }
  .film-product--mini .film-box { width: 72px; }
  .product-specs dl { grid-template-columns: 1fr; }
  .product-box__title { font-size: 16px; }

  .buy-bar {
    padding: 28px 18px calc(40px + env(safe-area-inset-bottom, 0px));
  }
  .buy-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 320px);
  }

  footer {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  }

  .legal-page { padding: 24px 18px calc(40px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 390px) {
  .film-shop,
  .box-shop { grid-template-columns: 1fr; }
  .roll-shop--mini,
  .film-shop--mini { grid-template-columns: 1fr; }
  .icon-grid { grid-template-columns: repeat(3, 1fr); }
  .compare-tabs button { font-size: 11px; padding: 8px 12px; }
}
