/* تصميم أزرار طلب عرض السعر المشتركة */
/* Quote Request Button Styles */

.action-button.quote-btn {
    background-color: #e74c3c;
    color: white;
    border: 2px solid #e74c3c;
    transition: all 0.3s ease;
}

.action-button.quote-btn:hover {
    background-color: #c0392b;
    border-color: #c0392b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.action-button.quote-btn.btn-success {
    background-color: #27ae60;
    border-color: #27ae60;
}

.action-button.quote-btn.btn-success:hover {
    background-color: #229954;
    border-color: #229954;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

/* تأثيرات خاصة لأزرار الإضافة */
.quote-btn i {
    transition: all 0.3s ease;
}

.quote-btn:hover i {
    transform: scale(1.1);
}

.quote-btn.btn-success i {
    color: white;
}

/* تنسيق responsive للأزرار */
@media (max-width: 768px) {
    .action-button.quote-btn {
        flex: 1;
        min-width: 100px;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .action-button.quote-btn span {
        display: none;
    }
    
    .action-button.quote-btn i {
        margin: 0;
    }
}

/* إشعارات طلب عرض السعر */
.quote-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    animation: slideInRight 0.3s ease-out;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: none;
    border-radius: 8px;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* تنسيق RTL */
[dir="rtl"] .quote-notification {
    right: auto;
    left: 20px;
    animation: slideInLeft 0.3s ease-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}
