/* =========================================================
   PUN1SHER — Official Shop
   Design system · Orange #C2560B + Weiß + Ink
   ========================================================= */

:root {
  /* Brand
     --orange ist bewusst ein tiefes Orange: Es wird auch als Textfarbe auf
     Weiß eingesetzt und erreicht so 4,5:1 Kontrast (WCAG AA). Ein helleres
     Orange wie #FF7A00 käme nur auf ~2,9:1 und wäre als Text schwer lesbar.
     --orange-300 ist das helle Pendant für dunkle Flächen. */
  --orange:        #C2560B;
  --orange-600:    #A84A08;
  --orange-700:    #8C3D06;
  --orange-400:    #E8761C;
  --orange-300:    #F59A48;
  --orange-glow:   rgba(194, 86, 11, .35);

  /* Neutrals — leicht warm getönt, damit sie mit dem Orange harmonieren
     (vorher waren sie auf das Grün abgestimmt und wirkten kühl). */
  --white:        #ffffff;
  --paper:        #f8f6f3;
  --paper-2:      #f0ece7;
  --ink:          #100b08;
  --ink-2:        #181310;
  --ink-soft:     #241b14;
  --muted:        #78706a;
  --muted-2:      #a49d96;
  --line:         rgba(16, 11, 8, .10);
  --line-dark:    rgba(255, 255, 255, .12);

  /* Typography */
  --font-display: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw:         1280px;
  --gutter:       clamp(20px, 5vw, 64px);
  --radius:       18px;
  --radius-lg:    28px;
  --radius-sm:    10px;

  /* Motion */
  --ease:         cubic-bezier(.22, 1, .36, 1);
  --ease-in-out:  cubic-bezier(.65, .05, .36, 1);
  --dur:          .6s;

  --header-h:     74px;
}

/* ---------- Reset-ish ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* 'clip' statt 'hidden': verhindert seitliches Scrollen durch Marquees /
     das ausgeblendete Mobile-Menü, ohne position:sticky im Header zu brechen. */
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0;
}

::selection { background: var(--orange); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: #d8d2ca; border-radius: 20px; border: 3px solid var(--paper); }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ---------- Utility layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}

.section { padding-block: clamp(72px, 11vw, 140px); }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head h2 {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  margin-top: 18px;
}
.section-head p { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--orange);
  --fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
  color: var(--fg);
  background: var(--bg);
  border-radius: 100px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), color .35s var(--ease);
  box-shadow: 0 10px 26px -12px var(--orange-glow);
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
  z-index: -1;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px var(--orange-glow); }
.btn:hover::before { transform: translateY(0); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --bg: transparent;
  --fg: var(--ink);
  border: 1.5px solid var(--line);
  box-shadow: none;
}
.btn--ghost::before { background: var(--ink); }
.btn--ghost:hover { color: #fff; border-color: var(--ink); box-shadow: none; }

.btn--light {
  --bg: #fff;
  --fg: var(--ink);
  box-shadow: none;
}
.btn--light::before { background: var(--orange); }
.btn--light:hover { color: #fff; }

.btn--lg { padding: 18px 38px; font-size: 16px; }
.btn--block { width: 100%; }

.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.link-underline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding-bottom: 3px;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }

/* =========================================================
   Preloader
   ========================================================= */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink);
  display: grid;
  place-items: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.done { opacity: 0; visibility: hidden; }
.preloader-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 8vw, 4rem);
  letter-spacing: -.03em;
  color: #fff;
  overflow: hidden;
  display: flex;
}
.preloader-mark span {
  display: inline-block;
  transform: translateY(110%);
  animation: preRise .7s var(--ease) forwards;
}
.preloader-mark .g { color: var(--orange-400); }
@keyframes preRise { to { transform: translateY(0); } }
.preloader-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--orange);
  animation: preBar 1.1s .15s var(--ease) forwards;
}
@keyframes preBar { to { width: 100%; } }

/* =========================================================
   Announcement marquee bar
   ========================================================= */
.topbar {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 500;
}
.topbar .marquee { padding-block: 9px; }
.topbar .marquee span { color: var(--orange-300); }

.marquee {
  display: flex;
  gap: 0;
  white-space: nowrap;
  overflow: hidden;
  --speed: 32s;
}
.marquee__track {
  display: flex;
  animation: marquee var(--speed) linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }

/* Die Spur besteht aus identischen Gruppen. Verschoben wird um genau eine
   Gruppe — dann steht die nächste exakt dort, wo die vorige begann, und die
   Schleife springt unsichtbar zurück. Verschöbe man um die ganze Spur
   (-100%), liefe der Text komplett aus dem Bild und die Leiste wäre für
   einen Teil des Durchlaufs leer.
   --copies setzt main.js auf die Zahl der tatsächlich vorhandenen Gruppen. */
@keyframes marquee { to { transform: translateX(calc(-100% / var(--copies, 2))); } }

.marquee__group {
  display: flex;
  align-items: center;
  gap: 42px;
  padding-right: 42px;
  flex: none;
}
.marquee__group > * { display: inline-flex; align-items: center; gap: 42px; }

/* =========================================================
   Header / Nav
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 500;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
.header.scrolled {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.42rem;
  letter-spacing: -.03em;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.brand .dot { color: var(--orange); }
.brand .keycap {
  display: inline-grid;
  place-items: center;
  width: 30px; height: 30px;
  margin-right: 9px;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 10px -3px var(--orange-glow), inset 0 -3px 0 rgba(0,0,0,.18);
  transform: rotate(-6deg);
  transition: transform .4s var(--ease);
}
.brand:hover .keycap { transform: rotate(0deg) scale(1.05); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .01em;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-actions { display: flex; align-items: center; gap: 8px; }

.icon-btn {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.icon-btn:hover { background: var(--paper-2); transform: translateY(-1px); }
.icon-btn svg { width: 21px; height: 21px; }

.cart-count {
  position: absolute;
  top: 4px; right: 3px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 20px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-display);
  display: grid;
  place-items: center;
  transform: scale(0);
  transition: transform .35s var(--ease);
}
.cart-count.show { transform: scale(1); }
.cart-count.bump { animation: bump .4s var(--ease); }
@keyframes bump { 30% { transform: scale(1.35); } }

.burger { display: none; }

/* =========================================================
   Hero
   ========================================================= */
/* Hero mit vollflächigem Hintergrundbild. */
.hero {
  position: relative;
  /* Der sticky Header belegt Flow-Platz. Ohne diesen negativen Rand
     begänne das Bild erst unter ihm und die helle Navigation stünde auf
     weißem Grund — also unsichtbar. So läuft das Bild bis ganz nach oben. */
  margin-top: calc(var(--header-h) * -1);
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + clamp(70px, 12vh, 150px)) var(--gutter) clamp(56px, 10vh, 110px);
  overflow: hidden;
  isolation: isolate;
  /* Fallback, falls das Bild (noch) fehlt — die Section wirkt dann
     trotzdem gewollt statt kaputt. */
  background: linear-gradient(160deg, #2a1c10, #100b08 70%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Auf sehr breiten, flachen Fenstern wird oben und unten beschnitten.
     Der Kopf sitzt knapp unter der Bildkante, deshalb bleibt der Ausschnitt
     weit oben — sonst wird der Schädel abgeschnitten. */
  object-position: center 10%;
}

/* Scrim: oben für die Header-Navigation, unten für Text und Buttons.
   Ohne ihn wäre weiße Schrift über den hellen Stellen (Sonne, Rüstung)
   nicht lesbar. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(16,11,8,.55) 0%, rgba(16,11,8,.12) 22%, transparent 42%),
    linear-gradient(to top, rgba(16,11,8,.82) 0%, rgba(16,11,8,.45) 32%, transparent 62%);
}

.hero__inner {
  position: relative;
  text-align: center;
  max-width: 1000px;
  align-self: end;
}

.hero__title {
  margin: 0;
  font-size: clamp(1.7rem, 5vw, 4.6rem);
  line-height: .98;
  letter-spacing: -.035em;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .55);
}
/* Helleres Orange — das Markenorange ist auf dunklem Bild zu wenig präsent. */
.hero__title .num { color: var(--orange-300); }

.hero__tag {
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(10.5px, 1.3vw, 13.5px);
  letter-spacing: .13em;
  color: rgba(255, 255, 255, .88);
  text-shadow: 0 2px 16px rgba(0, 0, 0, .6);
}
.hero__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero__cta .btn { min-width: 210px; }

/* Outline-Button auf Bild: weißer Rand statt dunklem. */
.btn--outline-light {
  --bg: transparent;
  --fg: #fff;
  border: 1.5px solid rgba(255, 255, 255, .55);
  box-shadow: none;
  backdrop-filter: blur(2px);
}
.btn--outline-light::before { background: #fff; }
.btn--outline-light:hover { color: var(--ink); border-color: #fff; }

/* Header über dem dunklen Hero: helle Schrift, solange nicht gescrollt. */
body.home .header:not(.scrolled) .brand,
body.home .header:not(.scrolled) .nav-links a,
body.home .header:not(.scrolled) .icon-btn { color: #fff; }
body.home .header:not(.scrolled) .brand .dot { color: var(--orange-300); }
body.home .header:not(.scrolled) .icon-btn:hover { background: rgba(255, 255, 255, .16); }
body.home .header:not(.scrolled) .burger span,
body.home .header:not(.scrolled) .burger span::before,
body.home .header:not(.scrolled) .burger span::after { background: #fff; }
/* Bei offenem Menü muss der mittlere Balken verschwinden, sonst bleibt
   statt des X ein Strich stehen. */
body.home.menu-open .header:not(.scrolled) .burger span { background: transparent; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.55); }
  70% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
@keyframes floatY { 50% { transform: translateY(-10px); } }

/* =========================================================
   Brand strip marquee (big)
   ========================================================= */
.strip {
  background: var(--orange);
  color: #fff;
  padding-block: 18px;
  border-block: 0;
}
.strip .marquee { --speed: 26s; }
.strip .marquee__group { gap: 32px; padding-right: 32px; }
.strip .marquee__group > * { gap: 32px; }
.strip .word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.strip .star { color: rgba(255,255,255,.6); font-size: 1.2rem; }
.strip .outline { -webkit-text-stroke: 1.5px rgba(255,255,255,.7); color: transparent; }

/* =========================================================
   Featured products
   ========================================================= */
.featured { background: var(--white); }
.featured-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 54px);
  flex-wrap: wrap;
}
.featured-head h2 { font-size: clamp(2rem, 5.5vw, 3.4rem); margin-top: 16px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.pcard {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.pcard:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(16,11,8,.35); }
.pcard__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-2);
}
.pcard__media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .6s var(--ease), transform 1.1s var(--ease);
}
.pcard__media .front { opacity: 1; }
.pcard__media .back { opacity: 0; transform: scale(1.04); }
.pcard:hover .front { opacity: 0; }
.pcard:hover .back { opacity: 1; transform: scale(1); }

.pcard__flag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 100px;
}
.pcard__flag--accent { background: var(--orange); }

.pcard__quick {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 2;
  transform: translateY(130%);
  opacity: 0;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.pcard:hover .pcard__quick { transform: translateY(0); opacity: 1; }

.pcard__body {
  padding: 22px 24px 26px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.pcard__body h3 { font-size: 1.4rem; letter-spacing: -.02em; }
.pcard__body .cat { color: var(--muted); font-size: 13px; margin-top: 4px; }
.pcard__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  white-space: nowrap;
}
.pcard__price .cur { color: var(--orange); }

/* =========================================================
   Product detail sections
   ========================================================= */
.pdetail { position: relative; }
.pdetail.dark {
  background: var(--ink);
  color: #fff;
}
.pdetail.dark .eyebrow { color: var(--orange-300); }
.pdetail.dark .eyebrow::before { background: var(--orange-300); }
.pdetail.dark .muted { color: var(--muted-2); }

.pdetail-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.pdetail.reverse .pdetail-grid { grid-template-columns: .95fr 1.05fr; }
.pdetail.reverse .gallery { order: 2; }

/* gallery */
.gallery { position: relative; }
.gallery__main {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-2);
}
.pdetail.dark .gallery__main { background: #0a0705; }
.gallery__main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .5s var(--ease);
}
.gallery__main img.swap-out { opacity: 0; }
.gallery__thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.gallery__thumbs button {
  width: 74px; height: 92px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: .62;
  transition: opacity .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
  background: var(--paper-2);
}
.gallery__thumbs button:hover { opacity: 1; transform: translateY(-2px); }
.gallery__thumbs button.active { opacity: 1; border-color: var(--orange); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }

/* info */
.pinfo { position: sticky; top: calc(var(--header-h) + 20px); }
.pinfo .rating { display: flex; align-items: center; gap: 8px; color: var(--orange); font-size: 14px; margin-bottom: 16px; }
.pinfo .rating .stars { letter-spacing: 2px; }
.pinfo .rating span { color: var(--muted); }
.pdetail.dark .pinfo .rating span { color: var(--muted-2); }
.pinfo h2 { font-size: clamp(2.1rem, 5vw, 3.3rem); }
.pinfo .price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 18px 0 4px;
}
.pinfo .price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
}
.pinfo .price .cur { color: var(--orange); }
.pinfo .vat { font-size: 13px; color: var(--muted); }
.pdetail.dark .pinfo .vat { color: var(--muted-2); }
.pinfo .desc { margin: 22px 0; max-width: 46ch; }

.opt-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.opt-label .hint { color: var(--muted); font-weight: 500; letter-spacing: 0; text-transform: none; }
.pdetail.dark .opt-label .hint { color: var(--muted-2); }

.sizes { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.size {
  min-width: 52px;
  height: 52px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  display: grid;
  place-items: center;
  transition: all .25s var(--ease);
  background: transparent;
}
.pdetail.dark .size { border-color: var(--line-dark); color: #fff; }
.size:hover { border-color: var(--orange); transform: translateY(-2px); }
.size.active { background: var(--orange); border-color: var(--orange); color: #fff; }

.buy-row { display: flex; gap: 12px; align-items: stretch; margin-bottom: 22px; flex-wrap: wrap; }
.qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  overflow: hidden;
}
.pdetail.dark .qty { border-color: var(--line-dark); }
.qty button { width: 46px; height: 54px; font-size: 20px; display: grid; place-items: center; transition: color .2s; }
.qty button:hover { color: var(--orange); }
.qty input {
  width: 40px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: inherit;
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.buy-row .btn { flex: 1; }

.pfeatures {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}
.pfeatures li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--muted);
}
.pdetail.dark .pfeatures li { color: var(--muted-2); }
.pfeatures svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }
.pdetail.dark .pfeatures svg { color: var(--orange-300); }

/* =========================================================
   Size guide
   ========================================================= */
.sizeguide { background: var(--white); }
.table-scroll { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); }
.size-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  font-size: 15.5px;
}
.size-table thead th {
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: left;
  padding: 16px 20px;
}
.size-table thead th:first-child { color: var(--orange-300); }
.size-table tbody th {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--orange);
  text-align: left;
}
.size-table tbody th,
.size-table tbody td { padding: 15px 20px; border-bottom: 1px solid var(--line); }
.size-table tbody tr:last-child th,
.size-table tbody tr:last-child td { border-bottom: none; }
.size-table tbody tr { transition: background .25s var(--ease); }
.size-table tbody tr:hover { background: rgba(194,86,11,.06); }
.size-hint { margin-top: 20px; color: var(--muted); font-size: 14.5px; max-width: 70ch; }

/* =========================================================
   USP row
   ========================================================= */
.usp { background: var(--paper); }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.usp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.usp-card:hover { transform: translateY(-6px); box-shadow: 0 24px 44px -28px rgba(16,11,8,.3); border-color: transparent; }
.usp-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(194,86,11,.1);
  display: grid;
  place-items: center;
  color: var(--orange);
  margin-bottom: 18px;
}
.usp-icon svg { width: 24px; height: 24px; }
.usp-card h3 { font-size: 1.16rem; margin-bottom: 8px; }
.usp-card p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* =========================================================
   Brand story / lifestyle
   ========================================================= */
.story { background: var(--white); overflow: hidden; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.story-figures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.story-figures figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-2);
}
.story-figures figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.story-figures figure:hover img { transform: scale(1.06); }
.story-figures .tall { grid-row: span 2; aspect-ratio: 3/4.4; }
.story-figures .wide { aspect-ratio: 4/3.2; }
.story-copy h2 { font-size: clamp(2rem, 5vw, 3.3rem); margin-top: 16px; }
.story-copy p { color: var(--muted); margin: 20px 0; }
.story-quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.4;
  letter-spacing: -.01em;
  color: var(--ink);
  border-left: 3px solid var(--orange);
  padding-left: 20px;
  margin: 26px 0;
}

/* =========================================================
   Community (Twitch / Instagram)
   ========================================================= */
.community { background: var(--ink); color: #fff; }
.community .section-head h2 { font-size: clamp(2rem, 5.5vw, 3.5rem); }
.community .section-head .eyebrow { color: var(--orange-300); }
.community .section-head .eyebrow::before { background: var(--orange-300); }
.community .section-head p { color: var(--muted-2); }

.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.4vw, 26px); }
.social-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 34px;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line-dark);
  transition: transform .5s var(--ease);
  isolation: isolate;
}
.social-card:hover { transform: translateY(-6px); }
.social-card::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  opacity: .16;
  transition: opacity .5s var(--ease);
}
.social-card:hover::before { opacity: .28; }
.social-card.twitch::before { background: radial-gradient(120% 120% at 20% 0%, #9146FF, transparent 60%); }
.social-card.insta::before { background: radial-gradient(120% 120% at 80% 0%, #E1306C, #F77737 60%, transparent 80%); }

.social-top { display: flex; align-items: center; justify-content: space-between; }
.social-icon { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; background: rgba(255,255,255,.1); }
.social-icon svg { width: 26px; height: 26px; }
.social-live {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-weight: 600; font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase;
  background: #9146FF; padding: 6px 12px; border-radius: 100px;
}
.social-live .pulse { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: pulse 1.8s infinite; }
.social-card h3 { font-size: 1.7rem; margin-top: 20px; }
.social-card .handle { color: var(--muted-2); font-size: 15px; margin-top: 4px; }
.social-card .cta-row { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; }
.social-card .go {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--line-dark);
  display: grid; place-items: center;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.social-card:hover .go { background: #fff; color: var(--ink); transform: rotate(-45deg); }
.social-stat { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.social-stat span { color: var(--muted-2); font-weight: 400; font-size: .85rem; }

/* =========================================================
   Newsletter
   ========================================================= */
.news { background: var(--orange); color: #fff; position: relative; overflow: hidden; }
.news::before {
  content: "PUN1SHER";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22vw;
  color: rgba(255,255,255,.06);
  letter-spacing: -.04em;
  pointer-events: none;
  white-space: nowrap;
}
.news-inner { position: relative; z-index: 2; text-align: center; max-width: 620px; margin-inline: auto; }
.news h2 { font-size: clamp(2rem, 5.5vw, 3.4rem); }
.news p { margin: 16px 0 30px; opacity: .9; }
.news-form {
  display: flex;
  gap: 10px;
  background: #fff;
  padding: 8px;
  border-radius: 100px;
  box-shadow: 0 24px 50px -22px rgba(0,0,0,.4);
}
.news-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0 20px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  min-width: 0;
}
.news-form .btn { --bg: var(--ink); }
.news-form .btn::before { background: var(--orange-700); }
.news small { display: block; margin-top: 16px; opacity: .78; font-size: 12.5px; }
.news-msg { margin-top: 14px; font-family: var(--font-display); font-weight: 600; min-height: 20px; }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--ink); color: #fff; padding-top: clamp(60px, 8vw, 96px); }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .brand { font-size: 1.7rem; color: #fff; }
.footer-brand p { color: var(--muted-2); margin: 18px 0 22px; max-width: 34ch; font-size: 14.5px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--line-dark);
  display: grid; place-items: center;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.footer-socials a:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-3px); }
.footer-socials svg { width: 19px; height: 19px; }

.footer-col h4 {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange-300);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a { color: var(--muted-2); font-size: 14.5px; transition: color .25s, padding-left .25s; }
.footer-col a:hover { color: #fff; padding-left: 5px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 26px;
  flex-wrap: wrap;
  color: var(--muted-2);
  font-size: 13px;
}
.footer-bottom .pays { display: flex; gap: 8px; align-items: center; }
.footer-bottom .pay {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .05em;
  padding: 5px 10px;
  border: 1px solid var(--line-dark);
  border-radius: 7px;
  color: #d8d2ca;
}

/* =========================================================
   Cart drawer
   ========================================================= */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(16,11,8,.5);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
  z-index: 900;
}
.overlay.open { opacity: 1; visibility: visible; }

.cart {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(430px, 100%);
  background: #fff;
  z-index: 950;
  transform: translateX(100%);
  transition: transform .5s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px -30px rgba(0,0,0,.5);
}
.cart.open { transform: translateX(0); }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.cart-header h3 { font-size: 1.3rem; }
.cart-close { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; transition: background .25s; }
.cart-close:hover { background: var(--paper-2); }
.cart-items { flex: 1; overflow-y: auto; padding: 12px 24px; }
.cart-empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted);
  gap: 14px;
}
.cart-empty svg { width: 54px; height: 54px; color: var(--paper-2); }
.cart-empty .btn { margin-top: 8px; }

.citem {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  animation: itemIn .4s var(--ease);
}
@keyframes itemIn { from { opacity: 0; transform: translateX(20px); } }
.citem img { width: 74px; height: 92px; object-fit: cover; border-radius: 10px; background: var(--paper-2); }
.citem .ci-name { font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.citem .ci-meta { color: var(--muted); font-size: 13px; margin: 3px 0 10px; }
.citem .ci-qty { display: inline-flex; align-items: center; gap: 4px; border: 1px solid var(--line); border-radius: 100px; }
.citem .ci-qty button { width: 28px; height: 28px; display: grid; place-items: center; font-size: 15px; }
.citem .ci-qty span { min-width: 20px; text-align: center; font-weight: 600; font-size: 14px; }
.citem .ci-right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.citem .ci-price { font-family: var(--font-display); font-weight: 700; }
.citem .ci-remove { color: var(--muted-2); font-size: 12px; transition: color .2s; }
.citem .ci-remove:hover { color: #e23b3b; }

.cart-footer { padding: 20px 24px calc(20px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }
.cart-row { display: flex; justify-content: space-between; margin-bottom: 8px; color: var(--muted); font-size: 14px; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin: 10px 0 16px; }
.cart-total .t-label { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.cart-total .t-val { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; }
.cart-note { text-align: center; font-size: 11.5px; color: var(--muted); margin-top: 12px; }

/* =========================================================
   Toast
   ========================================================= */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 140%);
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  border-radius: 100px;
  font-size: 14.5px;
  font-family: var(--font-display);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 980;
  box-shadow: 0 20px 40px -18px rgba(0,0,0,.5);
  transition: transform .5s var(--ease);
}
.toast.show { transform: translate(-50%, 0); }
.toast svg { width: 18px; height: 18px; color: var(--orange-300); }

/* =========================================================
   Welcome-Popup
   ========================================================= */
body.modal-open { overflow: hidden; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: var(--gutter);
}
.modal[hidden] { display: none; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 11, 8, .72);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.modal.open .modal__backdrop { opacity: 1; }

/* Das Motiv ist ein breites 16:9-Bild und soll groß stehen: volle
   Kartenbreite oben, Text darunter. In einer schmalen Seitenspalte
   müsste es auf Hochformat beschnitten werden und verlöre die Szene. */
.modal__card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(680px, 100%);
  max-height: 92svh;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.6);
  opacity: 0;
  transform: translateY(14px) scale(.98);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.modal.open .modal__card { opacity: 1; transform: none; }

.modal__media {
  position: relative;
  background: var(--ink);
  /* width explizit, sonst leitet die aspect-ratio bei gedeckelter Höhe
     auch die Breite ab und das Bild wird schmaler als die Karte. */
  width: 100%;
  aspect-ratio: 1672 / 941;
  /* Auf flachen Fenstern darf das Bild das Formular nicht rausdrücken. */
  max-height: 40svh;
}
.modal__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Fehlt das Bild, fällt der Block weg statt eine leere Fläche zu zeigen. */
.modal__card.no-media .modal__media { display: none; }

.modal__body {
  padding: clamp(26px, 4vw, 40px);
  /* min-height:0 hebt die auto-Mindesthöhe des Grid-Items auf — sonst
     kann der Textblock nicht schrumpfen und sprengt die Karte. */
  min-height: 0;
  overflow-y: auto;
  align-content: center;
  display: grid;
  gap: 14px;
}
.modal__body h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -.02em;
}
.modal__body p { margin: 0; color: var(--muted); }
/* Das Formular steht sonst auf der orangen Sektion und ist selbst weiß.
   Auf der weißen Karte braucht es eine sichtbare Kante. */
.modal__body .news-form { margin-top: 4px; border: 1.5px solid var(--line); }
.modal__body .news-msg { min-height: 0; font-size: 14px; }
.modal__body .news-msg:empty { display: none; }

.modal__cta { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.modal__cta .btn { width: 100%; justify-content: center; }
.modal__skip {
  background: none;
  border: 0;
  padding: 4px;
  font: inherit;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.modal__skip:hover { color: var(--ink); }

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 6px 18px -8px rgba(0,0,0,.5);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.modal__close:hover { background: #fff; transform: scale(1.06); }
.modal__close svg { width: 18px; height: 18px; }

@media (max-width: 640px) {
  /* Ab hier stapelt .news-form Feld und Button. Die Pillen-Kante ums
     ganze Formular ergäbe dann eine Linie quer durch den Stapel — die
     Kante gehört in diesem Layout ans Eingabefeld. */
  .modal__body .news-form { border: 0; }
  .modal__body .news-form input { border: 1.5px solid var(--line); }
}

/* =========================================================
   Scroll reveal
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }

/* Progress bar */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-400));
  z-index: 600;
  transition: width .1s linear;
}

/* =========================================================
   Legal pages
   ========================================================= */
.legal-hero {
  background:
    radial-gradient(100% 100% at 100% 0%, rgba(194,86,11,.12), transparent 55%),
    var(--paper);
  padding-top: clamp(50px, 7vw, 90px);
  padding-bottom: clamp(40px, 5vw, 60px);
}
.legal-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin-top: 14px; }
.legal-hero .crumb { color: var(--muted); font-size: 14px; }
.legal-hero .crumb a:hover { color: var(--orange); }
.legal-body { padding-block: clamp(40px, 6vw, 72px); }
.legal-body .prose { max-width: 780px; }
.legal-body h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.legal-body h3 { font-size: 1.15rem; margin: 26px 0 10px; font-family: var(--font-display); }
.legal-body p, .legal-body li { color: #322c26; }
.legal-body p { margin: 12px 0; }
.legal-body ul { padding-left: 22px; margin: 12px 0; }
.legal-body li { margin: 8px 0; }
.legal-body a { color: var(--orange); font-weight: 500; }
.legal-body a:hover { text-decoration: underline; }
.legal-body .placeholder {
  background: rgba(194,86,11,.08);
  border: 1px dashed var(--orange);
  border-radius: 10px;
  padding: 3px 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .92em;
  color: var(--orange-700);
}
.legal-note {
  background: #fff8e6;
  border: 1px solid #f0d98a;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 14.5px;
  color: #6b5a1e;
}
.legal-toc {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--paper);
}
.legal-toc h4 { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.legal-toc ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.legal-toc a { color: var(--muted); font-size: 14px; }
.legal-toc a:hover { color: var(--orange); }
.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: clamp(28px, 4vw, 60px); align-items: start; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
  /* Griechische Labels sind länger — Abstände enger, damit nichts umbricht. */
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 14px; }
}

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .pdetail-grid,
  .pdetail.reverse .pdetail-grid { grid-template-columns: 1fr; }
  .pdetail.reverse .gallery { order: -1; }
  .pinfo { position: static; }
  .story-grid { grid-template-columns: 1fr; }
  .story-copy { order: -1; }
  .social-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  /* Social-Icons raus, sonst wird der Burger aus dem Viewport geschoben.
     Die Links stehen im Mobile-Menü und im Footer. */
  .nav-actions a.icon-btn { display: none; }
  .burger {
    display: grid;
    place-items: center;
    width: 44px; height: 44px;
  }
  .burger span { display: block; width: 22px; height: 2px; background: var(--ink); position: relative; transition: .3s var(--ease); }
  .burger span::before,
  .burger span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); transition: .3s var(--ease); }
  .burger span::before { top: -7px; }
  .burger span::after { top: 7px; }
  body.menu-open .burger span { background: transparent; }
  body.menu-open .burger span::before { top: 0; transform: rotate(45deg); }
  body.menu-open .burger span::after { top: 0; transform: rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: #fff;
    z-index: 480;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .45s var(--ease), visibility .45s var(--ease);
    padding: 32px var(--gutter);
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  body.menu-open .mobile-menu { transform: translateX(0); visibility: visible; }
  .mobile-menu a {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.8rem;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu .btn { margin-top: 24px; }

  .product-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .story-figures { grid-template-columns: 1fr 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .news-form { flex-direction: column; background: transparent; padding: 0; box-shadow: none; gap: 10px; }
  .news-form input { background: #fff; border-radius: 100px; padding: 15px 22px; }
  .footer-top { grid-template-columns: 1fr; }
  .cart { width: 100%; }
}

.mobile-menu { display: none; }
@media (max-width: 640px) { .mobile-menu { display: flex; } }
