
body {
  margin: 0;
   font-family: "League Gothic", sans-serif;
  background-color: #fff;
  color: #000;
}

.logo-center {
  text-align: center;
  margin: 20px 0;
}

/* === Botón flotante WhatsApp === */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}
/* === end botón flotante WhatsApp === */
.logo-center img {
  max-width: 250px;
}
/* === Responsive WhatsApp === */
@media (max-width: 600px) {
  .whatsapp-float {
    width: 70px;
    height: 70px;
    bottom: 25px;
    right: 25px;
  }

  .whatsapp-float img {
    width: 36px;
    height: 36px;
  }
}

.catalogo {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
  gap: 20px;
  padding: 3em 2em;
      max-width: 1200px;
    margin: 0 auto;
}
a {
    color: white;
}
header {
    background: #fff;
    padding: 1rem 0;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}
.producto {
  position: relative;
  cursor: pointer;
  overflow: hidden;
      margin: 25px;
}
.video-mobile video {
  width: 100% !important;
  height: auto !important;
  display: block;
  max-width: 100vw;
  object-fit: cover;
}

.video-loader {
  position: relative;
  width: 100%;
}
.video-hidden {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-visible {
  visibility: visible;
  opacity: 1;
}

.video-loader img {
  width: 100%;
  height: auto;
  display: block;
}
.video-mobile {
  position: relative;
}

.video-overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 42px;
  color: yellow;
  background-color: black;
  border-radius: 0%;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
  line-height: 50px;
}
.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-text {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}
@keyframes parpadeo {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.loading-text {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  animation: parpadeo 1s infinite ease-in-out;
}
/* Mobile only */
@media screen and (min-width: 769px) {
  .video-mobile {
    display: none;
  }
}

footer {
  background: #111;
  color: #777;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  line-height: 1.5;
      font-size: 21px;
}

.producto img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}

.producto:hover img {
  transform: scale(1.05);
}

.producto h3 {
      text-transform: uppercase;
  margin: 10px 0 5px;
  font-size: 24px;
      line-height: 26px;
        font-family: "League Gothic", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.precio {
    color: white;
    font-weight: bold;
    background: black;
    padding: 5px;
    display: table-cell;
}

.talla {

  color: #555;
  font-size: 21px;
}

.slider button {

  color: white !important;
    font-size: 20px;
    font-weight: 800;
    position: absolute;
  top: 30%;
  transform: translateY(-50%);
  background: black;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  display: none;
}

.slider:hover button {
  display: block;
}

.slider .prev {
  left: 0;
}

.slider .next {
  right: 0;
}

.detalle-producto {
  padding: 20px;
}

.detalle-contenido {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-detalle {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.slider-detalle img {
  width: 100%;
  transition: transform 0.3s;
  cursor: zoom-in;
}

.flecha {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: transparent;
  border: none;
  color: black;
  cursor: pointer;
}

.flecha.izquierda {
  left: 10px;
}

.flecha.derecha {
  right: 10px;
}

.info {
  margin-top: 20px;
  text-align: center;
}

.recomendados {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.recomendado {
  width: 120px;
  cursor: pointer;
}

.recomendado img {
  width: 100%;
  border: 2px solid yellow;
}

.recomendado p {
  font-size: 0.9em;
  text-align: center;
}
.titulo-recomendados {
    font-size: 15px;
    margin-bottom: 15px;
    text-align: center;
    color: white;
}

.recomendados {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.cerrar-detalle {
    position: absolute;
    top: 10px;
    right: 10px;
    background: black;
    color: yellow;
    border: none;
    font-size: 20px;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 10;
    font-weight: 800;
}
p {line-height: 1.5;
    font-size: 21px;
    color: #555;
        margin: 10px 0;
}
@media (max-width: 768px) {
  .catalogo {
    grid-template-columns: repeat(2, 1fr);
  }

  .detalle-contenido {
    padding: 10px;
  }
  .producto{margin: 15px 0}
}
