:root {
  --bg: #0a0a0b;
  --bg-elev: #141417;
  --bg-card: #17171b;
  --line: #26262c;
  --text: #f2f2f3;
  --muted: #9b9ba3;
  --accent: #ff5a1f;       /* STFU orange */
  --accent-2: #ff2d2d;     /* race red */
  --ok: #3ddc84;
  --radius: 12px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(10,10,11,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: baseline; gap: 8px; }
.brand-mark {
  font-family: "Oswald", sans-serif; font-weight: 700; font-size: 28px;
  letter-spacing: 1px; color: #fff;
}
.brand-sub {
  font-family: "Oswald", sans-serif; font-weight: 500; font-size: 12px;
  letter-spacing: 4px; color: var(--accent);
}
.nav { display: flex; gap: 26px; }
.nav a { color: var(--muted); font-weight: 500; font-size: 14px; letter-spacing: .3px; transition: color .15s; }
.nav a:hover { color: var(--text); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 70% -10%, rgba(255,90,31,0.18), transparent 60%),
    linear-gradient(180deg, #0d0d0f 0%, #0a0a0b 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-inner { padding: 92px 22px 84px; max-width: 880px; }
.hero-kicker {
  text-transform: uppercase; letter-spacing: 3px; font-size: 12px;
  color: var(--accent); font-weight: 600; margin: 0 0 18px;
}
.hero-title {
  font-family: "Oswald", sans-serif; font-weight: 700;
  font-size: clamp(48px, 9vw, 104px); line-height: 0.94; letter-spacing: 1px;
  margin: 0 0 22px; text-transform: uppercase;
}
.hero-title .bang { color: var(--accent-2); }
.hero-lede { font-size: 18px; color: var(--muted); max-width: 600px; margin: 0 0 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Oswald", sans-serif; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; font-size: 14px;
  padding: 13px 26px; border-radius: var(--radius); cursor: pointer;
  border: 1px solid transparent; transition: transform .12s, background .15s, border-color .15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #0a0a0b; }
.btn-primary:hover { background: #ff6c38; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* ---------- Sections ---------- */
.section { padding: 64px 0; border-bottom: 1px solid var(--line); }
.section-head { margin-bottom: 34px; }
.section-head h2 {
  font-family: "Oswald", sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: clamp(28px, 4vw, 40px); letter-spacing: 1px; margin: 0 0 8px;
}
.section-sub { color: var(--muted); margin: 0; max-width: 680px; }

/* ---------- Grid / cards ---------- */
.grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .15s, transform .15s;
}
.card:hover { border-color: #3a3a42; transform: translateY(-2px); }
.card-media { position: relative; aspect-ratio: 4/3; background: #0e0e10; cursor: pointer; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.tag {
  position: absolute; top: 10px; left: 10px;
  font-family: "Oswald", sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 9px; border-radius: 6px;
}
.tag-instock { background: var(--ok); color: #06210f; }
.tag-bto { background: #2a2a30; color: var(--muted); border: 1px solid var(--line); }
.card-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-cat { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.card-name { font-family: "Oswald", sans-serif; font-weight: 600; font-size: 17px; line-height: 1.2; margin: 0; }
.card-price { font-family: "Oswald", sans-serif; font-weight: 700; font-size: 22px; }
.card-price .from { font-size: 12px; color: var(--muted); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }
.card-actions { margin-top: auto; display: flex; gap: 10px; align-items: center; }
.qty {
  display: inline-flex; align-items: center; border: 1px solid var(--line);
  border-radius: 9px; overflow: hidden;
}
.qty button { background: var(--bg-elev); color: var(--text); border: 0; width: 34px; height: 38px; font-size: 18px; cursor: pointer; }
.qty button:hover { background: #202026; }
.qty span { width: 34px; text-align: center; font-weight: 600; }
.card-link { font-size: 12px; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.card-link:hover { color: var(--text); }

/* ---------- About / Roxy ---------- */
.about-grid { display: grid; grid-template-columns: 1.2fr .9fr; gap: 34px; align-items: center; }
.about p { color: var(--muted); }
.about strong { color: var(--text); }
.roxy-card {
  background: linear-gradient(160deg, #1b1410, var(--bg-card));
  border: 1px solid #3a2a1e; border-radius: var(--radius); padding: 26px;
}
.roxy-badge {
  display: inline-block; font-family: "Oswald", sans-serif; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--accent);
  border: 1px solid #4a3322; padding: 5px 11px; border-radius: 20px; margin-bottom: 16px;
}
.roxy-line { font-size: 17px; font-style: italic; color: var(--text); margin: 0 0 20px; }

/* ---------- Footer ---------- */
.site-footer { background: #050506; border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding: 48px 22px 28px; }
.footer-tag { color: var(--accent); font-family: "Oswald", sans-serif; letter-spacing: 1px; margin-top: 10px; }
.footer-contact h3 { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 15px; margin: 0 0 10px; }
.footer-contact p { margin: 4px 0; color: var(--muted); }
.footer-contact a:hover { color: var(--accent); }
.footer-social { font-size: 13px; }
.footer-legal { border-top: 1px solid var(--line); padding: 18px 22px 30px; }
.footer-legal p { color: #6a6a72; font-size: 12px; margin: 0; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 60; display: flex; align-items: center; justify-content: center; padding: 22px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.72); }
.modal-card {
  position: relative; z-index: 1; background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 14px; max-width: 820px; width: 100%; max-height: 88vh; overflow: auto;
}
.modal-close { position: absolute; top: 12px; right: 14px; background: none; border: 0; color: var(--muted); font-size: 30px; cursor: pointer; line-height: 1; }
.modal-close:hover { color: var(--text); }
.modal-body { padding: 26px; }
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.modal-grid img { border-radius: 10px; border: 1px solid var(--line); }
.modal-name { font-family: "Oswald", sans-serif; font-size: 24px; margin: 0 0 6px; }
.modal-price { font-family: "Oswald", sans-serif; font-size: 26px; font-weight: 700; margin: 0 0 14px; }
.modal-desc { color: var(--muted); font-size: 14px; }
.modal-video { margin-top: 16px; aspect-ratio: 16/9; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.modal-video iframe { width: 100%; height: 100%; border: 0; }
.opt-row { margin: 12px 0; }
.opt-row label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 6px; }
.opt-row select { width: 100%; padding: 10px; background: var(--bg-elev); color: var(--text); border: 1px solid var(--line); border-radius: 8px; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
  .modal-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
}

/* Legal / policy pages */
.legal { max-width: 760px; padding: 56px 22px 72px; }
.legal h1 {
  font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 1px;
  font-size: 34px; margin: 0 0 6px;
}
.legal .updated { color: var(--muted); font-size: 13px; margin: 0 0 32px; }
.legal h2 {
  font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 1px;
  font-size: 19px; color: var(--accent); margin: 34px 0 10px;
}
.legal p, .legal li { color: #c9c9d0; line-height: 1.65; }
.legal ul { padding-left: 20px; }
.legal a { color: var(--accent); }
.legal .back { display: inline-block; margin-top: 40px; color: var(--muted); }
