/* =========================
   إطار ذهبي بسيط بدون لمعة أو حركة
   ========================= */

custom-salla-product-card {
  position: relative !important;
  display: block !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: #fff !important;
  border: 2px solid #d4af37 !important; /* إطار ذهبي */
  transform: scale(0.95) !important; /* تصغير البطاقة 15% */
  transform-origin: center !important;
  transition: transform .25s ease, box-shadow .25s ease;
}

/* تكبير لطيف عند التحويم */
custom-salla-product-card:hover {
  transform: scale(0.9) translateY(-4px) !important;
  box-shadow: 0 0 15px rgba(212,175,55,0.3) !important; /* ظل ذهبي خفيف */
}