/* إصلاح أزرار المنتجات - ملف منفصل */
.product-card {
    position: relative;
    overflow: visible !important;
}

.product-info {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: 200px !important;
}

.product-actions {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    background: #f8f9fa !important;
    padding: 15px !important;
    margin-top: 15px !important;
    border-radius: 10px !important;
    border: 1px solid #e9ecef !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    z-index: 100 !important;
}

.product-actions .btn {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #dc3545 !important;
    color: white !important;
    border: none !important;
    padding: 12px 20px !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
    transition: all 0.3s ease !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    min-width: 140px !important;
    flex: 1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.product-actions .btn:hover {
    background: #c82333 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3) !important;
    color: white !important;
    text-decoration: none !important;
}

.product-actions .btn-outline {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.product-actions .btn-outline:hover {
    background: #dc3545 !important;
    color: white !important;
}

.product-actions .btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border: none !important;
}

.product-actions .btn-secondary:hover {
    background: #5a6268 !important;
    color: white !important;
}

/* تحسين للشاشات الصغيرة */
@media (max-width: 768px) {
    .product-actions {
        flex-direction: column !important;
        padding: 15px !important;
        gap: 12px !important;
    }
    
    .product-actions .btn {
        min-width: 100% !important;
        margin-bottom: 0 !important;
        padding: 15px 20px !important;
        font-size: 1rem !important;
        border-radius: 20px !important;
    }
    
    .product-info {
        min-height: 180px !important;
    }
    
    .product-card {
        margin-bottom: 20px !important;
    }
}

/* الشاشات الصغيرة جداً */
@media (max-width: 480px) {
    .product-actions {
        padding: 12px !important;
    }
    
    .product-actions .btn {
        padding: 12px 15px !important;
        font-size: 0.9rem !important;
    }
    
    .product-info {
        min-height: 160px !important;
        padding: 1rem !important;
    }
    
    .product-info h3 {
        font-size: 1.1rem !important;
    }
    
    .product-info p {
        font-size: 0.85rem !important;
    }
}

/* التابلت */
@media (min-width: 769px) and (max-width: 1024px) {
    .product-actions {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
    }
    
    .product-actions .btn {
        flex: 1 !important;
        min-width: 120px !important;
    }
}
