:root {
  --bg: #0e0f13;
  --panel: #16181f;
  --panel-2: #1d2029;
  --ink: #f3f4f6;
  --muted: #9aa0ad;
  --gold: #f5c04a;
  --gold-deep: #d99a1c;
  --red: #e23b3b;
  --line: #2a2e39;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}
.wrap { width: min(1160px, 92vw); margin-inline: auto; }
h1, h2, h3 { line-height: 1.15; margin: 0; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(14, 15, 19, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark {
  font-family: "Bebas Neue", sans-serif; font-size: 30px; color: #1a1206;
  background: linear-gradient(160deg, var(--gold), var(--gold-deep));
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 10px; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}
.brand-text {
  font-family: "Bebas Neue", sans-serif; font-size: 26px; letter-spacing: 1px;
  line-height: 0.9; display: flex; flex-direction: column;
}
.brand-text small {
  font-family: "Inter", sans-serif; font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
}
.nav { display: flex; gap: 22px; font-weight: 500; color: var(--muted); }
.nav a:hover { color: var(--ink); }
.cart-btn {
  position: relative; background: var(--panel-2); border: 1px solid var(--line);
  color: var(--ink); padding: 9px 14px; border-radius: 10px; cursor: pointer; font-size: 15px;
}
.cart-btn:hover { border-color: var(--gold); }
.cart-count {
  background: var(--red); color: #fff; font-size: 12px; font-weight: 700;
  min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px;
  display: inline-grid; place-items: center; margin-left: 2px;
}

.hero {
  background:
    radial-gradient(900px 400px at 80% -20%, rgba(245, 192, 74, 0.16), transparent 60%),
    linear-gradient(180deg, #121319, #0e0f13);
  border-bottom: 1px solid var(--line);
}
.hero-inner { display: flex; align-items: center; gap: 40px; padding: 76px 0; }
.hero-copy { max-width: 560px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 3px; font-size: 12px;
  color: var(--gold); font-weight: 600; margin: 0 0 14px;
}
.hero h1 { font-family: "Bebas Neue", sans-serif; font-size: clamp(44px, 7vw, 76px); letter-spacing: 1px; }
.lede { color: var(--muted); font-size: 18px; margin: 16px 0 28px; }

.btn {
  display: inline-block; border: none; border-radius: 10px; padding: 13px 22px;
  font-weight: 600; font-size: 15px; cursor: pointer; font-family: inherit;
}
.btn-primary { background: linear-gradient(160deg, var(--gold), var(--gold-deep)); color: #1a1206; }
.btn-primary:hover { filter: brightness(1.06); }
.btn-block { width: 100%; }

.hero-reels {
  display: flex; gap: 10px; padding: 18px; background: #0a0b0e;
  border: 3px solid var(--gold-deep); border-radius: 16px; box-shadow: var(--shadow);
}
.reel {
  width: 74px; height: 110px; background: linear-gradient(180deg, #fff, #dcdcdc);
  border-radius: 8px; display: grid; place-items: center; overflow: hidden;
}
.reel span {
  font-family: "Bebas Neue", sans-serif; font-size: 68px; color: var(--red);
  animation: spin 1.4s ease-in-out infinite alternate;
}
.reel:nth-child(2) span { animation-delay: 0.15s; }
.reel:nth-child(3) span { animation-delay: 0.3s; }
@keyframes spin { from { transform: translateY(-6px); } to { transform: translateY(6px); } }

.section-head {
  display: flex; align-items: baseline; justify-content: space-between; margin: 56px 0 24px;
}
.section-head h2 { font-family: "Bebas Neue", sans-serif; font-size: 38px; letter-spacing: 1px; }
.section-head p { color: var(--muted); margin: 0; }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px; }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold-deep); }
.card-media { aspect-ratio: 1 / 1; background: #fff; display: grid; place-items: center; padding: 14px; }
.card-media img { max-width: 100%; max-height: 100%; object-fit: contain; }
.card-body { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-tag { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.card-title { font-size: 17px; font-weight: 700; }
.card-title:hover { color: var(--gold); }
.card-desc { color: var(--muted); font-size: 13.5px; flex: 1; }
.card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; gap: 8px; }
.price { font-family: "Bebas Neue", sans-serif; font-size: 24px; color: var(--gold); white-space: nowrap; }
.add-btn {
  background: var(--panel-2); border: 1px solid var(--line); color: var(--ink);
  padding: 9px 12px; border-radius: 9px; cursor: pointer; font-weight: 600;
  font-family: inherit; font-size: 13px;
}
.add-btn:hover { background: var(--gold); color: #1a1206; border-color: var(--gold); }
.add-btn.added { background: var(--red); color: #fff; border-color: var(--red); }

.strip { background: var(--panel); border-top: 1px solid var(--line); margin-top: 64px; }
.strip-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  padding: 40px 0; flex-wrap: wrap;
}
.strip h3 { font-size: 22px; }
.strip p { color: var(--muted); margin: 8px 0 0; max-width: 520px; }
.strip-badges { display: flex; gap: 22px; flex-wrap: wrap; color: var(--muted); font-weight: 500; }

/* Longform SEO copy */
.longform { max-width: 860px; padding: 56px 0 20px; }
.longform h2 {
  font-family: "Bebas Neue", sans-serif; font-size: 28px; letter-spacing: 0.5px;
  margin: 34px 0 10px; color: var(--ink);
}
.longform h2:first-child { margin-top: 0; }
.longform p { color: #c7ccd6; font-size: 16px; margin: 0 0 14px; }
.longform a { color: var(--gold); }
.longform a:hover { text-decoration: underline; }

/* Product page */
.product-page { padding-bottom: 60px; }
.crumbs { color: var(--muted); font-size: 14px; margin: 28px 0 20px; }
.crumbs a:hover { color: var(--gold); }
.crumbs span { margin: 0 6px; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.product-media { background: #fff; border-radius: var(--radius); padding: 28px; display: grid; place-items: center; }
.product-media img { max-width: 100%; max-height: 460px; object-fit: contain; }
.product-info h1 { font-family: "Bebas Neue", sans-serif; font-size: 44px; letter-spacing: 1px; margin: 8px 0 4px; }
.product-price { font-family: "Bebas Neue", sans-serif; font-size: 34px; color: var(--gold); margin: 0 0 18px; }
.product-long { color: #cfd3db; font-size: 16px; margin: 0 0 22px; }
.product-specs { list-style: none; padding: 0; margin: 0 0 26px; border-top: 1px solid var(--line); }
.product-specs li {
  display: flex; justify-content: space-between; padding: 12px 0;
  border-bottom: 1px solid var(--line); font-size: 14px;
}
.product-specs span { color: var(--muted); }
.product-note { color: var(--muted); font-size: 13px; margin-top: 16px; }
.product-note a { color: var(--gold); }

/* Text pages */
.text-page { max-width: 820px; padding: 40px 0 70px; }
.text-page h1 { font-family: "Bebas Neue", sans-serif; font-size: 46px; letter-spacing: 1px; margin-bottom: 8px; }
.text-page h2 { font-size: 20px; margin: 30px 0 8px; }
.text-page p { color: #cfd3db; margin: 10px 0; }
.text-page a { color: var(--gold); }
.muted-note { color: var(--muted); font-size: 13px; font-style: italic; margin-top: 24px; }

.contact-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 20px; }
.contact-block h2 { margin-top: 0; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 14px; color: var(--muted); }
.contact-form input, .contact-form textarea {
  background: var(--panel-2); border: 1px solid var(--line); border-radius: 8px;
  padding: 10px 12px; color: var(--ink); font-family: inherit; font-size: 15px;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.form-note { color: var(--muted); font-size: 12px; margin: 0; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); margin-top: 20px; }
.footer-inner {
  display: flex; justify-content: space-between; gap: 20px; padding: 28px 0;
  color: var(--muted); font-size: 14px; flex-wrap: wrap;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--ink); }
.footer-meta { display: flex; flex-direction: column; gap: 4px; text-align: right; }

/* Cart drawer */
.overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.55);
  opacity: 0; visibility: hidden; transition: opacity 0.2s ease; z-index: 40;
}
.overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(400px, 90vw);
  background: var(--panel); border-left: 1px solid var(--line);
  transform: translateX(100%); transition: transform 0.25s ease; z-index: 50;
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--line);
}
.cart-head h3 { font-size: 18px; }
.icon-btn { background: none; border: none; color: var(--muted); font-size: 18px; cursor: pointer; }
.icon-btn:hover { color: var(--ink); }
.cart-items { flex: 1; overflow-y: auto; padding: 12px 20px; }
.cart-empty { color: var(--muted); text-align: center; margin-top: 40px; }
.cart-line { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.cart-line img { width: 60px; height: 60px; object-fit: contain; background: #fff; border-radius: 8px; padding: 4px; }
.cart-line-info { flex: 1; min-width: 0; }
.cart-line-title { font-weight: 600; font-size: 14px; }
.cart-line-price { color: var(--gold); font-weight: 600; font-size: 14px; }
.qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.qty button { width: 24px; height: 24px; background: var(--panel-2); border: 1px solid var(--line); color: var(--ink); border-radius: 6px; cursor: pointer; }
.qty button:hover { border-color: var(--gold); }
.cart-foot { padding: 18px 20px; border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; font-size: 15px; }
.cart-total strong { font-family: "Bebas Neue", sans-serif; font-size: 28px; color: var(--gold); }

@media (max-width: 760px) {
  .hero-inner { flex-direction: column; padding: 50px 0; }
  .nav { display: none; }
  .product-grid { grid-template-columns: 1fr; }
  .contact-cols { grid-template-columns: 1fr; }
  .footer-meta { text-align: left; }
}
