/* الكود اللي ضبطناه مع إضافة وسام الأكثر مبيعاً */
.best-seller-dress {
   border: 3px solid #d4af37 !important;
   border-radius: 20px !important;
   box-shadow: 0px 10px 20px rgba(212, 175, 55, 0.3) !important;
   transition: 0.3s !important;
   position: relative !important; /* ضروري عشان الوسام يثبت بمكانه */
}

/* إضافة كلمة الأكثر مبيعاً */
.best-seller-dress::before {
   content: "الأكثر مبيعاً ✨";
   position: absolute;
   top: 10px;
   right: 10px;
   background: #d4af37 !important; /* لون ذهبي */
   color: #fff !important;
   padding: 5px 12px;
   font-size: 12px;
   font-weight: bold;
   border-radius: 50px;
   z-index: 10;
   box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.best-seller-dress:hover {
   transform: scale(1.02) !important;
}