/**
 * checkout.css
 * Escopo recomendado: checkout (botão "Finalizar compra")
 */

/* BOTÃO FINALIZAR COMPRA - Checkout */
body.woocommerce-checkout #place_order,
.woocommerce-checkout #place_order,
button#place_order,
input#place_order.button {
    background: linear-gradient(135deg, #FF6B35 0%, #ff5a1f 100%) !important;
    color: #fff !important;
    border: 2px solid #FF6B35 !important;
    border-radius: 10px !important;
    font-size: 1.2rem !important;
    font-weight: 900 !important;
    text-align: center !important;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.18) !important;
    padding: 14px 32px !important;
    margin: 20px 0 0 0 !important;
    width: auto !important;
    min-width: 220px;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    transition: all 0.3s cubic-bezier(.4,0,.2,1) !important;
    cursor: pointer !important;
    outline: none !important;
    display: inline-block !important;
}

body.woocommerce-checkout #place_order:hover,
.woocommerce-checkout #place_order:hover,
button#place_order:hover,
input#place_order.button:hover {
    background: linear-gradient(135deg, #ff5a1f 0%, #FF6B35 100%) !important;
    border-color: #ff5a1f !important;
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.28) !important;
    transform: translateY(-2px) scale(1.03);
}

body.woocommerce-checkout #place_order:active,
body.woocommerce-checkout #place_order:focus,
.woocommerce-checkout #place_order:active,
.woocommerce-checkout #place_order:focus,
button#place_order:active,
button#place_order:focus,
input#place_order.button:active,
input#place_order.button:focus {
    outline: 2px solid #ff5a1f !important;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.18) !important;
    border-color: #ff5a1f !important;
}
