/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 02 2026 | 07:40:30 */
/* === КНОПКИ WOOCOMMERCE === */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout button,
.woocommerce-checkout .button {
    background-color: #0A544F !important;
    color: #ffffff !important;
    border-radius: 25px !important;
    border: none !important;
    box-shadow: none !important;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

/* hover */
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-checkout button:hover,
.woocommerce-checkout .button:hover {
    background-color: #083f3b !important;
    color: #ffffff !important;
}

/* focus / active — убираем фиолетовую обводку */
.woocommerce a.button:focus,
.woocommerce button.button:focus,
.woocommerce input.button:focus {
    outline: none !important;
    box-shadow: none !important;
}