/* Fondo con logo difuminado */
body {
  position: relative;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #000;
  color: #fff;
  padding: 0;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("img/logo-fondo.png") no-repeat center center;
  background-size: 60%;
  opacity: 0.08;
  z-index: -1;
}

.no-scroll{ overflow: hidden; }

/* Container */
.container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Menú (sticky + blur) */
.menu{
  position: sticky;
  top: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.menu-container{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 0;
}

.menu-toggle{
  display: none;
  font-size: 2rem;
  color: #eca900;
  cursor: pointer;
  user-select: none;
}

.menu-items{
  display: flex;
  justify-content: center;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.menu a{
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: color 0.25s;
}

.menu a:hover{
  color: #eca900;
}

/* Secciones */
.section{
  padding: 60px 0;
}

.catalogo{
  background: linear-gradient(to bottom, #000, #111);
}

.sport{
  background: #000;
}

/* HERO Premium */
.hero{
  padding: 86px 0 42px;
  background:
    radial-gradient(55% 60% at 50% 18%, rgba(236,169,0,0.22), transparent 70%),
    radial-gradient(40% 40% at 20% 30%, rgba(255,255,255,0.05), transparent 65%);
}

.hero-header{
  text-align: center;
}

.hero-brand{
  font-size: 4.2rem;
  margin: 0;
  letter-spacing: 4px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.02;
  color: #fff;
  text-shadow: 0 0 18px rgba(236,169,0,0.20);
}

.hero-kicker{
  margin: 10px 0 14px;
  color: rgba(236,169,0,0.95);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero-subtitle{
  margin: 0 auto;
  max-width: 720px;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  font-size: 1.05rem;
}

.hero-cta{
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero{
  text-decoration: none;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 12px;
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.02);
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s, color 0.2s, border-color 0.2s;
}

.btn-hero-primary{
  background: #eca900;
  color: #000;
  border-color: transparent;
}

.btn-hero-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 0 16px rgba(236,169,0,0.35);
}

.btn-hero-secondary:hover{
  border-color: rgba(236,169,0,0.45);
  transform: translateY(-1px);
}

.hero-bar{
  margin-top: 22px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-link{
  text-decoration: none;
  color: rgba(255,255,255,0.82);
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s, transform 0.2s, color 0.2s;
}

.hero-link:hover{
  border-color: rgba(236,169,0,0.45);
  color: #fff;
  transform: translateY(-1px);
}

/* Head secciones con acción */
.section-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.ghost-action{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, color 0.2s;
}
.ghost-action:hover{
  transform: translateY(-1px);
  border-color: rgba(236,169,0,0.45);
  color: #fff;
}

/* Títulos de sección */
.section-title{
  font-size: 2.05rem;
  margin: 0 0 8px;
  letter-spacing: 0.6px;
}

.section-subtitle{
  margin: 0 0 18px;
  color: rgba(255,255,255,0.70);
  line-height: 1.5;
}

.sport-titulo{
  color: #eca900;
  letter-spacing: 2px;
}

.sport-tagline{
  font-style: italic;
}

/* Filtros */
.filters{
  background: linear-gradient(to bottom, #0a0a0a, #000);
}
.filters-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-btn{
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, color 0.2s;
}
.filter-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(236,169,0,0.45);
  color: #fff;
}
.filter-btn.active{
  background: rgba(236,169,0,0.15);
  border-color: rgba(236,169,0,0.45);
  color: #eca900;
}

/* Grid productos */
.productos-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Cards productos */
.producto{
  position: relative;
  background-color: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(255,255,255,0.06);
  padding: 18px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.producto:hover{
  transform: translateY(-4px);
  border-color: rgba(236,169,0,0.35);
  box-shadow: 0 0 18px rgba(236,169,0,0.22);
}

/* Imagen premium + skeleton */
.img-wrap{
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.img-skeleton{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.04) 0%,
    rgba(255,255,255,0.10) 45%,
    rgba(255,255,255,0.04) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite linear;
}

@keyframes shimmer{
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.img-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Al cargar, aparece y se oculta skeleton */
.img-wrap.loaded img{
  opacity: 1;
  transform: scale(1);
}
.img-wrap.loaded .img-skeleton{
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

/* Hover premium a imagen */
.producto:hover .img-wrap img{
  transform: scale(1.04);
}

/* Textos producto */
.producto h2{
  margin: 14px 0 6px;
  font-size: 1.35rem;
  color: #fff;
}

.producto p{
  margin: 8px 0;
  color: rgba(255,255,255,0.72);
}

.producto .precio{
  font-weight: 900;
  color: #f5f5f5;
  font-size: 1.15rem;
  margin-top: 6px;
}

/* Badges */
.badge{
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.6px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
}

.badge-top{
  color: #eca900;
  border-color: rgba(236,169,0,0.35);
}

.badge-new{
  color: #fff;
  border-color: rgba(255,255,255,0.20);
}

.badge-sport{
  color: #eca900;
  border-color: rgba(236,169,0,0.35);
}

/* Botón Comprar (no se pasa del ancho) */
.btn-comprar{
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-top: 12px;
  padding: 12px 18px;
  text-align: center;
  background-color: #eca900;
  color: #000;
  font-weight: 900;
  text-decoration: none;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-comprar:hover{
  background-color: #000;
  color: #eca900;
  box-shadow: 0 0 10px rgba(236,169,0,0.45), 0 0 18px rgba(236,169,0,0.22);
  transform: translateY(-1px);
}

/* Confianza */
.trust{
  background: linear-gradient(to bottom, #0a0a0a, #000);
}
.trust-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.trust-card{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px;
}
.trust-icon{
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.trust-card h3{
  margin: 0 0 8px;
}
.trust-card p{
  margin: 0 0 10px;
  color: rgba(255,255,255,0.72);
  line-height: 1.45;
}
.trust-link{
  color: #eca900;
  text-decoration: none;
  font-weight: 900;
  border-bottom: 1px dashed rgba(236,169,0,0.55);
}

/* Testimonios */
.testimonials{
  background: linear-gradient(to bottom, #000, #111);
}
.testimonials-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.testimonial{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px;
}
.stars{
  letter-spacing: 2px;
  color: #eca900;
  margin-bottom: 8px;
}
.quote{
  margin: 0 0 10px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
}
.who{
  color: rgba(255,255,255,0.60);
  font-weight: 700;
}

/* ABOUT / INFO */
.about, .info{
  background: linear-gradient(to bottom, #0a0a0a, #000);
}

.about-grid, .info-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-card, .info-card{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px;
}

.about-icon, .info-icon{
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.about-card h3, .info-card h3{
  margin: 0 0 8px;
}

.about-card p, .info-card p{
  margin: 0 0 12px;
  color: rgba(255,255,255,0.72);
  line-height: 1.45;
}

.info-action{
  display: inline-block;
  text-decoration: none;
  color: #eca900;
  font-weight: 900;
  border-bottom: 1px dashed rgba(236,169,0,0.55);
  padding-bottom: 2px;
}

.pay-links{
  margin-top: 8px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pay-pill{
  text-decoration: none;
  color: #fff;
  font-weight: 900;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.2s, border-color 0.2s;
}
.pay-pill:hover{
  transform: translateY(-1px);
  border-color: rgba(236,169,0,0.45);
}

/* Contacto */
.contacto{
  text-align: center;
}

.contacto-form{
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
  margin: 0 auto;
}

.contacto input,
.contacto textarea{
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  background-color: #111;
  color: #fff;
  outline: none;
}

.contacto textarea{
  min-height: 120px;
  resize: vertical;
}

.contacto input:focus,
.contacto textarea:focus{
  border-color: rgba(236,169,0,0.55);
  box-shadow: 0 0 0 3px rgba(236,169,0,0.12);
}

.contacto button{
  padding: 12px;
  background-color: #eca900;
  border: none;
  border-radius: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: background-color 0.25s, transform 0.2s;
}

.contacto button:hover{
  background-color: #ffcc00;
  transform: translateY(-1px);
}

/* Footer */
.footer{
  background-color: #111;
  color: #ccc;
  padding: 28px 0;
  font-size: 0.95rem;
}

.footer-container{
  text-align: center;
}

.footer .redes{
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer .redes a{
  text-decoration: none;
  font-weight: bold;
  transition: all 0.25s;
}

/* Botones footer (como estaban) */
.btn-instagram {
  background-color: #fff;
  color: #000 !important;
  padding: 8px 14px;
  border-radius: 6px;
  border: 2px solid #eca900;
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
}
.btn-instagram:hover {
  background-color: #eca900;
  color: #000 !important;
}
.footer .wsp {
  background-color: #25D366;
  color: #000;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s;
  text-decoration: none;
}
.footer .wsp:hover {
  background-color: #1ebe5d;
}

/* Botón flotante WhatsApp (como estaba) */
.wsp-flotante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  font-size: 28px;
  padding: 12px 16px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s, box-shadow 0.3s;
}
.wsp-flotante:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

/* Barra CTA móvil */
.mobile-cta{
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2200;
  padding: 10px 12px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.08);
  gap: 10px;
}

.mobile-cta-btn{
  flex: 1;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  padding: 12px 14px;
  border-radius: 14px;
}

.mobile-cta-primary{
  background: #25D366;
  color: #000;
}
.mobile-cta-secondary{
  background: #eca900;
  color: #000;
}

/* Modal */
.modal{
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
}
.modal.open{ display: block; }

.modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.modal-card{
  position: relative;
  max-width: 520px;
  margin: 8vh auto 0;
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.55);
}

.modal-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.modal-head h3{
  margin: 0;
  font-size: 1.25rem;
}

.modal-close{
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 8px 10px;
  cursor: pointer;
  font-weight: 900;
}

.modal-note{
  margin: 10px 0 12px;
  color: rgba(255,255,255,0.72);
  line-height: 1.45;
}

.size-table{
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  overflow: hidden;
}

.size-row{
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 1.2fr;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.size-row:last-child{ border-bottom: none; }

.size-head{
  background: rgba(236,169,0,0.12);
  font-weight: 900;
  color: rgba(255,255,255,0.92);
}

.modal-actions{
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.modal-wsp{
  text-decoration: none;
  font-weight: 900;
  padding: 12px 14px;
  border-radius: 14px;
  background: #25D366;
  color: #000;
}

.modal-ok{
  font-weight: 900;
  padding: 12px 14px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  background: #eca900;
  color: #000;
}

/* Responsive */
@media (max-width: 900px){
  .productos-grid,
  .trust-grid,
  .testimonials-grid,
  .about-grid,
  .info-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px){
  .hero-brand{
    font-size: 2.9rem;
    letter-spacing: 3px;
  }

  .menu-container{
    justify-content: flex-start;
    padding: 12px 0;
    flex-direction: column;
    align-items: stretch;
  }

  .menu-toggle{
    display: block;
    padding: 6px 0;
  }

  .menu-items{
    display: none;
    flex-direction: column;
    gap: 14px;
    background-color: #111;
    padding: 16px;
    border-radius: 12px;
    margin-top: 10px;
  }

  .menu-items.active{
    display: flex;
  }

  .productos-grid,
  .trust-grid,
  .testimonials-grid,
  .about-grid,
  .info-grid{
    grid-template-columns: 1fr;
  }

  .img-wrap{
    height: 260px;
  }

  /* Mostrar barra CTA en móvil */
  .mobile-cta{
    display: flex;
  }

  /* Subir el botón flotante para que no choque con la barra */
  .wsp-flotante{
    bottom: 86px;
  }
}

/* =========================================================
   ✅ NUEVO: estilos filtros avanzados (buscar/color/diseño/orden)
   ========================================================= */
.filters-row-advanced{
  margin-top: 12px;
  align-items: center;
}

.filter-search,
.filter-select{
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.90);
  font-weight: 800;
  outline: none;
}

.filter-search{
  flex: 1 1 240px;
  min-width: 200px;
}

.filter-search::placeholder{
  color: rgba(255,255,255,0.45);
  font-weight: 700;
}

.filter-select{
  flex: 0 1 210px;
  cursor: pointer;
}

.filter-select:focus,
.filter-search:focus{
  border-color: rgba(236,169,0,0.55);
  box-shadow: 0 0 0 3px rgba(236,169,0,0.12);
}

.filter-select option{
  background: #0f0f0f;
  color: #fff;
}

@media (max-width: 768px){
  .filter-search,
  .filter-select{
    width: 100%;
    border-radius: 14px;
  }
}