/* NoxLure — dark luxe theme */
:root {
  --bg: #0a0a0d;
  --bg-soft: #121218;
  --card: #16161d;
  --gold: #c9a548;
  --gold-soft: #e3c987;
  --text: #e8e6e1;
  --text-dim: #9a968d;
  --line: #26262f;
  --tg: #2aabee;
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- Age gate ---------- */
.age-gate {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(5, 5, 8, 0.96);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
}
.age-gate.hidden { display: none; }
.age-gate-box {
  max-width: 420px; margin: 20px; padding: 48px 40px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}
.age-gate-box .brand-mark { font-size: 28px; color: var(--gold); margin-bottom: 18px; }
.age-gate-box h2 { font-size: 22px; margin-bottom: 12px; }
.age-gate-box p { color: var(--text-dim); font-size: 14px; margin-bottom: 28px; }
.age-gate-box .btn-row { display: flex; gap: 12px; justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  background: transparent;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn:hover { background: var(--gold); color: #14120a; }
.btn.solid { background: var(--gold); color: #14120a; font-weight: 600; }
.btn.solid:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.btn.ghost { border-color: var(--line); color: var(--text-dim); }
.btn.ghost:hover { border-color: var(--text-dim); background: transparent; color: var(--text); }
.btn.tg {
  background: var(--tg); border-color: var(--tg); color: #fff; font-weight: 600;
}
.btn.tg:hover { filter: brightness(1.12); }
.btn.tg svg { width: 18px; height: 18px; fill: currentColor; }
.btn.big { padding: 16px 36px; font-size: 16px; }

/* ---------- Header ---------- */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo { font-family: Georgia, serif; font-size: 22px; letter-spacing: 0.12em; }
.logo .nox { color: var(--text); }
.logo .lure { color: var(--gold); }
.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--text-dim); }
.nav-links a:hover { color: var(--gold-soft); }
.nav .btn { padding: 9px 20px; font-size: 13px; }

/* ---------- Hero ---------- */
.hero {
  padding: 110px 0 90px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% -10%, rgba(201, 165, 72, 0.13), transparent),
    var(--bg);
}
.hero h1 { font-size: clamp(34px, 5.5vw, 58px); line-height: 1.15; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { color: var(--text-dim); max-width: 520px; margin: 0 auto 36px; font-size: 17px; }
.hero .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .trust-row {
  margin-top: 56px; display: flex; gap: 36px; justify-content: center; flex-wrap: wrap;
  color: var(--text-dim); font-size: 13px;
}
.hero .trust-row span::before { content: "◆ "; color: var(--gold); font-size: 9px; vertical-align: 2px; }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 36px; }
.section-head h2 { font-size: 28px; }
.section-head a { color: var(--gold); font-size: 14px; }

/* ---------- Product grid ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-3px); border-color: rgba(201, 165, 72, 0.45); }
.card .thumb {
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #1b1b24, #101016);
  color: var(--line);
}
.card .thumb svg { width: 56px; height: 56px; opacity: 0.5; }
.card .body { padding: 18px; }
.card .cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-dim); margin-bottom: 6px; }
.card h3 { font-size: 17px; margin-bottom: 10px; }
.card .price-row { display: flex; align-items: center; justify-content: space-between; }
.card .price { color: var(--gold-soft); font-size: 16px; font-weight: 600; }
.card .price small { color: var(--text-dim); font-weight: 400; font-size: 11px; }
.card .order { font-size: 13px; color: var(--tg); }

/* ---------- Feature strip ---------- */
.features { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.features .grid3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px; }
.feature h3 { font-size: 18px; margin-bottom: 8px; color: var(--gold-soft); }
.feature p { color: var(--text-dim); font-size: 14px; }
.feature .icon { font-size: 26px; margin-bottom: 14px; }

/* ---------- How it works ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.step { position: relative; padding: 28px 24px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: Georgia, serif; font-size: 34px; color: var(--gold); opacity: 0.85;
  display: block; margin-bottom: 12px;
}
.step h3 { font-size: 16px; margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--text-dim); }

/* ---------- TG banner ---------- */
.tg-banner {
  text-align: center;
  background:
    radial-gradient(ellipse 50% 80% at 50% 120%, rgba(42, 171, 238, 0.12), transparent),
    var(--bg);
}
.tg-banner h2 { font-size: 30px; margin-bottom: 14px; }
.tg-banner p { color: var(--text-dim); max-width: 480px; margin: 0 auto 30px; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item h3 { font-size: 17px; margin-bottom: 8px; cursor: pointer; }
.faq-item h3::before { content: "◆ "; color: var(--gold); font-size: 10px; vertical-align: 2px; }
.faq-item p { color: var(--text-dim); font-size: 14.5px; max-width: 760px; }

/* ---------- Product detail ---------- */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding-top: 48px; }
.pdp .gallery .main {
  aspect-ratio: 1/1; border-radius: var(--radius); border: 1px solid var(--line);
  background: linear-gradient(145deg, #1b1b24, #101016);
  display: flex; align-items: center; justify-content: center; color: var(--line);
}
.pdp .gallery .main svg { width: 90px; height: 90px; opacity: 0.5; }
.pdp .info .cat { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-dim); margin-bottom: 10px; }
.pdp .info h1 { font-size: 34px; margin-bottom: 16px; }
.pdp .info .price { font-size: 26px; color: var(--gold-soft); margin-bottom: 6px; }
.pdp .info .price small { font-size: 13px; color: var(--text-dim); }
.pdp .info .desc { color: var(--text-dim); margin: 20px 0 28px; font-size: 15px; }
.pdp .specs { border-top: 1px solid var(--line); margin-top: 28px; padding-top: 20px; font-size: 14px; }
.pdp .specs div { display: flex; justify-content: space-between; padding: 7px 0; color: var(--text-dim); }
.pdp .specs div b { color: var(--text); font-weight: 500; }
.order-note { margin-top: 14px; font-size: 12.5px; color: var(--text-dim); }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 44px 0; font-size: 13px; color: var(--text-dim); }
footer .cols { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
footer .disclaimer { margin-top: 18px; font-size: 12px; opacity: 0.7; max-width: 640px; }

@media (max-width: 760px) {
  .pdp { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  section { padding: 52px 0; }
  .hero { padding: 72px 0 60px; }
}
