/* ── Self-hosted Inter (kein Google Server) ──────────────────────────── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/assets/fonts/inter-300.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/inter-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/inter-500.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/inter-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/inter-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/assets/fonts/inter-800.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --purple-deep: #0b0014;
  --purple-base: #2E004D;
  --violet: #8a4fff;
  --pink: #ff5fc4;
  --gold: #c8a05a;
  --gold-dark: #a9803f;
  --silver: #cfd2da;
  --silver-bright: #f1f2f6;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.65);
  --border: rgba(255, 255, 255, 0.16);
  --card-bg: rgba(255, 255, 255, 0.06);
  --card-bg-hover: rgba(255, 255, 255, 0.1);
  --radius: 22px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --header-h: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }  /* verhindert horizontales Scrollen global */
body {
  margin: 0;
  font-size: 16px;
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--purple-deep);
  background-image:
    radial-gradient(circle at 12% 0%, rgba(138, 79, 255, 0.35), transparent 55%),
    radial-gradient(circle at 90% 25%, rgba(255, 95, 196, 0.18), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(46, 0, 77, 0.6), transparent 60%);
  background-attachment: fixed;
  line-height: 1.6;
}
main { padding-top: var(--header-h); }
.container { max-width: 1760px; margin: 0 auto; padding: 0 40px; }
.container.narrow { max-width: 980px; }
@media (max-width: 700px) { .container { padding: 0 20px; } }
a { color: var(--silver-bright); text-decoration: none; }
h1, h2, h3 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-weight: 800; letter-spacing: -0.5px; color: #fff; margin: 0 0 12px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; }

/* Glassmorphism Basis – wird auf Karten, Header, Buttons etc. angewendet */
.glass { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); box-shadow: var(--shadow); }

/* Honeypot: für Menschen unsichtbar */
.honeypot { position: absolute; opacity: 0; height: 0; width: 0; overflow: hidden; pointer-events: none; }

/* Header: schwebende Glas-Pille */
.site-header { position: fixed; top: 16px; left: 16px; right: 16px; z-index: 100; border-radius: 999px; background: rgba(11, 0, 20, 0.55); border: 1px solid var(--border); backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); }
.header-row { display: flex; align-items: center; justify-content: space-between; height: 60px; gap: 24px; padding: 0 12px 0 20px; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 42px; filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.25)); }
.main-nav { display: flex; gap: 4px; flex: 1; justify-content: center; flex-wrap: wrap; }
.main-nav a { color: var(--ink); font-weight: 600; font-size: 16px; padding: 10px 16px; border-radius: 999px; transition: background .2s; }
.main-nav a:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.cart-link { font-size: 20px; position: relative; display: inline-flex; align-items: center; gap: 4px; color: var(--silver-bright); padding: 8px 14px; border-radius: 999px; background: rgba(255, 255, 255, 0.08); }
.cart-count { font-size: 15px; background: linear-gradient(135deg, var(--violet), var(--pink)); color: #fff; border-radius: 999px; min-width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; padding: 0 5px; font-weight: 700; }
.nav-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--silver-bright); }

@media (max-width: 860px) {
  .header-row { height: 56px; }
  .main-nav { position: absolute; top: 66px; left: 0; right: 0; background: rgba(11,0,20,.92); border: 1px solid var(--border); border-radius: 20px; flex-direction: column; padding: 10px; display: none; }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; text-align: center; }
  .nav-toggle { display: block; }
}

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 30px; border-radius: 999px; font-weight: 700; font-size: 17px; cursor: pointer; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease; }
.btn-gold { background: linear-gradient(135deg, var(--violet), var(--pink)); color: #fff; box-shadow: 0 0 30px rgba(255, 95, 196, 0.45); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(255, 95, 196, 0.65); }
.btn-outline { border-color: var(--border); color: var(--silver-bright); background: rgba(255, 255, 255, 0.08); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.14); }
.btn-large { width: 100%; padding: 16px; font-size: 18px; }

/* Hero: Gradient-Mesh + Glas-Karte */
.hero {
  position: relative;
  height: 100vh;
  margin-top: calc(-1 * var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('/media/brand/glow.jpg') center/cover;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(138, 79, 255, 0.35), transparent 55%),
    linear-gradient(180deg, rgba(11, 0, 20, 0.35), var(--purple-deep) 96%);
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding: 40px 44px; display: flex; flex-direction: column; align-items: center; max-height: 88vh; overflow: hidden; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: rgba(255, 255, 255, 0.1); border: 1px solid var(--border); padding: 7px 14px; border-radius: 999px; margin-bottom: 18px; color: var(--ink); }
.eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 10px var(--pink); }
.hero-logo { width: 100%; max-width: 260px; margin: 0 0 22px; animation: logo-glow 3s ease-in-out infinite alternate; }
@keyframes logo-glow {
  from { filter: drop-shadow(0 0 28px rgba(200,160,90,.75)) drop-shadow(0 0 55px rgba(200,160,90,.35)); }
  to   { filter: drop-shadow(0 0 40px rgba(255,95,196,.7))  drop-shadow(0 0 70px rgba(255,95,196,.3)); }
}
.hero h1 { font-size: clamp(22px, 3.4vw, 36px); line-height: 1.2; margin-bottom: 12px; background: linear-gradient(135deg, #fff, #e3d4ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 16px; color: var(--muted); margin-bottom: 22px; max-width: 540px; }

/* USP-Strip als Glas-Pillen */
.usp-strip { padding: 30px 0; }
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.usp { text-align: center; font-weight: 600; color: var(--ink); font-size: 15px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 999px; padding: 14px 18px; backdrop-filter: blur(12px); }
@media (max-width: 700px) { .usp-grid { grid-template-columns: 1fr; } }

/* Sections */
.section { padding: 56px 0; position: relative; }
.shop-head { padding-bottom: 24px; }
.section-alt { background: rgba(255, 255, 255, 0.02); }
.section-title {
  font-size: clamp(22px, 3.2vw, 34px); margin-bottom: 28px; text-align: center;
  background: linear-gradient(135deg, #fff, #e3d4ff);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(138, 79, 255, 0.35);
}
.page-title { font-size: 21px; margin-bottom: 6px; }

/* Parallax Bildtrenner */
.parallax-section { position: relative; height: 100vh; min-height: 520px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.parallax-layer { position: absolute; inset: -15% 0; background-size: cover; background-position: center; will-change: transform; }
.parallax-section::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,0,20,.25), rgba(11,0,20,.8)); }
.parallax-card { position: relative; z-index: 2; max-width: 600px; padding: 48px; text-align: center; margin: 0 24px; border-radius: var(--radius); }
.parallax-card h2 { font-size: clamp(22px, 3.4vw, 32px); margin-bottom: 12px; }
.parallax-card p { color: var(--muted); font-size: 17px; line-height: 1.7; }

/* Tag-Pills (Hashtags) */
.tag-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 44px; margin-bottom: 80px; }
.tag-pill { padding: 10px 18px; border-radius: 999px; font-size: 15px; font-weight: 600; background: transparent; border: none; color: var(--pink); letter-spacing: .04em; }

/* Category grid */
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; }
.category-card {
  background: var(--card-bg); border: 1px solid var(--border); backdrop-filter: blur(14px);
  color: #fff; border-radius: var(--radius); padding: 24px 16px; text-align: center;
  font-weight: 600; font-size: 15px; box-shadow: var(--shadow); transition: transform .2s ease, border-color .2s ease;
}
.category-card:hover { transform: translateY(-6px); border-color: var(--pink); }

/* Product grid / card */
/* ── Premium Produkt-Grid ────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 340px));
  gap: 28px;
  justify-content: center;
}
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  backdrop-filter: blur(18px) saturate(140%);
  transition: transform .35s var(--ease, ease), border-color .35s, box-shadow .35s;
  position: relative;
}
.product-card::before {
  /* Pink-Glimmer oben */
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  opacity: 0; transition: opacity .35s;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,95,196,.45);
  box-shadow:
    0 0 0 1px rgba(255,95,196,.15),
    0 0 40px rgba(255,95,196,.15),
    0 24px 60px rgba(0,0,0,.5);
}
.product-card:hover::before { opacity: 1; }

.product-card-img {
  aspect-ratio: 3 / 2;
  background: rgba(255,255,255,.03);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }

/* Overlay-Label beim Hover */
.product-card-img::after {
  content: 'Entdecken →';
  position: absolute; inset: 0;
  background: rgba(46,0,77,.55);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 15px;
  letter-spacing: .08em; opacity: 0;
  transition: opacity .3s;
}
.product-card:hover .product-card-img::after { opacity: 1; }

.product-card-noimg {
  font-weight: 700; font-size: 22px; color: var(--silver); opacity: .25;
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.product-card-noimg.large { width: 100%; height: 420px; font-size: 32px; background: rgba(255,255,255,.04); border-radius: var(--radius); }

.product-card-body {
  padding: 20px 22px 22px;
  display: flex; flex-direction: column; gap: 6px;
}
.product-card-name {
  font-size: 17px; font-weight: 700; color: #fff; line-height: 1.25;
}
.product-card-price {
  font-size: 22px; font-weight: 800;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.link-arrow { font-weight: 600; color: var(--pink); display: inline-block; margin-top: 8px; }

/* Produkte nach Kategorie (Onepage) */
.product-category-block { margin-bottom: 72px; }
.product-category-block:last-child { margin-bottom: 0; }
.product-category-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 32px; flex-wrap: wrap;
}
.product-category-head h3 {
  margin: 0; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--pink); display: flex; align-items: center; gap: 10px;
}
.product-category-head h3::before {
  content: '♡'; font-size: 10px; opacity: .7;
}
.product-category-head .link-arrow {
  font-size: 13px; color: var(--muted);
  padding: 6px 16px; border: 1px solid var(--border);
  border-radius: 999px; transition: border-color .2s, color .2s;
}
.product-category-head .link-arrow:hover { border-color: var(--pink); color: var(--pink); }

/* Kontakt (Onepage) */
.contact-intro { color: var(--muted); margin-bottom: 24px; }

/* Brand-Story */
.text-center { text-align: center; }
.welcome-block p, .roadmap-block p { color: var(--ink); }
.welcome-block p:first-of-type { font-size: 17px; }
.roadmap-block { color: var(--muted); }

.text-card { position: relative; padding: 56px 60px; overflow: hidden; }
.text-card::before {
  content: '';
  position: absolute; top: -40%; left: 50%; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255, 95, 196, 0.18), transparent 65%);
  transform: translateX(-50%); pointer-events: none; z-index: 0;
}
.text-card p { position: relative; z-index: 1; }
.text-card p:not(:last-child) { margin-bottom: 18px; }
.quote-mark { display: block; font-family: Georgia, serif; font-size: 42px; line-height: 1; color: var(--pink); opacity: .8; margin-bottom: 8px; text-shadow: 0 0 24px rgba(255, 95, 196, 0.5); }
@media (max-width: 700px) { .text-card { padding: 40px 28px; } }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-bottom: 48px; }
.feature-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; backdrop-filter: blur(14px); transition: transform .25s ease; }
.feature-card:hover { transform: translateY(-6px); }
.feature-card h3 { color: #fff; font-size: 19px; margin-bottom: 6px; }
.feature-subtitle { color: var(--pink); font-weight: 600; font-size: 15px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .5px; }
.feature-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.feature-list li { color: var(--muted); font-size: 16px; padding-left: 18px; position: relative; }
.feature-list li::before { content: '♡'; position: absolute; left: 0; top: 1px; color: var(--pink); font-size: 14px; line-height: 1; }
.feature-list li strong { color: var(--ink); }

.founder-block { text-align: center; max-width: 560px; margin: 0 auto; padding: 48px; border-radius: var(--radius); }
.founder-crown { width: 120px; margin-bottom: 18px; filter: drop-shadow(0 0 18px rgba(255,255,255,0.25)); }
.founder-block p { color: var(--ink); margin: 0 0 4px; }
.brand-tagline { font-size: 17px; font-weight: 700; color: #fff; margin-top: 18px !important; }
.brand-motto { color: var(--pink) !important; font-size: 16px; }

/* Prototyp-Showcase */
.proto-section { overflow: hidden; }
.proto-header { margin-bottom: 72px; }
.proto-label { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--pink); margin-bottom: 14px; }
.proto-label::before { display: none; }
.proto-header h2 { font-size: clamp(22px, 3vw, 34px); margin-bottom: 12px; }
.proto-intro { color: var(--muted); max-width: 680px; }
.proto-row { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.proto-row-flip { direction: rtl; }
.proto-row-flip > * { direction: ltr; }
@media (max-width: 800px) { .proto-row, .proto-row-flip { grid-template-columns: 1fr; direction: ltr; margin-bottom: 48px; } }
.proto-img-wrap { position: relative; }
.proto-num { position: absolute; top: -20px; left: -12px; font-size: 80px; font-weight: 800; color: var(--pink); opacity: .15; line-height: 1; pointer-events: none; z-index: 0; font-feature-settings: "tnum"; }
.proto-img { display: block; width: 100%; border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--border); position: relative; z-index: 1; }
.proto-text { display: flex; flex-direction: column; gap: 12px; }
.proto-tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--pink); border: 1px solid rgba(255,95,196,.35); border-radius: 999px; padding: 5px 12px; width: fit-content; }
.proto-text p { color: var(--muted); margin: 0; }
.proto-why { padding: 40px 48px; margin-top: 16px; }
.proto-why-title { font-size: 17px; margin-bottom: 18px; color: #fff; }
.proto-outro { margin-top: 20px; color: var(--muted); }
.proto-outro p { margin: 0 0 10px; }

/* Filter bar */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.filter-pill { padding: 7px 15px; border-radius: 999px; border: 1px solid var(--border); font-size: 13px; font-weight: 600; color: var(--ink); background: var(--card-bg); }
.filter-pill.active, .filter-pill:hover { background: linear-gradient(135deg, var(--violet), var(--pink)); border-color: transparent; color: #fff; }
.empty-state { color: var(--muted); font-style: italic; margin-bottom: 16px; }

/* Product detail */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 800px) { .product-detail-grid { grid-template-columns: 1fr; } }
.product-gallery-main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1; max-width: 540px; margin: 0 auto; background: rgba(0,0,0,0.25); border: 1px solid var(--border); }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; max-width: 540px; margin-left: auto; margin-right: auto; }
.gallery-thumb { width: 48px; height: 48px; border-radius: 8px; overflow: hidden; border: 2px solid var(--border); padding: 0; cursor: pointer; background: none; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { border-color: var(--pink); }
.product-kicker { text-transform: uppercase; letter-spacing: 1px; font-size: 13px; font-weight: 700; color: var(--pink); }
.product-price { font-size: 18px; font-weight: 700; color: #fff; margin: 6px 0 2px; }
.price-note { color: var(--muted); font-size: 13px; }
.product-short-desc { font-size: 15px; margin: 12px 0; color: var(--ink); }
.add-to-cart-form { display: flex; align-items: end; gap: 14px; margin: 18px 0; }
.qty-label { display: flex; flex-direction: column; font-size: 13px; font-weight: 600; gap: 4px; color: var(--ink); }
.qty-input { width: 72px; padding: 9px; border: 1px solid var(--border); border-radius: 8px; background: rgba(255,255,255,0.06); color: var(--ink); }
.product-description { color: var(--muted); }
.product-description p { margin: 0 0 14px; }

/* Cart */
.cart-table { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.cart-row { display: grid; grid-template-columns: 64px 1fr 110px 90px 30px; gap: 16px; align-items: center; border-bottom: 1px solid var(--border); padding-bottom: 14px; }
.cart-row-img { width: 64px; height: 64px; border-radius: 10px; overflow: hidden; background: rgba(0,0,0,0.25); }
.cart-row-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-row-name { display: flex; flex-direction: column; gap: 2px; }
.cart-row-name a { color: var(--ink); font-weight: 600; }
.cart-row-unit { font-size: 15px; color: var(--muted); }
.cart-row-qty input { width: 64px; padding: 8px; border: 1px solid var(--border); border-radius: 8px; background: rgba(255,255,255,0.06); color: var(--ink); }
.cart-row-total { font-weight: 800; text-align: right; color: var(--pink); }
.cart-row-remove button { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 18px; }
@media (max-width: 700px) { .cart-row { grid-template-columns: 50px 1fr 30px; grid-template-areas: "img name remove" "img qty total"; } }
.cart-summary { display: flex; justify-content: space-between; font-size: 18px; padding-top: 14px; border-top: 2px solid var(--pink); color: #fff; }
.cart-actions { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; }

/* Checkout */
.checkout-grid { display: grid; grid-template-columns: 1.4fr 0.9fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .checkout-grid { grid-template-columns: 1fr; } }
.checkout-form label, .contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 16px; font-weight: 600; margin-bottom: 14px; color: var(--ink); }
.checkout-form input, .checkout-form textarea, .contact-form input, .contact-form textarea {
  font-family: inherit; padding: 11px 14px; border: 1px solid var(--border); border-radius: 10px; font-size: 17px;
  background: rgba(255,255,255,0.06); color: var(--ink);
}
.form-row { display: grid; gap: 14px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
.form-row.three { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 600px) { .form-row.two, .form-row.three { grid-template-columns: 1fr; } }
.radio-row, .checkbox-row { display: flex; align-items: flex-start; gap: 8px; font-weight: 500; font-size: 16px; color: var(--ink); }
.checkout-summary { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; backdrop-filter: blur(14px); }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 16px; color: var(--ink); }
.summary-total { font-size: 17px; font-weight: 800; border-bottom: none; border-top: 2px solid var(--pink); padding-top: 14px; color: #fff; }

/* Thank you */
.thank-you { text-align: center; padding: 100px 0; }
.thank-you-crown { width: 120px; margin-bottom: 20px; filter: drop-shadow(0 0 24px rgba(255,255,255,0.3)); }

/* Legal pages */
.legal-page p { margin: 0 0 14px; color: var(--ink); }
.legal-hint { background: rgba(200, 160, 90, 0.15); border: 1px solid rgba(200, 160, 90, 0.4); padding: 12px 16px; border-radius: 10px; font-size: 16px; color: var(--silver-bright); }
.legal-quote { background: var(--card-bg); border-left: 3px solid var(--pink); padding: 14px 18px; border-radius: 10px; margin: 16px 0; backdrop-filter: blur(14px); }

/* Alerts */
.alert { padding: 14px 18px; border-radius: 12px; margin-bottom: 20px; font-size: 16px; }
.alert-error { background: rgba(200, 50, 50, 0.18); color: #ffb3b3; border: 1px solid rgba(200,50,50,0.4); }
.alert-success { background: rgba(60, 170, 100, 0.18); color: #a6e6bf; border: 1px solid rgba(60,170,100,0.4); }
.alert-info { background: var(--card-bg); color: var(--silver-bright); border: 1px solid var(--border); }

/* Footer */
.site-footer { padding: 80px 0 30px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-crown { height: 56px; margin-bottom: 12px; filter: drop-shadow(0 0 12px rgba(255,255,255,0.3)); }
.site-footer h3 { color: var(--pink); font-size: 16px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .5px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--pink); }
.footer-bottom { margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--border); font-size: 15px; text-align: center; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════════════════
   SOCIAL MEDIA — Bar, CTA, Footer Icons
   ═══════════════════════════════════════════════════════════════════ */

/* ── Schmale Social-Bar ganz oben ────────────────────────────────────── */
.social-bar {
  background: var(--purple-base);
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; padding: 8px 1rem;
  font-size: 13px; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}
.social-bar-text { color: rgba(255,255,255,.55); letter-spacing: .04em; }
.social-bar-divider { color: rgba(255,255,255,.25); }
.social-bar-link {
  display: flex; align-items: center; gap: 6px;
  color: #fff; font-weight: 600; letter-spacing: .02em;
  padding: 4px 14px; border-radius: 100px;
  transition: background .2s, transform .2s;
  text-decoration: none;
}
.social-bar-link svg { flex-shrink: 0; }
.social-bar-handle {
  font-size: 11px; font-weight: 400;
  opacity: .7; margin-left: 2px;
}
.social-bar-tiktok    { background: rgba(255,255,255,.1); }
.social-bar-tiktok:hover { background: #010101; transform: scale(1.03); }
.social-bar-instagram { background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af); }
.social-bar-instagram:hover { opacity: .88; transform: scale(1.03); }

/* ── Nav Social (Mobile + Desktop) ───────────────────────────────────── */
.nav-social {
  display: flex; align-items: center; gap: .5rem;
  margin-left: auto; padding-left: 1rem;
  border-left: 1px solid rgba(255,255,255,.1);
}
.nav-social-link {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,.7); font-size: 13px;
  padding: 5px 10px; border-radius: 6px;
  transition: background .2s, color .2s;
}
.nav-social-link:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav-social-insta:hover { background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af); color: #fff; }
@media (max-width: 768px) {
  .nav-social { border-left: none; padding-left: 0; margin-left: 0;
    width: 100%; justify-content: center; padding: 8px 0; border-top: 1px solid rgba(255,255,255,.08); }
}

/* ── Große Social-CTA Section (vor Footer) ──────────────────────────── */
.social-cta {
  background: linear-gradient(135deg, var(--purple-deep) 0%, #1a0035 50%, var(--purple-deep) 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 64px 0;
  text-align: center;
}
.social-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  max-width: 900px; margin: 0 auto; padding: 0 2rem;
}
.social-cta-text { text-align: left; flex: 1; min-width: 240px; }
.social-cta-label {
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .5rem;
}
.social-cta-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800;
  color: #fff; line-height: 1.15; margin-bottom: .75rem;
}
.social-cta-sub { color: rgba(255,255,255,.5); font-size: 15px; line-height: 1.6; }
.social-cta-buttons {
  display: flex; flex-direction: column; gap: 1rem; flex-shrink: 0;
}
@media (max-width: 640px) {
  .social-cta-inner { flex-direction: column; text-align: center; }
  .social-cta-text { text-align: center; }
  .social-cta-buttons { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}

.social-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 24px; border-radius: 14px;
  font-weight: 600; text-decoration: none; min-width: 220px;
  transition: transform .2s, box-shadow .2s;
  color: #fff;
}
.social-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.4); }
.social-btn svg { flex-shrink: 0; }
.social-btn span { display: flex; flex-direction: column; text-align: left; }
.social-btn strong { font-size: 15px; line-height: 1.2; }
.social-btn small { font-size: 12px; opacity: .7; font-weight: 400; }
.social-btn-tiktok {
  background: #010101; border: 1px solid rgba(255,255,255,.15);
}
.social-btn-tiktok:hover { background: #1a1a1a; }
.social-btn-instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
  border: none;
}

/* ── Footer Social Icons ────────────────────────────────────────────── */
.footer-social {
  display: flex; gap: .75rem; margin-top: 1rem;
}
.footer-social-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  transition: background .2s, color .2s, transform .2s;
}
.footer-social-icon:hover { color: #fff; transform: translateY(-2px); }
.footer-social-insta:hover { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); }

/* Footer Bottom Social */
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom-social { display: flex; gap: 1.5rem; }
.footer-bottom-social a { color: var(--muted); font-size: 13px; }
.footer-bottom-social a:hover { color: var(--pink); }

/* ═══════════════════════════════════════════════════════════════════════
   VORHANG-ANIMATION (Curtain Drop)
   ═══════════════════════════════════════════════════════════════════ */

/* ══ VORHANG — öffnet von der MITTE nach außen ══════════════════════ */
.curtain {
  position: fixed; inset: 0; z-index: 9000;
  pointer-events: none;
}
/* Beide Hälften: vertikal gestreifte Vorhang-Textur in PMC-Lila */
.curtain-left,
.curtain-right {
  position: absolute; top: 0; bottom: 0; width: 50%;
  background: var(--purple-base);
  background-image:
    repeating-linear-gradient(90deg,
      rgba(255,255,255,0)   0px,  rgba(255,255,255,0)   14px,
      rgba(255,255,255,.03) 14px, rgba(255,255,255,.03) 16px,
      rgba(0,0,0,.04)       16px, rgba(0,0,0,.04)       18px),
    linear-gradient(180deg, #3d0068 0%, var(--purple-base) 40%, #1a0030 100%);
}
/* Linke Hälfte startet links, gleitet nach LINKS raus */
.curtain-left  {
  left: 0;
  animation: curtain-slide-left .85s .95s cubic-bezier(.77,0,.18,1) forwards;
}
/* Rechte Hälfte startet rechts, gleitet nach RECHTS raus */
.curtain-right {
  right: 0;
  animation: curtain-slide-right .85s .95s cubic-bezier(.77,0,.18,1) forwards;
}
@keyframes curtain-slide-left  { to { transform: translateX(-100%); } }
@keyframes curtain-slide-right { to { transform: translateX(100%);  } }

/* PMC-Logo mittig auf dem Vorhang, strahlt golden */
.curtain-logo {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  animation: curtain-logo-out .3s .85s ease forwards;
}
.curtain-logo img {
  width: min(200px, 38vw);
  filter: drop-shadow(0 0 30px rgba(200,160,90,.7))
          drop-shadow(0 0 60px rgba(200,160,90,.4));
  animation: curtain-logo-in 1s ease-out;
}
@keyframes curtain-logo-in {
  0%   { transform: scale(.7) translateY(10px); opacity: 0; filter: blur(8px); }
  60%  { transform: scale(1.05) translateY(-4px); opacity: 1; filter: blur(0); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
@keyframes curtain-logo-out { to { opacity: 0; transform: scale(1.1); } }

/* Kein body-opacity-Trick mehr — der Vorhang selbst ist das Reveal.
   body opacity:0 hätte den fixed Vorhang unsichtbar gemacht. */

/* ── Hero Social Buttons ─────────────────────────────────────────────── */
.hero-social {
  display: flex; align-items: center; gap: .75rem;
  margin-top: 2rem; flex-wrap: wrap; justify-content: center;
}
.hero-social > span {
  font-size: 13px; color: rgba(255,255,255,.45);
  letter-spacing: .06em; text-transform: uppercase;
}
.hero-social-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 18px; border-radius: 100px;
  font-size: 14px; font-weight: 600;
  color: #fff; text-decoration: none;
  transition: transform .2s, opacity .2s;
}
.hero-social-btn:hover { transform: scale(1.06); opacity: .9; }
.hero-social-tt { background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15); }
.hero-social-ig { background: linear-gradient(90deg,#f58529,#dd2a7b,#8134af); }

/* ── Kleine Social Icons im Header neben Warenkorb ──────────────────── */
.header-social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 8px;
  color: rgba(255,255,255,.6);
  transition: color .2s, background .2s;
}
.header-social-icon:hover { color: #fff; background: rgba(255,255,255,.1); }
.header-social-ig:hover   { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); color: #fff; }

/* Datenschutz-Checkbox im Kontaktformular */
.checkbox-label {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer; margin: 4px 0;
}
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--pink); cursor: pointer;
}
.checkbox-label span {
  font-size: 14px; color: var(--muted); line-height: 1.5;
}
.checkbox-label a {
  color: var(--gold); text-decoration: underline; text-underline-offset: 3px;
}
.checkbox-label a:hover { color: var(--pink); }

/* ── Brand Statement Section (Bild + Text kombiniert) ───────────────── */
.brand-statement {
  position: relative;
  min-height: 600px;
  display: flex; align-items: center;
  padding: 80px 0;
  overflow: hidden;
}
.brand-statement-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,0,20,.82) 0%,
    rgba(46,0,77,.75) 50%,
    rgba(11,0,20,.85) 100%
  );
}
.brand-statement-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .brand-statement-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* Linke Seite: Headline */
.brand-statement-eyebrow {
  display: block; font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
  font-weight: 600;
}
.brand-statement-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1; margin-bottom: 28px;
  background: linear-gradient(135deg, #fff, #e3d4ff, var(--pink));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-statement-tags {
  font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.8;
}
.tag-love {
  color: var(--pink); font-weight: 700; letter-spacing: .12em;
}

/* Rechte Seite: Text-Card */
.brand-statement-right {
  padding: 32px 36px; border-radius: var(--radius);
}
.brand-statement-intro {
  font-size: 17px; line-height: 1.65; color: var(--ink);
  margin-bottom: 16px;
}
.brand-statement-intro strong { color: var(--gold); }
.brand-statement-right > p { color: var(--muted); margin-bottom: 12px; font-size: 15px; }
.brand-statement-list {
  list-style: none; padding: 0; margin: 0 0 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.brand-statement-list li {
  font-size: 15px; font-weight: 600; color: var(--ink);
  padding: 8px 14px;
  background: rgba(255,255,255,.06); border-radius: 10px;
  border: 1px solid var(--border);
}
.brand-statement-footer {
  font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.6;
}
.brand-statement-footer em { color: var(--gold); font-style: normal; }

/* ── Royal Section — Warum PMC ───────────────────────────────────────── */
.royal-section { padding: 80px 0; }

.royal-header { text-align: center; margin-bottom: 60px; }
.royal-crown {
  height: 64px; margin-bottom: 20px;
  /* Silberner Glow passend zum Logo */
  filter: drop-shadow(0 0 20px rgba(255,255,255,.55))
          drop-shadow(0 0 40px rgba(180,150,220,.35));
  animation: crown-float 4s ease-in-out infinite;
}
@keyframes crown-float {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-8px) rotate(1deg); }
}
.royal-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  /* Silber-Weiß-Pink statt Gold */
  background: linear-gradient(135deg, #fff, #e3d4ff, var(--pink), #fff);
  background-size: 300% 300%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: silver-shimmer 4s ease infinite;
  margin-bottom: 10px;
}
@keyframes silver-shimmer {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.royal-sub { color: var(--muted); font-size: 16px; letter-spacing: .08em; }
.royal-divider {
  margin: 24px auto 0; display: flex; align-items: center; gap: 16px;
  justify-content: center; color: var(--pink); font-size: 18px;
}
.royal-divider::before, .royal-divider::after {
  content: ''; display: block; width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,95,196,.5));
}
.royal-divider::after { background: linear-gradient(90deg, rgba(255,95,196,.5), transparent); }

/* Drei Karten: Seiten niedriger, Mitte erhöht */
.royal-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 20px;
  align-items: center;
}
@media (max-width: 860px) {
  .royal-grid { grid-template-columns: 1fr; align-items: stretch; }
  .royal-card--queen { order: -1; }
}

.royal-card {
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  display: flex; flex-direction: column; gap: 12px;
}
.royal-card h3 {
  font-size: 22px; color: #fff; margin: 0;
}
.royal-card-sub {
  font-size: 14px; color: var(--pink); font-weight: 600;
  letter-spacing: .04em; margin: 0;
}
.royal-card ul { padding-left: 0; margin: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.royal-card li { font-size: 15px; color: var(--muted); display: flex; align-items: flex-start; gap: 8px; }
.royal-card li::before { content: '♡'; color: var(--pink); font-size: 15px; flex-shrink: 0; }

/* Seiten-Karten: dezent */
.royal-card--side {
  background: var(--card-bg);
  margin-top: 32px;  /* Seiten tiefer als Mitte → Mitte wirkt höher */
}
.royal-card-icon { font-size: 28px; color: var(--pink); opacity: .6; text-align: center; }
.royal-card--queen .royal-card-icon { font-size: 36px; opacity: .9; color: var(--pink); }

/* Queen Card: erhöht, goldener Rand + Glow */
.royal-card--queen {
  background: linear-gradient(160deg,
    rgba(200,160,90,.12) 0%,
    rgba(138,79,255,.1)  50%,
    rgba(255,95,196,.1)  100%
  );
  border: 1px solid rgba(200,160,90,.45);
  box-shadow:
    0 0 40px rgba(200,160,90,.18),
    0 0 80px rgba(200,160,90,.08),
    0 30px 60px rgba(0,0,0,.4);
  position: relative;
  overflow: hidden;
}
.royal-card--queen::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(200,160,90,.12), transparent 60%);
  pointer-events: none;
}
.royal-card--queen h3 {
  font-size: 26px;
  background: linear-gradient(135deg, #fff, var(--pink));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.royal-card-crown { text-align: center; margin-bottom: 4px; }
.queen-crown-img {
  height: 48px;
  /* Silberner Glow */
  filter: drop-shadow(0 0 16px rgba(255,255,255,.7))
          drop-shadow(0 0 32px rgba(180,150,220,.4));
}
/* .queen-badge entfernt — kein "Fan Favourite" auf Feature-Karten */

/* ── Coming Soon Section ─────────────────────────────────────────────── */
.coming-soon-section {
  position: relative; min-height: 560px;
  display: flex; align-items: center; padding: 80px 0; overflow: hidden;
}
.coming-soon-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(11,0,20,.88) 0%,
    rgba(46,0,77,.82) 50%,
    rgba(11,0,20,.90) 100%
  );
}
.coming-soon-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center;
}
@media (max-width: 860px) { .coming-soon-inner { grid-template-columns: 1fr; gap: 32px; } }

.cs-eyebrow {
  display: block; font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 16px; font-weight: 600;
}
.cs-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 1.05;
  color: #fff; margin-bottom: 20px;
}
.cs-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.cs-love {
  font-size: 15px; font-weight: 700; letter-spacing: .12em;
  color: var(--pink); margin-bottom: 8px;
}
.cs-tag { font-size: 13px; color: rgba(255,255,255,.4); font-style: italic; }

/* Rechte Karte */
.cs-right { padding: 28px 32px; border-radius: var(--radius); display: flex; flex-direction: column; gap: 18px; }

.cs-launch-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.cs-launch-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.cs-launch-item strong { display: block; font-size: 16px; color: #fff; margin-bottom: 3px; }
.cs-launch-item p { font-size: 14px; color: var(--muted); margin: 0; }

.cs-divider {
  height: 1px; background: var(--border); margin: 4px 0;
}
.cs-outro { font-size: 15px; color: var(--muted); line-height: 1.65; }
.cs-outro em { color: var(--pink); font-style: normal; font-weight: 600; }

.cs-origin {
  font-size: 13px; color: rgba(255,255,255,.3); letter-spacing: .08em;
  text-transform: uppercase; margin: 0;
}
.cs-origin span { color: var(--pink); }

/* ── Products Section Header ─────────────────────────────────────────── */
.products-header { text-align: center; margin-bottom: 52px; }
.products-eyebrow {
  display: block; font-size: 12px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--pink); margin-bottom: 12px;
  font-weight: 700;
}

/* ── Versand & Zahlung — Full-Width Parallax ─────────────────────── */
.versand-fullwidth {
  position: relative; min-height: 560px;
  display: flex; align-items: center; padding: 80px 0; overflow: hidden;
}
.versand-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(11,0,20,.85) 0%,
    rgba(46,0,77,.78) 50%,
    rgba(11,0,20,.88) 100%
  );
}
.versand-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 48px; align-items: center;
}
.versand-header { text-align: center; }
.versand-eyebrow {
  display: block; font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 12px; font-weight: 700;
}
.versand-title {
  font-size: clamp(2rem, 5vw, 3.4rem); color: #fff;
  margin: 0; letter-spacing: -.5px;
}

/* Drei Karten */
.versand-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; width: 100%;
}
@media (max-width: 860px) { .versand-cards { grid-template-columns: 1fr; } }

.versand-card {
  padding: 32px 28px; border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.versand-card:hover {
  border-color: rgba(255,95,196,.4);
  box-shadow: 0 0 36px rgba(255,95,196,.15), 0 20px 50px rgba(0,0,0,.4);
  transform: translateY(-4px);
}
.versand-icon-wrap { font-size: 40px; line-height: 1; }
.versand-card h3 { font-size: 22px; color: #fff; margin: 0; }
.versand-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.versand-list li {
  font-size: 15px; color: var(--muted);
  display: flex; align-items: flex-start; gap: 10px;
}
.versand-list li::before {
  content: '♡'; color: var(--pink); font-size: 15px; flex-shrink: 0;
}
.versand-footer-hint {
  font-size: 15px; color: rgba(255,255,255,.35); text-align: center;
}
.versand-footer-hint a { color: var(--pink); transition: opacity .2s; }
.versand-footer-hint a:hover { opacity: .8; }

/* ── Prototyp-Section ────────────────────────────────────────────────── */
.proto-section { padding: 72px 0; }
.proto-header { text-align: center; margin-bottom: 48px; }
.proto-subtitle { color: var(--muted); font-size: 16px; letter-spacing: .12em; margin: 0; }

.proto-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
@media (max-width: 860px) { .proto-layout { grid-template-columns: 1fr; } }

.proto-text { padding: 36px 32px; border-radius: var(--radius); display: flex; flex-direction: column; gap: 16px; }
.proto-text p { color: var(--muted); line-height: 1.75; margin: 0; }
.proto-text strong { color: #fff; }

.proto-social-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.proto-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; font-size: 14px; font-weight: 600;
  text-decoration: none; color: #fff; transition: transform .2s, opacity .2s;
}
.proto-btn:hover { transform: translateY(-2px); opacity: .9; }
.proto-btn-tt { background: #010101; border: 1px solid rgba(255,255,255,.15); }
.proto-btn-ig { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }

.proto-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.proto-img-wrap {
  position: relative; overflow: hidden; border-radius: 16px; aspect-ratio: 4/3;
}
.proto-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.proto-img-wrap:hover img { transform: scale(1.04); }
.proto-year-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(11,0,20,.75); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--muted); font-size: 12px; font-weight: 700;
  letter-spacing: .1em; padding: 5px 12px; border-radius: 999px;
}
.proto-year-badge--new { background: rgba(255,95,196,.2); border-color: rgba(255,95,196,.4); color: var(--pink); }

/* ── Cookie-Banner ───────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: rgba(11,0,20,.96); backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px clamp(1rem,3vw,3rem);
  animation: cookie-slide-up .4s cubic-bezier(.22,1,.36,1);
}
@keyframes cookie-slide-up { from { transform: translateY(100%); opacity: 0; } }
.cookie-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 240px; }
.cookie-text strong { display: block; font-size: 15px; color: #fff; margin-bottom: 4px; }
.cookie-text p { font-size: 13px; color: rgba(255,255,255,.55); margin: 0; line-height: 1.55; }
.cookie-text a { color: var(--pink); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 22px; border-radius: 999px; font-size: 13px;
  font-weight: 700; cursor: pointer; border: 1px solid transparent;
  transition: all .2s; font-family: inherit;
}
.cookie-btn-decline {
  background: transparent; border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.5);
}
.cookie-btn-decline:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.cookie-btn-accept {
  background: linear-gradient(135deg, var(--violet), var(--pink));
  color: #fff; border-color: transparent;
  box-shadow: 0 0 20px rgba(255,95,196,.3);
}
.cookie-btn-accept:hover { opacity: .88; transform: translateY(-1px); }

/* ── Prototyp Section (wiederhergestellt) ───────────────────────────── */
.proto-section { padding: 72px 0; }
.proto-section-header { text-align: center; margin-bottom: 48px; }
.proto-section-layout {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 36px; align-items: start;
}
@media (max-width: 900px) { .proto-section-layout { grid-template-columns: 1fr; } }

.proto-section-imgs { display: flex; flex-direction: column; gap: 16px; }
.proto-section-img {
  border-radius: 16px; overflow: hidden; position: relative;
}
.proto-section-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.proto-section-caption {
  padding: 10px 14px; display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted);
  border-top: 1px solid var(--border);
}
.proto-year-badge {
  background: rgba(11,0,20,.75); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--muted); font-size: 12px; font-weight: 700;
  letter-spacing: .1em; padding: 3px 10px; border-radius: 999px; flex-shrink: 0;
}
.proto-year-badge--new { background: rgba(255,95,196,.2); border-color: rgba(255,95,196,.4); color: var(--pink); }

.proto-section-text { display: flex; flex-direction: column; gap: 14px; }
.proto-text-block {
  padding: 20px 22px; border-radius: 14px; font-size: 15px;
  line-height: 1.7; color: var(--muted);
}
.proto-text-block p { margin: 0 0 8px; }
.proto-text-block p:last-child { margin: 0; }
.proto-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .proto-two-col { grid-template-columns: 1fr; } }
.proto-tag {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--pink); margin-bottom: 8px;
}
.proto-why-title { font-size: 16px; color: #fff; margin: 0 0 12px; font-weight: 700; }

/* ── AGB Seite ───────────────────────────────────────────────────────── */
.agb-hero {
  padding: calc(var(--header-h) + 3rem) 0 3rem;
  border-bottom: 1px solid var(--border);
}
.agb-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 800;
  line-height: 1.05; margin: .75rem 0 1rem;
  background: linear-gradient(135deg, #fff, #e3d4ff);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.agb-meta { color: var(--muted); font-size: 14px; }

/* Kurzversion Cards */
.agb-short { padding: 56px 0; border-bottom: 1px solid var(--border); }
.agb-short-label {
  font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 28px; display: block;
}
.agb-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px;
}
.agb-card {
  padding: 24px 22px; border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .25s, transform .25s;
}
.agb-card:hover { border-color: rgba(255,95,196,.35); transform: translateY(-2px); }
.agb-card-icon { font-size: 28px; }
.agb-card h3 { font-size: 16px; color: #fff; margin: 0; }
.agb-card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }
.agb-card a { color: var(--pink); }

/* Vollständige AGB */
.agb-full { padding: 64px 0 80px; }
.agb-full-inner { max-width: 820px; }
.agb-full-intro { color: var(--muted); font-size: 15px; margin-bottom: 40px; font-style: italic; }

.agb-section {
  margin-bottom: 36px; padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.agb-section:last-of-type { border-bottom: none; }
.agb-section h2 {
  display: flex; align-items: center; gap: 14px;
  font-size: 18px; color: #fff; margin: 0 0 16px; font-weight: 700;
}
.agb-num {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #fff;
}
.agb-section p { color: var(--muted); font-size: 15px; line-height: 1.75; margin: 0 0 12px; }
.agb-section a { color: var(--pink); }

/* Adress-Box */
.agb-address {
  padding: 18px 22px; border-radius: 12px;
  font-size: 15px; color: var(--muted); line-height: 1.8;
  margin: 16px 0;
}
.agb-address strong { color: #fff; }

/* Widerrufsbelehrung */
.agb-widerruf {
  padding: 24px 26px; border-radius: 14px; margin: 16px 0;
  border-color: rgba(255,95,196,.2) !important;
}
.agb-widerruf-title {
  font-size: 14px; font-weight: 700; letter-spacing: .06em;
  color: var(--pink); margin-bottom: 14px !important;
}
.agb-widerruf-subtitle {
  font-weight: 700; color: rgba(255,255,255,.7) !important;
  margin-top: 16px !important;
}

/* Formular-Box */
.agb-formular {
  padding: 22px 26px; border-radius: 12px; margin: 16px 0;
  border-style: dashed !important;
}
.agb-formular p { font-size: 14px; }
.agb-form-fields { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.agb-form-fields p { font-family: monospace; color: rgba(255,255,255,.5) !important; font-size: 13px !important; }

/* Footer-Hinweis */
.agb-footer-note {
  margin-top: 40px; padding: 18px 22px; border-radius: 12px;
  background: rgba(255,200,50,.07); border: 1px solid rgba(255,200,50,.2);
}
.agb-footer-note p { color: rgba(255,200,50,.8) !important; font-size: 14px !important; margin: 0 !important; }
