/* WooCommerce White Fonts v1.3 */
/* Base text white */
.woocommerce * { color: #fff !important; }

/* Exempt form inputs */
.woocommerce input,
.woocommerce select,
.woocommerce textarea,
.woocommerce .input-text,
.woocommerce .search-field { color: initial !important; }

/* Exempt notices */
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error *,
.woocommerce .woocommerce-info *,
.woocommerce .woocommerce-message * { color: initial !important; }

/* Exempt default buttons to preserve theme default */
.woocommerce a.button,
.woocommerce button,
.woocommerce .button { color: initial !important; }

/* Link hover: red */
.woocommerce a:hover { color: #e63946 !important; }

/* Button hover: red bg, white text */
.woocommerce a.button:hover,
.woocommerce button:hover,
.woocommerce .button:hover {
    color: #fff !important;
    background-color: #e63946 !important;
    border-color: #e63946 !important;
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

/* Style download buttons in My Account downloads */
.woocommerce-MyAccount-downloads-file.button.alt {
    background-color: #e63946 !important;
    color: #fff !important;
    font-family: inherit !important;
    transition: transform 0.2s ease;
}
.woocommerce-MyAccount-downloads-file.button.alt:hover {
    transform: scale(1.05) !important;
    background-color: #d12b3a !important;
}

/* Fix My Account area background */
.woocommerce .woocommerce-MyAccount-navigation,
.woocommerce .woocommerce-MyAccount-content {
    background-color: #111 !important;
}
.woocommerce .woocommerce-MyAccount-navigation a,
.woocommerce .woocommerce-MyAccount-navigation li {
    color: #fff !important;
}

/* Placeholders */
.woocommerce ::placeholder { color: initial !important; }
