/* Add custom CSS styles below */ 
.product-card__image,
.product-card__image a,
.product-card__image img {
  height: 220px !important;
  min-height: 220px !important;
  max-height: 220px !important;
  width: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
}

.product-card {
  border-radius: 12px !important;
  border: 1px solid #FFF0F5 !important;
  box-shadow: 0 4px 16px rgba(239,48,126,0.08) !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
}

.product-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 28px rgba(239,48,126,0.18) !important;
}

.product-card__promotion {
  background: #EF307E !important;
  color: #fff !important;
  font-family: 'Cairo', sans-serif !important;
  font-weight: 700 !important;
}

.product-card__buttons .btn {
  background: #EF307E !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  border: none !important;
}

.product-card__buttons .btn:hover {
  background: #3C0C30 !important;
}