/* MinePack – Kraft & Verpackung */
:root {
  --kraft-light: #f3ebe0;
  --kraft-mid: #d4c4a8;
  --kraft-dark: #a68b6a;
  --paper: #faf7f2;
  --forest: #2d4739;
  --forest-deep: #1e3228;
  --terracotta: #7e5a44;
  --gold: #b8954a;
  --text: #2a2520;
  --text-muted: #5c5348;
  --border: rgba(45, 71, 57, 0.12);
  --shadow: 0 20px 50px rgba(30, 50, 40, 0.12);
  --radius: 12px;
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", var(--font);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  background-color: var(--paper);
  background-image:
    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' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"),
    linear-gradient(180deg, var(--paper) 0%, var(--kraft-light) 100%);
}

a {
  color: var(--forest);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--forest);
  text-decoration: none;
}

.logo span {
  color: var(--terracotta);
}

.nav-toggle {
  display: none;
  background: var(--kraft-light);
  border: 1px solid var(--border);
  color: var(--forest);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-family: inherit;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  align-items: center;
}

.nav-list a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-list a:hover {
  color: var(--forest);
  border-bottom-color: var(--gold);
}

/* Hero */
.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--forest-deep);
}

.hero-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
  max-width: 38ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: transform 0.15s, box-shadow 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: var(--paper);
  box-shadow: 0 8px 24px rgba(45, 71, 57, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(45, 71, 57, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--kraft-light);
}

/* Hero Werbe-Banner (Foto-Karussell, srcset bis 3840 px) */
.hero-banner {
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: #1a1816;
}

.hero-banner__viewport {
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: min(52vh, 420px);
}

.hero-banner__slides {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-banner__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.75s ease, visibility 0.75s;
  z-index: 0;
}

.hero-banner__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 40%, rgba(20, 18, 14, 0.5) 100%);
  pointer-events: none;
}

.hero-banner__tagline {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.75rem;
  z-index: 3;
  margin: 0;
  font-size: clamp(0.82rem, 2.1vw, 1.02rem);
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.hero-banner__toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.55rem 0.5rem;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--border);
}

.hero-banner__nav {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--paper);
  color: var(--forest-deep);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  transition: background 0.15s, border-color 0.15s;
}

.hero-banner__nav:hover {
  background: var(--kraft-light);
  border-color: rgba(45, 71, 57, 0.25);
}

.hero-banner__dots {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  min-height: 1.5rem;
}

.hero-banner__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: var(--kraft-mid);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.hero-banner__dot.is-active {
  background: var(--forest);
  transform: scale(1.25);
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner__slide {
    transition: none;
  }

  .hero-banner__dot {
    transition: none;
  }
}

/* Sections */
section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
}

.section-desc {
  color: var(--text-muted);
  margin: 0 0 2rem;
  max-width: 58ch;
}

/* Product showcase */
.product-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .product-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .product-showcase {
    grid-template-columns: 1fr;
  }
}

.showcase-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.showcase-card figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, var(--kraft-light) 0%, #e5d9c8 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.showcase-card .card-body {
  padding: 1.1rem 1.25rem 1.35rem;
}

.showcase-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
  color: var(--forest);
}

.showcase-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Product grid (text cards) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(45, 71, 57, 0.06);
}

.product-card:hover {
  border-color: rgba(45, 71, 57, 0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--forest);
}

.product-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* Presets */
.preset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.preset-btn {
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--kraft-light);
  color: var(--forest);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.preset-btn:hover {
  background: #e8dcc8;
  border-color: var(--forest);
}

/* Configurator */
.configurator {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .configurator {
    grid-template-columns: 1fr;
  }

  .mockup-stage {
    position: static;
    top: auto;
  }
}

.config-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem 1rem;
  transform: perspective(1200px) rotateX(1deg);
}

.form-row {
  margin-bottom: 0;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(45, 71, 57, 0.08);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 235, 224, 0.5));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.form-row--full {
  grid-column: 1 / -1;
}

.form-row label,
.form-row > span[id$="-label"] {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.form-row input[type="number"],
.form-row select {
  width: 100%;
  max-width: none;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--paper);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.form-row input[type="file"] {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.dim-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 420px;
}

@media (max-width: 500px) {
  .dim-grid {
    grid-template-columns: 1fr;
  }
}

.hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

@media (max-width: 700px) {
  .config-form {
    grid-template-columns: 1fr;
  }

  .form-row--full {
    grid-column: auto;
  }
}

/* Mockup stage */
.mockup-stage {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.55), transparent 28%),
    linear-gradient(165deg, #ece4d9 0%, #d8ccbe 48%, #c4b7a7 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem 1.5rem;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 16px 40px rgba(80, 61, 43, 0.12);
  position: sticky;
  top: 92px;
}

.mockup-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--forest);
  opacity: 0.75;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

/* Three.js Papiertragetasche */
.bag-scene {
  width: 100%;
  max-width: 420px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bag-canvas-wrap {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  min-height: 280px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, transparent 45%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 18px 36px rgba(51, 35, 23, 0.14);
}

.bag-canvas-wrap canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  vertical-align: middle;
  touch-action: none;
  cursor: grab;
}

.bag-canvas-wrap canvas:active {
  cursor: grabbing;
}

.bag-canvas-wrap--hero {
  max-width: min(100%, 340px);
  min-height: 260px;
}

.bag-3d-error {
  margin: 0;
  padding: 1.25rem 1rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--forest-deep);
  text-align: center;
  background: rgba(255, 248, 240, 0.95);
  border: 1px dashed var(--border);
  border-radius: 10px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-hint {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  opacity: 0.9;
}

.mockup-actions {
  margin: 0.65rem 0 0;
  display: flex;
  justify-content: center;
}

.btn-3d-reset {
  font-size: 0.82rem;
  padding: 0.45rem 0.95rem;
}

.mockup-meta {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--forest-deep);
  opacity: 0.85;
}

.mockup-meta strong {
  color: var(--terracotta);
  font-weight: 600;
}

/* Konfigurator (Pro) */
.section-konfigurator {
  max-width: 1180px;
  padding-top: 3rem;
  padding-bottom: 3.25rem;
}

/* Volle Breite + Studio-Hintergrund (Vistaprint-ähnlicher Flow) */
#konfigurator.studio-section {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3rem;
  padding-bottom: 3.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  background: linear-gradient(180deg, #eef1f5 0%, #e6eaef 55%, #e1e6ec 100%);
  border-top: 1px solid rgba(45, 71, 57, 0.06);
  border-bottom: 1px solid rgba(45, 71, 57, 0.06);
}

.studio-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.configurator--studio {
  gap: 2rem;
}

.config-form--studio {
  background: #fff;
  border: 1px solid #d0d5dd;
  box-shadow:
    0 1px 2px rgba(60, 64, 67, 0.06),
    0 4px 20px rgba(60, 64, 67, 0.06);
  border-radius: 10px;
}

.config-form--studio .studio-step-row {
  border: 1px solid #e8ecf0;
  background: linear-gradient(180deg, #fcfdfe 0%, #f6f8fa 100%);
}

.studio-step-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.studio-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.65rem;
  height: 1.65rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #1a5fd4 0%, #1248a8 100%);
  box-shadow: 0 2px 6px rgba(26, 95, 212, 0.25);
}

.studio-step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--forest-deep);
  letter-spacing: -0.02em;
}

.studio-step-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 700px) {
  .studio-step-row--split {
    grid-template-columns: 1fr;
  }
}

.label-spaced {
  display: block;
  margin-top: 0.5rem;
}

.studio-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.35;
}

.studio-checkbox input {
  margin-top: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  accent-color: #1a5fd4;
}

.form-row--bleed {
  border: none;
  background: transparent;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}

.hint--tight {
  margin-top: 0.3rem;
}

.dim-grid--studio {
  max-width: none;
  margin-top: 0.65rem;
}

.mockup-stage--studio {
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.95) 0%, transparent 55%),
    linear-gradient(165deg, #f8f9fb 0%, #eceff3 100%);
  border: 1px solid #d0d5dd;
  box-shadow:
    inset 0 1px 0 #fff,
    0 4px 18px rgba(60, 64, 67, 0.08);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.konfigurator-head {
  margin-bottom: 1.75rem;
  max-width: 62ch;
}

.konfigurator-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--terracotta);
  margin: 0 0 0.4rem;
}

.section-title--config {
  margin-bottom: 0.35rem;
}

.section-desc--config {
  margin-bottom: 0;
  max-width: 65ch;
}

.configurator--pro {
  gap: 1.75rem;
  align-items: stretch;
}

.configurator-column--form {
  min-width: 0;
}

.configurator-column--mockup {
  min-width: 0;
}

.config-form--pro {
  transform: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 1.35rem 1.35rem 1.5rem;
}

.config-shared {
  grid-column: 1 / -1;
}

.config-subtitle {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0 0 0.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--border);
}

.config-shared {
  padding-top: 0.35rem;
}

.config-shared-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem 1rem;
}

@media (max-width: 700px) {
  .config-shared-grid {
    grid-template-columns: 1fr;
  }
}

.config-shared .form-row {
  margin-bottom: 0;
}

.form-row input[type="text"] {
  width: 100%;
  max-width: none;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--paper);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.hint--inline {
  margin: 0;
}

.mockup-stage--pro {
  min-height: 420px;
}

.mockup-product-tag {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin: 0 0 0.75rem;
  text-align: center;
}

/* Info strip */
.info-strip {
  background: var(--forest);
  color: var(--paper);
  padding: 1.5rem 1.25rem;
}

.info-strip-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  font-size: 0.92rem;
}

.info-strip strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin-bottom: 0.25rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding: 2rem 1.25rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.5);
}

/* Mobile Navigation: siehe theme-home.css / index.html */

/* Konfigurator: 2D-Vorschau (Vorder-/Rückseite) */
.bag-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.bag-preview-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.bag-preview-card--muted {
  opacity: 0.45;
  filter: grayscale(0.15);
  pointer-events: none;
}

.bag-preview-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.bag-preview-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(180deg, #f2ede6 0%, #e8dfd4 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 8px 24px rgba(45, 71, 57, 0.1);
}

.bag-preview__base {
  width: 100%;
  height: auto;
  display: block;
}

.bag-preview__layer {
  position: absolute;
  left: 31%;
  right: 31%;
  top: 37.5%;
  bottom: 27.5%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: normal;
  opacity: 1;
  pointer-events: none;
}

.mockup-stage--2d {
  min-height: auto;
  align-items: stretch;
}

.mockup-stage--2d .bag-preview-grid {
  max-width: none;
}

@media (max-width: 520px) {
  .bag-preview-grid {
    grid-template-columns: 1fr;
  }
}

.form-fieldset {
  margin: 0 0 0.75rem;
  padding: 0;
  border: none;
  min-width: 0;
}

.fieldset-legend {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 0.5rem;
  padding: 0;
}

.studio-radio {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 0.45rem;
}

.studio-radio:last-of-type {
  margin-bottom: 0;
}

.studio-radio input {
  margin-top: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  accent-color: #1a5fd4;
}

.form-row input[type="email"],
.form-row textarea {
  width: 100%;
  max-width: none;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--paper);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.form-row textarea {
  resize: vertical;
  min-height: 5rem;
}

.btn-send-order {
  margin-top: 0.85rem;
}

.order-feedback {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
  color: var(--forest-deep);
  min-height: 1.35em;
}

.order-feedback--ok {
  color: #fff;
  font-weight: 600;
}

/* Honeypot (Spam-Bots) – für Nutzer unsichtbar */
.minepack-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.order-feedback--error {
  color: #a33;
}

.cms-hint {
  font-size: 0.8rem;
  line-height: 1.45;
}

.cms-hint code {
  font-size: 0.78em;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: rgba(45, 71, 57, 0.08);
  color: var(--forest-deep);
}

/* ── Feature-Strip ───────────────────────────────── */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.85rem;
  margin: 2rem 0 2.5rem;
}

.feature-strip__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--forest-deep);
  box-shadow: 0 1px 4px rgba(45, 71, 57, 0.06);
}

.feature-strip__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ── Größentabelle ───────────────────────────────── */
.size-table-wrap {
  margin: 2.5rem 0;
}

.size-table-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin: 0 0 1.25rem;
}

.size-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 700px) {
  .size-table {
    grid-template-columns: 1fr;
  }
}

.size-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 2px 12px rgba(45, 71, 57, 0.07);
  transition: box-shadow 0.2s, transform 0.2s;
}

.size-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.size-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25em 0.75em;
  border-radius: 999px;
  background: var(--kraft-light);
  color: var(--forest-deep);
  border: 1px solid var(--kraft-mid);
}

.size-card__badge--mid {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest-deep);
}

.size-card__badge--large {
  background: var(--terracotta);
  color: #fff;
  border-color: #6b4737;
}

.size-card__img {
  width: 100%;
  max-width: 140px;
  height: 180px;
  object-fit: contain;
  display: block;
}

.size-card__dl {
  margin: 0;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 0.65rem;
  font-size: 0.85rem;
}

.size-card__dl dt {
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
}

.size-card__dl dd {
  margin: 0;
  color: var(--text);
}

.size-card__cta {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

/* ── Material-Chips ──────────────────────────────── */
.material-section {
  margin: 2rem 0 2.5rem;
}

.material-section__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin: 0 0 1rem;
}

.material-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 600px) {
  .material-chips {
    grid-template-columns: 1fr;
  }
}

.material-chip {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  box-shadow: 0 1px 6px rgba(45, 71, 57, 0.06);
}

.material-chip__swatch {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.material-chip--white .material-chip__swatch {
  background: #f7f5f2;
}

.material-chip--kraft .material-chip__swatch {
  background: linear-gradient(135deg, #c4a574 0%, #8b6f4a 100%);
}

.material-chip strong {
  display: block;
  font-size: 0.95rem;
  color: var(--forest-deep);
  margin-bottom: 0.25rem;
}

.material-chip p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ── Produktbeschreibung ─────────────────────────── */
.prod-copy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0 0;
}

@media (max-width: 700px) {
  .prod-copy {
    grid-template-columns: 1fr;
  }
}

.prod-copy__item {
  padding: 1.25rem;
  border-left: 3px solid var(--kraft-mid);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.prod-copy__item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin: 0 0 0.5rem;
}

.prod-copy__item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Nachhaltigkeit ──────────────────────────────── */
.sustainability-section {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
  padding: 3rem 1.25rem;
}

.sustainability-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.sustainability-badge {
  font-size: 3.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.sustainability-text {
  flex: 1;
  min-width: 220px;
  color: rgba(255, 255, 255, 0.95);
}

.sustainability-text h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
}

.sustainability-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

.sustainability-section .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  flex-shrink: 0;
}

.sustainability-section .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ── Bewertungen ─────────────────────────────────── */
.reviews-section {
  padding: 3rem 1.25rem;
  background: var(--paper);
}

.reviews-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.reviews-head {
  text-align: center;
  margin-bottom: 2rem;
}

.reviews-stars {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.star {
  color: #f5a623;
}

.star--half {
  color: #f5a623;
  opacity: 0.5;
}

.reviews-score {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 700px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  margin: 0;
  box-shadow: 0 2px 10px rgba(45, 71, 57, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-card__text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.55;
  font-style: italic;
  flex: 1;
}

.review-card__footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.review-stars {
  color: #f5a623;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.review-card cite {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  font-style: normal;
}

/* ── FAQ Akkordeon ───────────────────────────────── */
.faq-section {
  padding: 3rem 1.25rem 3.5rem;
  background: var(--kraft-light);
  border-top: 1px solid var(--border);
}

.faq-inner {
  max-width: 780px;
  margin: 0 auto;
}

.faq-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 1.15rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--forest-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  line-height: 1.4;
}

.faq-btn:hover {
  background: rgba(45, 71, 57, 0.04);
}

.faq-icon {
  font-size: 1.35rem;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--forest);
  transition: transform 0.25s;
}

.faq-btn[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.15rem 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-answer p {
  margin: 0;
}
