/* ============================================================
   DSTRCTEE – Archiv-Seite
   Originalgetreuer Nachbau des echten Shopify-Shops (Dawn-Stil):
   luftig, reduziert, präzise. Pink-Akzent #f4abf3.
   Schrift: Archivo (geometrischer Grotesk – passt zum Streetwear-Label).
   ============================================================ */

:root {
  --ink:        #1c1c1c;   /* Fast-Schwarz für Text & dunkle Buttons */
  --ink-soft:   #5c5c5c;   /* Sekundärtext */
  --ink-faint:  #8a8a8a;   /* Hinweise, Steuern-Zeile */
  --bg:         #ffffff;
  --bg-news:    #f3f3f3;   /* GOOD-NEWS-Block */
  --bg-foot:    #e7e7e7;   /* Footer */
  --bg-soft:    #f5f5f5;   /* Produktbild-Flächen */
  --line:       #e3e3e3;
  --line-dark:  #d2d2d2;
  --pink:       #f4abf3;   /* Marken-Pink (Banner) */
  --pink-inkk:  #5a2a59;   /* lesbarer Text auf Pink */
  --pink-deep:  #c4359a;   /* kontraststarkes Pink für Akzente */

  --page: 1280px;
  --gutter: clamp(16px, 4vw, 48px);

  --font: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);

  --hdr-h: 72px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }

button { font-family: inherit; }

.wrap { width: 100%; max-width: var(--page); margin-inline: auto; padding-inline: var(--gutter); }

/* ---- Headlines -------------------------------------------------- */
h1, h2, h3, h4 { margin: 0; line-height: 1.12; letter-spacing: -.015em; font-weight: 600; }
.muted { color: var(--ink-soft); }

/* ============================================================
   PINK MARQUEE BANNER
   ============================================================ */
.marquee {
  background: var(--pink);
  color: var(--pink-inkk);
  overflow: hidden;
  white-space: nowrap;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
}
.marquee__track {
  display: inline-flex;
  gap: 0;
  padding: 9px 0;
  /* Track besteht aus zwei identischen Hälften (je 6 Wiederholungen, breiter als jeder Viewport
     -> keine Lücke). -50% verschiebt exakt eine Hälfte = nahtloser Loop. Dauer = 6 x 28s, damit
     die Scroll-Geschwindigkeit unverändert bleibt. */
  animation: marquee 168s linear infinite;
  will-change: transform;
}
.marquee__track span { padding-inline: 1.4em; }
.marquee__track .star { opacity: .65; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; justify-content: center; width: 100%; }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--hdr-h);
  gap: 16px;
}
.nav-main { display: flex; gap: clamp(14px, 1.8vw, 30px); align-items: center; }
.nav-main a {
  font-size: .82rem; font-weight: 500; color: var(--ink);
  letter-spacing: .01em; position: relative; padding: 4px 0;
}
.nav-main a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 100%;
  background: var(--ink); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-main a:hover::after, .nav-main a.active::after { transform: scaleX(1); }
.nav-main a.active { color: var(--ink); }

.brand-logo {
  justify-self: center; display: block;
  height: 26px; width: auto;
}
.brand-logo img { height: 100%; width: auto; }

.header-icons { justify-self: end; display: flex; align-items: center; gap: clamp(10px,1.6vw,20px); }
.icon-btn {
  background: none; border: 0; padding: 4px; cursor: pointer; color: var(--ink);
  display: inline-flex; line-height: 0; transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.icon-btn:hover { opacity: .55; }
.icon-btn svg { width: 21px; height: 21px; }

.nav-toggle { display: none; }

/* ---- schlanker Pause-Hinweis ----------------------------------- */
.notice {
  background: #fafafa; border-bottom: 1px solid var(--line);
  text-align: center; font-size: .74rem; letter-spacing: .04em;
  color: var(--ink-soft); padding: 8px 16px;
}
.notice strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(440px, 76vh, 760px);
  display: flex; align-items: flex-end; justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
  z-index: 0;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.0) 40%, rgba(0,0,0,.45) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  padding-bottom: clamp(48px, 9vh, 110px);
  padding-inline: 24px;
  max-width: 720px;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  font-weight: 500; letter-spacing: -.02em;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
  margin-bottom: .35em;
}
.hero__sub {
  font-size: clamp(.95rem, 1.6vw, 1.12rem);
  font-weight: 400; opacity: .96; letter-spacing: .01em;
  margin: 0 auto 1.8em; max-width: 38ch;
  text-shadow: 0 1px 16px rgba(0,0,0,.4);
}

/* staggered reveal */
.hero h1, .hero__sub, .hero .btn { opacity: 0; transform: translateY(18px); animation: rise .9s var(--ease) forwards; }
.hero__sub { animation-delay: .12s; }
.hero .btn { animation-delay: .24s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero h1, .hero__sub, .hero .btn { animation: none; opacity: 1; transform: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: 14px 30px; border-radius: 999px;
  font-size: .9rem; font-weight: 500; letter-spacing: .02em;
  border: 1.5px solid var(--ink); background: var(--ink); color: #fff;
  cursor: pointer; transition: background .25s var(--ease), color .25s var(--ease), transform .15s var(--ease), border-color .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--outline-light { background: transparent; border-color: rgba(255,255,255,.85); color: #fff; }
.btn--outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--outline { background: transparent; color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--block { width: 100%; }

/* ============================================================
   SECTIONS / LAYOUT HELPERS
   ============================================================ */
.section { padding-block: clamp(48px, 7vw, 88px); }
.section--tight { padding-block: clamp(32px, 4vw, 56px); }
.section__head { margin-bottom: clamp(24px, 3vw, 40px); }
.section__head h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 600; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .2em;
  font-size: .7rem; font-weight: 600; color: var(--pink-deep); margin-bottom: 10px;
}
.center { text-align: center; }
.lead { font-size: 1.08rem; color: var(--ink-soft); max-width: 60ch; }

.breadcrumb { font-size: .78rem; color: var(--ink-faint); padding-top: 22px; letter-spacing: .02em; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { color: var(--ink); }

/* ============================================================
   PRODUKT-GRID
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.4vw, 38px) clamp(16px, 1.8vw, 28px);
}
.pcard { display: block; color: inherit; }
.pcard__media {
  position: relative; overflow: hidden; background: var(--bg-soft);
  aspect-ratio: 1 / 1;
}
.pcard__media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .6s var(--ease), opacity .4s var(--ease);
}
.pcard__media img.back {
  opacity: 0;
}
.pcard:hover .pcard__media img.front { opacity: 0; }
.pcard:hover .pcard__media img.back { opacity: 1; }
.pcard:hover .pcard__media img { transform: scale(1.04); }
.pcard__body { padding-top: 14px; }
.pcard__title { font-size: .92rem; font-weight: 500; letter-spacing: -.005em; }
.pcard__price { font-size: .9rem; color: var(--ink-soft); margin-top: 3px; }
.pcard__kiez {
  display: inline-block; font-size: .64rem; text-transform: uppercase; letter-spacing: .16em;
  color: var(--pink-deep); font-weight: 600; margin-bottom: 4px;
}

/* ============================================================
   3-SPALTEN FEATURE
   ============================================================ */
.features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 64px);
  text-align: center; max-width: 1000px; margin-inline: auto;
}
.feature h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.feature p { color: var(--ink-soft); font-size: .92rem; margin: 0; max-width: 32ch; margin-inline: auto; }

/* ============================================================
   GOOD NEWS – NEWSLETTER
   ============================================================ */
.newsletter { background: var(--bg-news); text-align: center; padding-block: clamp(56px, 8vw, 100px); }
.newsletter h2 {
  font-size: clamp(2.1rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -.02em;
  margin-bottom: .35em;
}
.newsletter p { color: var(--ink-soft); margin: 0 auto 28px; max-width: 46ch; }
.field {
  display: flex; align-items: center; max-width: 360px; margin-inline: auto;
  border: 1px solid var(--line-dark); background: #fff; border-radius: 3px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field:focus-within { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.field input {
  flex: 1; border: 0; background: none; padding: 16px 18px; font-size: .95rem;
  font-family: inherit; color: var(--ink); outline: none;
}
.field input::placeholder { color: var(--ink-faint); }
.field button {
  border: 0; background: none; padding: 0 18px; height: 100%; cursor: pointer;
  display: inline-flex; align-items: center; color: var(--ink); align-self: stretch;
  transition: transform .2s var(--ease);
}
.field button:hover { transform: translateX(3px); }
.field button svg { width: 20px; height: 20px; }
.form-note { font-size: .82rem; margin-top: 12px; min-height: 1em; }
.form-note.ok  { color: #1a7f37; }
.form-note.err { color: #b42318; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg-foot); color: var(--ink); }
.footer-cols {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 4vw, 56px);
  padding-block: clamp(48px, 6vw, 72px);
}
.footer-col h4 {
  font-size: .98rem; font-weight: 600; margin-bottom: 18px; letter-spacing: -.01em;
  display: flex; align-items: center; gap: .5em;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: .9rem; color: var(--ink-soft); transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--ink); }

.footer-social { display: flex; justify-content: center; gap: 22px; padding-bottom: 34px; }
.footer-social a { color: var(--ink); transition: opacity .2s var(--ease); display: inline-flex; }
.footer-social a:hover { opacity: .55; }
.footer-social svg { width: 22px; height: 22px; }

.footer-bottom { border-top: 1px solid rgba(0,0,0,.08); padding-block: 26px; }
.footer-pay { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.footer-pay .pay {
  height: 26px; width: 40px; border-radius: 4px; background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 1px rgba(0,0,0,.06); font-size: .5rem; font-weight: 800;
  letter-spacing: -.02em; color: #444; overflow: hidden;
}
.footer-pay .pay svg { height: 16px; width: auto; }
.footer-legal { text-align: center; font-size: .78rem; color: var(--ink-faint); letter-spacing: .02em; }
.footer-legal a:hover { color: var(--ink); }
.footer-legal .sep { margin-inline: 8px; opacity: .6; }

/* ============================================================
   PRODUKTDETAIL
   ============================================================ */
.pdp { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 4vw, 72px); padding-block: 40px clamp(48px,6vw,80px); align-items: start; }

.gallery__main {
  background: var(--bg-soft); overflow: hidden; aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
}
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.gallery__thumbs button {
  width: 78px; height: 78px; border: 1px solid var(--line); background: var(--bg-soft);
  padding: 0; cursor: pointer; overflow: hidden; transition: border-color .2s var(--ease);
}
.gallery__thumbs button.active { border-color: var(--ink); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }

.pdp__info { position: sticky; top: calc(var(--hdr-h) + 20px); }
.pdp__kiez { font-size: .68rem; text-transform: uppercase; letter-spacing: .18em; color: var(--pink-deep); font-weight: 600; }
.pdp__title { font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 500; letter-spacing: -.02em; margin: 8px 0 16px; }
.pdp__price { font-size: 1.25rem; font-weight: 500; }
.pdp__tax { font-size: .76rem; color: var(--ink-faint); margin-top: 2px; }

.opt-label { font-size: .82rem; color: var(--ink-soft); margin: 26px 0 10px; }
.size-row { display: flex; gap: 10px; flex-wrap: wrap; }
.size-pill {
  min-width: 48px; height: 48px; padding: 0 14px; border-radius: 999px;
  border: 1px solid var(--line-dark); background: #fff; color: var(--ink);
  font-size: .9rem; font-weight: 500; cursor: pointer;
  transition: border-color .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
}
.size-pill:hover { border-color: var(--ink); }
.size-pill.active { background: var(--ink); border-color: var(--ink); color: #fff; }

.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-dark); border-radius: 999px; height: 50px; }
.qty button {
  width: 46px; height: 100%; border: 0; background: none; font-size: 1.2rem; cursor: pointer; color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; transition: opacity .2s;
}
.qty button:hover { opacity: .5; }
.qty input {
  width: 44px; text-align: center; border: 0; background: none; font-size: .95rem; font-family: inherit;
  outline: none; -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Interesse statt Warenkorb */
.interest { margin-top: 26px; }
.interest__field { display: flex; border: 1px solid var(--ink); border-radius: 999px; overflow: hidden; background: #fff; }
.interest__field input {
  flex: 1; border: 0; background: none; padding: 15px 22px; font-size: .95rem; font-family: inherit; outline: none;
}
.interest__field input::placeholder { color: var(--ink-faint); }
.interest__field button {
  border: 0; background: var(--ink); color: #fff; padding: 0 28px; font-size: .9rem; font-weight: 500;
  cursor: pointer; transition: background .2s var(--ease); white-space: nowrap;
}
.interest__field button:hover { background: var(--pink-deep); }
.interest__hint { font-size: .8rem; color: var(--ink-faint); margin-top: 10px; }

.pdp__desc { margin-top: 30px; color: #2c2c2c; font-size: .96rem; line-height: 1.7; }

/* Größentabelle */
.sizetable { margin-top: 38px; }
.sizetable h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 14px; }
.sizetable table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.sizetable th, .sizetable td { border: 1px solid var(--line); padding: 11px 14px; text-align: left; }
.sizetable thead th { font-weight: 600; color: var(--ink); background: var(--bg-soft); }
.sizetable tbody th { font-weight: 600; }
.sizetable td { color: var(--ink-soft); }

/* Accordions */
.accordion { margin-top: 14px; border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__btn {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 18px 0; font-size: .92rem; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
}
.accordion__btn .pm { transition: transform .25s var(--ease); font-weight: 400; font-size: 1.2rem; color: var(--ink-soft); }
.accordion__btn[aria-expanded="true"] .pm { transform: rotate(45deg); }
.accordion__panel { overflow: hidden; max-height: 0; transition: max-height .35s var(--ease); }
.accordion__panel-inner { padding-bottom: 20px; font-size: .9rem; color: var(--ink-soft); line-height: 1.7; }

/* ============================================================
   ARTISTS / ÜBER UNS / KONTAKT
   ============================================================ */
.media-band { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px,2vw,20px); }
.media-band img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

.artist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.artist-card { background: #fff; padding: 26px 24px; }
.artist-card .k { font-size: .68rem; text-transform: uppercase; letter-spacing: .16em; color: var(--pink-deep); font-weight: 600; }
.artist-card .name { font-size: 1.15rem; font-weight: 600; margin: 6px 0 4px; }
.artist-card .motif { font-size: .9rem; color: var(--ink-soft); }
.artist-card .motif a { text-decoration: underline; text-underline-offset: 3px; }

.info-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.info-card { border: 1px solid var(--line); padding: 26px 24px; }
.info-card h3 { font-size: .9rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-faint); font-weight: 600; margin-bottom: 8px; }
.info-card a { font-size: 1.05rem; font-weight: 500; }
.info-card a:hover { color: var(--pink-deep); }

.prose { max-width: 68ch; }
.prose p { color: #2c2c2c; margin: 0 0 1.2em; }
.prose strong { font-weight: 600; }
.prose h3 { font-size: 1rem; font-weight: 600; margin: 1.6em 0 .5em; }
.prose h3:first-child { margin-top: 0; }
.prose a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; transition: color .2s var(--ease); }
.prose a:hover { color: var(--pink-deep); }

.contact-form { max-width: 480px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  :root { --hdr-h: 60px; }
  .site-header__inner { grid-template-columns: auto 1fr auto; }
  .nav-main {
    position: fixed; inset: 0; top: 0; z-index: 80;
    flex-direction: column; justify-content: center; gap: 8px;
    background: #fff; transform: translateX(-100%); transition: transform .35s var(--ease);
    padding: 80px 32px;
  }
  .nav-main.open { transform: none; }
  .nav-main a { font-size: 1.4rem; padding: 12px 0; }
  .nav-main a::after { display: none; }
  .nav-toggle {
    display: inline-flex; background: none; border: 0; cursor: pointer; padding: 6px;
    z-index: 90; color: var(--ink); flex-direction: column; gap: 5px;
  }
  .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform .3s var(--ease), opacity .3s var(--ease); }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .header-icons .icon-search { display: none; }

  .pdp { grid-template-columns: 1fr; gap: 28px; }
  .pdp__info { position: static; }
  .features { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 14px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .media-band { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .interest__field { flex-direction: column; border-radius: 16px; }
  .interest__field button { padding: 14px; }
}
