/* ============================================================
   DESSET — style.css  (Coming Soon + Shop + Legal-Seiten)
   ============================================================ */
:root {
  --white: #ffffff;
  --paper: #f7f7f7;
  --black: #0c0c0c;
  --gray: #8a8a8a;
  --line: #e4e4e4;
  --accent: #E8352A;
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
}

/* >>> EIGENE SCHRIFT (falls .woff2/.ttf vorhanden): nach assets/
   legen, Block einkommentieren, --font-display anpassen.
@font-face {
  font-family: 'DessetFont';
  src: url('assets/desset-font.woff2') format('woff2');
  font-display: swap;
}
*/

* { 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
   ============================================================ */
.cs-stage, .shop-hero {
  position: relative;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}

/* Unsichtbar bis abspielbereit; kein Play-Button, keine Klicks */
.cs-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}
.cs-video.ready { opacity: 1; }
.cs-video::-webkit-media-controls,
.cs-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.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); }

.cs-giant-wrap {
  position: absolute;
  top: 7vh;
  left: 0; right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.cs-giant-img {
  width: 94vw;
  max-width: 1600px;
  height: auto;
  user-select: none;
}

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

.cs-panther { width: 90px; height: auto; margin-bottom: 16px; opacity: .95; }

.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); }

/* ---------- Social Links ---------- */
.cs-social {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
.cs-social a {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .28em;
  transition: color .15s;
}
.cs-social a:hover { color: var(--accent); }
.cs-social span { color: rgba(255, 255, 255, .35); }

/* ============================================================
   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 { 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 { display: block; }
.shop-wordmark img { height: 22px; width: auto; display: block; }
#cart-count { color: var(--accent); font-weight: 700; }

.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-bottom { position: absolute; bottom: 7vh; z-index: 4; text-align: center; }
.hero-panther { width: 70px; height: auto; display: block; margin: 0 auto 8px; }
.hero-cta {
  display: inline-block;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hero-cta:hover { color: var(--accent); }

/* ============================================================
   SHOP: GRID
   ============================================================ */
.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; }

.shop-signup { text-align: center; padding: 90px 20px 100px; border-top: 1px solid var(--line); }
.signup-panther { width: 80px; height: auto; margin-bottom: 18px; }
.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
   ============================================================ */
.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, .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 { 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; }

/* ============================================================
   LEGAL-SEITEN (impressum.html / privacy.html)
   ============================================================ */
.legal-page { background: var(--white); color: var(--black); }
.legal-header { padding: 22px 24px; border-bottom: 1px solid var(--line); }
.legal-logo { height: 20px; width: auto; display: block; }
.legal-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 50px 24px 80px;
  line-height: 1.75;
  font-size: 15px;
}
.legal-main h1 { font-family: var(--font-display); font-size: clamp(28px, 5vw, 42px); margin-bottom: 26px; }
.legal-main h2 { font-size: 19px; margin: 30px 0 10px; }
.legal-main h3 { font-size: 16px; margin: 22px 0 8px; }
.legal-main p, .legal-main li { color: #333; margin-bottom: 10px; }
.legal-main a { color: var(--black); }
.legal-footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 50px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray);
}
.legal-footer a { color: var(--black); text-decoration: none; }
.legal-footer a:hover { color: var(--accent); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 700px) {
  .cs-giant-wrap { top: 9vh; }
  .cs-giant-img { width: 96vw; }
  .cs-center { margin-top: 27vh; }
  .cs-panther { width: 70px; }
  .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 img { height: 18px; }
}
