:root {
  --bg: #090708;
  --panel: #120b0d;
  --panel-2: #1b0e12;
  --text: #f6efec;
  --muted: #a89591;
  --border: rgba(255,255,255,.08);
  --red: #b8152d;
  --red-bright: #ef2649;
  --gold: #d4a35f;
  --shadow: 0 24px 70px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(184,21,45,.12), transparent 34%),
    radial-gradient(circle at 90% 12%, rgba(96,18,29,.12), transparent 30%),
    var(--bg);
  font-family: "Inter", system-ui, sans-serif;
}
body.cart-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

.ambient {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .12;
  pointer-events: none;
  z-index: -1;
}
.ambient-one { top: 18%; left: -160px; background: var(--red-bright); }
.ambient-two { right: -180px; bottom: 12%; background: var(--gold); opacity: .06; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 78px;
  padding: 0 clamp(22px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: rgba(9,7,8,.82);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}
.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239,38,73,.45);
  background: linear-gradient(145deg, rgba(184,21,45,.28), rgba(20,8,11,.8));
  font-family: "Pirata One", serif;
  font-size: 24px;
  box-shadow: inset 0 0 24px rgba(239,38,73,.08), 0 0 24px rgba(184,21,45,.08);
}
.brand > span:last-child { display: grid; gap: 2px; }
.brand strong { font-size: 12px; }
.brand small { color: var(--gold); font-size: 8px; letter-spacing: .22em; }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links > a { color: #baa8a4; font-size: 12px; font-weight: 600; }
.nav-links > a:hover { color: var(--text); }
.cart-button {
  border: 1px solid rgba(239,38,73,.25);
  background: rgba(184,21,45,.08);
  padding: 10px 14px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cart-button span {
  margin-left: 8px;
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--red-bright);
  color: white;
}
.menu-toggle { display: none; }

.hero {
  min-height: calc(100vh - 78px);
  padding: clamp(80px, 10vw, 150px) clamp(22px, 7vw, 110px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}
.hero-copy { max-width: 760px; }
.eyebrow, .kicker {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .22em;
}
.hero h1,
.section-heading h2,
.split-section h2,
.cart-header h2 {
  margin: 16px 0 20px;
  font-family: "Pirata One", serif;
  font-weight: 400;
  line-height: .98;
}
.hero h1 { font-size: clamp(64px, 8vw, 118px); }
.hero h1 em { color: var(--red-bright); font-style: normal; }
.hero-copy > p {
  max-width: 650px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
.hero-actions { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.btn-primary {
  background: linear-gradient(135deg, #cc1734, #8d0d21);
  box-shadow: 0 14px 34px rgba(184,21,45,.22);
}
.btn-primary:hover { filter: brightness(1.08); }
.btn-primary:disabled { opacity: .45; cursor: not-allowed; filter: none; }
.btn-secondary { border-color: var(--border); background: rgba(255,255,255,.025); }
.btn-secondary:hover { border-color: rgba(255,255,255,.17); background: rgba(255,255,255,.045); }
.trust-row { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 18px; color: #8f7e7a; font-size: 10px; }

.hero-card {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(239,38,73,.18);
  background:
    radial-gradient(circle at 50% 35%, rgba(239,38,73,.18), transparent 34%),
    linear-gradient(160deg, rgba(31,12,16,.92), rgba(9,7,8,.98));
  box-shadow: var(--shadow);
}
.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  inset: 44px;
  border: 1px solid rgba(212,163,95,.08);
  transform: rotate(45deg);
}
.hero-card::after { inset: 86px; border-color: rgba(239,38,73,.09); transform: rotate(-45deg); }
.sigil {
  position: relative;
  z-index: 1;
  font-family: "Pirata One", serif;
  font-size: 180px;
  color: rgba(239,38,73,.85);
  text-shadow: 0 0 50px rgba(239,38,73,.18);
}
.hero-card-copy {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  padding: 20px;
  display: grid;
  gap: 7px;
  border: 1px solid var(--border);
  background: rgba(8,6,7,.82);
  backdrop-filter: blur(14px);
}
.hero-card-copy small { color: var(--gold); font-size: 8px; font-weight: 800; letter-spacing: .18em; }
.hero-card-copy strong { font-size: 20px; }
.hero-card-copy span { color: var(--muted); font-size: 11px; }

.section { padding: 110px clamp(22px, 7vw, 110px); }
.section-heading { max-width: 800px; margin-bottom: 46px; }
.section-heading h2, .split-section h2 { font-size: clamp(44px, 5vw, 72px); }
.section-heading p, .split-section > div:first-child p { color: var(--muted); line-height: 1.8; max-width: 670px; }

.category-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.category-tab {
  padding: 10px 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  cursor: pointer;
  color: #9f8d89;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.category-tab.active { color: white; border-color: rgba(239,38,73,.28); background: rgba(184,21,45,.1); }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-card {
  position: relative;
  min-height: 520px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background: linear-gradient(150deg, rgba(28,13,16,.8), rgba(10,7,8,.96));
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.product-card.hidden { display: none; }
.product-card.featured { border-color: rgba(239,38,73,.34); box-shadow: 0 24px 70px rgba(184,21,45,.1); }
.featured-badge {
  position: absolute;
  top: 0;
  right: 24px;
  transform: translateY(-50%);
  padding: 7px 10px;
  background: var(--red-bright);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
}
.product-topline { display: flex; justify-content: space-between; color: #7f6f6c; font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.product-icon {
  width: 72px;
  height: 72px;
  margin: 30px 0 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239,38,73,.18);
  background: rgba(184,21,45,.06);
  color: var(--red-bright);
  font-family: "Pirata One", serif;
  font-size: 32px;
}
.product-card h3 { margin: 0 0 12px; font-size: 24px; }
.product-card > p { color: var(--muted); font-size: 12px; line-height: 1.75; }
.product-card ul { margin: 22px 0 30px; padding: 0; list-style: none; display: grid; gap: 10px; color: #baa7a3; font-size: 11px; }
.product-card li::before { content: "✦"; margin-right: 8px; color: var(--red-bright); }
.product-footer { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.product-footer strong { font-size: 20px; }
.add-to-cart {
  padding: 11px 14px;
  border: 1px solid rgba(239,38,73,.24);
  background: rgba(184,21,45,.08);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.add-to-cart:hover { background: rgba(184,21,45,.15); }

.split-section { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(50px, 8vw, 110px); align-items: start; }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.benefit-grid article { min-height: 180px; padding: 24px; border: 1px solid var(--border); background: rgba(255,255,255,.02); }
.benefit-grid span { color: var(--red-bright); font-family: "Pirata One", serif; font-size: 24px; }
.benefit-grid strong { display: block; margin-top: 24px; font-size: 15px; }
.benefit-grid p { color: var(--muted); font-size: 11px; line-height: 1.7; }

.faq-list { max-width: 900px; display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--border); background: rgba(255,255,255,.02); padding: 18px 20px; }
.faq-list summary { cursor: pointer; font-weight: 700; font-size: 13px; }
.faq-list p { color: var(--muted); font-size: 12px; line-height: 1.8; max-width: 760px; }

footer {
  padding: 34px clamp(22px, 7vw, 110px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--border);
  color: #7f6f6c;
  font-size: 10px;
}
.footer-links { display: flex; gap: 18px; }
.footer-links a:hover { color: var(--text); }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: min(460px, 100%);
  height: 100vh;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .28s ease;
  border-left: 1px solid var(--border);
  background: #0c0809;
  box-shadow: -30px 0 90px rgba(0,0,0,.45);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.cart-header h2 { font-size: 34px; margin: 8px 0 0; }
.cart-close { width: 40px; height: 40px; border: 1px solid var(--border); background: transparent; cursor: pointer; font-size: 24px; }
.cart-items { margin-top: 28px; display: grid; gap: 10px; overflow: auto; }
.cart-item { padding: 15px; display: grid; grid-template-columns: 1fr auto; gap: 8px 16px; border: 1px solid var(--border); background: rgba(255,255,255,.02); }
.cart-item strong { font-size: 13px; }
.cart-item span { color: var(--gold); font-size: 12px; }
.cart-item button { grid-column: 1 / -1; justify-self: start; padding: 0; border: 0; background: transparent; cursor: pointer; color: #8f7e7a; font-size: 10px; }
.cart-empty { margin: 40px 0; color: var(--muted); font-size: 12px; }
.cart-summary { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border); display: grid; gap: 14px; }
.cart-summary > div { display: flex; justify-content: space-between; align-items: center; }
.cart-summary strong { font-size: 22px; }
.cart-summary small { color: #7f6f6c; font-size: 9px; text-align: center; }
.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  border: 0;
  background: rgba(0,0,0,.64);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}
.cart-backdrop.show { opacity: 1; visibility: visible; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 120;
  transform: translate(-50%, 20px);
  padding: 12px 16px;
  border: 1px solid rgba(239,38,73,.22);
  background: #160b0e;
  color: white;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  font-size: 11px;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 980px) {
  .hero, .split-section { grid-template-columns: 1fr; }
  .hero-card { min-height: 380px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .site-header { height: 68px; }
  .menu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 4px;
    border: 1px solid var(--border);
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span { width: 18px; height: 1px; background: white; }
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    padding: 20px 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    background: rgba(9,7,8,.98);
  }
  .nav-links.open { display: flex; }
  .nav-links > a, .cart-button { padding: 13px 0; text-align: left; border: 0; background: transparent; }
  .hero { min-height: auto; padding-top: 90px; }
  .hero h1 { font-size: clamp(54px, 18vw, 78px); }
  .product-grid, .benefit-grid { grid-template-columns: 1fr; }
  .product-card { min-height: auto; }
  footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; }
}
