/* Add custom CSS styles below */ 
/* تصميم عداد المبيعات (بدون خلفية + أيقونة حمراء) */
.fake-sales-notification {
    background-color: transparent !important; 
    color: #c53030 !important;
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px; 
    border: none !important;
    padding: 0 !important;
}

/* حركة التوهج للنار */
@keyframes fire-glow {
    0% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(197, 48, 48, 0.4)); }
    50% { transform: scale(1.15); filter: drop-shadow(0 0 8px rgba(197, 48, 48, 0.8)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(197, 48, 48, 0.4)); }
}

.fire-svg-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fire-glow 1.5s infinite ease-in-out;
}

/* --- تصميم صندوق التنبيه (الوردي) --- */
.product-warning-box {
    background-color: #fff1f2 !important; /* خلفية وردية فاتحة */
    color: #9f1239 !important; /* نص أحمر غامق */
    border: 1px solid #fecdd3; /* حدود وردية */
    border-radius: 6px;
    padding: 10px 12px;
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.5;
    width: fit-content;
}

.warning-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #9f1239;
    stroke-width: 2;
}