/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #000;
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

::selection { background: #fff; color: #000; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.6;
  margin-bottom: 24px;
  font-weight: 500;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.muted { opacity: 0.55; }

/* ---------- Announce (JS-driven seamless marquee) ---------- */
.announce {
  background: #fff;
  color: #000;
  border-bottom: 1px solid #000;
  overflow: hidden;
  padding: 9px 0;
}
.announce-track {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  will-change: transform;
}
.announce-item,
.announce-sep {
  flex-shrink: 0;
  padding: 0 18px;
}
.announce-sep { opacity: 0.4; padding: 0 4px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,0,0,0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 40px;
  max-width: 1600px;
  margin: 0 auto;
}
.nav-left, .nav-right {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.nav-right { justify-content: flex-end; }
.nav a { transition: opacity .2s ease; }
.nav a:hover { opacity: 0.6; }
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transition: opacity .2s ease;
  margin: -10px 0;          /* let logo overflow nav padding so we don't bloat header */
}
.brand:hover { opacity: 0.78; }
.brand img {
  height: 74px;
  width: auto;
  max-width: 215px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 14px rgba(0,0,0,0.5));
}
@media (max-width: 860px) {
  .brand img { height: 64px; max-width: 180px; }
  .brand { margin: -6px 0; }
}
.cart-count { opacity: 0.5; }

/* ---------- Hero ---------- */
.hero {
  padding: 120px 40px 100px;
  max-width: 1600px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-title {
  font-size: clamp(64px, 9vw, 148px);
  font-weight: 300;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
}
.hero-sub {
  max-width: 460px;
  font-size: 17px;
  line-height: 1.55;
  opacity: 0.75;
  margin-bottom: 40px;
}

/* Hero-Badge "Verschlüsselt" — ersetzt die eyebrow */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  margin-bottom: 24px;
  border: 1px solid rgba(74, 222, 128, 0.30);
  background: rgba(74, 222, 128, 0.07);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: #86efac;
  line-height: 1;
}
.hero-badge .hero-badge-icon {
  color: #4ade80;
  filter: drop-shadow(0 0 6px rgba(74, 222, 128, 0.5));
  flex-shrink: 0;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero: Zahlungs-Hinweis — nimmt die Litecoin-Angst */
.hero-pay-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 480px;
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}
.hero-pay-note-icon { color: #86efac; flex-shrink: 0; margin-top: 1px; }
.hero-pay-note-body { min-width: 0; }
.hero-pay-note p {
  font-size: 13.5px;
  line-height: 1.55;
  opacity: 0.8;
  margin: 0 0 12px;
}
.hero-pay-note p strong { opacity: 1; font-weight: 600; color: #fff; }
/* Branded Zahlungs-Logos (echte Marken, Shopify-Style) */
.pay-logos { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; }
.pay-logo { display: inline-flex; }
.pay-logo svg {
  display: block;
  height: 34px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
@media (max-width: 700px) {
  .hero-pay-note { max-width: none; margin-top: 22px; padding: 14px 16px; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #fff;
  color: #000;
}
.btn-primary:hover {
  background: #000;
  color: #fff;
  box-shadow: inset 0 0 0 1px #fff;
}
.btn-ghost {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1px #fff; }
.btn-light {
  background: #000;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
}
.btn-light:hover { background: #fff; color: #000; }

/* hero visual */
.hero-visual { position: relative; }
.hero-image {
  aspect-ratio: 4/5;
  background:
    radial-gradient(120% 90% at 30% 20%, #2a2a2a 0%, #0a0a0a 60%, #000 100%);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.06);
}
.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 40% at 50% 50%, rgba(255,255,255,0.08), transparent 70%);
}
.hero-image-photo { background: #000; }
.hero-image-photo::before { display: none; }
.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

/* Klickbares Hero-Bild mit dezentem Product-Label am unteren Rand */
.hero-image-link {
  display: block;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.hero-image-link:hover { transform: translateY(-2px); }
.hero-image-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 28px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.hero-image-label-eye {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.65;
  font-weight: 500;
}
.hero-image-label-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #fff;
}
@media (max-width: 700px) {
  .hero-image-label { padding: 22px 18px 16px; }
  .hero-image-label-name { font-size: 18px; }
}
.hero-image-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-mark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 320px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.06);
  user-select: none;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
}
.hero-meta > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.hero-meta span:first-child { opacity: 0.45; font-variant-numeric: tabular-nums; }
.hero-meta span:last-child { text-transform: uppercase; }

/* ---------- Marquee (JS-driven seamless marquee) ---------- */
.marquee {
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  letter-spacing: -0.01em;
  font-style: italic;
  font-weight: 300;
  will-change: transform;
}
.marquee-item,
.marquee-sep {
  flex-shrink: 0;
  padding: 0 24px;
}
.marquee-sep { opacity: 0.5; padding: 0 4px; }

/* ---------- Section heads ---------- */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  padding: 100px 40px 50px;
  max-width: 1600px;
  margin: 0 auto;
}
.section-head-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(40px, 5.5vw, 84px);
  font-weight: 300;
  max-width: 16ch;
}
.section-head .eyebrow { margin-bottom: 14px; }

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter {
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all .2s ease;
}
.filter:hover { box-shadow: inset 0 0 0 1px #fff; }
.filter.active { background: #fff; color: #000; box-shadow: none; }

/* ---------- Categories ---------- */
.cats { padding: 0 40px 60px; max-width: 1600px; margin: 0 auto; }
.cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cat { display: block; }
.cat-img {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.cat:hover .cat-img { transform: translateY(-4px); }
.cat-img::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  border-radius: inherit;
  pointer-events: none;
}
.cat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  opacity: 0.6;
  position: relative;
  z-index: 2;
}
.cat-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 4px 0;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.cat-img-1 { background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 60%, #000 100%); }
.cat-img-2 { background: linear-gradient(160deg, #2a2a2a 0%, #111 70%); }
.cat-img-3 { background: radial-gradient(90% 70% at 70% 30%, #222, #050505 80%); }
.cat-img-4 { background: linear-gradient(45deg, #0d0d0d, #2a2a2a); }
.cat-img-5 { background: radial-gradient(120% 80% at 20% 80%, #1f1f1f, #000 70%); }
.cat-img-6 { background: linear-gradient(200deg, #111, #2a2a2a 60%, #0a0a0a); }

/* ---------- Products ---------- */
.products { padding: 0 40px 60px; max-width: 1600px; margin: 0 auto; }
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 16px;
}
.product { display: flex; flex-direction: column; gap: 14px; }
.product-link { display: block; }
.product-img {
  aspect-ratio: 3/4;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.product:hover .product-img { transform: translateY(-3px); }
.product-img::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  border-radius: inherit;
  pointer-events: none;
}
.product-img-1 { background: linear-gradient(135deg, #1f1f1f 0%, #0a0a0a 100%); }
.product-img-2 { background: radial-gradient(80% 60% at 30% 30%, #2a2a2a, #000 80%); }
.product-img-3 { background: linear-gradient(160deg, #111 0%, #2c2c2c 50%, #050505 100%); }
.product-img-4 { background: linear-gradient(45deg, #0a0a0a, #1f1f1f 60%, #0a0a0a); }
.product-img-5 { background: radial-gradient(100% 70% at 70% 70%, #222, #000 80%); }
.product-img-6 { background: linear-gradient(200deg, #2a2a2a, #050505 70%); }
.product-img-7 { background: linear-gradient(135deg, #161616, #2a2a2a 50%, #0a0a0a); }
.product-img-8 { background: radial-gradient(90% 80% at 30% 80%, #2c2c2c, #000 80%); }

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fff;
  color: #000;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 2;
}
.quick {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 22px;
  line-height: 1;
  font-weight: 300;
  opacity: 0;
  transform: translateY(6px);
  transition: all .25s ease;
}
.product:hover .quick { opacity: 1; transform: translateY(0); }
.quick:hover { background: #000; color: #fff; box-shadow: inset 0 0 0 1px #fff; }

.product-info {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}
.product-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}
.product-info p { font-size: 12px; }
.price-block { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; white-space: nowrap; }
.price { font-size: 14px; font-weight: 500; font-variant-numeric: tabular-nums; }
.unit { font-size: 11px; opacity: 0.55; letter-spacing: 0.04em; }

.origin {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 500;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}

.qty {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16);
  padding: 4px;
  position: relative;
}
.qty .step {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  transition: background .2s ease, color .2s ease;
}
.qty .step:hover { background: #fff; color: #000; }
.qty .step:disabled,
.qty .step.is-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
  background: transparent;
  color: #fff;
}
.qty-val {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}
.qty .add {
  grid-column: 1 / -1;
  height: 38px;
  margin-top: 4px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all .2s ease;
}
.qty .add:hover { background: #000; color: #fff; box-shadow: inset 0 0 0 1px #fff; }
.qty .add.added { background: #000; color: #fff; box-shadow: inset 0 0 0 1px #fff; }

/* qty-val: contains number input + unit suffix */
.qty-val {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.qty-num {
  background: transparent;
  border: 0;
  outline: none;
  width: 56px;
  text-align: center;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  padding: 4px 0;
  font-variant-numeric: tabular-nums;
  appearance: textfield;
  -moz-appearance: textfield;
  letter-spacing: 0.01em;
}
.qty-num:focus { outline: 1px solid rgba(255,255,255,0.3); outline-offset: 2px; border-radius: 3px; }
.qty-num::-webkit-outer-spin-button,
.qty-num::-webkit-inner-spin-button { appearance: none; margin: 0; }
.qty-unit {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  opacity: 0.55;
  font-weight: 500;
}
.qty-large .qty-num { font-size: 14px; width: 70px; }
.qty-large .qty-unit { font-size: 12px; }

.total-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 6px;
  padding: 10px 12px 0;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}
.total-line span { opacity: 0.55; font-weight: 500; }
.total-line strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  font-variant-numeric: tabular-nums;
}

.tier-hint {
  display: inline-block;
  margin-top: 6px;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  background: rgba(255,255,255,0.07);
  border-radius: 999px;
  padding: 3px 9px;
  font-weight: 500;
}

.see-all { display: flex; justify-content: center; padding: 60px 0 20px; }

/* ============================================================
   Breadcrumbs
   ============================================================ */
.crumbs {
  max-width: 1600px;
  margin: 0 auto;
  padding: 28px 40px 0;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0.7;
}
.crumbs a { transition: opacity .2s ease; }
.crumbs a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
.crumbs .current { color: #fff; opacity: 1; }
.crumbs span:not(.current) { opacity: 0.35; }

/* ============================================================
   Product Detail Page (PDP)
   ============================================================ */
.pdp {
  max-width: 1600px;
  margin: 0 auto;
  padding: 32px 40px 80px;
}
.pdp-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
.pdp-visual { position: sticky; top: 96px; }
.pdp-img {
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.pdp-img::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  border-radius: inherit;
  pointer-events: none;
}
.pdp-info { padding-top: 8px; }
.pdp-info .eyebrow { margin-bottom: 16px; }
.pdp-title {
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1.04;
}
.pdp-meta {
  font-size: 16px;
  opacity: 0.7;
  margin-bottom: 32px;
  letter-spacing: 0.005em;
}
.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 28px;
}
.pdp-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 46px;
  font-weight: 300;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.pdp-price-row .unit {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.55;
}
.pdp-buy { display: block; }
.qty-large {
  grid-template-columns: 48px 1fr 48px;
  padding: 6px;
  font-size: 14px;
}
.qty-large .step {
  width: 48px; height: 48px;
  font-size: 18px;
}
.qty-large .qty-val {
  font-size: 14px;
  letter-spacing: 0.04em;
}
.qty-large .add {
  height: 50px;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.pdp-desc {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.pdp-desc h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.pdp-desc p { opacity: 0.78; line-height: 1.65; max-width: 56ch; }

.pdp-data {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.pdp-data > div {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.pdp-data > div:nth-child(odd)  { padding-right: 24px; border-right: 1px solid rgba(255,255,255,0.06); }
.pdp-data > div:nth-child(even) { padding-left: 24px; }
.pdp-data dt {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.5;
  font-weight: 500;
}
.pdp-data dd { font-size: 13.5px; font-weight: 500; text-align: right; }

@media (max-width: 1100px) {
  .pdp-grid { grid-template-columns: 1fr; gap: 40px; }
  .pdp-visual { position: static; }
}
@media (max-width: 700px) {
  .pdp { padding: 24px 20px 60px; }
  .crumbs { padding: 24px 20px 0; }
  .pdp-data { grid-template-columns: 1fr; }
  .pdp-data > div { padding: 14px 0 !important; border-right: 0 !important; }
}

/* ============================================================
   PDP total + tier display
   ============================================================ */
.pdp-total-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 18px 4px 0;
  margin-top: 2px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.pdp-total-line > div { display: flex; flex-direction: column; gap: 4px; }
.pdp-total-line .pdp-total-right { align-items: flex-end; text-align: right; }
.pdp-total-line strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.pdp-total-line .pdp-total-right strong {
  font-size: 32px;
  letter-spacing: -0.02em;
}

.tier-box {
  margin-top: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.025);
}
.tier-box header { margin-bottom: 12px; }
.tier-box .eyebrow { margin-bottom: 0; }
.tier-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.tier-table th, .tier-table td {
  padding: 10px 0;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tier-table th {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.55;
}
.tier-table td.num, .tier-table th.num { text-align: right; }
.tier-table tr:last-child td { border-bottom: 0; }
.tier-table .muted { opacity: 0.55; font-size: 11px; }

/* Cart row tier tag + savings */
.row-tier {
  display: inline-block;
  margin: 4px 0 8px;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  background: rgba(74,222,128,0.13);
  color: #86efac;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 500;
}
.cart-line s { opacity: 0.4; font-weight: 400; }
.sum-savings { color: #86efac; }
.sum-savings dt { opacity: 0.85 !important; }
.sum-savings dd { font-weight: 500; }

/* ============================================================
   Investor page
   ============================================================ */
.inv-hero {
  max-width: 1600px;
  margin: 0 auto;
  padding: 32px 40px 0;
}
.inv-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.inv-title {
  font-size: clamp(64px, 8vw, 140px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 28px;
}
.inv-lead {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 56ch;
  margin-bottom: 32px;
}
.inv-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
}
.inv-meta > div { display: flex; flex-direction: column; gap: 6px; }
.inv-meta strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.inv-meta span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.55;
  font-weight: 500;
}
.inv-hero-visual {
  aspect-ratio: 4/5;
  background: radial-gradient(120% 90% at 30% 20%, #2a2a2a 0%, #0a0a0a 60%, #000 100%);
  border-radius: 4px;
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.06);
}
.inv-hero-mark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 320px;
  font-weight: 300;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.06);
  user-select: none;
}

.inv-video, .inv-steps, .inv-cta {
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px 40px;
}
.inv-video .section-head, .inv-steps .section-head { padding: 0 0 28px; }

.video-frame {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background:
    radial-gradient(60% 50% at 50% 40%, rgba(255,255,255,0.04), transparent 70%),
    #050505;
  display: grid;
  place-items: center;
  position: relative;
}
.video-frame::after {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.013) 0 22px, transparent 22px 44px);
  pointer-events: none;
}
.video-placeholder {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 30px 40px;
  position: relative;
  z-index: 1;
}
.video-play {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.65);
  display: grid; place-items: center;
  cursor: not-allowed;
  flex-shrink: 0;
}
.video-meta { max-width: 420px; }
.video-meta h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.video-meta .eyebrow { margin-bottom: 8px; }
.video-meta p { font-size: 13px; line-height: 1.5; }

.inv-steplist {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.inv-steplist li {
  background: #060606;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 28px 24px;
}
.step-num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  opacity: 0.5;
  margin-bottom: 14px;
  display: block;
}
.inv-steplist h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.inv-steplist p {
  font-size: 13.5px;
  line-height: 1.6;
  opacity: 0.75;
}

.inv-cta-card {
  background: #050505;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.inv-cta-card h2 {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  font-family: 'Fraunces', Georgia, serif;
}
.inv-cta-card .eyebrow { margin-bottom: 10px; }
.inv-cta-card .muted a {
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
}
.inv-form { display: flex; flex-direction: column; gap: 14px; }
.inv-form label, .inv-form .full {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 500;
}
.inv-form input, .inv-form select, .inv-form textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px;
  height: 44px;
  padding: 0 14px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  text-transform: none;
  letter-spacing: 0.005em;
  font-weight: 400;
}
.inv-form textarea { height: auto; padding: 12px 14px; min-height: 80px; resize: vertical; }
.inv-form input:focus, .inv-form select:focus, .inv-form textarea:focus { border-color: #fff; }
.inv-form select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='white' fill='none' stroke-width='1.4' opacity='0.6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

@media (max-width: 1100px) {
  .inv-hero-grid, .inv-cta-card { grid-template-columns: 1fr; }
  .inv-steplist { grid-template-columns: 1fr; }
  .pdp-total-line .pdp-total-right strong { font-size: 26px; }
}

/* ───────────── Error-Pages (404/403/500/…) ───────────── */
.err-page {
  min-height: calc(100dvh - 240px);
  max-width: 880px;
  margin: 0 auto;
  padding: 80px 40px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.err-wrap {
  text-align: center;
  width: 100%;
}
.err-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 14px;
  font-weight: 500;
}
.err-big {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(140px, 22vw, 320px);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: rgba(255,255,255,0.06);
  user-select: none;
  margin: -8px 0 -20px;
}
.err-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 22px;
}
.err-copy {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.78;
  max-width: 60ch;
  margin: 0 auto 36px;
}
.err-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.err-meta {
  font-size: 12px;
  opacity: 0.5;
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  letter-spacing: 0.01em;
}
.err-meta .sep { opacity: 0.45; }
.err-meta code { font-family: 'JetBrains Mono', ui-monospace, monospace; opacity: 0.85; }

@media (max-width: 700px) {
  .err-page { padding: 56px 20px 80px; min-height: calc(100dvh - 200px); }
  .err-headline { font-size: clamp(28px, 8vw, 44px); margin-bottom: 18px; }
  .err-copy { font-size: 15px; margin-bottom: 28px; }
  .err-actions { flex-direction: column; gap: 10px; }
  .err-actions .btn { width: 100%; }
  .err-meta { font-size: 11px; gap: 6px; }
  .err-meta .sep { display: none; }
}

/* ───────────── Shop-Toolbar (übersichtliche Filter + Sort) ───────────── */
.shop-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.shop-toolbar-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}
.shop-toolbar-chips .filter-count {
  opacity: 0.5;
  font-weight: 400;
  margin-left: 2px;
}
.shop-toolbar-chips .filter.active .filter-count { opacity: 0.55; }
.shop-toolbar-sort {
  flex: 0 0 auto;
}
.shop-toolbar-sort label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.shop-toolbar-sort .sort-label {
  font-weight: 500;
}
.shop-toolbar-sort select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  height: 36px;
  padding: 0 32px 0 14px;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 0.01em;
  text-transform: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='white' fill='none' stroke-width='1.4' opacity='0.6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}
.shop-toolbar-sort select:focus { border-color: #fff; outline: none; }

.shop-result-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  font-size: 13px;
  margin: 0 0 28px;
  opacity: 0.9;
}
.shop-result-line strong { font-weight: 600; }
.shop-result-line .muted { opacity: 0.55; }

@media (max-width: 760px) {
  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px 0;
  }
  .shop-toolbar-chips { gap: 6px; }
  .shop-toolbar-sort { align-self: flex-end; }
  .shop-toolbar-sort label { font-size: 11px; }
}

/* (entfernt: alter .dealer-cta-* Block — Index nutzt jetzt .story-Layout) */

/* ───────────── Dealer-Programm Promo ───────────── */
.dealer-promo {
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
}
.dealer-promo .section-head h2 em {
  font-style: normal;
}
.dealer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 12px;
}
.dealer-card {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s ease, transform .2s ease;
}
.dealer-card:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
.dealer-card .step-num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.55;
  margin: 0;
}
.dealer-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 0 4px;
}
.dealer-card p {
  font-size: 13.5px;
  line-height: 1.55;
  opacity: 0.78;
  margin: 0;
}
.dealer-card--primary {
  background: linear-gradient(180deg, #181818 0%, #0a0a0a 100%);
  border-color: rgba(255,255,255,0.18);
}
.dealer-card--gold {
  background: linear-gradient(180deg, rgba(255,210,120,0.12) 0%, rgba(255,210,120,0.03) 100%);
  border-color: rgba(255,210,120,0.30);
}
.dealer-card--gold h3,
.dealer-card--gold strong { color: #ffd278; }
.dealer-card--gold p strong { color: #ffe2a5; }

.dealer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  text-align: center;
}
.dealer-cta .btn { min-width: 280px; }

@media (max-width: 1100px) {
  .dealer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .dealer-grid { grid-template-columns: 1fr; gap: 12px; }
  .dealer-card { padding: 22px 20px; }
  .dealer-card h3 { font-size: 18px; }
  .dealer-cta .btn { min-width: 0; width: 100%; }
}
@media (max-width: 700px) {
  .inv-hero, .inv-video, .inv-steps, .inv-cta { padding-left: 20px; padding-right: 20px; }
  .inv-cta-card { padding: 28px 22px; }
  .video-placeholder { flex-direction: column; gap: 18px; padding: 24px; text-align: center; }

  /* ---- Hero-Page Mobile-Overrides ---- */
  /* inline grid-template-columns aus hero.php aushebeln */
  .inv-video .acc-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .inv-video .acc-card { padding: 18px 16px; }
  .inv-video .acc-card h2 { font-size: 28px !important; margin-top: 6px; }
  .inv-video .acc-card p { font-size: 12.5px; line-height: 1.45; }

  /* FAQ-Grid: inline 1fr 1fr → 1 Spalte */
  .inv-video .confirm-grid { grid-template-columns: 1fr !important; gap: 14px; }
  .inv-video .form-card { padding: 22px 20px; }

  /* CTA-Card: inline min-width:260px abschalten — Overflow-Quelle */
  .inv-cta-card { grid-template-columns: 1fr; gap: 26px; }
  .inv-cta-card > div[style*="min-width"] { min-width: 0 !important; width: 100%; }

  /* Hero-Headline + Meta proportional kleiner */
  .inv-hero { padding-top: 24px; }
  .inv-title { font-size: clamp(56px, 14vw, 88px); margin-bottom: 20px; }
  .inv-lead { font-size: 15.5px; }
  .inv-meta { grid-template-columns: repeat(3, 1fr); gap: 14px; padding-top: 20px; }
  .inv-meta strong { font-size: 24px; }
  .inv-meta span { font-size: 10px; letter-spacing: 0.12em; }

  /* Hero-Visual auf Mobile flacher + Stern kleiner gegen Overflow */
  .inv-hero-visual { aspect-ratio: 5/3; max-height: 320px; }
  .inv-hero-mark { font-size: 220px; }
}
@media (max-width: 420px) {
  .inv-meta { grid-template-columns: 1fr 1fr; }   /* 3 Kacheln zu eng → 2×2 mit Wrap */
  .inv-meta > div:nth-child(3) { grid-column: 1 / -1; }   /* dritte: über volle Breite */
  .inv-title { font-size: clamp(48px, 13vw, 72px); }
}

/* ============================================================
   Page wrap (cart, checkout, order-confirm, category)
   ============================================================ */
.page-wrap {
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px 40px 80px;
}
.page-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.page-head h1 {
  font-size: clamp(48px, 6vw, 100px);
  font-weight: 300;
  letter-spacing: -0.04em;
}
.page-head .eyebrow { margin-bottom: 12px; }
.page-meta { font-size: 13px; opacity: 0.55; letter-spacing: 0.04em; }

.step-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.step-nav .step {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.45);
  transition: all .2s ease;
}
.step-nav .step.done   { color: rgba(255,255,255,0.7); background: transparent; }
.step-nav .step.active { background: #fff; color: #000; }
.step-nav a.step:hover { color: #fff; }
.step-nav .step-sep { opacity: 0.35; }

/* ============================================================
   Empty state
   ============================================================ */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  background: #050505;
}
.empty-mark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 96px;
  font-weight: 300;
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 18px;
}
.empty-state h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.empty-state p { opacity: 0.6; max-width: 40ch; margin: 0 auto 28px; }
.empty-cat {
  text-align: center;
  padding: 80px 20px;
  opacity: 0.55;
  font-size: 14px;
}

/* ============================================================
   Cart page
   ============================================================ */
.cart-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.cart-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cart-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: center;
}
.cart-thumb {
  display: block;
}
.cart-thumb > div {
  aspect-ratio: 4/5;
  width: 100%;
  border-radius: 5px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.07);
  transition: transform .3s ease;
}
.cart-thumb:hover > div { transform: translateY(-2px); }
.cart-info { min-width: 0; }
.cart-name {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.005em;
  display: inline-block;
  margin-bottom: 4px;
}
.cart-name:hover { text-decoration: underline; text-underline-offset: 3px; }
.cart-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.cart-qty {
  display: grid;
  grid-template-columns: 36px auto 36px;
  gap: 4px;
  padding: 3px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16);
}
.cart-qty .qty-val {
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  min-width: 70px;
}
.link-btn {
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0.6;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 6px 0;
  transition: opacity .2s ease;
}
.link-btn:hover { opacity: 1; }
.cart-line {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cart-line strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

/* Cart summary aside */
.cart-sum {
  position: sticky;
  top: 96px;
  background: #060606;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 26px 24px;
}
.cart-sum h3, .checkout-sum h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.cart-sum dl, .checkout-sum dl {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cart-sum dl > div, .checkout-sum dl > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
}
.cart-sum dt, .checkout-sum dt { opacity: 0.65; }
.cart-sum .sum-total, .checkout-sum .sum-total {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  letter-spacing: -0.01em;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
  margin-top: 6px;
  border-bottom: 0;
}
.cart-sum .sum-total dt, .checkout-sum .sum-total dt {
  font-family: 'Inter', sans-serif;
  opacity: 0.85;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cart-sum .sum-total dd, .checkout-sum .sum-total dd { font-weight: 400; }
.ok { color: #86efac; font-weight: 500; }

.ship-meter {
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  padding: 12px 14px;
  margin: 0 0 18px;
}
.ship-meter-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  margin-bottom: 8px;
  overflow: hidden;
}
.ship-meter-bar span {
  display: block;
  height: 100%;
  background: #fff;
  border-radius: 999px;
  transition: width 0.6s cubic-bezier(.2,.7,.2,1);
}

.btn-block { display: flex; width: 100%; margin-bottom: 10px; }
.btn-large { height: 56px; font-size: 13px; }
.cart-trust {
  list-style: none;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  opacity: 0.6;
  letter-spacing: 0.02em;
}
.cart-trust li::before { content: "✓ "; color: #86efac; opacity: 0.7; }

/* ============================================================
   Checkout
   ============================================================ */
.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 32px;
  align-items: start;
}
.checkout-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
  width: 100%;
}
.checkout-main > .form-card { width: 100%; box-sizing: border-box; }

.form-card {
  background: #060606;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 26px 24px;
}
.form-card-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.form-card-head .eyebrow {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.02em;
  text-transform: none;
  margin: 0;
  opacity: 0.4;
}
.form-card-head h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.015em;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field-grid .full { grid-column: 1 / -1; }
.field-grid label, .form-card label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 500;
}
.field-grid label > span em { color: #fca5a5; font-style: normal; }
.field-grid label > span small {
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0.55;
  font-weight: 400;
  margin-left: 4px;
}
.form-card label.checkbox {
  flex-direction: row;
  align-items: center;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 13.5px;
  font-weight: 400;
  opacity: 1;
}
.form-card label.checkbox input { margin-right: 10px; }
.form-card input[type="text"],
.form-card input[type="email"],
.form-card input[type="tel"],
.form-card input[type="number"],
.form-card input[type="password"],
.form-card select,
.form-card textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px;
  height: 46px;
  padding: 0 14px;
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
  text-transform: none;
  letter-spacing: 0.005em;
  font-family: inherit;
  font-weight: 400;
}
.form-card textarea {
  height: auto;
  padding: 14px;
  resize: vertical;
  min-height: 80px;
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
}
.form-card input::placeholder, .form-card textarea::placeholder { color: rgba(255,255,255,0.35); }

/* Shipping options */
.ship-options {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}
.ship-opt { cursor: pointer; }
.ship-opt input { position: absolute; opacity: 0; pointer-events: none; }
.ship-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all .15s ease;
  height: 100%;
}
.ship-opt:hover .ship-card { border-color: rgba(255,255,255,0.2); }
.ship-opt input:checked + .ship-card {
  border-color: #fff;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 1px #fff inset;
}
.ship-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: grid;
  place-items: center;
}
.ship-text { display: flex; flex-direction: column; gap: 3px; }
.ship-text strong { font-size: 14px; font-weight: 500; }
.ship-text span { font-size: 11.5px; opacity: 0.55; letter-spacing: 0.005em; }
/* LTC-Hinweis in der Zahlungsauswahl — kräftig grün, mit echten Logos */
.ship-text .ltc-hint {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 11px;
  padding: 14px 15px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.20), rgba(34, 197, 94, 0.07));
  border: 1px solid rgba(74, 222, 128, 0.5);
  box-shadow: 0 8px 26px rgba(34, 197, 94, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  opacity: 1;
}
.ship-text .ltc-hint-head { display: flex; align-items: center; gap: 9px; }
.ship-text .ltc-hint-head svg {
  color: #3ee07a; flex-shrink: 0;
  filter: drop-shadow(0 0 7px rgba(62, 224, 122, 0.55));
}
.ship-text .ltc-hint-head strong {
  font-size: 13.5px; font-weight: 700; line-height: 1.25;
  color: #e3ffee; letter-spacing: 0.005em; white-space: normal;
}
.ship-text .ltc-hint-txt {
  font-size: 11.5px; line-height: 1.5;
  color: rgba(255, 255, 255, 0.74); opacity: 1;
}
.ship-text .ltc-hint .pay-logos { gap: 7px; }
.ship-text .ltc-hint .pay-logo svg {
  height: 27px; width: auto; border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
}
.ship-fee {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  opacity: 0.55;
  margin-top: auto;
  letter-spacing: 0;
}

.ship-fields { padding-top: 6px; }
.ship-fields[hidden] { display: none; }

.hint {
  margin-top: 12px;
  font-size: 12px;
  opacity: 0.55;
  line-height: 1.5;
  letter-spacing: 0.005em;
}

/* Checkout summary */
.checkout-sum {
  position: sticky;
  top: 96px;
  background: #060606;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 26px 24px;
}
.sum-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sum-list li {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
}
.sum-thumb {
  width: 44px; height: 44px;
  border-radius: 5px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.07);
}
.sum-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sum-info strong {
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.005em;
}
.sum-price {
  font-size: 13.5px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ============================================================
   Order confirmation
   ============================================================ */
.confirm-hero {
  background: #050505;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 50px 40px;
  text-align: center;
  margin-bottom: 24px;
}
.confirm-mark {
  width: 72px; height: 72px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  font-size: 30px;
  font-weight: 600;
}
.confirm-lead {
  font-size: 17px;
  max-width: 60ch;
  margin: 0 auto 28px;
  opacity: 0.85;
  line-height: 1.55;
}
.confirm-number {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 28px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.confirm-number .eyebrow { margin-bottom: 0; }
.confirm-number strong {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.confirm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 32px;
}
.confirm-address {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.92;
  font-style: normal;
}
.confirm-address strong { font-weight: 500; }
.confirm-note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.confirm-note p { opacity: 0.75; font-size: 13.5px; line-height: 1.6; }

/* ---------- Confirm: Lieferung-Card ---------- */
.confirm-ship .form-card-head { margin-bottom: 18px; }
.confirm-recipient {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}
.confirm-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.confirm-ship-method {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  margin-top: 4px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
}
.confirm-ship-ico {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
}
.confirm-ship-method strong { display: block; font-size: 14px; font-weight: 500; margin-bottom: 2px; }
.confirm-ship-method .muted { font-size: 11.5px; }
.confirm-ship-fee {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.confirm-ship-fee.ok { color: #86efac; }

/* ---------- Confirm: Bestellung-Card ---------- */
.confirm-order .form-card-head h2 {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
}
.confirm-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.confirm-meta > div { display: flex; flex-direction: column; gap: 2px; }
.confirm-meta dt {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.5;
  font-weight: 500;
}
.confirm-meta dd { font-size: 13.5px; font-weight: 500; font-variant-numeric: tabular-nums; }

.confirm-items {
  margin: 0 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.confirm-items li {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px 0;
}
.confirm-items .sum-thumb {
  width: 52px; height: 52px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.07);
}
.confirm-items .sum-info strong {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.confirm-items .sum-info .muted {
  font-size: 11.5px;
  display: block;
  margin-top: 2px;
}
.confirm-items .sum-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.confirm-discount {
  color: #86efac;
  font-weight: 500;
}

.confirm-sum {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.confirm-sum > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13.5px;
}
.confirm-sum dt { opacity: 0.65; }
.confirm-sum dd { font-variant-numeric: tabular-nums; }
.confirm-sum-discount dt, .confirm-sum-discount dd { color: #86efac; }
.confirm-sum-total {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 14px;
  margin-top: 6px;
}
.confirm-sum-total dt {
  font-size: 12px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.85 !important;
}
.confirm-sum-total dd {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

@media (max-width: 700px) {
  .confirm-meta { grid-template-columns: 1fr; gap: 10px; padding-bottom: 14px; margin-bottom: 18px; }
  .confirm-items li { grid-template-columns: 44px 1fr auto; gap: 12px; }
  .confirm-items .sum-thumb { width: 44px; height: 44px; }
  .confirm-name { font-size: 19px; }
  .confirm-sum-total dd { font-size: 22px; }
}
.next-steps {
  background: #060606;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 32px 36px;
}
.next-steps h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 22px;
  letter-spacing: -0.015em;
}
.next-steps ol {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.next-steps ol li {
  counter-increment: step;
  position: relative;
  padding-left: 38px;
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.55;
}
.next-steps ol li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.07);
  border-radius: 5px;
  display: grid;
  place-items: center;
  font-weight: 500;
}
.confirm-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   Category page
   ============================================================ */
.cat-hero {
  max-width: 1600px;
  margin: 0 auto;
  padding: 32px 40px 0;
}
.cat-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cat-hero-grid--solo {
  grid-template-columns: 1fr;
  max-width: 920px;
}
.cat-hero-copy .eyebrow { margin-bottom: 18px; }
.cat-title {
  font-size: clamp(56px, 8vw, 130px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.96;
  margin-bottom: 28px;
}
.cat-desc {
  font-size: 17px;
  line-height: 1.55;
  opacity: 0.8;
  max-width: 56ch;
  margin-bottom: 28px;
}
.cat-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
}
.cat-meta strong { font-family: 'Inter'; font-weight: 600; }
.cat-meta .dot { width: 4px; height: 4px; background: rgba(255,255,255,0.4); border-radius: 50%; }
.cat-hero-visual {
  aspect-ratio: 4/5;
  border-radius: 6px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.06);
}
.cat-hero-visual.cats-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}
.cats-preview-tile {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 12px 32px rgba(0,0,0,0.3);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.cats-preview-tile:hover { transform: translateY(-3px); }
.cats-preview-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0) 60%);
  pointer-events: none;
}
.cats-preview-tile span {
  position: relative;
  z-index: 1;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
}

.is-current {
  position: relative;
}
.is-current::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0; right: 0;
  height: 1px;
  background: #fff;
}

.sort-form select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  height: 40px;
  padding: 0 36px 0 16px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='white' fill='none' stroke-width='1.4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  font-family: inherit;
}
.sort-form label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* Inline flash on customer pages */
.flash {
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13px;
  margin-bottom: 18px;
  border: 1px solid transparent;
}
.flash-err { background: rgba(248,113,113,0.08); color: #fca5a5; border-color: rgba(248,113,113,0.20); }
.flash-ok  { background: rgba(74,222,128,0.08); color: #86efac; border-color: rgba(74,222,128,0.18); }

/* Cart link active state */
.cart.is-active { font-weight: 500; }

/* Cart toast */
.cart-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #fff;
  color: #000;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  transform: translateY(20px);
  opacity: 0;
  transition: all .35s cubic-bezier(.2,.7,.2,1);
  z-index: 100;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-toast.show { transform: translateY(0); opacity: 1; }
.cart-toast::before {
  content: "✓";
  width: 22px; height: 22px;
  background: #000; color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .cart-grid, .checkout-grid { grid-template-columns: 1fr; }
  .cart-sum, .checkout-sum { position: static; }
  .ship-options { grid-template-columns: 1fr; }
  .cat-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .confirm-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .page-wrap { padding: 32px 20px 60px; }
  .page-head { margin-bottom: 32px; }
  .step-nav { font-size: 11px; gap: 8px; flex-wrap: wrap; }
  .cart-row { grid-template-columns: 80px 1fr; }
  .cart-line { grid-column: 1 / -1; text-align: left; padding-top: 8px; flex-direction: row; align-items: baseline; gap: 12px; }
  .field-grid { grid-template-columns: 1fr; }
  .cat-hero { padding: 24px 20px 0; }
  .next-steps { padding: 26px 22px; }
  .confirm-hero { padding: 36px 20px; }
}

/* ============================================================
   Nav: search & account
   ============================================================ */
.nav-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 999px;
  transition: background .2s ease;
}
.nav-search:hover { background: rgba(255,255,255,0.06); }
.nav-search.is-active { background: rgba(255,255,255,0.1); }
.nav-account {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  font-size: 13px;
  letter-spacing: 0.005em;
  transition: background .2s ease;
}
.nav-account:hover { background: rgba(255,255,255,0.1); }
.nav-account.is-active { background: rgba(255,255,255,0.12); }
.nav-account svg { opacity: 0.7; }
.nav-account span { font-weight: 500; }

.nav-min .nav-inner {
  grid-template-columns: 1fr auto 1fr;
}
.nav-back {
  justify-self: end;
  font-size: 13px;
  opacity: 0.65;
  transition: opacity .2s ease;
}
.nav-back:hover { opacity: 1; }

/* ============================================================
   Auth pages (login + register)
   ============================================================ */
.auth-wrap {
  min-height: calc(100vh - 80px);
  display: grid;
  place-items: center;
  padding: 64px 24px;
  background:
    radial-gradient(70% 50% at 50% 18%, rgba(255,255,255,0.05), transparent 70%),
    radial-gradient(60% 40% at 50% 100%, rgba(255,255,255,0.02), transparent 70%);
}
.auth-card {
  background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 52px 44px 36px;
  width: 100%;
  max-width: 460px;
  text-align: center;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
.auth-card-lg { max-width: 580px; }

.auth-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 auto 28px;
}
.auth-mark img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 18px rgba(255,255,255,0.06));
}
.auth-spellout {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-indent: 0.42em;            /* damit das große Tracking optisch zentriert wirkt */
  text-transform: uppercase;
  opacity: 0.75;
  color: #fff;
}

.auth-card h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 42px;
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.auth-card .eyebrow {
  margin-bottom: 12px;
  letter-spacing: 0.24em;
  font-size: 10px;
  opacity: 0.5;
}
.auth-sub {
  opacity: 0.6;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0 auto 32px;
  max-width: 38ch;
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.auth-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.auth-form-grid .full { grid-column: 1 / -1; }
.auth-form label, .auth-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 500;
}
.auth-form label > span em { color: #fca5a5; font-style: normal; }
.auth-form label.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: 0.005em;
  text-transform: none;
  opacity: 0.85;
  font-weight: 400;
  margin-top: 6px;
}
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="tel"],
.auth-form input[type="password"] {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  height: 50px;
  padding: 0 18px;
  font-size: 14px;
  color: #fff;
  outline: none;
  font-family: inherit;
  text-transform: none;
  letter-spacing: 0.005em;
  font-weight: 400;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.auth-form input:hover { border-color: rgba(255,255,255,0.20); }
.auth-form input:focus {
  border-color: #fff;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.05);
}
.auth-form input::placeholder { color: rgba(255,255,255,0.28); }
.auth-error {
  background: rgba(248,113,113,0.08);
  color: #fca5a5;
  border: 1px solid rgba(248,113,113,0.2);
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  margin-bottom: 18px;
  text-align: left;
}
.auth-error div + div { margin-top: 4px; }
.auth-foot {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  letter-spacing: 0.005em;
}
.auth-foot span { opacity: 0.5; }
.auth-foot a {
  color: #fff;
  font-weight: 500;
  transition: opacity .2s ease;
}
.auth-foot a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   Account pages
   ============================================================ */
.account-nav {
  display: flex;
  gap: 4px;
  margin: -10px 0 28px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 0;
}
.account-nav a {
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.005em;
  opacity: 0.6;
  position: relative;
  transition: opacity .2s ease;
}
.account-nav a:hover { opacity: 1; }
.account-nav a.active {
  opacity: 1;
}
.account-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 14px; right: 14px;
  height: 1px;
  background: #fff;
}
.account-nav a.logout {
  margin-left: auto;
  color: rgba(255, 100, 100, 0.7);
}
.account-nav a.logout:hover { color: #ff8888; }

.account-body { display: flex; flex-direction: column; gap: 20px; }

.acc-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}
.acc-card {
  background: #060606;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 26px 26px;
}
.acc-card .card-eye {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 10px;
  font-weight: 500;
}
.acc-card h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.acc-card p { opacity: 0.7; font-size: 14px; line-height: 1.55; }

.acc-welcome { display: flex; flex-direction: column; }
.acc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.acc-stats > div {
  padding: 22px 0 0;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.acc-stats > div:last-child { border-right: 0; }
.acc-stats strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 38px;
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.acc-stats span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.55;
}

.acc-orders {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.acc-orders li {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 13.5px;
}
.acc-orders li:last-child { border-bottom: 0; }
.acc-order-meta { display: flex; flex-direction: column; gap: 3px; }
.acc-order-meta strong { font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 500; }
.acc-order-total {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  text-align: right;
  letter-spacing: -0.01em;
}

/* Account orders list (own page) */
.acc-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
.acc-section-head p { max-width: 60ch; }
.acc-orders-table {
  background: #060606;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
}
.acc-orders-head {
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}
.acc-orders-list { list-style: none; }
.acc-order {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr auto;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: center;
}
.acc-order:last-child { border-bottom: 0; }
.acc-order-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13.5px;
}
.acc-order-cell.num { text-align: right; align-items: flex-end; }
.acc-order-cell strong { font-weight: 500; }

/* ============================================================
   Addresses
   ============================================================ */
.addr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.addr-card {
  background: #060606;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .15s ease;
}
.addr-card:hover { border-color: rgba(255,255,255,0.18); }
.addr-card.is-default {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.025);
}
.addr-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.addr-default {
  display: inline-block;
  margin-left: 8px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: #fff;
  color: #000;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 600;
}
.addr-label {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-top: 6px;
}
.addr-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ============================================================
   Search
   ============================================================ */
.search-hero {
  max-width: 1100px;
  margin: 60px auto 30px;
  padding: 0 40px;
  text-align: center;
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #060606;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  transition: border-color .15s ease;
}
.search-bar:focus-within { border-color: #fff; }
.search-bar svg { opacity: 0.5; flex-shrink: 0; }
.search-bar input {
  flex: 1;
  background: transparent;
  border: 0;
  height: 56px;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
  outline: none;
  letter-spacing: 0.005em;
}
.search-bar input::placeholder { color: rgba(255,255,255,0.35); }
.search-bar button {
  height: 48px;
  background: #fff;
  color: #000;
  border-radius: 999px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background .15s ease;
}
.search-bar button:hover { background: #d4d4d4; }
.search-hint {
  margin-top: 22px;
  opacity: 0.7;
  font-size: 14px;
  letter-spacing: 0.005em;
}
.search-hint strong { color: #fff; opacity: 1; font-weight: 600; }
.search-suggestions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* ============================================================
   Saved addresses on checkout
   ============================================================ */
.saved-addrs {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.saved-addrs-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 12px;
  font-weight: 500;
}
.addr-chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.addr-chip {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 16px;
  text-align: left;
  cursor: pointer;
  transition: all .15s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 140px;
}
.addr-chip:hover { border-color: rgba(255,255,255,0.3); }
.addr-chip.active {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}
.addr-chip-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.addr-chip-meta {
  font-size: 11px;
  opacity: 0.6;
  letter-spacing: 0.01em;
}
.addr-chip.is-new {
  border-style: dashed;
  background: transparent;
}

.login-hint {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 22px;
  font-size: 13px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.login-hint span { opacity: 0.65; }
.login-hint a { font-weight: 500; }
.login-hint a:hover { text-decoration: underline; text-underline-offset: 3px; }

.save-addr-block {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.save-addr-fields { padding-top: 14px; }

/* ============================================================
   Status badges (frontend, mirrors admin)
   ============================================================ */
.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.status .dot { width: 7px; height: 7px; border-radius: 50%; }
.status-pending   { color: #fbbf24; }
.status-pending .dot   { background: #fbbf24; box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.18); }
.status-paid      { color: #60a5fa; }
.status-paid .dot      { background: #60a5fa; box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.18); }
.status-processing { color: #fb923c; }
.status-processing .dot { background: #fb923c; box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.18); }
.status-shipped   { color: #a78bfa; }
.status-shipped .dot   { background: #a78bfa; box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.18); }
.status-delivered { color: #4ade80; }
.status-delivered .dot { background: #4ade80; box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.18); }
.status-cancelled { color: #6b7280; }
.status-cancelled .dot { background: #6b7280; }

.ship-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  font-weight: 500;
  background: rgba(255,255,255,0.06);
}
.ship-home        { background: rgba(96,165,250,0.12); color: #93c5fd; }
.ship-packstation { background: rgba(167,139,250,0.12); color: #c4b5fd; }
.ship-postfiliale { background: rgba(74,222,128,0.12); color: #86efac; }

/* Row buttons (carry from admin) */
.row-btn {
  font-size: 11.5px;
  letter-spacing: 0.04em;
  padding: 7px 11px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  transition: all .15s ease;
  white-space: nowrap;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}
.row-btn:hover { background: rgba(255,255,255,0.12); }
.row-btn-danger:hover { background: rgba(248, 113, 113, 0.15); color: #fca5a5; }
.inline { display: inline; }

@media (max-width: 1000px) {
  .acc-grid { grid-template-columns: 1fr; }
  .addr-grid { grid-template-columns: 1fr; }
  .acc-orders li { grid-template-columns: 1fr 1fr; gap: 8px 16px; }
  .acc-order { grid-template-columns: 1fr 1fr; gap: 12px; }
  .auth-form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .search-hero { padding: 0 20px; }
  /* Account-Tabs: ALLE 7 Punkte (inkl. Abmelden) sichtbar — Wrap auf mehrere
     Reihen statt horizontalem Scroll. So bleibt nichts versteckt. */
  .account-nav {
    gap: 4px;
    overflow-x: visible;
    flex-wrap: wrap;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .account-nav a {
    padding: 10px 12px;
    font-size: 12.5px;
    letter-spacing: 0;
    flex: 0 0 auto;
  }
  .account-nav a.active::after { left: 8px; right: 8px; }
  .account-nav a.logout {
    margin-left: auto;       /* bleibt der "rechts ausgerichtete" Abschluss in der letzten Reihe */
  }
  .acc-stats { grid-template-columns: 1fr; }
  .acc-stats > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 22px 0; }
  .acc-stats > div:last-child { border-bottom: 0; }
}
@media (max-width: 420px) {
  .account-nav a { font-size: 11.5px; padding: 9px 10px; }
}

/* ---------- Trust ---------- */
.trust { padding: 60px 40px; max-width: 1600px; margin: 0 auto; }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.stats > div {
  padding: 48px 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.stats > div:last-child { border-right: 0; }
.stats strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.02em;
}
.stats .stat-lock-cell {
  justify-content: center;                 /* Schloss vertikal in der Cell zentriert */
  align-items: center;
}
.stats .stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;                          /* sattes Grün */
  filter: drop-shadow(0 0 18px rgba(74, 222, 128, 0.35));
  line-height: 1;
}
.stats .stat-icon svg {
  width: clamp(48px, 5vw, 64px);
  height: clamp(48px, 5vw, 64px);
  display: block;
}

/* ---------- Block-Cipher Animation ---------- */
.block-cipher {
  width: clamp(72px, 6.5vw, 96px);
  height: clamp(72px, 6.5vw, 96px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 4px;
  padding: 6px;
  border-radius: 6px;
  background: rgba(74, 222, 128, 0.04);
  box-shadow: inset 0 0 0 1px rgba(74, 222, 128, 0.18), 0 0 32px rgba(74, 222, 128, 0.12);
}
.block-cipher span {
  background: #4ade80;
  border-radius: 2px;
  opacity: 0.12;
  animation: block-cipher-pulse 2.4s ease-in-out infinite;
  will-change: opacity, transform;
}
@keyframes block-cipher-pulse {
  0%, 100% { opacity: 0.12; transform: scale(0.85); box-shadow: none; }
  45%      { opacity: 1;    transform: scale(1);    box-shadow: 0 0 8px rgba(74, 222, 128, 0.7); }
  55%      { opacity: 1;    transform: scale(1);    box-shadow: 0 0 8px rgba(74, 222, 128, 0.7); }
}
.block-cipher span:nth-child(1)  { animation-delay: 0.00s; }
.block-cipher span:nth-child(2)  { animation-delay: 0.85s; }
.block-cipher span:nth-child(3)  { animation-delay: 0.22s; }
.block-cipher span:nth-child(4)  { animation-delay: 1.60s; }
.block-cipher span:nth-child(5)  { animation-delay: 0.45s; }
.block-cipher span:nth-child(6)  { animation-delay: 1.10s; }
.block-cipher span:nth-child(7)  { animation-delay: 0.08s; }
.block-cipher span:nth-child(8)  { animation-delay: 1.85s; }
.block-cipher span:nth-child(9)  { animation-delay: 0.65s; }
.block-cipher span:nth-child(10) { animation-delay: 0.30s; }
.block-cipher span:nth-child(11) { animation-delay: 1.45s; }
.block-cipher span:nth-child(12) { animation-delay: 0.55s; }
.block-cipher span:nth-child(13) { animation-delay: 0.10s; }
.block-cipher span:nth-child(14) { animation-delay: 1.20s; }
.block-cipher span:nth-child(15) { animation-delay: 0.75s; }
.block-cipher span:nth-child(16) { animation-delay: 0.92s; }
.block-cipher span:nth-child(17) { animation-delay: 0.40s; }
.block-cipher span:nth-child(18) { animation-delay: 2.05s; }
.block-cipher span:nth-child(19) { animation-delay: 0.18s; }
.block-cipher span:nth-child(20) { animation-delay: 1.35s; }
.block-cipher span:nth-child(21) { animation-delay: 0.60s; }
.block-cipher span:nth-child(22) { animation-delay: 1.70s; }
.block-cipher span:nth-child(23) { animation-delay: 0.27s; }
.block-cipher span:nth-child(24) { animation-delay: 0.95s; }
.block-cipher span:nth-child(25) { animation-delay: 1.50s; }
@media (prefers-reduced-motion: reduce) {
  .block-cipher span { animation: none; opacity: 0.6; }
}

.block-cipher.block-cipher-sm {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  padding: 4px;
  gap: 2px;
  border-radius: 4px;
}

.enc-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  margin: 0 0 20px;
  background: rgba(74, 222, 128, 0.05);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 8px;
}
.enc-banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.enc-banner-text strong {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4ade80;
  font-weight: 600;
}
.enc-banner-text span {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.75;
}
@media (max-width: 640px) {
  .enc-banner { padding: 14px 16px; gap: 14px; }
  .block-cipher.block-cipher-sm { width: 48px; height: 48px; flex-basis: 48px; }
  .enc-banner-text strong { font-size: 11px; }
  .enc-banner-text span { font-size: 12px; }
}
.stats span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
}

.logos {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  opacity: 0.55;
}
.logos span {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.18em;
  font-size: 16px;
}

/* ---------- Story ---------- */
.story { padding: 80px 40px; max-width: 1600px; margin: 0 auto; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-visual {
  aspect-ratio: 1/1.05;
  background: #fff;
  color: #000;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.story-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 50% at 30% 30%, rgba(0,0,0,0.04), transparent 70%);
}
.story-mark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(120px, 16vw, 220px);
  font-weight: 300;
  letter-spacing: -0.04em;
  font-style: italic;
}
.story-copy h2 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  margin-bottom: 28px;
}
.story-copy p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.78;
  margin-bottom: 18px;
  max-width: 52ch;
}
.story-copy .btn { margin-top: 24px; }

/* ---------- Newsletter ---------- */
.news {
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 100px 40px;
  text-align: center;
}
.news-inner { max-width: 640px; margin: 0 auto; }
.news h2 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  margin-bottom: 18px;
}
.news p { opacity: 0.7; margin-bottom: 32px; }
.news-form {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.news-form input {
  flex: 1;
  height: 52px;
  padding: 0 22px;
  background: transparent;
  border: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
  border-radius: 999px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: box-shadow .2s ease;
}
.news-form input::placeholder { color: rgba(255,255,255,0.4); }
.news-form input:focus { box-shadow: inset 0 0 0 1px #fff; }
.news-form button {
  height: 52px;
  padding: 0 28px;
  background: #fff;
  color: #000;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .2s ease;
}
.news-form button:hover { background: #000; color: #fff; box-shadow: inset 0 0 0 1px #fff; }
.news small { font-size: 11px; opacity: 0.5; letter-spacing: 0.04em; }

/* ---------- Footer ---------- */
.foot { padding: 80px 40px 32px; max-width: 1600px; margin: 0 auto; }
.foot-grid {
  display: grid;
  grid-template-columns: 1fr auto;       /* Brand links · Sortiment rechts */
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  align-items: start;
}
.foot-sortiment { text-align: right; min-width: 200px; }
.foot-sortiment h4 { text-align: right; }
.foot-admin {
  color: rgba(255,255,255,0.45);
  transition: color .15s ease;
}
.foot-admin:hover { color: #fff; }
.foot-logo {
  margin-bottom: 18px;
  line-height: 0;
}
.foot-logo img {
  height: 56px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
}
.foot-brand p { opacity: 0.6; font-size: 13px; line-height: 1.6; }
.foot h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.5;
  margin-bottom: 18px;
}
.foot a {
  display: block;
  font-size: 14px;
  padding: 5px 0;
  opacity: 0.85;
  transition: opacity .2s ease;
}
.foot a:hover { opacity: 1; }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);          /* statt opacity, damit Children eigene Helligkeit haben können */
}
.foot-bottom > span { white-space: nowrap; }

/* ---------- Payment-Timer (Kreis-Countdown) ---------- */
.pay-timer {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  line-height: 1;
}
.pay-timer svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  display: block;
}
.pay-timer-bg {
  fill: none;
  stroke: rgba(255,255,255,0.12);
  stroke-width: 3;
}
.pay-timer-ring {
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s linear;
}
.pay-timer[data-expired="1"] .pay-timer-ring { stroke: rgba(255,255,255,0.3); }
.pay-timer[data-expired="1"] .pay-timer-text { opacity: 0.45; }
.pay-timer-text {
  position: absolute;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.pay-timer-lg { width: 72px; height: 72px; }
.pay-timer-lg .pay-timer-bg,
.pay-timer-lg .pay-timer-ring { stroke-width: 3.5; }
.pay-timer-lg .pay-timer-text { font-size: 14px; }

/* Hero-Pay-Header: Timer rechts oben, Text bleibt links */
.hero-pay-status {
  position: relative;
}
.hero-pay-timer {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 640px) {
  .hero-pay-timer { position: static; margin-bottom: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .pay-timer-ring { transition: none; }
}

.foot-mini-logo {
  height: 22px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  opacity: 0.85;
  margin-right: 4px;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats > div:nth-child(2) { border-right: 0; }
  .stats > div:nth-child(1), .stats > div:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.15); }
}
@media (max-width: 860px) {
  .nav-inner { padding: 16px 20px; }
  .nav-left { display: none; }
  .nav-right { gap: 18px; }
  .hero { padding: 60px 20px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-meta { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
  .section-head { padding: 70px 20px 30px; }
  .cats, .products, .trust, .story, .foot { padding-left: 20px; padding-right: 20px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .news { padding: 70px 20px; }
  .news-form { flex-direction: column; }
  .news-form button, .news-form input { width: 100%; }
}
@media (max-width: 560px) {
  .hero-mark { font-size: 200px; }
  .grid { grid-template-columns: 1fr 1fr; gap: 16px 10px; }
  .cats-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stats > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stats > div:last-child { border-bottom: 0; }
  .foot-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   Payment UI · Litecoin payment surface (order-confirm, hero dashboard)
   =================================================================== */

.pay-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 28px 32px;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.pay-card[data-state="paid"] {
  border-color: rgba(74,222,128,0.35);
  background: linear-gradient(180deg, rgba(74,222,128,0.07) 0%, rgba(74,222,128,0.02) 100%);
}
.pay-card[data-state="partial"] {
  border-color: rgba(251,191,36,0.30);
}
.pay-card[data-state="expired"] {
  border-color: rgba(248,113,113,0.30);
  background: linear-gradient(180deg, rgba(248,113,113,0.06) 0%, rgba(248,113,113,0.015) 100%);
  opacity: 0.85;
}
.pay-card[data-state="expired"] .pay-status-dot {
  background: #fca5a5;
  box-shadow: 0 0 0 4px rgba(248,113,113,0.18);
  animation: none;
}
.pay-card[data-state="expired"] .pay-progress-fill {
  background: linear-gradient(90deg, #fca5a5, #ef4444);
}

/* Status header */
.pay-status {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pay-status-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #fbbf24; box-shadow: 0 0 0 4px rgba(251,191,36,0.18);
  animation: pay-pulse 1.6s ease-in-out infinite;
}
.pay-card[data-state="paid"]    .pay-status-dot { background: #4ade80; box-shadow: 0 0 0 4px rgba(74,222,128,0.18); animation: none; }
.pay-card[data-state="partial"] .pay-status-dot { background: #fbbf24; }
.pay-card[data-state="waiting"] .pay-status-dot { background: #60a5fa; box-shadow: 0 0 0 4px rgba(96,165,250,0.18); }
@keyframes pay-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.25); opacity: 0.7; }
}
.pay-status-text {
  font-family: 'Fraunces', serif; font-size: 22px; font-weight: 400;
  letter-spacing: -0.01em; flex: 1;
}
.pay-status-meta {
  font-size: 11px; opacity: 0.55; text-transform: uppercase; letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}

/* Hero row: big amount + QR */
.pay-hero {
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
}
.pay-amount-eye { font-size: 11px; opacity: 0.55; text-transform: uppercase; letter-spacing: 0.10em; }
.pay-amount-ltc {
  font-family: 'JetBrains Mono', monospace;
  font-size: 38px; font-weight: 500; line-height: 1.1;
  margin: 8px 0 6px; letter-spacing: -0.01em;
}
.pay-amount-eur { font-size: 13px; opacity: 0.65; }

.pay-qr {
  background: #fff; padding: 10px; border-radius: 10px;
  width: 200px; height: 200px;
  display: flex; align-items: center; justify-content: center;
}
.pay-qr img { width: 180px; height: 180px; display: block; }

/* Address block */
.pay-address {
  display: flex; flex-direction: column; gap: 8px;
}
.pay-address-eye { font-size: 11px; opacity: 0.55; text-transform: uppercase; letter-spacing: 0.10em; }
.pay-address-row {
  display: flex; gap: 10px; align-items: center;
  padding: 14px 18px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  font-family: 'JetBrains Mono', monospace;
}
.pay-address-row code {
  font-size: 13px; word-break: break-all; flex: 1;
  letter-spacing: 0.01em;
}
.pay-copy-btn {
  background: #fff; color: #000; border: 0;
  padding: 6px 14px; border-radius: 6px;
  cursor: pointer; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  transition: opacity .15s;
  font-family: inherit;
}
.pay-copy-btn:hover { opacity: 0.85; }
.pay-copy-btn.done { background: #4ade80; color: #003a1a; }

/* Progress */
.pay-progress { display: flex; flex-direction: column; gap: 10px; }
.pay-progress-bar {
  height: 6px; background: rgba(255,255,255,0.06); border-radius: 999px; overflow: hidden;
}
.pay-progress-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
  transition: width .8s cubic-bezier(.4,0,.2,1);
}
.pay-card[data-state="paid"] .pay-progress-fill {
  background: linear-gradient(90deg, #4ade80 0%, #22c55e 100%);
}
.pay-progress-meta {
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; opacity: 0.7;
}
.pay-progress-meta strong { opacity: 1; font-weight: 500; }

/* Footnote */
.pay-hint {
  font-size: 12px; opacity: 0.55; line-height: 1.55;
  padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.06);
  margin: 0;
}

@media (max-width: 720px) {
  .pay-card { padding: 22px 20px; gap: 20px; }
  .pay-hero { grid-template-columns: 1fr; }
  .pay-qr { width: 100%; max-width: 240px; height: auto; aspect-ratio: 1; margin: 0 auto; }
  .pay-amount-ltc { font-size: 30px; word-break: break-all; }
  .pay-address-row { flex-wrap: wrap; }
}

/* Payment-method picker on checkout step 2 — give the cards more room */
/* ─── Pay-Picker: zwei Zahlungs-Optionen untereinander, jede full-width ─── */
.pay-picker .ship-options {
  grid-template-columns: 1fr;     /* IMMER 1 Spalte — beide Optionen stacked */
  gap: 12px;
}
.pay-picker .ship-card {
  /* flex-row: Icon | Text (flex:1) | Preis */
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  width: 100%;
  min-width: 0;
}
.pay-picker .ship-icon { flex: 0 0 auto; }
.pay-picker .ship-text {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pay-picker .ship-text strong { font-size: 16px; }
.pay-picker .ship-text span {
  font-size: 12px;
  opacity: 0.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.pay-picker .ship-fee {
  flex: 0 0 auto;
  margin-top: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 1;
}
.pay-picker .ship-opt.is-disabled .ship-card { background: rgba(0,0,0,0.15); }
.pay-picker-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 18px; padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  font-size: 12px; opacity: 0.7;
}
.pay-picker-foot strong { font-family: 'JetBrains Mono', monospace; opacity: 1; }

/* Tier price hint: "ab" prefix on product tiles and PDP hero */
.price-from, .pdp-price-from {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.55;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 4px;
  vertical-align: middle;
}
.pdp-price-from { font-size: 14px; letter-spacing: 0.06em; }

.pdp-tier-badge {
  margin-left: 6px;
  color: #4ade80;
  opacity: 0.85;
}

/* PDP gallery with multiple images / videos */
.pdp-gallery { display: flex; flex-direction: column; gap: 14px; }
.pdp-stage {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}
.pdp-stage .pdp-media {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  opacity: 0; transition: opacity .35s ease;
  pointer-events: none;
}
.pdp-stage .pdp-media.is-active { opacity: 1; pointer-events: auto; }

.pdp-stage .badge,
.pdp-stage .origin {
  position: absolute; z-index: 2;
}
.pdp-stage .badge { top: 14px; left: 14px; }
.pdp-stage .origin { bottom: 14px; left: 14px; right: auto; }

.pdp-thumbs {
  display: flex; gap: 8px; overflow-x: auto;
  padding-bottom: 4px;
}
.pdp-thumb {
  flex: 0 0 70px; width: 70px; height: 70px;
  background: #000; border: 2px solid transparent; border-radius: 8px;
  overflow: hidden; padding: 0; cursor: pointer;
  position: relative; transition: border-color .15s, opacity .15s;
  opacity: 0.65;
}
.pdp-thumb:hover { opacity: 1; }
.pdp-thumb.is-active { border-color: #fff; opacity: 1; }
.pdp-thumb img, .pdp-thumb video { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-thumb-kind {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
  pointer-events: none;
}

/* ============================================================
   Balance card · Hero "Investiert & offen" — clean refactor
   ============================================================ */
.bal-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 26px 28px;
  display: flex; flex-direction: column; gap: 22px;
}
.bal-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.bal-headline { display: flex; flex-direction: column; gap: 4px; }
.bal-headline .eyebrow { font-size: 10px; opacity: 0.55; text-transform: uppercase; letter-spacing: 0.10em; }
.bal-headline-value {
  font-family: 'Fraunces', serif;
  font-size: 44px; font-weight: 300; line-height: 1.05;
  letter-spacing: -0.02em;
}
.bal-headline-sub { font-size: 12px; opacity: 0.6; margin-top: 4px; }

.bal-progress { width: 100%; }
.bal-progress-meta {
  display: flex; justify-content: space-between;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  opacity: 0.65; margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.bal-progress-bar { height: 6px; background: rgba(255,255,255,0.07); border-radius: 999px; overflow: hidden; }
.bal-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #60a5fa 0%, #a78bfa 60%, #f472b6 100%);
  border-radius: 999px;
  transition: width .8s cubic-bezier(.4,0,.2,1);
}

.bal-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
}
.bal-stat {
  padding: 4px 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 4px;
}
.bal-stat:first-child { padding-left: 0; }
.bal-stat:last-child  { border-right: 0; padding-right: 0; }
.bal-stat-label { font-size: 10px; opacity: 0.5; text-transform: uppercase; letter-spacing: 0.10em; }
.bal-stat-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.01em;
}
.bal-stat-sub { font-size: 11px; opacity: 0.55; font-variant-numeric: tabular-nums; }
@media (max-width: 680px) {
  .bal-stats { grid-template-columns: 1fr; }
  .bal-stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 12px 0; }
  .bal-stat:last-child { border-bottom: 0; }
  .bal-headline-value { font-size: 36px; }
}

/* ============================================================
   Order list (account/orders.php + hero verlauf) — cards
   ============================================================ */
.olist {
  display: flex; flex-direction: column; gap: 10px;
}
.olist-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 4px;
  font-size: 13px; opacity: 0.7;
}
.olist-head strong { opacity: 1; font-weight: 500; }
.olist-tabs {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 14px;
}
.olist-tab {
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 12px; opacity: 0.6;
  text-decoration: none; color: inherit;
  background: transparent;
  transition: opacity .15s, background .15s, border-color .15s;
}
.olist-tab:hover { opacity: 1; }
.olist-tab.is-active {
  background: #fff; color: #000; border-color: #fff; opacity: 1; font-weight: 500;
}

.orow {
  display: grid;
  grid-template-columns: 6px 1fr auto auto auto;
  gap: 16px; align-items: center;
  padding: 14px 18px 14px 0;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  transition: border-color .15s, background .15s;
}
.orow:hover { border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.04); }
.orow-mark {
  align-self: stretch;
  border-radius: 10px 0 0 10px;
  background: rgba(255,255,255,0.15);
}
.orow[data-status="pending"]   .orow-mark { background: #fbbf24; }
.orow[data-status="paid"]      .orow-mark { background: #60a5fa; }
.orow[data-status="shipped"]   .orow-mark { background: #a78bfa; }
.orow[data-status="delivered"] .orow-mark { background: #4ade80; }
.orow[data-status="cancelled"] .orow-mark { background: rgba(248,113,113,0.6); }

.orow-main { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.orow-id {
  font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 500;
}
.orow-meta {
  font-size: 12px; opacity: 0.6;
  display: flex; gap: 10px; flex-wrap: wrap;
  font-variant-numeric: tabular-nums;
}
.orow-meta .sep { opacity: 0.35; }

.orow-state {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 14px;
}
.orow-status {
  font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.05em;
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.orow-status .dot { width: 6px; height: 6px; border-radius: 50%; }
.orow[data-status="pending"]   .orow-status { color: #fbbf24; }
.orow[data-status="pending"]   .orow-status .dot { background: #fbbf24; }
.orow[data-status="paid"]      .orow-status { color: #60a5fa; }
.orow[data-status="paid"]      .orow-status .dot { background: #60a5fa; }
.orow[data-status="processing"] .orow-status { color: #fb923c; }
.orow[data-status="processing"] .orow-status .dot { background: #fb923c; }
.orow[data-status="shipped"]   .orow-status { color: #a78bfa; }
.orow[data-status="shipped"]   .orow-status .dot { background: #a78bfa; }
.orow[data-status="delivered"] .orow-status { color: #4ade80; }
.orow[data-status="delivered"] .orow-status .dot { background: #4ade80; }
.orow[data-status="cancelled"] .orow-status { color: #fca5a5; }
.orow[data-status="cancelled"] .orow-status .dot { background: #fca5a5; }

.orow-total {
  text-align: right;
  font-family: 'JetBrains Mono', monospace; font-size: 15px; font-weight: 500;
  letter-spacing: -0.01em;
}
.orow-action {
  color: rgba(255,255,255,0.45);
  text-decoration: none; font-size: 14px;
  padding: 8px 10px;
  transition: color .15s;
}
.orow-action:hover { color: #fff; }

@media (max-width: 720px) {
  .orow { grid-template-columns: 6px 1fr auto; padding-right: 12px; }
  .orow-status { grid-column: 2; }
  .orow-total { grid-column: 3; grid-row: 1; }
  .orow-action { grid-column: 3; grid-row: 2; text-align: right; padding: 0; }
}

/* ============================================================
   Inline search — Logo dimmt aus, Suchfeld erscheint in der Mitte.
   Ergebnisse hängen nahtlos unter dem Input (eine optische Einheit).
   ============================================================ */
.nav-inner { position: relative; }
.nav-search { cursor: pointer; }

/* Wrap IMMER static, damit Panel an .nav-inner verankert ist
   (kein Sprung nach rechts beim Close). */
.nav-search-wrap { position: static; }

/* Logo smooth aus-/einblenden — explizite Defaults, damit Browser
   in beide Richtungen interpoliert (sonst Sprung beim Close) */
.brand {
  transform: scale(1);
  opacity: 1;
  transition:
    opacity   .35s cubic-bezier(.4, 0, .2, 1),
    transform .35s cubic-bezier(.4, 0, .2, 1);
}
.nav.is-searching .brand {
  opacity: 0;
  transform: scale(.88);
  pointer-events: none;
}

/* Native X / clear-button im <input type="search"> komplett ausblenden */
.nav-search-panel input[type="search"]::-webkit-search-cancel-button,
.nav-search-panel input[type="search"]::-webkit-search-decoration,
.nav-search-panel input[type="search"]::-webkit-search-results-button,
.nav-search-panel input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
          appearance: none;
  display: none;
}
.nav-search-panel input[type="search"] {
  -moz-appearance: textfield;
}

/* Panel — immer im DOM, default unsichtbar, sanft eingeblendet */
.nav-search-panel {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(.96);
  width: min(440px, calc(100vw - 320px));
  min-width: 240px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s cubic-bezier(.4,0,.2,1), transform .28s cubic-bezier(.4,0,.2,1);
  z-index: 10;
}
.nav.is-searching .nav-search-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.nav-search-panel input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  padding: 12px 18px;
  outline: none;
  transition: border-color .15s, background .15s, border-radius .15s ease, border-bottom-color .15s;
}
.nav-search-panel input::placeholder { color: rgba(255,255,255,0.40); }
.nav-search-panel input:focus { border-color: rgba(255,255,255,0.40); background: rgba(255,255,255,0.07); }

/* Wenn Treffer vorhanden: Input verschmilzt mit dem Ergebnis-Block,
   gemeinsam ergeben sie eine zusammenhängende Karte */
.nav-search-panel.has-results input {
  border-radius: 14px 14px 0 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(15, 15, 16, 0.98);
}

/* Ergebnisse — nahtlos unter dem Input, gleiche Breite, kein Gap */
.nav-search-results {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(15, 15, 16, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.14);
  border-top: 0;
  border-radius: 0 0 14px 14px;
  padding: 6px;
  max-height: 60vh; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, visibility .18s linear;
}
.nav-search-panel.has-results .nav-search-results {
  opacity: 1;
  visibility: visible;
}

/* Search-Panel auf Mobile (≤ 860 px) → Full-Width-Sheet siehe unten */
.nav-search-empty {
  font-size: 12px; opacity: 0.55;
  padding: 14px 8px; text-align: center;
}
.nav-search-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px; align-items: center;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none; color: inherit;
  transition: background .12s;
}
.nav-search-item:hover,
.nav-search-item.is-active {
  background: rgba(255,255,255,0.05);
}
.nav-search-thumb {
  width: 56px; height: 56px;
  background: #0a0a0b;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  flex: 0 0 56px;
}
.nav-search-info {
  display: flex; flex-direction: column; gap: 2px;
  min-width: 0;
}
.nav-search-name {
  font-size: 14px; font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nav-search-meta {
  font-size: 11px; opacity: 0.55;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nav-search-price {
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-variant-numeric: tabular-nums;
  opacity: 0.75;
  text-align: right;
  white-space: nowrap;
}


/* ============================================================
   Hero Dashboard — clean layout
   ============================================================ */
.hd-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 20px; flex-wrap: wrap;
  margin-bottom: 4px;
}
.hd-head h1 {
  font-family: 'Fraunces', serif;
  font-size: 32px; font-weight: 300; letter-spacing: -0.01em;
  margin: 4px 0 0;
}
.hd-head .meta {
  font-size: 11px; opacity: 0.55;
  text-transform: uppercase; letter-spacing: 0.10em;
}
.hd-head .meta strong { font-weight: 500; opacity: 1; }
.hd-status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.25);
  color: #86efac;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  border-radius: 999px;
}
.hd-status.is-paused {
  background: rgba(251,191,36,0.08);
  border-color: rgba(251,191,36,0.25);
  color: #fbbf24;
}
.hd-status-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.hd-bal {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 26px 28px;
  margin-bottom: 18px;
}
.hd-bal-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; }
.hd-bal-value {
  font-family: 'Fraunces', serif;
  font-size: 48px; font-weight: 300; line-height: 1; letter-spacing: -0.02em;
}
.hd-bal-eye { font-size: 10px; opacity: 0.55; text-transform: uppercase; letter-spacing: 0.10em; margin-bottom: 6px; }
.hd-bal-sub { font-size: 12px; opacity: 0.6; margin-top: 6px; }
.hd-bal-progress {
  height: 4px; background: rgba(255,255,255,0.06); border-radius: 999px; overflow: hidden;
  margin: 20px 0 16px;
}
.hd-bal-progress > span {
  display: block; height: 100%;
  background: linear-gradient(90deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
  transition: width .8s cubic-bezier(.4,0,.2,1);
}
.hd-bal-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
}
.hd-bal-stats > div {
  padding: 4px 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 3px;
}
.hd-bal-stats > div:first-child { padding-left: 0; }
.hd-bal-stats > div:last-child  { border-right: 0; padding-right: 0; }
.hd-bal-stats .lbl { font-size: 10px; opacity: 0.5; text-transform: uppercase; letter-spacing: 0.10em; }
.hd-bal-stats .val { font-family: 'JetBrains Mono', monospace; font-size: 17px; font-weight: 500; letter-spacing: -0.01em; }
.hd-bal-stats .sub { font-size: 11px; opacity: 0.55; font-variant-numeric: tabular-nums; }

.hd-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
.hd-cols > article { display: flex; flex-direction: column; gap: 16px; }
.hd-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 22px 24px;
}
.hd-card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.hd-card-head h2 {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 400; margin: 0;
}
.hd-card-head .eyebrow { font-size: 10px; opacity: 0.55; }
.hd-card .muted-small { font-size: 12px; opacity: 0.55; line-height: 1.5; }

.hd-qr-row { display: grid; grid-template-columns: 100px 1fr; gap: 16px; align-items: center; }
.hd-qr { width: 100px; height: 100px; background: #fff; padding: 6px; border-radius: 8px; }
.hd-qr img { width: 100%; height: 100%; display: block; }
.hd-addr-row {
  display: flex; gap: 8px; align-items: center;
  padding: 8px 12px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  margin-top: 8px;
}
.hd-addr-row code { font-size: 12px; word-break: break-all; flex: 1; }

.hd-kv {
  display: grid; grid-template-columns: 1fr auto; gap: 6px 12px;
  margin: 4px 0 14px;
  font-size: 13px;
}
.hd-kv dt { opacity: 0.55; }
.hd-kv dd { font-family: 'JetBrains Mono', monospace; font-weight: 500; text-align: right; margin: 0; }

/* Tabs */
.hd-tabs { display: flex; gap: 4px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 16px; }
.hd-tab {
  background: transparent; border: 0; color: inherit;
  padding: 10px 16px;
  font-size: 13px; opacity: 0.55;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: inherit;
  transition: opacity .12s, border-color .12s;
}
.hd-tab:hover { opacity: 0.85; }
.hd-tab.is-active { opacity: 1; border-bottom-color: #fff; font-weight: 500; }
.hd-tab .count { opacity: 0.5; font-variant-numeric: tabular-nums; margin-left: 4px; }
.hd-pane { display: none; }
.hd-pane.is-active { display: block; }
.hd-empty { padding: 24px; text-align: center; font-size: 13px; opacity: 0.5; }

/* Settings (collapsible) */
.hd-settings {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  margin-top: 18px;
}
.hd-settings > summary {
  cursor: pointer;
  padding: 16px 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; font-weight: 500;
  list-style: none;
  user-select: none;
}
.hd-settings > summary::-webkit-details-marker { display: none; }
.hd-settings > summary::after { content: '+'; font-size: 18px; opacity: 0.5; }
.hd-settings[open] > summary::after { content: '−'; }
.hd-settings > .hd-settings-body { padding: 0 22px 22px; display: flex; flex-direction: column; gap: 20px; }
.hd-settings .field-grid label { display: flex; flex-direction: column; gap: 6px; font-size: 12px; }
.hd-settings .field-grid label > span { opacity: 0.7; }
.hd-settings .field-grid input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff; padding: 10px 12px; border-radius: 6px;
  font-family: inherit; font-size: 13px;
}

/* Withdraw form */
.hd-withdraw-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);   /* min 0 → kein Overflow durch nowrap-Inhalt */
  gap: 10px;
}
.hd-withdraw-grid .row2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
}
.hd-withdraw-grid label { display: flex; flex-direction: column; gap: 4px; font-size: 11px; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.06em; min-width: 0; }
.hd-withdraw-grid input {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  padding: 10px 12px; border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  min-width: 0;
  width: 100%;
}
.hd-withdraw-grid input[readonly] { opacity: 0.5; }
.hd-withdraw-grid .btn-block { max-width: 100%; min-width: 0; }

@media (max-width: 800px) {
  .hd-cols { grid-template-columns: 1fr; }
  .hd-bal-stats { grid-template-columns: 1fr 1fr; }
  .hd-bal-stats > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 10px 0; }
  .hd-bal-stats > div:nth-child(odd)  { padding-right: 16px; }
  .hd-bal-stats > div:nth-child(even) { padding-left: 16px; }
  .hd-bal-stats > div:nth-last-child(-n+2) { border-bottom: 0; }
  .hd-bal-value { font-size: 38px; }
  .hd-qr-row { grid-template-columns: 1fr; }
  .hd-qr { margin: 0 auto; }
}

/* Creator-code pill in Hero dashboard header */
.hd-code-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: rgba(96,165,250,0.08);
  border: 1px solid rgba(96,165,250,0.25);
  border-radius: 10px;
  font-size: 13px;
}
.hd-code-pill .hd-code-eye {
  font-size: 10px; opacity: 0.6;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.hd-code-pill code {
  font-family: 'JetBrains Mono', monospace; font-size: 14px;
  font-weight: 600; color: #9ec5ff;
  letter-spacing: 0.02em;
}

.sum-savings dt, .sum-savings dd { color: #86efac; }

/* ============================================================
   Hero Dashboard v2 — Hauptbilanz mit EUR + LTC + Quellen
   ============================================================ */
.hd-bal-headline { margin-bottom: 18px; }
.hd-bal-eye {
  font-size: 11px; opacity: 0.55;
  text-transform: uppercase; letter-spacing: 0.10em;
  display: block; margin-bottom: 10px;
}
.hd-bal-twin {
  display: flex; align-items: baseline; gap: 18px;
  flex-wrap: wrap;
}
.hd-bal-eur {
  font-family: 'Fraunces', serif;
  font-size: 52px; font-weight: 300; line-height: 1;
  letter-spacing: -0.02em;
}
.hd-bal-sep { font-size: 24px; opacity: 0.35; font-weight: 300; }
.hd-bal-ltc {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px; font-weight: 500;
  opacity: 0.85;
  display: flex; flex-direction: column;
}
.hd-bal-ltc-sub {
  font-size: 10px; opacity: 0.55; text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 2px; font-family: 'Inter', sans-serif; font-weight: 400;
}
.hd-bal-progress-meta {
  display: flex; justify-content: space-between;
  font-size: 11px; opacity: 0.65;
  margin: 8px 0 22px;
  font-variant-numeric: tabular-nums;
}
.hd-bal-progress-meta strong { opacity: 1; font-weight: 500; font-family: 'JetBrains Mono', monospace; }

/* 4-Quellen-Grid: 2× zukommend (Einlage, Code), 2× rausgegangen (PayPal, LTC) */
.hd-source-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hd-source {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.hd-source-in  { border-color: rgba(74,222,128,0.18); background: rgba(74,222,128,0.04); }
.hd-source-out { border-color: rgba(96,165,250,0.16); background: rgba(96,165,250,0.03); }
.hd-source-eye {
  font-size: 10px; opacity: 0.7;
  text-transform: uppercase; letter-spacing: 0.10em;
}
.hd-source-in  .hd-source-eye { color: #86efac; }
.hd-source-out .hd-source-eye { color: #9ec5ff; }
.hd-source-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px; font-weight: 500; line-height: 1.1;
  margin-top: 4px; letter-spacing: -0.01em;
}
.hd-source-sub { font-size: 11px; opacity: 0.6; font-variant-numeric: tabular-nums; }

@media (max-width: 800px) {
  .hd-source-grid { grid-template-columns: 1fr 1fr; }
  .hd-bal-eur { font-size: 40px; }
  .hd-bal-ltc { font-size: 18px; }
}
@media (max-width: 480px) {
  .hd-source-grid { grid-template-columns: 1fr; }
}

/* Creator-Code-Card */
.hd-code-card {
  display: grid; grid-template-columns: 1fr auto;
  gap: 24px; align-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(96,165,250,0.06) 0%, rgba(167,139,250,0.04) 100%);
  border-color: rgba(96,165,250,0.20);
}
.hd-code-main .hd-code-eye {
  font-size: 10px; opacity: 0.7; color: #9ec5ff;
  text-transform: uppercase; letter-spacing: 0.10em;
}
.hd-code-row { display: flex; gap: 12px; align-items: center; margin: 8px 0 12px; }
.hd-code-big {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px; font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(0,0,0,0.3);
  padding: 8px 16px; border-radius: 8px;
}
.hd-code-stat {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 20px;
  background: rgba(0,0,0,0.25);
  border-radius: 10px;
  min-width: 160px; text-align: right;
}
.hd-code-stat .lbl { font-size: 10px; opacity: 0.55; text-transform: uppercase; letter-spacing: 0.08em; }
.hd-code-stat .val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 24px; font-weight: 500;
  color: #86efac;
}
.hd-code-stat .sub { font-size: 11px; opacity: 0.6; }

@media (max-width: 700px) {
  .hd-code-card { grid-template-columns: 1fr; }
  .hd-code-stat { text-align: left; min-width: 0; }
  .hd-code-big { font-size: 22px; }
}

/* ============================================================
   Creator-Code im Checkout (Sidebar)
   ============================================================ */
.code-apply {
  display: flex; gap: 8px; align-items: stretch;
  margin-top: 4px;
}
.code-apply input[name="creator_code"] {
  flex: 1 1 auto;
  min-width: 0;
  -webkit-appearance: none;
          appearance: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 11px 14px;
  outline: none;
  box-shadow: none;
  height: auto;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.code-apply input[name="creator_code"]::placeholder {
  color: rgba(255,255,255,0.30);
  text-transform: none;
  letter-spacing: 0;
  font-family: 'Inter', sans-serif;
}
.code-apply input[name="creator_code"]:focus {
  border-color: rgba(255,255,255,0.40);
  background: rgba(255,255,255,0.07);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.06);
}
.code-apply .btn { padding: 11px 18px; font-size: 12px; white-space: nowrap; }

/* Aktiver Code — kleiner grüner Banner */
.code-applied {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(74, 222, 128, 0.07);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 10px;
  margin-top: 4px;
}
.code-applied > div {
  display: flex; flex-direction: column; gap: 2px; min-width: 0;
}
.code-applied strong {
  font-size: 14px; letter-spacing: 0.04em;
  color: #86efac;
}
.code-applied .link-btn {
  background: transparent; border: 0; color: #fca5a5;
  font-size: 12px; cursor: pointer; opacity: 0.7;
  padding: 4px 8px; font-family: inherit;
}
.code-applied .link-btn:hover { opacity: 1; text-decoration: underline; }
/* Cookie-gesperrter Code (über Dealer-Link gesetzt) — Schloss statt Entfernen */
.code-applied.code-locked > svg { color: #86efac; opacity: 0.65; flex: none; }

/* ============================================================
   PayPal-Empfängername Pflichtfeld (für Hero-Verifikation)
   ============================================================ */
.pp-namelock {
  position: relative;
  padding: 18px 18px 16px;
  margin-top: 4px;
  background: linear-gradient(180deg, rgba(251,191,36,0.07) 0%, rgba(251,191,36,0.02) 100%);
  border: 1px solid rgba(251,191,36,0.35);
  border-radius: 10px;
  text-transform: none !important;
  letter-spacing: 0 !important;
  opacity: 1 !important;
}
.pp-namelock > .pp-namelock-eye {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fbbf24;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pp-namelock-input {
  background: rgba(0,0,0,0.35) !important;
  border: 1.5px solid rgba(251,191,36,0.45) !important;
  border-radius: 7px;
  height: 50px !important;
  padding: 0 14px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #fff !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
}
.pp-namelock-input:focus {
  outline: none;
  border-color: rgba(251,191,36,0.85) !important;
  background: rgba(0,0,0,0.45) !important;
  box-shadow: 0 0 0 3px rgba(251,191,36,0.15);
}
.pp-namelock-input::placeholder { color: rgba(255,255,255,0.30); font-weight: 400; }
.pp-namelock-hint {
  display: block;
  margin-top: 10px;
  font-size: 12.5px !important;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.005em !important;
  text-transform: none !important;
  color: rgba(255,255,255,0.78) !important;
  opacity: 1 !important;
}
.pp-namelock-hint strong { color: #fbbf24; font-weight: 600; }

/* ===================================================================
 * ========================================================
 *  MOBILE NATIVE LAYER — iOS / Android optimiert
 * ========================================================
 *  Ziel: das gesamte Frontend fühlt sich auf Mobilgeräten
 *  wie eine native App an: 44 px Tap-Targets, kein
 *  Zoom-bei-Focus, Safe-Area-Insets, Pull-to-Refresh-
 *  Schutz, gesteuerte Touch-Highlights, Hamburger-Drawer.
 * =================================================================== */

:root {
  --safe-top:    env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left:   env(safe-area-inset-left, 0px);
  --safe-right:  env(safe-area-inset-right, 0px);
  --tap-min: 44px;            /* Apple HIG */
  --nav-h:   64px;
  --tab-h:   60px;            /* Mobile-Bottom-Bar */
}

/* Native-fühlbare Touch-Defaults */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;     /* keine 300ms-Verzögerung */
}
body {
  overscroll-behavior-y: contain;  /* kein Pull-Bounce am Page-Rand */
  -webkit-overflow-scrolling: touch;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
a, button, [role="button"], input[type="submit"], .btn, .step, .add, .link-btn, .row-btn, .filter, .nav-search, .pdp-thumb {
  -webkit-tap-highlight-color: rgba(255,255,255,0.06);
  touch-action: manipulation;
}
button, .btn, .filter, .row-btn { user-select: none; -webkit-user-select: none; }

/* iOS-Zoom verhindern: alle Eingabefelder mind. 16 px in Mobile */
@media (max-width: 860px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="password"],
  input[type="search"],
  input[type="url"],
  input[type="date"],
  select,
  textarea {
    font-size: 16px !important;   /* iOS triggert sonst Auto-Zoom < 16 px */
  }
  /* Buttons mit Mono-Font behalten ihren Stil, aber Eingabe-Buttons werden lesbar */
  .qty-num { font-size: 16px !important; }
}

/* Bessere Smooth-Scrollziele auf iOS */
.cart-list, .pdp-thumbs, .account-nav, .addr-chip-row, .filters, .olist-tabs, .hd-tabs, .nav-search-results {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;            /* Firefox */
}
.cart-list::-webkit-scrollbar,
.pdp-thumbs::-webkit-scrollbar,
.account-nav::-webkit-scrollbar,
.addr-chip-row::-webkit-scrollbar,
.filters::-webkit-scrollbar,
.olist-tabs::-webkit-scrollbar,
.hd-tabs::-webkit-scrollbar,
.nav-search-results::-webkit-scrollbar { display: none; }   /* Safari/Chrome */

/* Touch-Reaktion: Active-State auf Buttons */
@media (hover: none) {
  .btn:active   { transform: scale(0.97); }
  .step:active, .add:active, .row-btn:active, .filter:active, .nav-account:active { opacity: 0.7; }
  .product:hover .quick { opacity: 0; transform: translateY(6px); } /* kein Quick-Hover auf Touch */
}

/* Nav: Safe-Area + Hamburger ============================================ */
.nav {
  padding-top: env(safe-area-inset-top, 0px);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}
.nav-burger {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-right: 8px;
  transition: background .15s ease, color .15s ease;
  flex-shrink: 0;
  color: rgba(255,255,255,0.85);
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-burger:hover { background: rgba(255,255,255,0.06); color: #fff; }
.nav-burger:active { background: rgba(255,255,255,0.10); }
.nav-burger svg { display: block; }

/* Mobile Drawer ======================================================== */
.mobile-drawer {
  position: fixed;
  top: 0; left: 0;
  width: min(420px, 90vw);
  height: 100dvh;
  background: #050505;
  border-right: 1px solid rgba(255,255,255,0.08);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  padding-top: calc(20px + env(safe-area-inset-top, 0px));
  padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  padding-left: calc(24px + env(safe-area-inset-left, 0px));
  padding-right: 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  pointer-events: none;
}
.mobile-drawer.open { transform: translateX(0); visibility: visible; pointer-events: auto; }
.mobile-drawer-scrim {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 998;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.mobile-drawer-scrim.open { opacity: 1; pointer-events: auto; }
.mobile-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.mobile-drawer-head img { height: 48px; width: auto; max-width: 140px; object-fit: contain; }
.mobile-drawer-close {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 999px;
  font-size: 24px; font-weight: 300; line-height: 1;
  color: rgba(255,255,255,0.65);
  transition: background .15s ease, color .15s ease;
}
.mobile-drawer-close:active { background: rgba(255,255,255,0.08); color: #fff; }
.mobile-drawer-nav { display: flex; flex-direction: column; gap: 2px; }
.mobile-drawer-nav .group-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.4;
  margin: 20px 0 6px;
  padding: 0 6px;
  font-weight: 500;
}
.mobile-drawer-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 6px;
  font-size: 16px;
  letter-spacing: -0.005em;
  border-radius: 8px;
  min-height: var(--tap-min);
  transition: background .15s ease;
}
.mobile-drawer-nav a:active { background: rgba(255,255,255,0.05); }
.mobile-drawer-nav a.is-current { color: #fff; }
.mobile-drawer-nav a.is-current::before {
  content: "→ "; opacity: 0.55; margin-right: -6px;
}
.mobile-drawer-nav a svg { opacity: 0.55; flex-shrink: 0; }
.mobile-drawer-foot {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  opacity: 0.5;
}
body.has-drawer { overflow: hidden; }

/* Mobile: Drawer nimmt volle Breite ein */
@media (max-width: 700px) {
  .mobile-drawer {
    width: 100vw;
    max-width: 100vw;
    border-right: 0;
    padding-left: calc(20px + env(safe-area-inset-left, 0px));
    padding-right: calc(20px + env(safe-area-inset-right, 0px));
  }
  .mobile-drawer-nav a { padding: 16px 8px; font-size: 17px; }
  .mobile-drawer-head { margin-bottom: 32px; }
  .mobile-drawer-head img { height: 40px; }
}

.mobile-drawer-brand img { display: block; }

/* Mobile-Bottom-Tabbar (App-Feel) ====================================== */
.mtab {
  display: none;
}
@media (max-width: 700px) {
  body { padding-bottom: calc(var(--tab-h) + env(safe-area-inset-bottom, 0px)); }
  .mtab {
    display: grid;
    grid-template-columns: repeat(3, 1fr);    /* Home · Cart · Account */
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);             /* identisch zur Top-Nav */
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    z-index: 60;
    transform: translateY(0);
    transition: transform .3s cubic-bezier(.2,.7,.2,1);
    will-change: transform;
  }
  .mtab.is-hidden {
    transform: translateY(110%);   /* + safe-area mit drinnen, raus aus dem Sichtbereich */
  }
  .mtab a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--tab-h);
    color: rgba(255,255,255,0.55);
    transition: color .15s ease;
    position: relative;
  }
  .mtab a:active { color: #fff; }
  .mtab a.is-current { color: #fff; }
  .mtab a.is-current::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px; height: 2px;
    background: #fff;
    border-radius: 2px;
  }
  .mtab svg { opacity: 0.85; }
  .mtab a.is-current svg { opacity: 1; }
  .mtab-badge {
    position: absolute;
    top: calc(50% - 14px);
    left: calc(50% + 6px);
    background: #fff;
    color: #000;
    font-size: 9px;
    font-weight: 600;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-variant-numeric: tabular-nums;
    line-height: 1;
  }
}

/* ---------- Responsive Layout-Anpassungen ---------- */

@media (max-width: 860px) {
  .nav-inner {
    grid-template-columns: auto 1fr auto;   /* Burger | Brand (zentriert) | Lupe rechts */
    align-items: center;
    padding: 14px 16px;
  }
  /* nav-left: nur der Burger bleibt sichtbar — alle Link-Children weg */
  .nav-left {
    display: flex !important;
    grid-column: 1;
    justify-self: start;
  }
  .nav-left > a,
  .nav-left > span {
    display: none !important;
  }
  .nav-burger { display: inline-flex !important; margin-right: 0; }
  .brand     { grid-column: 2; justify-self: center; margin: -2px 0; }
  .nav-right { grid-column: 3; justify-self: end; gap: 0; }
  .nav-right > *:not(.nav-search-wrap) { display: none !important; }
  .brand img { height: 52px; max-width: 150px; }

  /* Wenn die Suche offen ist (volle Nav-Breite), Burger sanft ausblenden */
  .nav.is-searching .nav-burger {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.85);
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-burger {
    transition: opacity .2s ease, transform .2s ease;
  }
}

/* Heros stack + Smaller mark */
@media (max-width: 860px) {
  .hero { padding: 36px 16px 56px; }
  .hero-grid { gap: 36px; }
  .hero-title { font-size: clamp(48px, 12vw, 92px); letter-spacing: -0.035em; }
  .hero-sub  { font-size: 16px; margin-bottom: 28px; }
  .hero-cta .btn { flex: 1; min-width: 0; }
  .hero-meta { gap: 12px; font-size: 11px; padding-top: 18px; margin-top: 24px; }
  .hero-meta > div { font-size: 11px; }
}

/* Cats: 2-Spaltig mit kleineren Cards */
@media (max-width: 860px) {
  .cats { padding: 0 16px 40px; }
  .cats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cat-img { padding: 14px; }
  .cat-meta { font-size: 13px; padding: 10px 4px 0; }
}
@media (max-width: 480px) {
  .cats-grid { grid-template-columns: 1fr 1fr; }
}

/* Produkt-Grid 2-Spaltig & dichter */
@media (max-width: 860px) {
  .products { padding: 0 16px 40px; }
  .section-head { padding: 60px 16px 24px; }
  .section-head h2 { font-size: clamp(32px, 7.5vw, 56px); }
  .filters { gap: 6px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; margin: 0 -16px; padding-left: 16px; padding-right: 16px; }
  .filter { flex-shrink: 0; }
  .grid { gap: 16px 10px; }
  .product-info { gap: 8px; }
  .product-info h3 { font-size: 13px; line-height: 1.3; }
  .product-info p  { font-size: 11px; }
  .price { font-size: 13px; }
  .unit  { font-size: 10px; }
  .qty .step { width: 32px; height: 32px; }
  .qty { grid-template-columns: 32px 1fr 32px; gap: 2px; padding: 3px; }
  .qty-num { font-size: 13px !important; width: 48px; }
  .qty-unit { font-size: 11px; }
  .qty .add { font-size: 10.5px; height: 36px; letter-spacing: 0.08em; }
}

/* Produkt-Card: quick-button verschwindet auf Mobile */
@media (max-width: 700px) {
  .quick { display: none; }
  .product-img { aspect-ratio: 1 / 1.1; }   /* knapper, mehr drucker */
}

/* Marquee schmaler */
@media (max-width: 700px) {
  .marquee { padding: 16px 0; }
  .marquee-track { font-size: 17px; gap: 32px; }
}

/* Stats / Trust */
@media (max-width: 860px) {
  .trust { padding: 36px 16px; }
  .stats > div { padding: 28px 16px; }
  .logos { gap: 18px; }
  .logos span { font-size: 13px; letter-spacing: 0.14em; }
}

/* Story */
@media (max-width: 860px) {
  .story { padding: 56px 16px; }
  .story-grid { gap: 28px; }
  .story-copy h2 { font-size: clamp(32px, 7.5vw, 56px); margin-bottom: 18px; }
  .story-copy p  { font-size: 15px; }
}

/* Footer */
@media (max-width: 700px) {
  .foot { padding: 56px 16px 24px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 36px; }
  .foot-logo img { height: 40px; }
  .foot a { font-size: 13px; }
  .foot-sortiment, .foot-sortiment h4 { text-align: left; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 10px; font-size: 11px; padding-top: 22px; }
}

/* Newsletter */
@media (max-width: 700px) {
  .news { padding: 60px 16px; }
  .news h2 { font-size: clamp(32px, 8vw, 56px); }
}

/* Announce-Bar enger */
@media (max-width: 700px) {
  .announce { padding: 7px 0; }
  .announce-track { font-size: 10px; gap: 24px; }
}

/* PDP — gefühlt natives Layout */
@media (max-width: 860px) {
  .crumbs { padding: 18px 16px 0; font-size: 11px; gap: 6px; overflow-x: auto; white-space: nowrap; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .pdp { padding: 18px 16px 50px; }
  .pdp-grid { gap: 28px; }
  .pdp-info { padding-top: 0; }
  .pdp-title { font-size: clamp(36px, 9vw, 56px); margin-bottom: 12px; }
  .pdp-meta { font-size: 14px; margin-bottom: 22px; }
  .pdp-price-row { padding: 18px 0; margin-bottom: 22px; }
  .pdp-price { font-size: 36px; }
  .pdp-desc { margin-top: 32px; padding-top: 24px; }
  .pdp-desc h3 { font-size: 19px; }
  .pdp-desc p  { font-size: 14.5px; line-height: 1.6; }
  .pdp-data { margin-top: 24px; }
  .qty-large { grid-template-columns: 44px 1fr 44px; padding: 4px; }
  .qty-large .step { width: 44px; height: 44px; }
  .qty-large .add { height: 48px; font-size: 12px; }
  .pdp-thumbs { gap: 6px; padding-bottom: 0; margin: 0 -16px 0 0; padding-right: 16px; }
  .pdp-thumb { flex: 0 0 60px; width: 60px; height: 60px; border-radius: 6px; }
  .pdp-stage { border-radius: 8px; }
  .tier-box { padding: 14px 16px; }
  .tier-table th, .tier-table td { padding: 9px 0; }
  .pdp-total-line { padding: 14px 0 0; flex-wrap: wrap; gap: 12px; }
  .pdp-total-line > div { flex: 1; min-width: 120px; }
}

/* Block-Buttons auf Mobile: schmaleres Padding + kürzeres Letter-Spacing,
   damit längere Beschriftungen wie "AUSZAHLUNG ANSTOSSEN →" nicht überlaufen */
@media (max-width: 700px) {
  .btn-block {
    padding: 0 16px;
    letter-spacing: 0.05em;
    font-size: 12px;
  }
  .btn { max-width: 100%; }
}

/* Cart Listen-Zeile als Native-Card */
@media (max-width: 700px) {
  .cart-grid { gap: 24px; }
  .cart-list { border-top: 0; gap: 12px; display: flex; }
  .cart-row {
    grid-template-columns: 80px 1fr;
    grid-template-areas:
      "thumb info"
      "line  line";
    gap: 14px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .cart-thumb { grid-area: thumb; }
  .cart-info  { grid-area: info; }
  .cart-line  { grid-area: line; padding-top: 4px; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 4px; }
  .cart-name { font-size: 15px; }
  .cart-actions { gap: 14px; margin-top: 12px; }
  .cart-qty { padding: 2px; }
  .cart-qty .step { width: 32px; height: 32px; }
  .cart-qty .qty-val { min-width: 56px; padding: 0 6px; font-size: 13px; }
  .cart-line strong { font-size: 18px; }
  .cart-sum { padding: 20px 18px; border-radius: 10px; }
  .cart-sum h3, .checkout-sum h3 { font-size: 19px; margin-bottom: 14px; }
  .btn-large { height: 52px; }
}

/* Checkout */
@media (max-width: 700px) {
  /* Mobile: Content NICHT überlappen — checkout-grid auf 100% klemmen,
     keine min-content-Erweiterung erlauben (z.B. lange Hero-Listen brachen den Container) */
  .checkout-grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .checkout-main, .checkout-sum { width: 100%; max-width: 100%; box-sizing: border-box; min-width: 0; }
  .checkout-main > .form-card { max-width: 100%; }
  .form-card { padding: 18px 16px; }
  .form-card-head { margin-bottom: 16px; padding-bottom: 14px; }
  .form-card-head h2 { font-size: 20px; }
  .ship-options { gap: 8px; margin-bottom: 18px; }
  .ship-card { padding: 14px 14px; }
  .ship-text strong { font-size: 13.5px; }
  .ship-text span  { font-size: 11px; }
  .saved-addrs { padding-bottom: 18px; margin-bottom: 18px; }
  .addr-chip-row { gap: 8px; overflow-x: auto; flex-wrap: nowrap; margin: 0 -16px; padding: 0 16px; }
  .addr-chip { flex-shrink: 0; min-width: 160px; }
  .checkout-sum { padding: 20px 18px; }
  .sum-list li { gap: 10px; }
  .sum-thumb { width: 40px; height: 40px; }
  .sum-info strong { font-size: 13px; }
  .pay-picker-foot { flex-direction: column; align-items: flex-start; gap: 4px; font-size: 11.5px; width: 100%; max-width: 100%; box-sizing: border-box; word-break: break-word; overflow-wrap: anywhere; }
  .step-nav { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; gap: 8px; }
  .step-nav .step { flex-shrink: 0; padding: 7px 10px; font-size: 10.5px; }
  .page-head h1 { font-size: clamp(36px, 9vw, 60px); }
  .page-head { margin-bottom: 24px; gap: 18px; }
}

/* Order Confirm + Pay-Card */
@media (max-width: 700px) {
  .confirm-hero { padding: 32px 18px; }
  .confirm-mark { width: 60px; height: 60px; font-size: 26px; margin-bottom: 18px; }
  .confirm-lead { font-size: 15px; margin-bottom: 22px; }
  .confirm-number { padding: 12px 18px; }
  .confirm-number strong { font-size: 17px; }
  .next-steps { padding: 22px 18px; }
  .next-steps h3 { font-size: 21px; margin-bottom: 18px; }
  .next-steps ol li { font-size: 13px; padding-left: 32px; }
  .pay-card { padding: 18px 16px; gap: 16px; border-radius: 12px; }
  .pay-status { padding-bottom: 16px; }
  .pay-status-text { font-size: 18px; }
  .pay-amount-ltc { font-size: 24px; }
  .pay-address-row { padding: 10px 12px; flex-wrap: wrap; }
  .pay-address-row code { font-size: 11.5px; }
  .pay-copy-btn { font-size: 10.5px; padding: 6px 12px; }
}

/* Search */
@media (max-width: 700px) {
  .search-hero { margin: 32px auto 22px; padding: 0 16px; }
  .search-bar { padding: 4px 4px 4px 16px; }
  .search-bar input { height: 48px; font-size: 16px; }
  .search-bar button { height: 42px; padding: 0 18px; font-size: 12px; }
}

/* Auth */
@media (max-width: 560px) {
  .auth-wrap { padding: 36px 16px; min-height: 70vh; }
  .auth-card { padding: 36px 22px 26px; border-radius: 14px; }
  .auth-card h1 { font-size: 32px; }
  .auth-mark img { height: 60px; }
  .auth-spellout { font-size: 11px; letter-spacing: 0.36em; text-indent: 0.36em; }
  .auth-sub { font-size: 13.5px; margin-bottom: 22px; }
  .auth-mark { width: 56px; height: 56px; font-size: 30px; margin-bottom: 16px; }
}

/* Account */
@media (max-width: 700px) {
  /* WICHTIG: keine overflow-x: auto / flex-wrap: nowrap mehr — die echte
     Tab-Konfig liegt weiter oben (Zeile ~2854). Diese Regel hat damals
     scrollen erzwungen, jetzt nur noch Layout-Feintuning. */
  .account-nav { margin: -6px -16px 22px; padding: 0 16px; }
  .account-nav a.logout { margin-left: auto; }
  .acc-card { padding: 20px 18px; }
  .acc-card h2 { font-size: 24px; }
}

/* Address Edit */
@media (max-width: 700px) {
  .addr-card { padding: 18px 18px; }
  .addr-label { font-size: 20px; }
}

/* In-Nav Search Panel auf Mobile = wie Desktop, nur an die Nav-Breite angepasst */
@media (max-width: 860px) {
  .nav-search-panel {
    /* position: absolute (zur .nav-inner) bleibt vom Desktop-CSS erhalten */
    width: calc(100% - 80px);              /* solange Lupe sichtbar: Platz rechts */
    min-width: 0;
    max-width: none;
  }
  .nav-search-panel input {
    font-size: 16px !important;            /* kein iOS-Zoom */
    padding: 12px 16px;
    border-radius: 12px;
    width: 100%;
  }
  .nav-search-panel.has-results input { border-radius: 12px 12px 0 0; }
  .nav-search-results {
    border-radius: 0 0 12px 12px;
    max-height: 60vh;
  }
  /* Suche aktiv: Logo + Lupe verschwinden, Panel nimmt die ganze Nav-Breite */
  .nav.is-searching .brand {
    opacity: 0; transform: scale(.88); pointer-events: none;
  }
  .nav .nav-search {
    transition: opacity .25s cubic-bezier(.4,0,.2,1), transform .25s cubic-bezier(.4,0,.2,1);
  }
  .nav.is-searching .nav-search {
    opacity: 0;
    transform: scale(.88);
    pointer-events: none;
  }
  .nav.is-searching .nav-search-panel {
    width: 95%;                             /* Lupe ist weg → 95 % der Nav */
  }
}

/* Crumbs als horizontal scrollbare Chips */
@media (max-width: 700px) {
  .crumbs::-webkit-scrollbar { display: none; }
  .crumbs { scrollbar-width: none; }
}

/* Tier-Tabelle, dense */
@media (max-width: 500px) {
  .tier-table { font-size: 12px; }
  .tier-table th { font-size: 9.5px; }
  .pdp-data dt { font-size: 10px; }
  .pdp-data dd { font-size: 12.5px; }
}

/* Toast IOS-Safe */
@media (max-width: 700px) {
  .cart-toast {
    right: 16px;
    left: 16px;
    bottom: calc(var(--tab-h) + 12px + env(safe-area-inset-bottom, 0px));
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13px;
    text-align: center;
    justify-content: center;
  }
}

/* Step-Nav: gewollt überschreibbar wegen Schmaler Steps */
@media (max-width: 480px) {
  .step-nav .step-sep { display: none; }
  .step-nav .step { padding: 6px 9px; font-size: 10px; }
}

/* Reveal-Animation auf Mobile abschwächen (kein Layout-Sprung) */
@media (max-width: 700px) {
  .reveal { transform: translateY(12px); transition-duration: .5s; }
}

/* Bestell-Card auf Konten/Hero ohne dichten Status-Stack */
@media (max-width: 480px) {
  .orow { grid-template-columns: 6px 1fr; gap: 8px; padding: 12px; }
  .orow-status, .orow-total, .orow-action {
    grid-column: 2; grid-row: auto;
    padding: 0;
  }
  .orow-status { margin-top: 6px; }
  .orow-total  { text-align: left; font-size: 18px; margin-top: 2px; }
  .orow-action { color: rgba(255,255,255,0.6); text-decoration: underline; text-underline-offset: 3px; }
}

/* PDP-Data: 1 Spalte auf schmalen Telefonen, ohne Border-Rechts */
@media (max-width: 700px) {
  .pdp-data { grid-template-columns: 1fr; }
  .pdp-data > div { padding: 14px 0 !important; border-right: 0 !important; }
}

/* Account-Orders-Tabelle in Cards umwandeln */
@media (max-width: 700px) {
  .acc-orders-head { display: none; }
  .acc-orders-list .acc-order {
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
    padding: 14px 16px;
  }
}

/* PDP-Buy-Card layout: bei sehr schmal ist Stückpreis darunter */
@media (max-width: 420px) {
  .pdp-total-line > div { flex: 1 1 100%; }
  .pdp-total-line .pdp-total-right { text-align: left; align-items: flex-start; }
}

/* PDP-Buy-Card auf Mobile — bleibt im normalen Scroll-Flow (NICHT sticky) */
@media (max-width: 700px) {
  .pdp-buy {
    position: static;
    background: rgba(8,8,9,0.96);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 12px;
    margin: 18px 0 0;
  }
  .pdp-buy .qty-large { margin: 0; }
  .pdp-buy .pdp-total-line { padding: 12px 4px 4px; margin-top: 4px; border-top: 1px solid rgba(255,255,255,0.06); }
}

/* Verhindere, dass Hover-Schatten auf Touch flackern */
@media (hover: none) {
  .product:hover .product-img,
  .cat:hover .cat-img,
  .cart-thumb:hover > div { transform: none; }
}

/* Auto-Fill Hintergrund (iOS / Chrome) zähmen */
input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
textarea:-webkit-autofill {
  -webkit-text-fill-color: #fff !important;
  -webkit-box-shadow: 0 0 0 1000px rgba(255,255,255,0.04) inset !important;
  caret-color: #fff;
}

/* Reduce-Motion respect */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  /* native <marquee> wird via JS gestoppt — siehe script.js */
}

/* Light-Mode-Theme bleibt unverändert dunkel (Brand)  — wir setzen color-scheme dark um Safari-Schalter zu disablen */
html { color-scheme: dark; }

/* Image-Container nicht über den Rand laufen lassen */
img, video { max-width: 100%; }

/* Selektierbarer Lange-Token-Block (LTC-Adresse) - native Press-to-Copy */
.pay-address-row code,
.hd-addr-row code,
.confirm-number strong {
  user-select: all;
  -webkit-user-select: all;
}

/* Disabled Buttons sehen mobil-klar aus */
.ship-opt.is-disabled .ship-card { opacity: 0.55; }

/* Filter-Chips als horizontale Bar nicht abschneiden */
@media (max-width: 700px) {
  .filters {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .filters::-webkit-scrollbar { display: none; }
}

/* Step-Nav als gut-lesbares Carousel */
@media (max-width: 700px) {
  .step-nav { -ms-overflow-style: none; scrollbar-width: none; }
  .step-nav::-webkit-scrollbar { display: none; }
}

/* nav-account svg nicht zu klein */
.nav-account svg { flex-shrink: 0; }

/* Saved Addresses scroll Snap */
@media (max-width: 700px) {
  .addr-chip-row { scroll-snap-type: x mandatory; }
  .addr-chip { scroll-snap-align: start; }
}

/* Ship-Options Kachelreihe — 1-spaltig wirkt nativer */
@media (max-width: 540px) {
  .ship-options,
  .pay-picker .ship-options { grid-template-columns: 1fr; }
  .ship-card { flex-direction: row; align-items: center; gap: 14px; padding: 14px 16px; min-width: 0; }
  .ship-icon { width: 36px; height: 36px; flex-shrink: 0; }
  .ship-text { flex: 1 1 auto; min-width: 0; gap: 2px; }
  .ship-text span { overflow-wrap: anywhere; word-break: break-word; }
  .ship-fee { margin-top: 0; font-size: 13.5px; font-weight: 500; flex-shrink: 0; white-space: nowrap; }
  .pay-picker .ship-card { padding: 16px 18px; }
  .pay-picker .ship-fee { font-size: 15px; }
}

/* Filter-Sort-Form lesbar */
@media (max-width: 700px) {
  .sort-form select { font-size: 16px; padding-right: 32px; }
}


/* ════════════════════════════════════════════════════════════════
 *  Dealer-Account · Scan-Tracking-Karte
 * ════════════════════════════════════════════════════════════════ */
.dlr-scan-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 6px;
}
.dlr-scan-kpi {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 22px 14px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dlr-scan-kpi strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
}
.dlr-scan-kpi span {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
  font-weight: 500;
  line-height: 1.3;
}
.dlr-scan-kpi--accent {
  background: linear-gradient(180deg, rgba(255,210,120,0.08) 0%, rgba(255,210,120,0.015) 100%);
  border-color: rgba(255,210,120,0.24);
}
.dlr-scan-kpi--accent strong { color: #ffd278; }

@media (max-width: 700px) {
  .dlr-scan-kpis { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .dlr-scan-kpi  { padding: 18px 10px 14px; }
}

/* ════════════════════════════════════════════════════════════════
 *  Crypto-Newbie-Guide auf der LTC-Payment-Page
 * ════════════════════════════════════════════════════════════════ */
/* ----- Container ----- */
.pay-guide {
  margin: 20px 0;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  /* details default cleanup */
  color: inherit;
}

/* ----- Summary (Toggle-Header) ----- */
/* <summary> hat per Default display:list-item — !important sicherheitshalber */
.pay-guide-summary {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.3;
  list-style: none;            /* keine Drei­eck-Marker */
  user-select: none;
  transition: background .15s ease;
}
/* Browser-Marker komplett weg (Chrome, Safari, Firefox) */
.pay-guide-summary::-webkit-details-marker { display: none; }
.pay-guide-summary::marker { content: ""; }
.pay-guide-summary:hover { background: rgba(255,255,255,0.04); }

.pay-guide-summary-eye {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  background: rgba(255,210,120,0.10);
  color: #ffd278;
  border: 1px solid rgba(255,210,120,0.22);
  border-radius: 4px;
  padding: 4px 8px;
  font-weight: 600;
  line-height: 1;
}
.pay-guide-summary > strong {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
}
.pay-guide-chev {
  flex: 0 0 auto;
  opacity: 0.55;
  transition: transform .2s ease;
}
.pay-guide[open] .pay-guide-chev { transform: rotate(180deg); }

/* ----- Inhalt nach dem Open ----- */
.pay-guide-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* Jedes Step-LI: links die Nummer, rechts der Text-Stack über die volle Breite */
.pay-guide-steps > li {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 18px;
  padding: 22px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: start;
}
.pay-guide-steps > li:last-child { border-bottom: 0; }

/* Num bleibt in Spalte 1 (auto), ALLES andere (h4, p, p.warn) in Spalte 2 */
.pay-guide-steps > li > .pay-guide-num {
  grid-column: 1;
  grid-row: 1;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.02em;
  opacity: 0.40;
  line-height: 1;
  margin: 4px 0 0;
}
/* Alle Nicht-Num-Children landen in Spalte 2, untereinander */
.pay-guide-steps > li > :not(.pay-guide-num) {
  grid-column: 2;
}

.pay-guide-steps h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
  color: #fff;
  line-height: 1.25;
}
.pay-guide-steps p {
  font-size: 13.5px;
  line-height: 1.6;
  opacity: 0.82;
  margin: 0 0 8px;
  color: rgba(255,255,255,0.85);
}
.pay-guide-steps p:last-child { margin-bottom: 0; }
.pay-guide-steps a {
  color: #ffd278;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pay-guide-steps a:hover { color: #ffe2a5; }

.pay-guide-warn {
  background: rgba(255,210,120,0.07);
  border: 1px solid rgba(255,210,120,0.18);
  border-radius: 8px;
  padding: 12px 14px !important;
  margin: 12px 0 0 !important;
  font-size: 13px !important;
  opacity: 1 !important;
  line-height: 1.55 !important;
}
.pay-guide-warn strong:first-child { color: #ffd278; }

/* ----- KI-Prompt Block (jetzt OBEN als erstes nach Summary) ----- */
.pay-guide-ai {
  padding: 20px 22px 22px;
  background: rgba(0,0,0,0.20);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pay-guide-ai > p {
  font-size: 13px;
  opacity: 0.75;
  margin: 0 0 14px;
  line-height: 1.55;
}
/* Versteckter Prompt-Container — visuell weg, aber selektierbar */
.pay-guide-prompt-hidden {
  position: absolute !important;
  left: -10000px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.pay-guide-copy {
  display: inline-flex !important;
  align-items: center;
  font-size: 13px;
  padding: 10px 18px !important;
}

@media (max-width: 700px) {
  .pay-guide-summary { padding: 14px 16px; font-size: 13px; gap: 10px; }
  .pay-guide-summary-eye { font-size: 9px; padding: 3px 7px; }
  .pay-guide-steps > li { grid-template-columns: 42px 1fr; column-gap: 12px; padding: 18px 16px; }
  .pay-guide-steps > li > .pay-guide-num { font-size: 24px; }
  .pay-guide-steps h4 { font-size: 16px; }
  .pay-guide-steps p { font-size: 13px; }
  .pay-guide-ai { padding: 16px; }
  .pay-guide-warn { padding: 10px 12px !important; font-size: 12.5px !important; }
}
