/**
 * WooCommerce Elementor Contact Button - Frontend Styles
 */

.woo-elementor-contact-buttons {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.woo-elementor-contact-buttons .button {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid #ccc;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.woo-elementor-contact-buttons .button:hover {
    background-color: #e8e8e8;
    border-color: #999;
}

.woo-elementor-contact-buttons .woo-contact-us-btn {
    background-color: #f5f5f5;
}

.woo-elementor-contact-buttons .woo-contact-us-btn:hover {
    background-color: #e8e8e8;
    cursor: pointer;
}

/* Responsive design */
@media (max-width: 480px) {
    .woo-elementor-contact-buttons {
        flex-direction: column;
        gap: 5px;
    }

    .woo-elementor-contact-buttons .button {
        width: 100%;
    }
}

/* Accessibility - Focus states */
.woo-elementor-contact-buttons .button:focus {
    outline: 2px solid #0073aa;
    outline-offset: 2px;
}

/* Loading state (optional) */
.woo-elementor-contact-buttons .button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
