/* ═══════════════════════════════════════════════════════
   LUNTIX — Premium Reselling · styles.css
   Color System: #0a0a0a · #e02020 · #ffffff · neon accent
═══════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #070708;
  --bg-2:       #0e0e10;
  --bg-3:       #151518;
  --border:     rgba(255,255,255,0.06);
  --red:        #e02020;
  --red-dim:    #a01515;
  --red-glow:   rgba(224,32,32,0.15);
  --red-glow-s: rgba(224,32,32,0.06);
  --neon:       #2ee59d;
  --neon-dim:   rgba(46,229,157,0.12);
  --white:      #ffffff;
  --grey:       #8a8a90;
  --grey-2:     #55555c;
  --font:       'Inter', system-ui, sans-serif;
  --font-alt:   'Space Grotesk', system-ui, sans-serif;
  --font-display: 'Orbitron', 'Space Grotesk', system-ui, sans-serif;
  --font-mono:  'IBM Plex Mono', ui-monospace, monospace;
  --radius:     10px;
  --radius-lg:  16px;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --chamfer:    polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Cheat-reseller vibe: subtle scanlines + cool undertone */
body.site-cheat {
  background:
    linear-gradient(180deg, rgba(46,229,157,0.03) 0%, transparent 42%),
    var(--bg);
}
body.site-cheat::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.035;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.45) 2px,
    rgba(0,0,0,0.45) 4px
  );
}

/* Welcome / load screen (index) */
body.welcome-splash-active {
  overflow: hidden;
}
.welcome-splash {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  background-image:
    radial-gradient(ellipse 75% 55% at 50% 38%, rgba(224, 32, 32, 0.35), transparent 62%),
    radial-gradient(ellipse 120% 80% at 50% 120%, rgba(224, 32, 32, 0.12), transparent 50%),
    linear-gradient(180deg, #000 0%, #060607 45%, #030304 100%);
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.85);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.welcome-splash--out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.welcome-splash__scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.5) 2px,
    rgba(0, 0, 0, 0.5) 4px
  );
}
.welcome-splash__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  animation: welcomeSplashIn 0.55s var(--ease) both;
}
@keyframes welcomeSplashIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.welcome-splash .welcome-splash__logo.logo-mark {
  width: 96px;
  height: 96px;
  border-radius: 10px;
  filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.2)) drop-shadow(0 0 48px rgba(224, 32, 32, 0.45));
}
.welcome-splash__wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 0 32px rgba(224, 32, 32, 0.55),
    0 0 80px rgba(224, 32, 32, 0.35),
    0 2px 0 rgba(0, 0, 0, 0.8);
}
.welcome-splash__bar {
  width: min(220px, 56vw);
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 1px;
  overflow: hidden;
  margin-top: 4px;
}
.welcome-splash__bar-fill {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--red), #ff5555);
  border-radius: 1px;
  animation: welcomeSplashBar 0.9s ease-in-out infinite;
}
@keyframes welcomeSplashBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}
@media (prefers-reduced-motion: reduce) {
  .welcome-splash__content {
    animation: none;
  }
  .welcome-splash__bar-fill {
    animation: none;
    width: 100%;
    opacity: 0.5;
  }
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ── Container ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Text Utilities ────────────────────────────────── */
.text-red { color: var(--red); }

/* ── Cursor Glow ───────────────────────────────────── */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,32,32,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

/* ── Badge Tag ─────────────────────────────────────── */
.badge-tag {
  display: inline-flex;
  align-items: center;
  background: var(--red-glow);
  border: 1px solid rgba(224,32,32,0.3);
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: 100px;
  vertical-align: middle;
  margin-left: 6px;
  text-transform: uppercase;
}

/* ── Pulse Dot ─────────────────────────────────────── */
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
}
.pulse-dot::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(34,197,94,0.4);
  animation: pulse 2s infinite;
}
.pulse-dot--red { background: var(--red); }
.pulse-dot--red::before { background: var(--red-glow); }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0; }
}

/* ── Buttons ───────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-primary:hover { background: #cc1c1c; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(224,32,32,0.4); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }
.btn-primary svg { width: 18px; height: 18px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); transform: translateY(-2px); }

/* ── Section Headers ───────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(224,32,32,0.3);
  border-radius: 100px;
  background: var(--red-glow-s);
}
.section-header h2 {
  font-family: var(--font-alt);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-header p {
  font-size: 17px;
  color: var(--grey);
  max-width: 520px;
  margin: 0 auto;
}
body.site-cheat .section-header--skew {
  text-align: left;
  margin-left: 0;
  padding-left: 20px;
  border-left: 3px solid var(--red);
  max-width: 720px;
}
body.site-cheat .section-header--skew h2,
body.site-cheat .section-header--skew p {
  margin-left: 0;
  margin-right: 0;
}
body.site-cheat .section-header--skew p {
  max-width: 560px;
}
body.site-cheat .section-header--skew .section-eyebrow {
  margin-left: 0;
}
body.site-cheat .section-header--skew h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* ════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(7,7,8,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}
body.site-cheat .navbar.scrolled {
  border-bottom: 1px solid rgba(46,229,157,0.14);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35), inset 0 -1px 0 rgba(224,32,32,0.25);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.logo-mark {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: block;
  border-radius: 8px;
  line-height: 0;
}
/* Luminance mask: white in PNG = paint, black = truly transparent (no black box) */
.logo-mark--panther {
  background-color: #fff;
  -webkit-mask-image: url('assets/logo-white.png');
  mask-image: url('assets/logo-white.png');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-mode: luminance;
  mask-mode: luminance;
}
.logo-mark--footer {
  width: 68px;
  height: 68px;
}
body.site-cheat .logo-text {
  font-family: var(--font-display);
  letter-spacing: 0.12em;
}
body.site-cheat .logo-mark--panther {
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.12));
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-links .nav-badge { color: var(--grey); }
.nav-links .nav-badge:hover { color: var(--red); }
.nav-links .nav-cta {
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  margin-left: 8px;
  padding: 8px 18px;
}
.nav-links .nav-cta:hover { background: #cc1c1c; color: var(--white); }
.nav-links a.nav-discord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 8px 10px;
  color: #949cf7;
}
.nav-links a.nav-discord:hover {
  color: #b3b8ff;
  background: rgba(88, 101, 242, 0.12);
}
.nav-discord__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.nav-links .nav-sep {
  width: 1px;
  height: 22px;
  margin: 0 6px 0 8px;
  padding: 0;
  align-self: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  list-style: none;
}
.nav-links a.nav-link--current { color: var(--white); }
.mob-link.nav-link--current { color: var(--white); }

/* Account links */
.nav-links .nav-account {
  margin-left: 0;
  color: var(--grey);
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 7px 14px;
}
.nav-links .nav-account:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
}
.nav-links .nav-account--signup {
  margin-left: 6px;
  background: var(--white);
  color: var(--bg);
  border-color: var(--white);
  font-weight: 600;
}
.nav-links .nav-account--signup:hover {
  background: rgba(255,255,255,0.88);
  color: var(--bg);
  border-color: rgba(255,255,255,0.88);
}
.mob-link.nav-account { color: var(--grey); }
.mob-link.nav-account--signup { color: var(--white); font-weight: 600; }
.nav-links .nav-account--logout {
  color: var(--grey);
  border-color: rgba(255,255,255,0.1);
  cursor: pointer;
}
.nav-links .nav-account--logout:hover {
  color: var(--red);
  border-color: rgba(224,32,32,0.3);
  background: rgba(224,32,32,0.06);
}

/* Profile dropdown (logged-in nav) */
.nav-profile-slot {
  list-style: none;
  position: relative;
}
.nav-profile {
  position: relative;
}
.nav-profile__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.nav-profile__trigger:hover {
  border-color: rgba(224,32,32,0.45);
  background: rgba(224,32,32,0.12);
  box-shadow: 0 0 0 1px rgba(224,32,32,0.15);
}
.nav-profile__avatar {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
}
.nav-profile__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  padding: 10px 0;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
  z-index: 200;
}
.nav-profile__dropdown[hidden] {
  display: none !important;
}
.nav-profile__meta {
  padding: 8px 16px 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 6px;
}
.nav-profile__name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.nav-profile__email {
  display: block;
  font-size: 11px;
  color: var(--grey);
  margin-top: 2px;
  word-break: break-all;
}
.nav-profile__link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.nav-profile__link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.04);
}
.nav-profile__link--btn {
  border-top: 1px solid var(--border);
  margin-top: 4px;
  padding-top: 12px;
  color: var(--red);
}
.nav-profile__link--btn:hover {
  color: #ff6b6b;
  background: rgba(224,32,32,0.08);
}

/* Mobile logged-in block */
.mob-user-sheet {
  padding: 12px 0 8px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.mob-user-sheet__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px 12px;
}
.mob-user-sheet__head .nav-profile__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.mob-user-sheet__name {
  display: block;
  font-weight: 600;
  color: var(--white);
  font-size: 15px;
}
.mob-user-sheet__email {
  display: block;
  font-size: 12px;
  color: var(--grey);
  margin-top: 2px;
}
.mob-user-sheet__link {
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
}
.mob-user-sheet__logout {
  color: var(--red) !important;
  margin-top: 4px;
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 96px; left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 20px 24px 28px;
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.3s var(--ease), opacity 0.3s;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mob-link {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--grey);
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}
.mob-link:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.mob-link.nav-cta { color: var(--red); }
.mob-link.mob-discord {
  color: #949cf7;
}
.mob-link.mob-discord:hover {
  color: #b3b8ff;
  background: rgba(88, 101, 242, 0.12);
}

/* ════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 144px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-radial {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(224,32,32,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-diagonal {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 42%,
    rgba(46,229,157,0.04) 50%,
    transparent 58%,
    transparent 100%
  );
  pointer-events: none;
}
.hero-logo-watermark {
  position: absolute;
  top: 50%;
  right: clamp(16px, 6vw, 72px);
  transform: translateY(-50%);
  width: min(76vw, 760px);
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 0;
}
.hero-logo-watermark--panther {
  background-color: rgba(255, 255, 255, 0.14);
  -webkit-mask-image: url('assets/logo-white.png');
  mask-image: url('assets/logo-white.png');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-mode: luminance;
  mask-mode: luminance;
}
@media (max-width: 768px) {
  .hero-logo-watermark {
    right: 50%;
    transform: translate(50%, -40%);
    width: min(88vw, 600px);
  }
  .hero-logo-watermark--panther {
    background-color: rgba(255, 255, 255, 0.09);
  }
}
.page-hero__slash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(224,32,32,0.06) 50%,
    transparent 65%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}
body.site-cheat .hero-content--framed {
  text-align: left;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  padding: 28px 32px 32px;
}
body.site-cheat .hero-content--framed::before,
body.site-cheat .hero-content--framed::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: rgba(46,229,157,0.45);
  border-style: solid;
  pointer-events: none;
}
body.site-cheat .hero-content--framed::before {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}
body.site-cheat .hero-content--framed::after {
  bottom: 0;
  right: 0;
  border-width: 0 2px 2px 0;
  border-color: rgba(224,32,32,0.5);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.eyebrow-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--neon);
  text-shadow: 0 0 24px var(--neon-dim);
}
.hero-title {
  font-family: var(--font-alt);
  font-size: clamp(52px, 9vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
body.site-cheat .hero-title {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.hero-desc {
  font-size: 18px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 64px;
  width: 100%;
}
body.site-cheat .hero-content--framed .hero-actions {
  align-items: center;
  justify-content: center;
}
.btn-primary.btn-primary--hero-store {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 16px 36px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--red);
  box-shadow:
    0 6px 24px rgba(224, 32, 32, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.25);
  transition: background 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
}
.btn-primary.btn-primary--hero-store:hover {
  background: #ff2a2a;
  box-shadow:
    0 10px 32px rgba(224, 32, 32, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}
.btn-primary.btn-primary--hero-store:active {
  transform: translateY(0);
}
.btn-primary.btn-primary--hero-store svg {
  width: 19px;
  height: 19px;
}
.btn-ghost.btn-ghost--hero-secondary {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  padding: 10px 18px;
  border-radius: 3px;
  border: 1px solid var(--border);
  color: var(--grey);
  background: transparent;
}
.btn-ghost.btn-ghost--hero-secondary:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  transform: none;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
body.site-cheat .hero-content--framed .hero-stats {
  justify-content: flex-start;
}
.stat {
  text-align: center;
  padding: 0 40px;
}
.stat-num {
  font-family: var(--font-alt);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
}
.stat-unit {
  font-family: var(--font-alt);
  font-size: 28px;
  font-weight: 700;
  color: var(--red);
  vertical-align: baseline;
}
.stat-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey);
  margin-top: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
body.site-cheat .stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-indicator {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-indicator span {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--red);
  border-radius: 2px;
  animation: scrollDown 1.8s infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}

/* ════════════════════════════════════════════════════
   TICKER
═══════════════════════════════════════════════════ */
.ticker-wrap {
  overflow: hidden;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
/* Skew nur hier — sonst überschreibt er die Translate-Animation am Track */
.ticker-inner {
  display: block;
  width: 100%;
  overflow: hidden;
}
body.site-cheat .ticker-inner {
  transform: skewX(-4deg);
}
.ticker-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  width: max-content;
  max-width: none;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
}
.ticker-segment {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
  padding-right: 32px;
}
body.site-cheat .ticker-track {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}
body.site-cheat .ticker-wrap {
  border-top: 1px solid rgba(46,229,157,0.12);
  border-bottom: 1px solid rgba(224,32,32,0.15);
  background: linear-gradient(90deg, rgba(46,229,157,0.04), transparent 40%, transparent 60%, rgba(224,32,32,0.05));
}
.ticker-sep {
  color: var(--red);
  font-size: 10px;
  flex-shrink: 0;
}
@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
    transform: none;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 8px;
    width: 100%;
    max-width: 100%;
    min-width: unset;
    white-space: normal;
    text-align: center;
  }
  .ticker-segment[aria-hidden="true"] {
    display: none;
  }
  .ticker-segment {
    padding-right: 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ════════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════ */
.features {
  padding: 120px 0;
  position: relative;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s var(--ease), background 0.3s;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), border-color 0.3s, background 0.3s;
}
.feature-card.in-view { opacity: 1; transform: translateY(0); }
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover { border-color: rgba(224,32,32,0.25); background: var(--bg-3); transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }

.feature-card--highlight {
  background: linear-gradient(135deg, var(--bg-2), rgba(224,32,32,0.05));
  border-color: rgba(224,32,32,0.2);
}
.feature-card--highlight::before { opacity: 0.5; }

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(224,32,32,0.1);
  border: 1px solid rgba(224,32,32,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--red);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.feature-card p { font-size: 14px; color: var(--grey); line-height: 1.6; }

body.site-cheat .feature-card {
  clip-path: var(--chamfer);
  border-radius: 0;
}
body.site-cheat .feature-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════
   TOP SELLING (homepage, under hero)
═══════════════════════════════════════════════════ */
.top-selling {
  position: relative;
  padding: 40px 0 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 100%);
}
/* Breiter als Standard-Container — vier Karten wirken sonst gequetscht */
.top-selling .container {
  max-width: 1480px;
  padding-left: max(24px, env(safe-area-inset-left, 0px));
  padding-right: max(24px, env(safe-area-inset-right, 0px));
}
@media (min-width: 1280px) {
  .top-selling .container {
    padding-left: max(32px, env(safe-area-inset-left, 0px));
    padding-right: max(32px, env(safe-area-inset-right, 0px));
  }
}
.top-selling__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px 28px;
  margin-bottom: 28px;
}
.top-selling .section-header {
  margin-bottom: 0;
  flex: 1;
  min-width: min(100%, 280px);
}
.top-selling__all {
  flex-shrink: 0;
  white-space: nowrap;
}
.top-selling__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}
.top-selling .product-card__name {
  font-size: 15px;
}
.top-selling .product-card__teaser {
  -webkit-line-clamp: 3;
}
.product-badge--rank {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
}
@media (max-width: 1100px) {
  .top-selling__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .top-selling {
    padding: 32px 0 44px;
  }
  .top-selling__top {
    flex-direction: column;
    align-items: stretch;
  }
  .top-selling__all {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .top-selling__grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════
   PRODUCTS — grid + shared card
═══════════════════════════════════════════════════ */
.products {
  padding: 0 0 120px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.products-catalog-hint {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--grey-2);
  font-size: 14px;
  padding: 3rem 1rem;
}
.products-catalog-hint--error { color: var(--red); }

/* ── Base card shell ───────────────────────────────── */
.product-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.product-card:not(.product-card--coming)::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255,255,255,0.05) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}
.product-card:not(.product-card--coming):hover {
  border-color: rgba(255,255,255,0.11);
  box-shadow: 0 8px 32px rgba(0,0,0,0.38);
  transform: translateY(-3px);
}
.product-card:not(.product-card--coming):hover::before { opacity: 1; }
.product-card--coming { opacity: 0.5; }
.product-card--coming:hover { opacity: 0.6; }
.product-card__surface {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* ── Visual zone (image banner or icon bg) ─────────── */
.product-card__visual {
  position: relative;
  height: 116px;
  background: var(--bg-3);
  flex-shrink: 0;
  overflow: hidden;
}
.product-card__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(0,0,0,0.32) 100%);
  pointer-events: none;
}
.product-card__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-card__icon-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 50% 65%, rgba(224,32,32,0.07) 0%, transparent 68%);
}
.product-card__icon-bg--muted {
  background: none;
}
.product-card__cat-badge {
  position: absolute;
  bottom: 9px;
  left: 12px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(7, 7, 8, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 3px 8px;
  border-radius: 5px;
}
.product-card__cat-badge--muted { color: var(--grey-2); }

/* ── Badge (Soon / New) ────────────────────────────── */
.product-badge {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
}
.product-badge--new { background: #6d28d9; }
.product-badge--rank { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); border: 1px solid var(--border); }
.product-badge--soon { background: transparent; color: var(--grey); border: 1px solid var(--border); }

/* ── Body ──────────────────────────────────────────── */
.product-card__body {
  flex: 1;
  padding: 15px 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-card__name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__teaser {
  font-size: 13px;
  line-height: 1.5;
  color: var(--grey);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Status line ───────────────────────────────────── */
.product-status-dot {
  flex-shrink: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
}
.product-status-dot--undetected {
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74,222,128,0.55);
}
.product-status-dot--updating {
  background: #fbbf24;
  box-shadow: 0 0 6px rgba(251,191,36,0.5);
}
.product-status-dot--muted,
.product-card--coming .product-status-dot {
  background: var(--grey-2);
  box-shadow: none;
}
.product-status-line {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 8px;
  font-size: 12px;
  color: var(--grey);
}
.product-status-label {
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}

/* ── Footer ────────────────────────────────────────── */
.product-card__foot {
  padding: 12px 18px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  min-width: 0;
}
.price-from {
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.04em;
}
.price-from--solo {
  font-size: 13px;
  font-weight: 600;
  color: var(--grey);
}
.price-val {
  font-family: var(--font-alt);
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}
.product-avail__badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 5px;
  line-height: 1;
  flex-shrink: 0;
}
.product-avail__badge--in {
  color: #4ade80;
  background: rgba(74,222,128,0.09);
  border: 1px solid rgba(74,222,128,0.22);
}
.product-avail__badge--limited {
  color: #fbbf24;
  background: rgba(251,191,36,0.09);
  border: 1px solid rgba(251,191,36,0.22);
}
.product-avail__badge--out {
  color: var(--grey);
  background: transparent;
  border: 1px solid var(--border);
}
.product-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* ── Buttons ───────────────────────────────────────── */
.product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.product-btn:hover { background: #c81a1a; transform: translateY(-1px); }
.product-btn--disabled { background: var(--bg-3); color: var(--grey); border: 1px solid var(--border); pointer-events: none; }
.product-btn--ghost {
  background: transparent;
  color: var(--grey);
  border: 1px solid var(--border);
}
.product-btn--ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
  transform: none;
}
.product-btn svg { width: 13px; height: 13px; flex-shrink: 0; }
.product-btn--pulse svg { transition: transform 0.22s var(--ease); }
.product-btn--pulse:hover svg { transform: translateX(3px); }

/* ════════════════════════════════════════════════════
   PRODUCTS PAGE — store layout
═══════════════════════════════════════════════════ */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Hero */
.page-hero--products {
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
}
.page-hero__glow {
  position: absolute;
  top: 20%; left: 50%;
  transform: translateX(-50%);
  width: min(820px, 100vw);
  height: 240px;
  background: radial-gradient(ellipse, rgba(224,32,32,0.12) 0%, transparent 68%);
}
.page-hero__inner { position: relative; z-index: 1; }

/* Search topbar */
.store-topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.products-search-wrap {
  position: relative;
  flex: 1;
  max-width: 500px;
}
.products-search-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: var(--grey-2);
  pointer-events: none;
  transition: color 0.2s;
}
.products-search-wrap:focus-within .products-search-icon { color: var(--red); }
.products-search {
  width: 100%;
  padding: 12px 16px 12px 42px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.products-search::placeholder { color: var(--grey-2); }
.products-search:focus {
  border-color: rgba(224,32,32,0.4);
  box-shadow: 0 0 0 3px rgba(224,32,32,0.1);
}
.store-count {
  font-size: 13px;
  color: var(--grey-2);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

/* Store body: sidebar + grid */
.store-layout {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  gap: 0 36px;
  align-items: start;
}
.store-rail {
  position: sticky;
  top: 96px;
}
.store-rail__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-2);
  margin: 0 0 10px 2px;
}
.store-rail__nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.store-rail__btn {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  padding: 9px 12px;
  border-radius: var(--radius);
  border: none;
  background: transparent;
  color: var(--grey);
  cursor: pointer;
  line-height: 1.4;
  transition: color 0.18s, background 0.18s;
}
.store-rail__btn:hover {
  color: var(--white);
  background: rgba(255,255,255,0.04);
}
.store-rail__btn.is-active {
  color: var(--white);
  font-weight: 600;
  background: rgba(224,32,32,0.08);
  border-left: 2px solid var(--red);
  padding-left: 10px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.store-rail__btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.store-main { min-width: 0; }

/* Empty state */
.products-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 52px 24px;
  color: var(--grey);
  font-size: 15px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
}

/* Legacy filter chips (other pages) */
.filter-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-chip {
  font-family: var(--font);
  font-size: 13px; font-weight: 600;
  padding: 9px 18px; border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg-2); color: var(--grey);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.filter-chip:hover { color: var(--white); border-color: rgba(255,255,255,0.12); }
.filter-chip.is-active { background: rgba(224,32,32,0.12); border-color: rgba(224,32,32,0.45); color: var(--white); }
.filter-chip:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

/* ── Product detail drawer (API description panel) ── */
.product-drawer {
  position: fixed;
  inset: 0;
  z-index: 4000;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.28s ease;
}
.product-drawer.is-open { pointer-events: auto; visibility: visible; }
.product-drawer__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.65);
  opacity: 0;
  transition: opacity 0.28s ease;
  border: none; padding: 0; cursor: pointer;
}
.product-drawer.is-open .product-drawer__backdrop { opacity: 1; }
.product-drawer__panel {
  position: absolute;
  top: 0; right: 0;
  width: min(480px, 100vw);
  max-width: 100%; height: 100%;
  background: #0a0a0c;
  border-left: 1px solid rgba(255,255,255,0.07);
  box-shadow: -20px 0 60px rgba(0,0,0,0.55);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.22,1,0.36,1);
  display: flex; flex-direction: column;
}
.product-drawer.is-open .product-drawer__panel { transform: translateX(0); }
.product-drawer__close {
  position: absolute;
  top: 14px; right: 14px; z-index: 2;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.4);
  color: var(--white); cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.product-drawer__close:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
}
.product-drawer__scroll { overflow-y: auto; flex: 1; -webkit-overflow-scrolling: touch; }
.product-drawer__hero {
  aspect-ratio: 16 / 9;
  background: var(--bg-2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.product-drawer__cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-drawer__body { padding: 26px 24px 40px; }
.product-drawer__eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); margin: 0 0 7px;
}
.product-drawer__title {
  font-size: clamp(1.3rem, 3.5vw, 1.65rem);
  font-weight: 800; line-height: 1.2;
  margin: 0 0 16px; color: var(--white);
  letter-spacing: -0.025em; padding-right: 48px;
}
.product-drawer__meta { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; }
.product-drawer__pill {
  display: inline-flex; align-items: center;
  font-size: 12px; font-weight: 500;
  padding: 5px 11px; border-radius: 7px;
  background: var(--bg-2); border: 1px solid var(--border);
  color: rgba(255,255,255,0.85);
}
.product-drawer__pill--muted { color: var(--grey); }
.product-drawer__pill strong { font-weight: 700; color: var(--white); }
.product-drawer__desc { margin-bottom: 22px; }
.product-drawer__text {
  font-size: 14px; line-height: 1.7; color: var(--grey); margin: 0; white-space: pre-wrap;
}
.product-drawer__text--muted { font-style: italic; color: var(--grey-2); }
.product-drawer__loading { font-size: 14px; color: var(--grey-2); margin: 0; }
.product-drawer__h3 {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--grey-2); margin: 0 0 8px;
}
.product-drawer__variant-list {
  list-style: none; margin: 0 0 22px; padding: 0;
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.product-drawer__variant-list li {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 10px; align-items: center; padding: 10px 14px;
  font-size: 13px; border-bottom: 1px solid var(--border); color: var(--grey);
}
.product-drawer__variant-list li:last-child { border-bottom: none; }
.product-drawer__variant-list li span:first-child { color: var(--white); font-weight: 600; }
.product-drawer__v-stock { font-size: 11px; color: var(--grey-2); text-align: right; }
.product-drawer__actions .product-btn { width: 100%; }

/* Filtered out */
.product-card.is-filtered-out { display: none !important; }

/* Responsive */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .store-layout { grid-template-columns: 1fr; gap: 20px; }
  .store-rail { position: static; }
  .store-rail__nav {
    flex-direction: row; flex-wrap: nowrap;
    overflow-x: auto; gap: 6px; padding-bottom: 4px;
    scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
  }
  .store-rail__btn {
    flex: 0 0 auto; scroll-snap-align: start;
    text-align: center; padding: 8px 14px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-2);
  }
  .store-rail__btn.is-active {
    border-left: none;
    border-color: rgba(224,32,32,0.45);
    background: rgba(224,32,32,0.1);
    padding-left: 14px;
    border-radius: var(--radius);
  }
}
@media (max-width: 560px) {
  .store-topbar { flex-wrap: wrap; }
  .products-search-wrap { max-width: 100%; }
  .products-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .product-card { transition: none !important; }
  .product-card::before,
  .product-card::after { display: none !important; }
}

/* ════════════════════════════════════════════════════
   PRODUCT DETAIL (standalone pages)
═══════════════════════════════════════════════════ */
.product-detail-page .page-hero--product-detail {
  padding: 152px 0 36px;
}
.product-detail-main {
  padding: 0 0 100px;
}
.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(400px, 38vw);
  gap: 48px;
  align-items: start;
}
@media (max-width: 960px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
  }
}
.product-detail-hero__title {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}
.product-detail-hero__lead {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.65;
  max-width: 54ch;
  margin-bottom: 22px;
}
.product-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.product-detail-meta__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--grey);
}
.product-detail-meta__pill strong {
  color: var(--white);
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.04em;
}
.product-detail-meta__dot {
  flex-shrink: 0;
}
.product-detail-section {
  margin-bottom: 36px;
}
.product-detail-section h2 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.product-detail-section p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 12px;
}
.product-detail-section p:last-child {
  margin-bottom: 0;
}
.product-detail-list {
  list-style: none;
  padding: 0 0 0 18px;
  margin: 0;
  border-left: 2px solid rgba(224, 32, 32, 0.35);
}
.product-detail-list li {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 10px;
}
.product-detail-list li:last-child {
  margin-bottom: 0;
}
.product-detail-aside {
  position: sticky;
  top: 112px;
}
@media (max-width: 960px) {
  .product-detail-aside {
    position: static;
    order: -1;
  }
}
.product-detail-buy-card {
  position: relative;
  background: linear-gradient(155deg, rgba(28, 28, 32, 0.98) 0%, var(--bg-2) 45%, rgba(18, 18, 22, 0.99) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px 28px 32px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(224, 32, 32, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.product-detail-buy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), rgba(255, 255, 255, 0.35), var(--red), transparent);
  opacity: 0.95;
  pointer-events: none;
}
.product-detail-buy-card::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(224, 32, 32, 0.18), transparent 70%);
  pointer-events: none;
}
.product-detail-buy-card > * {
  position: relative;
  z-index: 1;
}
.product-detail-buy-card__head {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.product-detail-buy-card__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.product-detail-buy-card__sub {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.45;
}
.product-detail-buy-card .product-price {
  margin-bottom: 12px;
}
.product-detail-buy-card .product-price__amount {
  gap: 8px;
}
.product-detail-buy-card .price-from {
  font-size: 13px;
}
.product-detail-buy-card .price-val {
  font-size: 36px;
  letter-spacing: -0.03em;
}
.product-detail-buy-card .product-avail__badge {
  margin-bottom: 22px;
  font-size: 10px;
  padding: 6px 14px;
}
.product-detail-buy-card .product-btn {
  width: 100%;
  justify-content: center;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 15px;
  font-weight: 700;
}
.product-detail-buy-card .product-btn--pulse {
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-detail-buy-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-detail-buy-hint {
  font-size: 13px;
  color: var(--grey);
  margin-top: 16px;
  line-height: 1.55;
}
.product-detail-buy-hint strong {
  color: var(--white);
  font-weight: 600;
}
.product-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey);
  margin-bottom: 22px;
  text-decoration: none;
  transition: color 0.2s;
}
.product-detail-back:hover {
  color: var(--white);
}

/* ════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════ */
.how {
  padding: 0 0 120px;
  position: relative;
}
.how::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: -80px;
  height: 600px;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(224,32,32,0.05), transparent);
  pointer-events: none;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.step {
  text-align: center;
  padding: 40px 32px;
  position: relative;
}
.step-num {
  font-family: var(--font-alt);
  font-size: 64px;
  font-weight: 900;
  color: rgba(224,32,32,0.12);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}
.step-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-body p { font-size: 14px; color: var(--grey); line-height: 1.7; }
.step-line {
  position: absolute;
  top: 64px;
  right: -1px;
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--border), transparent);
}

/* ════════════════════════════════════════════════════
   PAGE HERO (Unterseiten)
═══════════════════════════════════════════════════ */
.page-hero {
  padding: 152px 0 40px;
  border-bottom: 1px solid var(--border);
}
.page-breadcrumb {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.page-breadcrumb a {
  color: var(--grey);
  transition: color 0.2s;
}
.page-breadcrumb a:hover { color: var(--white); }
.page-breadcrumb span { margin: 0 8px; opacity: 0.45; }
.page-hero h1 {
  font-family: var(--font-alt);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
body.site-cheat .page-hero h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
body.site-cheat .page-hero__inner--framed {
  padding-left: 8px;
  border-left: 3px solid var(--neon);
  margin-left: 0;
}
body.site-cheat .page-breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page-hero-desc {
  margin-top: 14px;
  font-size: 17px;
  color: var(--grey);
  max-width: 560px;
  line-height: 1.6;
}
.products-page .page-hero { padding-top: 120px; padding-bottom: 36px; }
.products-page .products { padding-top: 44px; padding-bottom: 120px; }

/* ════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════ */
.testimonials { padding: 0 0 120px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.review-card:hover { border-color: rgba(224,32,32,0.2); transform: translateY(-4px); }
.review-stars { color: var(--red); font-size: 16px; letter-spacing: 2px; }
.review-card > p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.75); flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.review-avatar {
  width: 40px; height: 40px;
  background: var(--red-glow);
  border: 1px solid rgba(224,32,32,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
}
.review-avatar--anon {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--grey);
}
.review-avatar--anon svg {
  width: 20px;
  height: 20px;
  opacity: 0.85;
}
.review-author strong { font-size: 14px; font-weight: 600; display: block; }
.review-author span { font-size: 12px; color: var(--grey); }

/* ════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
.contact { padding: 0 0 120px; }
.contact-inner {
  max-width: 560px;
  margin: 0 auto;
}
.contact-text .section-eyebrow { margin-bottom: 16px; }
.contact-text h2 {
  font-family: var(--font-alt);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.contact-text > p { font-size: 15px; color: var(--grey); line-height: 1.7; margin-bottom: 32px; }

.contact-channels { display: flex; flex-direction: column; gap: 12px; }
.channel-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey);
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s var(--ease);
}
.channel-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.channel-link:hover { color: var(--white); border-color: rgba(224,32,32,0.3); background: var(--bg-3); transform: translateX(4px); }

/* Shared form fields (login modal, etc.) */
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6); letter-spacing: 0.02em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23888' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 40px; }
.form-group select option { background: var(--bg-3); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(224,32,32,0.4); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand > p { font-size: 14px; color: var(--grey); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { color: var(--white); border-color: rgba(224,32,32,0.3); background: rgba(224,32,32,0.08); }

.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 480px; }
.footer-col h4 { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--grey); display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--grey-2);
}

/* ════════════════════════════════════════════════════
   AUTH MODAL
═══════════════════════════════════════════════════ */
.auth-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
}
.auth-modal-backdrop.is-open { display: block; }

.auth-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.96);
  width: min(440px, calc(100vw - 32px));
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  padding: 36px 32px 28px;
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
}
.auth-modal.is-open {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.auth-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--grey);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.auth-modal__close svg { width: 16px; height: 16px; }
.auth-modal__close:hover { color: var(--white); border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); }

.auth-modal__header { margin-bottom: 24px; }
.auth-modal__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.auth-modal__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--white);
}
.auth-modal__sub {
  margin-top: 6px;
  font-size: 14px;
  color: var(--grey);
}

.auth-modal__form { display: flex; flex-direction: column; gap: 16px; }

.auth-modal__pw-wrap { position: relative; }
.auth-modal__pw-wrap input { padding-right: 42px; }
.auth-modal__pw-toggle {
  position: absolute;
  right: 12px;
  bottom: 11px;
  background: none;
  border: none;
  color: var(--grey);
  cursor: pointer;
  padding: 0;
  line-height: 0;
  transition: color 0.2s;
}
.auth-modal__pw-toggle:hover { color: var(--white); }
.auth-modal__eye { width: 16px; height: 16px; display: block; }
.auth-modal__eye--on { display: none; }
.auth-modal--show-pw .auth-modal__eye--off { display: none; }
.auth-modal--show-pw .auth-modal__eye--on  { display: block; }

.auth-modal__error {
  font-size: 13px;
  color: var(--red);
  background: rgba(224,32,32,0.08);
  border: 1px solid rgba(224,32,32,0.2);
  border-radius: 8px;
  padding: 10px 14px;
}

.auth-modal__submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.auth-modal__submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none !important; }

.auth-modal__footer {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--grey);
}
.auth-modal__link {
  color: var(--white);
  font-weight: 600;
  transition: color 0.2s;
}
.auth-modal__link:hover { color: var(--red); }

/* ════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu { display: block; }

  body.site-cheat .hero-content--framed {
    text-align: center;
    padding: 20px 18px 24px;
  }
  body.site-cheat .hero-content--framed::before,
  body.site-cheat .hero-content--framed::after {
    width: 22px;
    height: 22px;
  }
  body.site-cheat .hero-content--framed .hero-actions,
  body.site-cheat .hero-content--framed .hero-stats {
    justify-content: center;
  }
  body.site-cheat .section-header--skew {
    padding-left: 16px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-left: none;
    border-top: 3px solid var(--red);
    padding-top: 20px;
    padding-left: 0;
  }
  body.site-cheat .section-header--skew .section-eyebrow {
    margin-left: auto;
    margin-right: auto;
  }
  body.site-cheat .section-header--skew h2,
  body.site-cheat .section-header--skew p {
    margin-left: auto;
    margin-right: auto;
  }
  body.site-cheat .products-toolbar--bar {
    flex-direction: column;
    align-items: stretch;
    clip-path: none;
    border-radius: var(--radius);
  }
  body.site-cheat .products-toolbar--bar .filter-chips {
    justify-content: flex-start;
  }
  body.site-cheat .page-hero__inner--framed {
    border-left: none;
    padding-left: 0;
    border-top: 3px solid var(--neon);
    padding-top: 16px;
  }

  .hero-title { font-size: clamp(40px, 12vw, 64px); }
  .hero-desc { font-size: 16px; }
  .hero-stats { gap: 24px 0; }
  .stat { padding: 0 20px; }
  .stat-num { font-size: 32px; }
  .stat-unit { font-size: 22px; }
  .stat-divider { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step-line { display: none; }


  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }

  .section-header { margin-bottom: 40px; }

  .products-search-wrap { max-width: none; }
}

@media (max-width: 480px) {
  .hero-actions { align-items: center; }
  .btn-primary.btn-primary--hero-store { padding: 15px 30px; font-size: 15px; }
  .btn-primary, .btn-ghost { justify-content: center; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .filter-chip { padding: 8px 14px; font-size: 12px; }
}

/* ── Fade-in Animation on Scroll ───────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }
