
/* Grid y productos */
#shop-products-list {
  min-height: 0 !important;
  height: auto !important;
}
.grid-item {
  width: 100%;
  max-width: 260px;
  min-width: 220px;
  height: 340px;
  margin: 0 auto 30px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

#shop-products-list.grid-layout.grid-3-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}
.grid-item {
  width: 100% !important;
  max-width: unset;
  min-width: 0;
  height: 500px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}


/* Products */
.product-image {
  width: 100%;
  height: 180px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
}
.product-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  transition: opacity 0.4s;
}
.product-image .hover-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.4s;
}
.product-image:hover .hover-img {
  opacity: 1;
}




.product-fixed {
  min-width: 220px;
  max-width: 100%;
}


