/* مهم جداً: استهداف الكومبوننت نفسه */
custom-salla-product-card {
  position: relative;
  display: block;
  overflow:hidden;
}

/* طبقة اللمعة */
custom-salla-product-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.55) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.5s ease-in;
  pointer-events: none;
  z-index: 2;
}

/* الحركة */
custom-salla-product-card:hover::after {
  left: 130%;
}

/* تكبير الصورة */
custom-salla-product-card img {
  transition: transform 0.4s ease;
}

custom-salla-product-card:hover img {
  transform: scale(1.06);
}