/* ---------- Fuentes alojadas en la propia web (sin Google Fonts) ---------- */
@font-face { font-family: "Anton"; font-style: normal; font-weight: 400; font-display: swap; src: url(../assets/fonts/anton-latin-ext-400-normal.woff2) format("woff2"); unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF; }
@font-face { font-family: "Anton"; font-style: normal; font-weight: 400; font-display: swap; src: url(../assets/fonts/anton-latin-400-normal.woff2) format("woff2"); unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 200 800; font-display: swap; src: url(../assets/fonts/manrope-latin-ext-wght-normal.woff2) format("woff2"); unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF; }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 200 800; font-display: swap; src: url(../assets/fonts/manrope-latin-wght-normal.woff2) format("woff2"); unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; }

/* =========================================================
   PONTE LA 10 — hoja de estilos principal
   Paleta: negro puro (fondo real del logo) + dorado de marca
   Tipografía: Anton (titulares, estilo dorsal) + Manrope (texto)
   ========================================================= */

:root {
  /* Color */
  --bg: #000000;
  --bg-elevated: #121212;
  --bg-elevated-2: #1a1a1a;
  --border: #2a2a2a;
  --border-soft: #232323;
  --gold: #f5b942;
  --gold-deep: #c9922a;
  --gold-soft: rgba(245, 185, 66, 0.14);
  --white: #ffffff;
  --text-muted: #b7b3a8;
  --text-faint: #7a7770;

  /* Tipografía */
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;

  /* Layout */
  --space-page: 20px;
  --max-width: 1240px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --header-h: 76px;
}

@media (min-width: 750px) {
  :root { --space-page: 40px; }
}
@media (min-width: 1100px) {
  :root { --space-page: 64px; }
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 400; letter-spacing: 0.01em; }
p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

.wrap {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-page);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-gold {
  background: var(--gold);
  color: #141005;
}
.btn-gold:hover { background: #ffca5c; }

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-instagram {
  position: relative;
  background: linear-gradient(135deg, #833ab4 0%, #c13584 50%, #e1306c 100%);
  color: #ffffff;
}
.btn-instagram:hover { filter: brightness(1.12); }

.btn-instagram.is-copiado::after {
  content: "✓ Copiado — pégalo en el chat de Instagram";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 8px;
  background: #141005;
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  z-index: 5;
}

.btn-block { width: 100%; }
.btn-sm { padding: 10px 16px; font-size: 0.85rem; }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Cabecera ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img { height: 44px; width: 44px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand-name span { color: var(--gold); }

.main-nav {
  display: none;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  white-space: nowrap;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
@media (min-width: 900px) and (max-width: 1119px) {
  .main-nav ul { gap: 14px; }
  .main-nav a { font-size: 0.85rem; }
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  border-color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  margin-inline: auto;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: #000;
  z-index: 99;
  padding: 24px var(--space-page) 40px;
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 16px 4px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  border-bottom: 1px solid var(--border-soft);
  color: var(--white);
}
.mobile-nav .btn { margin-top: 24px; }

@media (min-width: 980px) {
  .main-nav { display: block; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: 56px 64px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  display: grid;
  gap: 40px;
  align-items: center;
}
.hero-copy {
  opacity: 0;
  transform: translateY(14px);
  animation: hero-in 0.6s ease forwards 0.1s;
}
.hero-visual {
  opacity: 0;
  transform: translateY(14px) scale(0.97);
  animation: hero-in 0.7s ease forwards 0.25s;
  justify-self: center;
}
@keyframes hero-in {
  to { opacity: 1; transform: none; }
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.2rem);
  line-height: 0.98;
  text-transform: uppercase;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero p.lead {
  margin-top: 22px;
  max-width: 46ch;
  color: var(--text-muted);
  font-size: 1.08rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
}
.hero-stats div span {
  font-size: 0.82rem;
  color: var(--text-faint);
}

@media (min-width: 900px) {
  .hero .wrap { grid-template-columns: 1.05fr 0.95fr; }
  .hero { padding-block: 90px 100px; }
}

/* ---------- Franja de confianza ---------- */
.trust-strip {
  border-bottom: 1px solid var(--border-soft);
  padding-block: 28px;
}
.trust-strip ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.trust-strip li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.trust-strip svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
@media (min-width: 700px) {
  .trust-strip ul { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Secciones generales ---------- */
.section { padding-block: 64px; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-transform: uppercase;
}
.section-head p {
  color: var(--text-muted);
  max-width: 48ch;
  margin-top: 10px;
}
.section-alt { background: var(--bg-elevated); }

/* ---------- Grid de ligas ---------- */
.leagues-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .leagues-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .leagues-grid { grid-template-columns: repeat(3, 1fr); } }

.league-card {
  position: relative;
  padding: 26px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.league-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.league-card .flag { font-size: 1.6rem; }
.league-card h3 {
  margin-top: 14px;
  font-size: 1.35rem;
  text-transform: uppercase;
}
.league-card .country {
  color: var(--text-faint);
  font-size: 0.82rem;
  margin-top: 4px;
  display: block;
}
.league-card .count {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 700;
}
.league-card .arrow {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 30px; height: 30px;
  color: var(--text-faint);
  transition: color 0.18s ease, transform 0.18s ease;
}
.league-card:hover .arrow { color: var(--gold); transform: translate(3px, -3px); }

/* ---------- Grid de productos ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.product-card:hover { border-color: var(--gold-deep); transform: translateY(-3px); }

.product-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-elevated-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.product-visual svg { width: 100%; height: 100%; }
.product-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
.product-visual-escudo { padding: 10px; }
.product-visual-escudo img { object-fit: contain; }

/* ---------- Tarjeta de producto: zona clicable + acciones ---------- */
.product-card-link {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  color: inherit;
}
.product-card-actions {
  padding: 0 16px 16px;
}
.sample-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid var(--border);
  color: var(--text-faint);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
}
.league-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
}

.product-info {
  padding: 14px 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.product-info h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.25;
}
.product-meta {
  font-size: 0.78rem;
  color: var(--text-faint);
}
.product-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  margin-top: 2px;
}
.product-info .product-price { margin-top: auto; }

/* ---------- Icono de camiseta ilustrado ---------- */
.jersey-icon { filter: drop-shadow(0 6px 14px rgba(0,0,0,0.45)); }

/* ---------- Catálogo: filtros ---------- */
.catalog-toolbar {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-soft);
  padding-block: 18px;
  margin-bottom: 32px;
}
.catalog-toolbar .wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.search-field {
  position: relative;
}
.search-field input {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px 12px 42px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.search-field input::placeholder { color: var(--text-faint); }
.search-field input:focus { border-color: var(--gold); outline: none; }
.search-field svg {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: var(--text-faint);
}
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 600;
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}
.chip:hover { border-color: var(--gold-deep); color: var(--white); }
.chip.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: #141005;
}
.results-count {
  font-size: 0.82rem;
  color: var(--text-faint);
}
.empty-state {
  padding: 60px 20px;
  text-align: center;
  color: var(--text-muted);
}
.empty-state h3 { font-size: 1.4rem; margin-bottom: 10px; }

/* ---------- CTA de cierre ---------- */
.cta-band {
  background: linear-gradient(135deg, #1a1204, #000 60%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 48px var(--space-page);
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); text-transform: uppercase; }
.cta-band p { color: var(--text-muted); margin-top: 12px; max-width: 50ch; margin-inline: auto; }
.cta-band .hero-ctas { justify-content: center; margin-top: 26px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border-soft);
  padding-block: 56px 28px;
  background: var(--bg-elevated);
}
.footer-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 40px; width: 40px; }
.footer-tag { color: var(--text-faint); font-size: 0.85rem; margin-top: 12px; max-width: 34ch; }
.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-muted); font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-faint);
}
@media (min-width: 780px) {
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
}

/* ---------- Botón flotante de Instagram ---------- */
.instagram-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #833ab4 0%, #c13584 50%, #e1306c 100%);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(193, 53, 132, 0.45);
  font-weight: 800;
  font-size: 0.88rem;
  transition: transform 0.18s ease;
}
.instagram-float:hover { transform: translateY(-2px); }
.instagram-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.instagram-float .ig-label { display: none; }
@media (min-width: 640px) {
  .instagram-float .ig-label { display: inline; }
}
.instagram-float.is-copiado::after {
  content: "✓ Copiado — pégalo en el chat de Instagram";
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 10px;
  background: #141005;
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

/* ---------- Páginas internas (contacto / legal) ---------- */
.page-header {
  padding-block: 48px 32px;
  border-bottom: 1px solid var(--border-soft);
}
.page-header h1 { font-size: clamp(2rem, 5vw, 3rem); text-transform: uppercase; }
.page-header p { color: var(--text-muted); margin-top: 14px; max-width: 60ch; }

.legal-content {
  padding-block: 48px 80px;
  max-width: 74ch;
}
.legal-content h2 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.15rem;
  margin-top: 36px;
  margin-bottom: 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 10px; }
.legal-content ul { padding-left: 20px; list-style: disc; }
.legal-content .placeholder {
  color: var(--gold);
  background: var(--gold-soft);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 700;
}
.legal-note {
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-faint);
}

.contact-grid {
  display: grid;
  gap: 20px;
  padding-block: 48px 80px;
  grid-template-columns: 1fr;
}
@media (min-width: 780px) { .contact-grid { grid-template-columns: 1.1fr 0.9fr; } }
.contact-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
}
.contact-card h3 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: 12px; }
.contact-card p { color: var(--text-muted); margin-bottom: 22px; }
.contact-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.contact-list div { display: flex; gap: 14px; align-items: flex-start; }
.contact-list svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-list strong { display: block; font-size: 0.92rem; }
.contact-list span { color: var(--text-muted); font-size: 0.88rem; }

/* ---------- Página de equipo ---------- */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.back-link:hover { color: var(--gold); }
.back-link svg { width: 16px; height: 16px; }
.page-header .back-link { margin-bottom: 24px; }

/* ---------- Carrusel de la ficha de producto ---------- */
.carousel {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-elevated-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.carousel-single {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.carousel-single svg { width: 100%; height: 100%; }
.carousel-single img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); }
.carousel-viewport { width: 100%; height: 100%; overflow: hidden; }
.carousel-track { display: flex; height: 100%; transition: transform 0.3s ease; }
.carousel-slide { flex: 0 0 100%; height: 100%; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.carousel-arrow:hover { border-color: var(--gold); color: var(--gold); }
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }
.carousel-arrow svg { width: 18px; height: 18px; }
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
}
.carousel-dot.is-active { background: var(--gold); }

/* ---------- Ficha de producto ---------- */
.product-detail {
  display: grid;
  gap: 32px;
  padding-block: 8px 80px;
  grid-template-columns: 1fr;
}
@media (min-width: 780px) {
  .product-detail { grid-template-columns: 1fr 1fr; align-items: start; }
}
.league-tag-static {
  position: static;
  display: inline-flex;
  margin-bottom: 14px;
}
.product-detail-info h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-transform: uppercase;
}
.product-detail-meta { color: var(--text-muted); margin-top: 10px; font-size: 0.95rem; }
.product-detail-desc { color: var(--text-muted); margin-top: 14px; max-width: 52ch; }
.product-detail-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  margin-top: 22px;
}
.size-chips { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.size-chip {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 700;
}
.product-detail-info .btn { margin-top: 28px; }
