@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url(https://db.onlinewebfonts.com/c/af8360322ea08b2e685007f3951b7c8f?family=Zico+Display+H%2BL+Inline);
@import url('https://fonts.googleapis.com/css2?family=Monoton&display=swap');

@font-face {
  font-family: 'EurostileExtended';
  src: url('../../fonts/EurostileExtended-Black.woff2') format('woff2'),
      url('../../fonts/EurostileExtended-Black.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General */
body {
    font-family: Poppins, sans-serif;
    background-color: #ffffff;
}

/*!SECCION INFORMACION*/

.seccion__informacion {
    width: 80%;
    margin: auto;
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 4px rgba(0, 0, 0, .2);
    justify-content: space-between;
    font-family: Poppins;
    margin-top: 2rem;
}

.informacion__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-right: 1px solid #e0e0e0;
    padding-right: 20px;
}

.informacion__item:last-child {
    border-right: none;
}

.informacion__item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px; 
    height: 35px;
    background-color: #76ABAE; 
    border-radius: 50%; 
    padding: 10px; 
    font-size: 20px;
    color: #fff;
}

.informacion__item p {
    font-size: 14px;
    color: #333;
    margin: 0;
}

.informacion__item a {
    color: #007BFF;
    text-decoration: none;
    font-size: 14px;
}


/* ===== SLIDER BASE ===== */
.slider {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slider .list{
  position: absolute;
  display: flex;
  height: 100%;
  left: 0;
  top: 0;
  transition: transform 1s ease;   /* usá transform, no left */
  /* quita width fijo */
}
.slider .item{
  width: 100vw;       /* cada slide ocupa una pantalla */
  height: 100%;
  flex-shrink: 0;     /* IMPORTANTÍSIMO: que no se achique */
  position: relative;
}

.slider img,
.slider video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ===== MOSTRAR SEGÚN DISPOSITIVO ===== */

/* PC: mostrar video grande */
.video-pc {
  width: 100%;
  display: block;
}

.video-mobile {
  display: none;
}

/* CELULAR: ocultar el de PC y mostrar el móvil */
@media (max-width: 768px) {
  .video-pc {
    display: none;
  }

  .video-mobile {
    display: block;
    width: 100%;
  }
}

/* ===== AJUSTE OPCIONAL PARA ALTURA ===== */
.slider {
  position: relative;
  width: 100%;
  height: 100vh;          /* Ocupa toda la pantalla */
  overflow: hidden;
}

/* En móviles podés reducir un poco la altura si querés */
@media (max-width: 768px) {
  .slider {
    height: 90vh;
  }
}

/* ===== BOTONES ===== */
.slider .buttons {
  position: absolute;
  top: 45%;
  left: 5%;
  width: 90%;
  display: flex;
  justify-content: space-between;
}

.slider .buttons button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffffff55;
  color: #fff;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.slider .buttons button:hover {
  background-color: #333333dd;
}

/* ===== DOTS ===== */
.slider .dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.slider .dots li {
  list-style: none;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 20px;
  transition: 0.5s;
}

.slider .dots li.active {
  width: 30px;
}

/* ===== BOTÓN DE BANNER ===== */
.banner-button-1 {
  position: absolute;
  bottom: 9.3%;
  left: 7%;
  width: 220px; /* 🔹 ajustá el tamaño que cubra tu botón del banner */
  height: 90px; /* 🔹 ajustá según el alto del botón en la imagen */
  background-color: transparent;
  border: none;
  color: transparent;
  cursor: pointer;
  transform: none;
  transition: none;
  z-index: 5; /* 🔹 asegúrate de que quede por encima de la imagen */
}

.banner-button-1:hover {
  background-color: transparent;
  color: transparent;
  border: none;
}

/* ===== RESPONSIVE ===== */

/* Celulares chicos */
@media (max-width: 480px) {
  .slider {
    height: 90vh;
  }

  .slider img,
  .slider video {
    object-fit: cover; /* 🔹 muestra toda la imagen sin recortarla */
    background-color: #000; /* rellena con negro los bordes si sobran */
  }

  .banner-button-1 {
    width: 120px;
    height: 40px;
    bottom: 40%;
    left: 10%;
  }
}

/* Celulares grandes / tablets verticales */
@media (min-width: 481px) and (max-width: 991px) {
  .slider {
    height: 100vh;
  }

  .slider img,
  .slider video {
    object-fit: cover; /* 🔹 evita que se corte el banner */
    background-color: #000;
  }

  .banner-button-1 {
    width: 160px;
    height: 50px;
    bottom: 35%;
    left: 10%;
  }
}

/* Tablets horizontales / pantallas medianas */
@media (min-width: 992px) and (max-width: 1200px) {
  .slider {
    height: 100vh;
  }

  .slider img,
  .slider video {
    object-fit: cover;
  }
}

.banner-button-2 {
  position: absolute;
  top: 84%;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  background-color: transparent;
  color: white;
  border: 2px solid rgb(110, 185, 255); /* Opcional para que se vea el borde */
  border-radius: 15px;
  font-size: 24px;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
}   

.banner-button-2:hover {
  background-color: rgb(110, 185, 255);
  color: white !important;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .banner-button-2 {
    font-size: 10px;
    padding: 5px 13px;
    top: 68%; /* más arriba si la imagen es más chica */
    border-width: 1.5px;
  }
}

.ver-mas {
    text-align: right;
    margin-top: 20px;
    margin-right: 20px;
}

.ver-mas a {
  text-decoration: none;
  color: #555;
  font-weight: bold;
  background-color: #f0f0f0;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.ver-mas a:hover {
    background-color: #ddd;
    color: #111;
}

.categorias {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px 0;
}

.tarjeta {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 370px;
    margin: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarjeta img {
    width: 100%;
    height: auto;
}

.contenido {
    padding: 15px;
    text-align: center;
}

.contenido h3 {
    margin: 0 0 10px;
    font-size: 1.2em;
    color: #333;
}

.boton {
    display: inline-block;
    padding: 10px 20px;
    background-color: #6e6b6b;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.boton:hover {
    background-color: #252525;
}

.tarjeta:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .categorias {
        flex-direction: column;
        align-items: center;
        margin: 20px 0;
    }

    .tarjeta {
        width: 90%; /* Que ocupe casi todo el ancho en móvil */
        margin: 10px auto;
    }
}

.contenedor__productos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.card__producto {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
}

.card__producto:hover {
    transform: translateY(-5px);
}

.contenedor__imagen {
    width: 100%;
    height: 250px; /* altura fija para todas las imágenes */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
}

.imagen__producto {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    max-height: 270px; /* Podés ajustar este valor según tu diseño */
    margin: 0 auto;
    top: 90%;
    border-radius: 4px;
}

.info__producto {
    padding: 15px;
    text-align: center;
}

.nombre__producto {
    font-size: 1.2em;
    font-weight: bold;
    color: #000000;
    margin-bottom: 10px;
}

.descripcion__producto {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 10px;
}

.precio__producto {
    font-size: 1.1em;
    color: #000000;
    font-weight: bold;
}

.carrusel-destacados-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: auto;
  max-width: 950px;
  padding: 0 40px;
}

.carrusel-destacados {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
}

.destacado-card {
  flex: 0 0 auto;
  width: 250px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: transform 0.3s ease;
}

.destacado-card:hover {
  transform: scale(1.05);
}

.destacado-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.destacado-card h3 {
  font-size: 1em;
  margin: 10px 0 5px;
}

.destacado-card p {
  font-size: 0.95em;
  margin-bottom: 10px;
  font-weight: bold;
}

.carrusel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}

.carrusel-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.carrusel-btn.prev {
  left: 0;
}

.carrusel-btn.next {
  right: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .carrusel-destacados-container {
    padding: 0 20px;
  }

  .destacado-card {
    width: 250px;
  }

  .carrusel-btn {
    display: none;
  }
}

footer {
    background-color: #111;
    color: #eee;
    padding: 40px 0 10px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1 1 250px;
    margin: 20px 0;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
    border-bottom: 2px solid #444;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-section p {
    font-size: 14px;
    color: #bbb;
    margin: 8px 0;
}

.footer-section i {
    margin-right: 8px;
}

.social-icons a {
    color: #eee;
    margin-right: 15px;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #1da1f2;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 10px;
    font-size: 13px;
    color: #888;
}

.link__producto {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.titulo-destacados {
  text-align: center;
  font-size: 2.2em;
  font-weight: bold;
  color: #222;
  margin-top: 40px;
  margin-bottom: 30px;
  position: relative;
  display: block;
}

.titulo-destacados::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #25414b;
  margin: 8px auto 0;
  border-radius: 2px;
}

.logo-header {
  display: flex;
  align-items: center;
}

.logo-link {
  text-decoration: none;
  color: inherit;
  display: flex;
}

.logo-link h3 i {
  font-family: 'EurostileExtended', sans-serif;
  font-size: 30px;
  line-height: 1;
  vertical-align: middle;
}

/* =========================================
   DESTACADOS - NUEVO DISEÑO
========================================= */

.titulo-destacados {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
  margin: 55px 0 28px;
  letter-spacing: 1px;
}

.titulo-destacados::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: #111;
  margin: 10px auto 0;
  border-radius: 999px;
}

.carrusel-destacados-container {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto 70px;
  padding: 0 48px;
  overflow: hidden;
}

.carrusel-destacados {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 20px 0 30px;
}

.carrusel-destacados::-webkit-scrollbar {
  display: none;
}

.destacado-card {
  flex: 0 0 280px;
  min-height: 560px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.destacado-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
}

.destacado-img-wrap {
  width: 100%;
  height: 320px;
  background: #f4f4f4;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.destacado-img-wrap img,
.destacado-img-wrap .imagen__producto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  color: transparent;
}

.destacado-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 16px 20px;
}

.destacado-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #f1f1f1;
  color: #555;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.destacado-info h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  line-height: 1.35;
  min-height: 58px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.destacado-precio {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #111;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  min-height: 30px;
}

.destacado-precio del {
  color: #888;
  font-size: 0.9rem;
  font-weight: 500;
}

.destacado-precio strong {
  color: #111;
  font-weight: 900;
}

.destacado-variantes {
  margin: 6px 0 2px;
  color: #111;
  font-size: 0.95rem;
  font-weight: 700;
  min-height: 24px;
}

.destacado-colores {
  margin: 0 0 16px;
  color: #777;
  font-size: 0.88rem;
  line-height: 1.35;
  min-height: 42px;
}

.destacado-btn {
  margin-top: auto;
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 0.2s ease;
}

.destacado-card:hover .destacado-btn {
  background: #333;
}

/* Badges */

.badge-descuento,
.badge-sin-stock {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.badge-descuento {
  background: #111;
  color: #fff;
}

.badge-sin-stock {
  background: #f3f4f6;
  color: #777;
}

.badge-descuento + .badge-sin-stock {
  top: 44px;
}

/* Botones del carrusel */

.carrusel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  transition: background 0.2s ease, transform 0.2s ease;
}

.carrusel-btn:hover {
  background: #333;
  transform: translateY(-50%) scale(1.05);
}

.carrusel-btn.prev {
  left: 6px;
}

.carrusel-btn.next {
  right: 6px;
}

/* Responsive */

@media (max-width: 768px) {
  .titulo-destacados {
    font-size: 1.7rem;
    margin-top: 40px;
  }

  .carrusel-destacados-container {
    padding: 0 16px;
  }

  .destacado-card {
    flex: 0 0 240px;
    min-height: 520px;
  }

  .destacado-img-wrap {
    height: 280px;
  }

  .destacado-info h3 {
    font-size: 1rem;
    min-height: 54px;
  }

  .carrusel-btn {
    display: none;
  }
}