.wc-hover-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  direction: rtl;
}

.wc-hover-card {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.wc-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
}

.wc-img-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.wc-img-wrap .hover-img {
  opacity: 0;
}

.wc-hover-card:hover .hover-img {
  opacity: 1;
}

.wc-hover-card:hover .main-img {
  opacity: 0;
}

.product-title {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
}
