.store-card-taxonomy {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  min-height: 300px;
  cursor: pointer;
}
.store-card-taxonomy .store-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
  z-index: 0;
}
.store-card-taxonomy .store-card-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.store-card-taxonomy .store-card-content h6 {
  margin: 0;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
.store-card-taxonomy .store-card-content .arrow-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid #000;
  transition: all 0.3s ease;
}
.store-card-taxonomy .store-card-content .arrow-box svg {
  transition: stroke 0.3s ease;
}
.store-card-taxonomy:hover .store-card-bg {
  transform: scale(1.1);
}
.store-card-taxonomy:hover .store-card-content h6 {
  color: black;
}
.store-card-taxonomy:hover .store-card-content .arrow-box {
  background-color: #fff;
  border-color: #fff;
}
.store-card-taxonomy:hover .store-card-content .arrow-box svg {
  stroke: #000;
}

.store-card-products .product-image-wrapper {
  position: relative;
  overflow: hidden;
}
.store-card-products .product-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease-in-out;
}
.store-card-products .product-image-wrapper img.img-2 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.store-card-products:hover .product-image-wrapper .img-2 {
  opacity: 1;
}
.store-card-products:hover .product-image-wrapper .img-1 {
  opacity: 0;
}