.request-quote {
    /* تأكد من عدم وجود خصائص CSS تخفي النص */
    color: #000; /* لون النص */
    font-size: 16px; /* حجم الخط */
    display: inline-block; /* تأكد من أن الزر يتم عرضه */
    /* أي خصائص أخرى قد تكون ضرورية */
}

/* CSS لتنسيق زر "View Product" */
.view-product {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff; /* لون الخلفية */
    color: #fff; /* لون النص */
    border-radius: 5px; /* زوايا دائرية */
    text-decoration: none; /* إزالة التسطير */
    font-size: 14px; /* حجم الخط */
    font-weight: bold; /* خط عريض */
    transition: background-color 0.3s ease, color 0.3s ease; /* تأثير الانتقال */
}

.view-product:hover {
    background-color: #0056b3; /* تغيير لون الخلفية عند التمرير */
    color: #f8f9fa; /* تغيير لون النص عند التمرير */
}

.view-product i {
    margin-right: 5px; /* مسافة بين الأيقونة والنص */
}