/* 
   كود مبسط لتابي - يعمل على جميع الأجهزة والمتصفحات
   بدون استخدام ::before أو تعقيدات
*/

/* استبدال نص البدج بلوجو تابي بطريقة مضمونة */
custom-salla-product-card .s-product-card-image .badge.badge--ribbon.badge--primary {
    /* إخفاء النص الأصلي */
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-indent: -999em !important;
    
    /* حجم البدج ثابت */
    width: 50px !important;
    height: 20px !important;
    min-width: 50px !important;
    min-height: 20px !important;
    padding: 0 !important;
    margin: 0 !important;
    
    /* خلفية تابي الخضراء */
    background-color: #3ECF8E !important;
    background-image: none !important;
    
    /* إزالة تأثيرات الـ ribbon */
    border-radius: 4px !important;
    clip-path: none !important;
    transform: none !important;
    
    /* تحسين الظهور */
    display: block !important;
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    z-index: 10 !important;
    
    /* ضمان الاستقرار */
    box-sizing: border-box !important;
    overflow: hidden !important;
    
    /* إضافة النص بدون pseudo-elements */
    text-align: center !important;
    vertical-align: middle !important;
}

/* إضافة كلمة tabby باستخدام content عادي */
custom-salla-product-card .s-product-card-image .badge.badge--ribbon.badge--primary {
    background: #3ECF8E url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 20'%3E%3Ctext x='50%25' y='50%25' text-anchor='middle' dy='0.35em' fill='white' font-family='Arial,sans-serif' font-size='10' font-weight='bold'%3Etabby%3C/text%3E%3C/svg%3E") no-repeat center/cover !important;
}

/* تنسيق للموبايل - أبسط ما يمكن */
@media (max-width: 768px) {
    custom-salla-product-card .s-product-card-image .badge.badge--ribbon.badge--primary {
        width: 45px !important;
        height: 18px !important;
        font-size: 0 !important;
    }
}

/* للشاشات الكبيرة */
@media (min-width: 1024px) {
    custom-salla-product-card .s-product-card-image .badge.badge--ribbon.badge--primary {
        width: 55px !important;
        height: 22px !important;
    }
}

















/* Add custom CSS styles below */