:root {
  color-scheme: dark;
  --bg: #090909;
  --surface: #121212;
  --surface-2: #191919;
  --line: rgba(255,255,255,.14);
  --text: #f7f7f7;
  --muted: #b8b8b8;
  --accent: #f0a202;
  --accent-2: #ffcf5a;
  --success: #25D366;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

a,
button {
  font: inherit;
}

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

.store-hero {
  min-height: 92vh;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  padding: 28px 18px 54px;
  background:
    radial-gradient(circle at 50% 28%, rgba(240,162,2,.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.04), transparent 42%),
    #050505;
}

.store-nav {
  position: fixed;
  z-index: 5;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.store-nav a,
.store-nav button,
.primary-link,
.secondary-link,
.product a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 14px;
  font-weight: 900;
  cursor: pointer;
}

.store-nav a,
.store-nav button,
.secondary-link {
  color: var(--text);
  background: rgba(18,18,18,.82);
}

.hero-logo {
  width: min(420px, 82vw);
  max-height: 42vh;
  height: auto;
  object-fit: contain;
  margin-bottom: 8px;
  filter:
    drop-shadow(0 0 24px rgba(255,180,0,.48))
    drop-shadow(0 0 62px rgba(255,80,0,.18));
}

.kicker {
  margin: 0 0 8px;
  color: var(--accent-2);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: .9;
  letter-spacing: 0;
}

.hero-copy {
  width: min(680px, 92vw);
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.primary-link {
  color: #111;
  background: var(--accent);
  border-color: var(--accent);
}

.catalog {
  max-width: 1220px;
  margin: 0 auto;
  padding: 32px 18px 20px;
}

.section {
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.section-head {
  margin-bottom: 18px;
}

h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 3rem);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.product h3 {
  margin: 0;
  font-size: 1.25rem;
}

.product p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.prices {
  display: grid;
  gap: 8px;
}

.prices span,
.product.compact > strong {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(240,162,2,.3);
  color: var(--muted);
  background: rgba(240,162,2,.08);
}

.prices strong,
.product.compact > strong {
  color: var(--accent-2);
}

.product a {
  display: inline-grid;
  place-items: center;
  margin-top: auto;
  color: #06140a;
  background: var(--success);
  border-color: var(--success);
}

.store-footer {
  padding: 34px 18px 44px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
}

@media (max-width: 880px) {
  .store-hero {
    min-height: auto;
    padding-top: 22px;
  }

  .grid,
  .grid.four {
    grid-template-columns: 1fr;
  }

  .store-nav {
    position: static;
    justify-content: center;
    margin-bottom: 26px;
  }

  .store-nav a,
  .store-nav button {
    padding: 10px 12px;
    font-size: .9rem;
  }

  .hero-logo {
    width: min(360px, 92vw);
    max-height: 34vh;
  }
}

@media print {
  body {
    background: #fff;
    color: #111;
  }

  .store-hero {
    min-height: auto;
    padding: 24px 0;
    background: #fff;
  }

  .store-nav,
  .hero-actions,
  .product a {
    display: none;
  }

  .hero-logo {
    width: 150px;
    filter: none;
  }

  .catalog {
    max-width: none;
    padding: 0;
  }

  .section {
    break-inside: avoid;
    padding: 20px 0;
    border-color: #ddd;
  }

  .product,
  .prices span,
  .product.compact > strong {
    border-color: #ddd;
    background: #fff;
  }

  .kicker,
  .prices strong,
  .product.compact > strong {
    color: #8a5f00;
  }

  .hero-copy,
  .product p,
  .store-footer {
    color: #555;
  }
}
