/* ============================================================
   DESSET — style.css  (Represent-inspiriertes Redesign)
   Farben & Schriften zentral hier:
   ============================================================ */
:root {
  --white: #ffffff;
  --paper: #f7f7f7;
  --black: #0c0c0c;
  --gray: #8a8a8a;
  --line: #e4e4e4;
  --accent: #E8352A;                 /* Signalrot: NEW-Labels, Fehler, Akzente */
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* ============================================================
   VIDEO-STAGE (Coming Soon + Shop-Hero teilen sich das)
   ============================================================ */
.cs-stage, .shop-hero {
  position: relative;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

.cs-fallback {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 30% 20%, #2a2a2a 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 75% 85%, #1c1c1c 0%, transparent 65%),
    #111;
  z-index: 0;
}

.cs-overlay {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, .35);
  z-index: 2;
}
.cs-overlay.light { background: rgba(0, 0, 0, .22); }

/* Riesiger Schriftzug über volle Breite (Represent-Look) */
.cs-giant {
  position: absolute;
  top: 6vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24vw;
  line-height: .9;
  letter-spacing: -.01em;
  color: var(--white);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* ---------- Coming Soon: Mitte ---------- */
.cs-center {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 20px;
  margin-top: 22vh;
  width: min(460px, 92vw);
}

.cs-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .45em;
  color: var(--white);
  text-transform: uppercase;
}
.cs-tag.dark { color: var(--black); }

.cs-form {
  display: flex;
  gap: 8px;
  margin-top: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.cs-form input {
  flex: 1;
  min-width: 220px;
  padding: 15px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  background: rgba(255, 255, 255, .95);
  border: 1px solid transparent;
  color: var(--black);
}
.cs-form input:focus { outline: none; border-color: var(--accent); }

.cs-btn {
  padding: 15px 26px;
  background: var(--white);
  color: var(--black);
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .16em;
  cursor: pointer;
  transition: background .15s, color .15s, transform .12s;
}
.cs-btn:hover { background: var(--accent); color: var(--white); }
.cs-btn:active { transform: scale(.97); }

.cs-btn.dark { background: var(--black); color: var(--white); }
.cs-btn.dark:hover { background: var(--accent); }

.btn-wide { width: 100%; margin-top: 12px; }

.cs-error { margin-top: 12px; font-size: 13px; color: var(--accent); font-weight: 500; }
.cs-success { margin-top: 14px; font-size: 14px; color: var(--white); font-weight: 700; letter-spacing: .08em; }
.cs-success.dark { color: var(--black); }

.cs-note { margin-top: 14px; font-size: 12px; color: rgba(255, 255, 255, .75); }
.cs-note.dark { color: var(--gray); }
.cs-note a { color: inherit; }

.cs-footer {
  position: absolute;
  bottom: 18px;
  z-index: 4;
  display: flex;
  gap: 22px;
  font-size: 11.5px;
}
.cs-footer a, .cs-footer span { color: rgba(255, 255, 255, .65); text-decoration: none; }
.cs-footer a:hover { color: var(--white); }

/* ============================================================
   SHOP: HEADER
   ============================================================ */
.shop-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 22px;
  mix-blend-mode: difference;
}
.shop-nav .nav-textlink, .shop-wordmark { color: #fff; }

.page-shop main, .page-shop .shop-footer { position: relative; z-index: 1; }

.shop-nav-left { display: flex; gap: 20px; }
.shop-nav-right { display: flex; justify-content: flex-end; }

.nav-textlink {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: .02em;
}
.nav-textlink:hover { opacity: .7; }

.sup-new {
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  margin-left: 3px;
}

.shop-wordmark {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: .02em;
  text-decoration: none;
}

#cart-count { color: var(--accent); font-weight: 700; }

/* ---------- Slide-out Menü ---------- */
.menu-drawer {
  position: fixed;
  top: 0; left: 0;
  z-index: 80;
  height: 100dvh;
  width: min(340px, 88vw);
  background: var(--white);
  padding: 70px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(-100%);
  transition: transform .35s ease;
}
.menu-drawer.open { transform: none; }
.menu-drawer a {
  color: var(--black);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.menu-drawer a:hover { color: var(--accent); }

.menu-backdrop {
  position: fixed; inset: 0;
  z-index: 75;
  background: rgba(0, 0, 0, .4);
}

/* ---------- Hero unten ---------- */
.hero-bottom {
  position: absolute;
  bottom: 7vh;
  z-index: 4;
  text-align: center;
}
.hero-brand {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--white);
  letter-spacing: .02em;
}
.hero-cta {
  display: inline-block;
  margin-top: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hero-cta:hover { color: var(--accent); }

/* ============================================================
   SHOP: GRID (editorial, Represent-Stil)
   ============================================================ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--white);
  padding: 2px;
}

.tile { position: relative; background: var(--paper); }
.tile svg, .tile img { display: block; width: 100%; height: auto; }

.tile-look { grid-row: span 2; }
.tile-look svg, .tile-look img {
  height: 100%;
  object-fit: cover;
}
.tile-look-caption {
  position: absolute;
  left: 16px; bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #9a9a9a;
}

.tile-product { background: var(--white); padding-bottom: 16px; }
.tile-media { background: var(--paper); }

.tile-info {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px 0;
  font-size: 14px;
}
.tile-name { font-weight: 500; }
.tile-price { font-weight: 500; white-space: nowrap; }
.tile-soldout { color: var(--gray); white-space: nowrap; }

.vat-note {
  padding: 2px 16px 0;
  font-size: 11px;
  color: var(--gray);
}

.tile-plus {
  position: absolute;
  right: 12px; bottom: 10px;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: all .15s;
}
.tile-plus:hover { background: var(--black); color: var(--white); border-color: var(--black); }

.locked { opacity: .6; }
.locked-media {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(-45deg, transparent 0 16px, #efefef 16px 32px),
    var(--paper);
}
.locked-mark {
  font-family: var(--font-display);
  font-size: 64px;
  color: #d6d6d6;
}

/* ---------- Signup-Abschnitt im Shop ---------- */
.shop-signup {
  text-align: center;
  padding: 100px 20px;
  border-top: 1px solid var(--line);
}
.signup-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 7vw, 64px);
  margin: 14px 0 6px;
}
.shop-signup .cs-form { max-width: 460px; margin: 26px auto 0; }
.shop-signup .cs-form input {
  background: var(--paper);
  border: 1px solid var(--line);
}

/* ============================================================
   SHOP: FOOTER
   ============================================================ */
.shop-footer {
  border-top: 1px solid var(--line);
  padding: 60px 24px 30px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-cols h4 {
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--gray);
  margin-bottom: 14px;
}
.footer-cols a {
  display: block;
  color: var(--black);
  text-decoration: none;
  font-size: 13.5px;
  padding: 5px 0;
}
.footer-cols a:hover { color: var(--accent); }

.footer-legalrow {
  max-width: 1100px;
  margin: 46px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--gray);
}
.footer-legalrow a {
  color: var(--gray);
  text-decoration: none;
  margin-left: 18px;
}
.footer-legalrow a:first-child { margin-left: 0; }
.footer-legalrow a:hover { color: var(--black); }

/* ============================================================
   CART DRAWER (hell)
   ============================================================ */
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  z-index: 90;
  width: min(400px, 100vw);
  height: 100dvh;
  background: var(--white);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 22px;
  transform: translateX(100%);
  transition: transform .35s ease;
}
.cart-drawer.open { transform: none; }

.cart-head { display: flex; justify-content: space-between; align-items: center; }
.cart-head h3 { font-family: var(--font-display); letter-spacing: .04em; }

.cart-items { list-style: none; margin-top: 20px; flex: 1; overflow-y: auto; }
.cart-items li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.cart-item-remove { background: none; border: none; color: var(--gray); cursor: pointer; font-size: 16px; }
.cart-item-remove:hover { color: var(--accent); }
.cart-empty { margin-top: 30px; color: var(--gray); font-size: 14px; }
.cart-foot { border-top: 1px solid var(--line); padding-top: 16px; }
.cart-foot .vat-note { padding: 2px 0 0; }
.cart-total-row { font-size: 16px; font-weight: 700; }

/* ============================================================
   MODALS
   ============================================================ */
.modal-backdrop {
  position: fixed; inset: 0;
  z-index: 95;
  background: rgba(0, 0, 0, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal {
  position: relative;
  background: var(--white);
  max-width: 460px;
  width: 100%;
  padding: 34px 28px;
}
.modal h3 { font-family: var(--font-display); letter-spacing: .03em; margin-bottom: 10px; }
.modal p { color: var(--gray); font-size: 14px; line-height: 1.6; }
.modal form { margin-top: 20px; }
.modal input {
  width: 100%;
  padding: 15px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.modal input:focus { outline: none; border-color: var(--accent); }

.modal-legal { max-width: 640px; max-height: 80dvh; overflow-y: auto; }
#legal-body { margin-top: 14px; color: #555; font-size: 13.5px; line-height: 1.7; }
#legal-body h4 { color: var(--black); margin: 18px 0 6px; font-size: 14px; }
#legal-body .placeholder-warn {
  background: #fdeceb;
  border: 1px solid var(--accent);
  color: var(--black);
  padding: 12px;
  font-size: 12.5px;
  margin-bottom: 14px;
}

.modal-close {
  position: absolute;
  top: 10px; right: 14px;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  z-index: 2;
}
.modal-close:hover { color: var(--accent); }
.cart-head .modal-close, .menu-drawer .modal-close { position: absolute; }
.cart-head .modal-close { position: static; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 96;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 6px 30px rgba(0, 0, 0, .12);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner p { font-size: 12.5px; color: #555; flex: 1; min-width: 220px; line-height: 1.6; }
.cookie-banner a { color: var(--black); }
.cookie-actions .cs-btn { padding: 10px 26px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 700px) {
  .cs-giant { font-size: 30vw; top: 9vh; }
  .cs-center { margin-top: 26vh; }
  .shop-grid { grid-template-columns: 1fr; }
  .tile-look { grid-row: auto; }
  .cs-form input { min-width: 0; width: 100%; }
  .cs-form .cs-btn { width: 100%; }
  .shop-wordmark { font-size: 20px; }
}
