/* Custom styles for Get Quotation button */
.product-cart-wrap .product-card-bottom .add-cart .get-quotation-btn {
    position: relative;
    display: inline-block;
    padding: 8px 24px 8px 24px; /* Slightly bigger padding */
    border-radius: 5px; /* Slightly larger border radius */
    background-color: #28a745; /* Bootstrap success green, good shade of green */
    color: #fff; /* White text by default */
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-cart-wrap .product-card-bottom .add-cart .get-quotation-btn:hover {
    background-color: #218838; /* Darker green on hover */
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3); /* Green shadow */
}

.product-cart-wrap .product-card-bottom .add-cart .get-quotation-btn i {
    color: #fff; /* Ensure icon is white */
}

/* Override any conflicting styles */
.product-cart-wrap .product-card-bottom .add-cart .add.get-quotation-btn {
    background-color: #28a745 !important;
    color: #fff !important;
}

.product-cart-wrap .product-card-bottom .add-cart .add.get-quotation-btn:hover {
    background-color: #218838 !important;
    color: #fff !important;
}

