@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: Figtree;
  box-sizing: border-box;
}

.carousel-caption {
  bottom: 20%;
  left: 10%;
}
.carousel-caption .subtitle {
  font-family: Figtree;
  font-size: 1rem;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 0.5rem;
}
.carousel-caption .title {
  font-family: Figtree;
  font-size: 3rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
}

.featured-banners .banner-category {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-decoration: none;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background-color: #f8f9fa;
}
.featured-banners .banner-category .banner-content {
  position: relative;
}
.featured-banners .banner-category .banner-content img {
  width: 100%;
  order: 1;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
  filter: grayscale(20%);
}
.featured-banners .banner-category .banner-content .banner-text {
  order: 2;
  position: static;
  top: 50%;
  left: 50%;
  transform: translate(10%, -5%);
  color: #000;
  z-index: 2;
  width: 80%;
  padding: 1rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.featured-banners .banner-category .banner-content .banner-text .action {
  font-family: Figtree;
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.featured-banners .banner-category .banner-content .banner-text .action:hover {
  border-color: #000;
}
.featured-banners .banner-category .banner-content .banner-text .action {
  position: relative;
  display: block;
}
.featured-banners .banner-category .banner-content .banner-text .action::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 50%;
  background-color: currentColor;
  transition: all 0.4s ease;
}
.featured-banners .banner-category .banner-content .banner-text .banner-category:hover .banner-text .action::after {
  width: 100%;
  left: 0;
}
.featured-banners .banner-category .banner-content .banner-text .category-name {
  font-family: Figtree;
  font-size: 2rem;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  display: block;
  padding: 5px 15px;
  border: 1px solid #333;
  transition: all 0.4s ease;
  border-color: #000;
  margin-top: 5px;
}
.featured-banners .banner-category:hover .banner-content img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.featured-banners .banner-category:hover {
  box-shadow: 0 10px 20px rgba(53, 45, 45, 0.596);
  transition: box-shadow 0.3s ease;
}

@media (max-width: 767.98px) {
  .carousel-item img {
    height: 300px;
    object-fit: cover;
  }
  .carousel-caption {
    position: relative;
    color: #000;
    padding-top: 15px;
    padding-bottom: 15px;
    text-shadow: none;
  }
  .carousel-caption .title {
    font-size: 1.5rem !important;
  }
  .carousel-caption .subtitle {
    font-size: 0.8rem !important;
  }
}
.carrusel-contenedor {
  max-width: 800px;
  /* ajustá esto a tu gusto  - solamente padding de imagen - NO ANCHO*/
}
.carrusel-contenedor .carrus {
  height: 500px;
  /* altura del carrusel */
  object-fit: cover;
  /* evita que se deformen las imágenes */
}

.catalog-grid {
  display: grid;
  gap: 15px;
  justify-content: center;
  justify-items: center;
  padding: 10px;
  max-width: 1800px;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
  }
}
@media (min-width: 1024px) {
  .catalog-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1280px) {
  .catalog-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 25px;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #eee;
  transition: transform 0.3s ease;
  width: 100%;
}
.product-card .product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card .card-image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.product-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card .card-info {
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 4px;
}
.product-card .card-info h3 {
  font-size: 0.75rem;
  margin: 0;
  color: #333;
}
.product-card .card-info .price {
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0;
}
.product-card .card-info .installments {
  font-size: 0.7rem;
  color: #666;
  margin: 0;
}

@media (min-width: 768px) {
  .product-card .card-info {
    padding: 20px;
    gap: 8px;
  }
  .product-card .card-info h3 {
    font-size: 1.15rem;
  }
  .product-card .card-info .price {
    font-size: 1.3rem;
  }
  .product-card .card-info .installments {
    font-size: 1.2rem;
  }
}
@media (min-width: 1024px) {
  .product-card .card-info {
    padding: 20px;
    gap: 8px;
  }
  .product-card .card-info h3 {
    font-size: 1.15rem;
  }
  .product-card .card-info .price {
    font-size: 1.3rem;
  }
  .product-card .card-info .installments {
    font-size: 1.2rem;
  }
}
@media (min-width: 1280px) {
  .product-card .card-info {
    padding: 20px;
    gap: 8px;
  }
  .product-card .card-info h3 {
    font-size: 1.15rem;
  }
  .product-card .card-info .price {
    font-size: 1.2rem;
  }
  .product-card .card-info .installments {
    font-size: 1.2rem;
  }
}

/*# sourceMappingURL=styles.css.map */
