/* Product Detail Page Button Color Fixes */

/* Main Add to Cart and Purchase Now buttons */
.btn-primary-dark,
.btn-primary {
    background-color: #3498db !important;
    border-color: #3498db !important;
    color: white !important;
}

.btn-primary-dark:hover,
.btn-primary:hover {
    background-color: #2c3e50 !important;
    border-color: #2c3e50 !important;
    color: white !important;
}

/* Product card buttons in related products section */
.product-btn-primary {
    background-color: #3498db !important;
    border-color: #3498db !important;
    color: white !important;
}

.product-btn-primary:hover {
    background-color: #2980b9 !important;
    border-color: #2980b9 !important;
    color: white !important;
}

.product-btn-secondary {
    background-color: transparent !important;
    color: #3498db !important;
    border-color: #3498db !important;
}

.product-btn-secondary:hover {
    background-color: #3498db !important;
    color: white !important;
    border-color: #3498db !important;
}

/* Quick view button */
.quick-view-btn {
    background-color: #3498db !important;
    color: white !important;
    border-color: #3498db !important;
}

.quick-view-btn:hover {
    background-color: #2c3e50 !important;
    color: white !important;
    text-decoration: none !important;
}

/* Ensure all buttons have white text on blue background */
.btn-primary,
.btn-primary-dark,
.product-btn-primary,
.jumia-btn-primary {
    color: white !important;
}

.btn-primary:hover,
.btn-primary-dark:hover,
.product-btn-primary:hover,
.jumia-btn-primary:hover {
    color: white !important;
}