/**
 * Elementor Button Overrides
 * Fix button colors to match brand
 */

/* View Details Button */
.elementor-button,
.elementor-button-link,
a.elementor-button {
    transition: all 0.3s ease !important;
}

/* Red buttons hover state */
.elementor-button.elementor-button-danger:hover,
.elementor-button[style*="background"]:hover,
.elementor-button-wrapper .elementor-button:hover {
    background-color: #C41E3A !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3) !important;
}

/* Ensure text stays white on hover */
.elementor-button:hover .elementor-button-text,
.elementor-button:hover {
    color: #FFFFFF !important;
}

/* View Details specific */
.elementor-button-text:contains("View Details") {
    color: #FFFFFF !important;
}

/* All car detail buttons */
.car-card .elementor-button:hover,
.sharmancar-feature-button:hover,
button:contains("View Details"):hover,
a:contains("View Details"):hover {
    background: #C41E3A !important;
    color: #FFFFFF !important;
}
