/* =========================================================
   AGGRO.SHOP — Sistema de diseño tenebroso
   ========================================================= */

:root {
  --bg: #060606;
  --bg-2: #0c0a0a;
  --ink: #ededed;
  --ink-dim: #8a8a8a;
  --bone: #d8cdbf;
  --blood: #b81212;
  --blood-bright: #e22020;
  --blood-dark: #6b0a0a;
  --border: rgba(255, 255, 255, 0.08);
  --shadow-red: 0 0 40px rgba(184, 18, 18, 0.35);
  --shadow-deep: 0 30px 60px -20px rgba(0, 0, 0, 0.9);
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --display: "Cinzel Decorative", "Cinzel", serif;
  --mono: "JetBrains Mono", "Space Mono", ui-monospace, monospace;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; overflow-x: hidden; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.01em;
  cursor: none;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; color: inherit; cursor: none; font: inherit; }

/* =========================================================
   RUIDO + VIÑETA + SCANLINES ATMOSFÉRICAS
   ========================================================= */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
  opacity: 0.06;
  mix-blend-mode: overlay;
  will-change: transform;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.55) 90%);
}

/* =========================================================
   CURSOR CUSTOM (GOTA DE SANGRE)
   ========================================================= */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px var(--blood-bright), 0 0 18px rgba(226, 32, 32, 0.7);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
  will-change: transform;
}
.cursor.is-hover { background: var(--blood-bright); }
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(226, 32, 32, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor.is-hover { width: 22px; height: 22px; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  background: linear-gradient(to bottom, rgba(6, 6, 6, 0.85), rgba(6, 6, 6, 0));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav .brand {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: #fff;
  position: relative;
}
.nav .brand .dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--blood-bright);
  border-radius: 50%;
  margin: 0 4px;
  vertical-align: middle;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px var(--blood-bright); }
  50% { opacity: 0.5; transform: scale(0.7); box-shadow: 0 0 0 var(--blood-bright); }
}
.nav .links {
  display: flex;
  gap: 32px;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.nav .links a {
  position: relative;
  padding-bottom: 3px;
}
.nav .links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--blood-bright);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav .links a:hover::after { width: 100%; }

.nav .cart {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 16px;
  border-radius: 100px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 20px 80px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(184, 18, 18, 0.15), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(139, 0, 0, 0.2), transparent 60%);
  z-index: 0;
}

.hero .drip-svg {
  position: absolute;
  top: 0; left: 0; right: 0;
  width: 100%;
  height: 140px;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 4px 20px rgba(226, 32, 32, 0.5));
}

.hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(4rem, 14vw, 12rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 50px rgba(226, 32, 32, 0.3);
}
.hero h1 .split {
  display: inline-block;
  position: relative;
}
.hero h1 .accent {
  color: var(--blood-bright);
  font-style: italic;
  position: relative;
}
.hero h1 .accent::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  width: 4px; height: 4px;
  background: var(--blood-bright);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}

.hero .subtitle {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero .cta-row {
  margin-top: 56px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.btn {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  padding: 18px 36px;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blood-bright);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: #fff; border-color: var(--blood-bright); }
.btn.primary { background: var(--blood); border-color: var(--blood); }
.btn.primary::before { background: #fff; }
.btn.primary:hover { color: var(--blood); }

.hero-marquee {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  overflow: hidden;
  white-space: nowrap;
  z-index: 2;
  opacity: 0.6;
}
.marquee-track {
  display: inline-block;
  animation: marquee 25s linear infinite;
  font-family: var(--display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--bone);
}
.marquee-track span {
  margin-right: 40px;
}
.marquee-track span:nth-child(odd) { color: var(--blood-bright); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   SECCIONES GENERALES
   ========================================================= */
section {
  position: relative;
  padding: 120px 40px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}
.section-head .eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--blood-bright);
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 800px;
}
.section-head h2 em {
  color: var(--blood-bright);
  font-style: italic;
}
.section-head p {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink-dim);
  max-width: 420px;
  font-style: italic;
}

/* =========================================================
   FILTROS
   ========================================================= */
.filters {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-pill {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: transparent;
  color: var(--ink-dim);
  cursor: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.filter-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blood);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}
.filter-pill:hover { color: #fff; border-color: var(--blood); }
.filter-pill:hover::before { transform: translateY(0); }
.filter-pill.active {
  background: var(--blood);
  border-color: var(--blood);
  color: #fff;
  box-shadow: 0 0 20px rgba(226, 32, 32, 0.35);
}
.filter-pill .count {
  margin-left: 6px;
  opacity: 0.6;
  font-size: 0.6rem;
}
.filter-pill.clear {
  color: var(--blood-bright);
  border-color: var(--blood);
  margin-left: auto;
}
.filter-pill.clear::before { background: var(--blood-bright); }
.filter-pill.clear:hover { color: #fff; }
.result-count {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ink-dim);
  margin-bottom: 24px;
}
.result-count .hot { color: var(--blood-bright); }

.product-grid.empty::after {
  content: "No se encontraron piezas en este culto.";
  grid-column: 1 / -1;
  padding: 80px 20px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-dim);
  font-size: 1.2rem;
}

/* =========================================================
   GRID PRODUCTOS
   ========================================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.product-card {
  position: relative;
  background: var(--bg);
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: none;
  isolation: isolate;
}
.product-card .img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  opacity: 0.78;
}
.product-card:hover img {
  transform: scale(1.06);
  opacity: 1;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.product-card:hover::before { opacity: 0; }
.product-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 40%, transparent 70%);
  z-index: 1;
}
.product-card .card-info {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  z-index: 2;
  transform: translateY(12px);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card:hover .card-info { transform: translateY(0); }
.product-card .card-cat {
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--blood-bright);
  margin-bottom: 8px;
}
.product-card .card-title {
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1.05;
  margin-bottom: 6px;
}
.product-card .card-price {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--bone);
}
.product-card .card-price .mxn {
  color: var(--ink-dim);
  margin-left: 6px;
  font-size: 0.7rem;
}
.product-card::after {
  content: "VER →";
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s, transform 0.4s;
  z-index: 3;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.4);
}
.product-card:hover::after { opacity: 1; transform: translateY(0); }

.product-card .drip {
  position: absolute;
  top: -2px;
  left: 0; right: 0;
  height: 30px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 30' preserveAspectRatio='none'><path d='M0,0 L0,8 Q10,20 20,8 T40,6 T60,12 T80,4 T100,14 T120,6 T140,18 T160,2 T180,10 T200,16 T220,4 T240,12 T260,8 T280,14 L300,8 L300,0 Z' fill='%23e22020'/></svg>");
  background-size: 100% 100%;
  z-index: 3;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.product-card:hover .drip { transform: scaleY(1); }

/* =========================================================
   FEATURED STRIP
   ========================================================= */
.featured-strip {
  background: var(--bg-2);
  padding: 80px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.featured-track {
  display: flex;
  gap: 30px;
  white-space: nowrap;
  animation: scroll-x 60s linear infinite;
}
.featured-track:hover { animation-play-state: paused; }
.featured-item {
  flex: 0 0 auto;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px var(--ink);
  transition: color 0.4s, -webkit-text-stroke 0.4s;
}
.featured-item:hover {
  color: var(--blood-bright);
  -webkit-text-stroke: 1px var(--blood-bright);
}
.featured-item .star {
  color: var(--blood-bright);
  -webkit-text-stroke: 0;
  margin: 0 30px;
  font-style: normal;
}
@keyframes scroll-x {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   MANIFESTO
   ========================================================= */
.manifesto {
  padding: 160px 40px;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(139, 0, 0, 0.15), transparent 70%);
  position: relative;
}
.manifesto p {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 1.35;
  max-width: 900px;
  margin: 0 auto;
  font-style: italic;
  color: var(--bone);
}
.manifesto p span {
  color: var(--blood-bright);
  font-weight: 500;
  display: inline-block;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  padding: 80px 40px 30px;
  background: #020202;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
.footer-brand {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px var(--ink);
}
.footer-brand .hot { color: var(--blood-bright); -webkit-text-stroke: 0; }
.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--blood-bright);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--ink-dim);
  padding: 6px 0;
  transition: color 0.3s, transform 0.3s;
}
.footer-col a:hover {
  color: var(--ink);
  transform: translateX(4px);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

/* =========================================================
   BLOOD SPLATTER ON CLICK
   ========================================================= */
.splatter {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='50' cy='50' r='15' fill='%23e22020'/><circle cx='25' cy='30' r='5' fill='%23b81212'/><circle cx='75' cy='25' r='7' fill='%23e22020'/><circle cx='80' cy='70' r='6' fill='%23b81212'/><circle cx='20' cy='75' r='4' fill='%23e22020'/><circle cx='60' cy='15' r='3' fill='%23b81212'/><circle cx='15' cy='50' r='3' fill='%23e22020'/><circle cx='88' cy='50' r='4' fill='%23b81212'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%) scale(0);
  animation: splat 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes splat {
  0% { transform: translate(-50%, -50%) scale(0) rotate(0deg); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.8) rotate(90deg); opacity: 0; }
}

/* =========================================================
   SCRAMBLE
   ========================================================= */
.scr-glitch {
  color: var(--blood-bright);
  text-shadow: 0 0 8px rgba(226, 32, 32, 0.6);
  font-family: var(--mono);
  font-style: normal;
  display: inline-block;
  animation: scr-jit 0.08s steps(2) infinite;
}
@keyframes scr-jit {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1px); }
}

/* =========================================================
   PRODUCT PAGE
   ========================================================= */
.product-detail {
  min-height: 100vh;
  padding: 120px 40px 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.product-hero {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--border);
}
.product-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) brightness(0.9);
}
.product-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.6));
  pointer-events: none;
}
.product-meta {
  padding-top: 20px;
}
.product-meta .breadcrumb {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ink-dim);
  margin-bottom: 40px;
}
.product-meta .breadcrumb a { color: var(--blood-bright); }
.product-meta .cat-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blood-bright);
  padding: 6px 12px;
  border: 1px solid var(--blood);
  border-radius: 100px;
  margin-bottom: 20px;
}
.product-meta h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.product-meta .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--bone);
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 2px solid var(--blood);
}
.product-meta .price {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
}
.product-meta .price .currency {
  font-family: var(--mono);
  font-size: 1rem;
  color: var(--ink-dim);
  margin-left: 8px;
  vertical-align: top;
  line-height: 3;
}
.product-meta .description {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 30px;
}
.product-meta .char-box {
  background: var(--bg-2);
  border-left: 3px solid var(--blood);
  padding: 24px 28px;
  margin-bottom: 30px;
}
.product-meta .char-box h4 {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blood-bright);
  margin-bottom: 10px;
}
.product-meta .char-box p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--bone);
  line-height: 1.6;
}
.product-meta .intent {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--blood-bright);
  margin-bottom: 40px;
}
.materials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  margin-bottom: 40px;
}
.materials-grid .mat {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 20px;
}
.materials-grid .mat .label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 6px;
}
.materials-grid .mat .val {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
}
.size-row {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.size-pill {
  padding: 12px 20px;
  border: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  border-radius: 100px;
  cursor: none;
  transition: all 0.3s ease;
}
.size-pill:hover, .size-pill.active {
  background: var(--blood);
  border-color: var(--blood);
  color: #fff;
}
.cta-row-detail {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-row-detail .btn {
  flex: 1;
  justify-content: center;
  min-width: 200px;
}

.related {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}
.related h3 {
  font-family: var(--display);
  font-size: 2rem;
  margin-bottom: 40px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

/* =========================================================
   REVEAL UTILITIES (GSAP hook)
   ========================================================= */
[data-reveal] { opacity: 0; }
[data-split] > * { display: inline-block; }

/* =========================================================
   TOAST
   ========================================================= */
.aggro-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--blood) 0%, #5a0808 100%);
  color: #fff;
  padding: 16px 24px;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 10000;
  box-shadow: 0 10px 40px rgba(184, 18, 18, 0.5), 0 0 0 1px rgba(255,255,255,0.1);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  pointer-events: none;
}
.aggro-toast.show { transform: translateY(0); opacity: 1; }

/* =========================================================
   CART PAGE
   ========================================================= */
.cart-page {
  min-height: 100vh;
  padding: 140px 40px 80px;
  max-width: 1300px;
  margin: 0 auto;
}
.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
}
.cart-head h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.cart-head h1 em { color: var(--blood-bright); font-style: italic; }
.cart-head .cart-meta {
  font-family: var(--mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ink-dim);
}
.cart-head .cart-meta .hot { color: var(--blood-bright); }

.cart-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: start;
}

#cart-items { display: flex; flex-direction: column; gap: 0; }
.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.cart-item .ci-img {
  width: 120px;
  height: 150px;
  overflow: hidden;
  background: var(--bg-2);
  display: block;
}
.cart-item .ci-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cart-item .ci-img:hover img { transform: scale(1.06); }
.cart-item .ci-name {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.cart-item .ci-name:hover { color: var(--blood-bright); }
.cart-item .ci-meta {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--ink-dim);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.cart-item .ci-meta span { color: var(--ink); }
.cart-item .ci-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 100px;
  overflow: hidden;
}
.qty-btn {
  width: 36px;
  height: 36px;
  font-family: var(--mono);
  font-size: 1rem;
  color: var(--ink);
  cursor: none;
  transition: background 0.2s;
}
.qty-btn:hover { background: var(--blood); color: #fff; }
.qty-val {
  min-width: 36px;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.9rem;
}
.ci-remove {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 8px 14px;
  cursor: none;
  transition: color 0.3s;
}
.ci-remove:hover { color: var(--blood-bright); }
.ci-subtotal {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}
.ci-subtotal .mxn {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--ink-dim);
  letter-spacing: 0.2em;
}

#cart-summary {
  position: sticky;
  top: 120px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  padding: 32px;
}
#cart-summary h3 {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blood-bright);
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.sum-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink-dim);
}
.sum-row.total {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 700;
}
.sum-row.total span:last-child { color: var(--blood-bright); }
.sum-row.shipping span:last-child { color: var(--ink); font-family: var(--mono); font-size: 0.8rem; }
#cart-summary .btn { width: 100%; justify-content: center; margin-top: 24px; }
.summary-note {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: center;
  margin-top: 20px;
}

#cart-empty {
  display: none;
  text-align: center;
  padding: 100px 20px;
  grid-column: 1 / -1;
}
#cart-empty .empty-art {
  font-family: var(--display);
  font-size: 8rem;
  color: var(--blood-dark);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.4;
}
#cart-empty p {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--ink-dim);
  margin-bottom: 30px;
}
#cart-empty .btn { display: inline-flex; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor, .cursor-ring, .trail { display: none; }
  a, button, .size-pill, .product-card { cursor: pointer; }
  .nav { padding: 16px 20px; }
  .nav .links { display: none; }
  section { padding: 80px 20px; }
  .product-detail {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 100px 20px 60px;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-page { padding: 100px 20px 60px; }
  .cart-layout { grid-template-columns: 1fr; gap: 40px; }
  .cart-item { grid-template-columns: 80px 1fr; gap: 16px; }
  .cart-item .ci-img { width: 80px; height: 100px; }
  .cart-item .ci-subtotal { grid-column: 2; text-align: left; font-size: 1.2rem; margin-top: 10px; }
  #cart-summary { position: static; }
  .aggro-toast { right: 20px; left: 20px; bottom: 20px; text-align: center; }
}
