html {
  scroll-behavior: smooth;
}
.bg-hero {
  position: relative;
  &::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)),
      url("/assets/20190414_174327.webp");
      background-size: cover;
      z-index: -2;
  }
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.4);
  }
}

.bg-textured {
  background-image: url("image-3b7f14b036574f6e87f2e1530932c02e");
}


/* Estilos adicionales para el carrusel */
.carousel {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
  gap: 1.5rem;
}

.product-card {
  flex: 0 0 auto;
  width: 75%;
}

@media (min-width: 640px) {
  .product-card {
    width: 45%;
  }
}

@media (min-width: 1024px) {
  .product-card {
    width: 23%;
  }
}