
:root {
  color-scheme: dark;
  --bg: #0d0e12;
  --panel: #17191f;
  --panel-2: #20232b;
  --text: #f5f6f8;
  --muted: #aeb3bf;
  --accent: #ff5a36;
  --border: rgba(255,255,255,.1);
  --shadow: 0 22px 60px rgba(0,0,0,.42);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,90,54,.14), transparent 32rem),
    var(--bg);
  color: var(--text);
}
body.locked { overflow: hidden; }
a { color: inherit; }
.site-header {
  max-width: 1320px;
  margin: 0 auto;
  padding: 54px 28px 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}
.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
}
h1, h2, h3, p { margin-top: 0; }
.site-header h1 { font-size: clamp(2rem, 5vw, 4.5rem); line-height: .96; margin-bottom: 15px; }
.subtitle, .catalog-head p, .note { color: var(--muted); }
.contact-btn, .age-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 13px 19px;
  background: var(--accent);
  color: white;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.contact-btn.full { width: 100%; margin-top: 18px; }
main { max-width: 1320px; margin: 0 auto; padding: 0 28px 70px; }
.toolbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 220px 180px;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(23,25,31,.9);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
input, select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 15px;
  background: #101218;
  color: var(--text);
  font: inherit;
}
.catalog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 38px 0 18px;
}
.catalog-head h2 { margin-bottom: 7px; font-size: 1.7rem; }
.demo-pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: .82rem;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
  gap: 18px;
}
.card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 12px 35px rgba(0,0,0,.24);
  transition: transform .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(255,90,54,.55); }
.card-cover {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--panel-2);
}
.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-body { padding: 16px; }
.card h3 { font-size: 1.03rem; margin-bottom: 7px; }
.meta { color: var(--muted); font-size: .88rem; margin-bottom: 15px; }
.card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price { font-weight: 900; }
.status {
  border-radius: 999px;
  padding: 6px 9px;
  font-size: .72rem;
  font-weight: 850;
  background: rgba(72,199,116,.15);
  color: #78e6a1;
}
.card button {
  width: 100%;
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 11px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-weight: 750;
}
dialog {
  width: min(980px, calc(100% - 30px));
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--panel);
  color: var(--text);
  box-shadow: var(--shadow);
}
dialog::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(8px); }
.dialog-layout { display: grid; grid-template-columns: minmax(300px, .9fr) 1fr; min-height: 600px; }
.cover-viewer { padding: 24px; background: #0b0c10; display: flex; flex-direction: column; }
.cover-viewer img { width: 100%; height: 520px; object-fit: contain; }
.cover-controls { display: flex; gap: 8px; margin-top: 14px; }
.cover-controls button {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}
.cover-controls button.active { background: var(--accent); border-color: var(--accent); }
.item-info { padding: 48px 34px 34px; }
.item-info h2 { font-size: 2.4rem; line-height: 1.05; }
dl { margin: 28px 0; }
dl div { display: grid; grid-template-columns: 105px 1fr; padding: 13px 0; border-bottom: 1px solid var(--border); }
dt { color: var(--muted); }
dd { margin: 0; font-weight: 750; }
.dialog-close {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  color: white;
  font-size: 1.7rem;
  cursor: pointer;
}
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(5,6,8,.94);
  backdrop-filter: blur(16px);
}
.age-gate.hidden { display: none; }
.age-card {
  max-width: 560px;
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 24px;
  text-align: center;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.age-badge {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 5px solid var(--accent);
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 950;
}
.age-card p { color: var(--muted); line-height: 1.55; }
.age-card button { width: 100%; margin-top: 10px; font-size: 1rem; }
.fineprint { margin: 17px 0 0; font-size: .76rem; }
footer {
  border-top: 1px solid var(--border);
  padding: 34px 28px 60px;
  color: var(--muted);
  max-width: 1320px;
  margin: 0 auto;
}
footer nav { display: flex; gap: 16px; margin-bottom: 24px; }
.legal { max-width: 800px; padding-top: 20px; }
.empty { grid-column: 1 / -1; padding: 60px 20px; text-align: center; color: var(--muted); }
@media (max-width: 760px) {
  .site-header { align-items: start; flex-direction: column; padding-top: 34px; }
  .toolbar { grid-template-columns: 1fr; position: static; }
  .dialog-layout { grid-template-columns: 1fr; }
  .cover-viewer img { height: 420px; }
  .item-info { padding: 34px 24px; }
}
