/* Championship Grade — guantesboxeo.es */
:root {
  --bg: #0a0a0a;
  --surface: #1e1e1e;
  --surface-high: #2a2a2a;
  --border: #333333;
  --red: #d32f2f;
  --red-bright: #e53935;
  --gold: #e9c349;
  --amazon: #ff9900;
  --text: #e5e2e1;
  --muted: #a0a0a0;
  --max: 1280px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
h1, h2, h3, .bebas {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.05;
}
h1 { font-size: clamp(36px, 6vw, 64px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: clamp(22px, 3vw, 28px); }
a { color: var(--text); text-decoration: none; }
p { margin-bottom: 16px; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { padding: 64px 0; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky; top: 0; z-index: 50;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: .04em; }
.logo span { color: var(--red-bright); }
.nav { display: flex; gap: 28px; }
.nav a { font-size: 14px; font-weight: 700; text-transform: uppercase; color: var(--muted); }
.nav a:hover, .nav a.active { color: #fff; }
@media (max-width: 768px) { .nav { display: none; } }

/* Hero */
.hero {
  padding: 96px 0;
  background: linear-gradient(180deg, #131313 0%, #0a0a0a 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.hero .kicker {
  color: var(--red-bright); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .15em; margin-bottom: 16px;
}
.hero p.lead { color: var(--muted); max-width: 640px; margin: 20px auto 32px; font-size: 18px; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: .05em;
  border: 0; cursor: pointer;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-bright); }
.btn-ghost { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-ghost:hover { background: #fff; color: #0a0a0a; }
.btn-amazon { background: var(--amazon); color: #0a0a0a; }
.btn-amazon:hover { filter: brightness(1.1); }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* Section heads */
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .tag {
  display: inline-block; background: var(--red); color: #fff;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; padding: 4px 12px; margin-bottom: 16px;
}
.section-head p { color: var(--muted); max-width: 560px; margin: 12px auto 0; }

/* Product cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1024px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }
.card {
  background: var(--surface); border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.card .card-img {
  background: #fff; padding: 24px; height: 240px;
  display: flex; align-items: center; justify-content: center;
}
.card .card-img img { max-height: 100%; width: auto; }
.card .card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.card h3 { font-size: 24px; }
.card .desc { color: var(--muted); font-size: 14px; flex: 1; }
.rating { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--gold); letter-spacing: .05em; }
.rating small { font-family: 'Montserrat', sans-serif; font-size: 12px; color: var(--muted); letter-spacing: 0; }
.price { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: #fff; }
.price small { font-size: 14px; color: var(--muted); font-family: 'Montserrat', sans-serif; }

/* Badges */
.badge {
  display: inline-block; padding: 4px 10px; font-size: 11px;
  font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  align-self: flex-start;
}
.badge-gold { background: var(--gold); color: #0a0a0a; }
.badge-red { background: var(--red); color: #fff; }
.badge-grey { background: var(--surface-high); color: var(--muted); }

/* Comparison table */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); }
table.compare { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 720px; }
table.compare th {
  font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: .05em;
  text-align: left; padding: 14px 16px; background: var(--surface-high);
  border-bottom: 1px solid var(--border);
}
table.compare td { padding: 14px 16px; border-bottom: 1px solid var(--border); }
table.compare tr:nth-child(even) td { background: var(--surface); }
table.compare .winner td { border-left: 4px solid var(--gold); }
table.compare a.tlink { color: var(--gold); font-weight: 700; }

/* Review blocks */
.review {
  background: var(--surface); border: 1px solid var(--border);
  padding: 32px; margin-bottom: 32px;
  display: grid; grid-template-columns: 280px 1fr; gap: 32px;
}
@media (max-width: 768px) { .review { grid-template-columns: 1fr; } }
.review .rimg { background: #fff; padding: 20px; display: flex; align-items: center; justify-content: center; }
.review .rimg img { max-height: 240px; width: auto; }
.review h3 { margin-bottom: 4px; }
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 16px 0; }
@media (max-width: 640px) { .proscons { grid-template-columns: 1fr; } }
.proscons ul { list-style: none; font-size: 14px; }
.proscons li { padding: 5px 0 5px 22px; position: relative; color: var(--muted); }
.pros li::before { content: "+"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.cons li::before { content: "−"; position: absolute; left: 0; color: var(--red-bright); font-weight: 700; }
.proscons h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }

/* Category tiles */
.tile {
  position: relative; border: 1px solid var(--border); background: var(--surface);
  padding: 28px; min-height: 180px; display: flex; flex-direction: column; justify-content: flex-end;
}
.tile .oz { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: var(--red-bright); }
.tile p { color: var(--muted); font-size: 14px; margin: 6px 0 14px; }
.tile a.more { color: var(--gold); font-size: 13px; font-weight: 700; text-transform: uppercase; }

/* Prose / article */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { margin: 48px 0 16px; }
.prose h3 { margin: 32px 0 12px; }
.prose ul, .prose ol { margin: 0 0 16px 24px; color: var(--text); }
.prose li { margin-bottom: 8px; }
.prose strong { color: #fff; }
.breadcrumbs { font-size: 13px; color: var(--muted); padding: 20px 0 0; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: #fff; }

/* FAQ */
.faq details { border-bottom: 1px solid var(--border); padding: 4px 0; }
.faq summary {
  cursor: pointer; font-weight: 700; padding: 16px 0;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq summary::after { content: "+"; color: var(--red-bright); font-size: 22px; }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--muted); padding-bottom: 16px; }

/* Disclosure */
.disclosure {
  background: var(--surface); border: 1px solid var(--border);
  font-size: 13px; color: var(--muted); padding: 14px 18px; margin: 24px 0;
}

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 48px 0 32px; margin-top: 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: var(--muted); font-size: 14px; }
.site-footer a:hover { color: #fff; }
.site-footer .fine { color: #666; font-size: 12px; border-top: 1px solid var(--border); padding-top: 20px; }
