/**
 * cart-button.css
 * Responsável SOMENTE pelo botão "Finalizar Pedido" do CARRINHO
 * Escopo: body.woocommerce-cart
 */

/* ================================
   BOTÃO FINALIZAR PEDIDO (CARRINHO)
================================ */

body.woocommerce-cart .woocommerce-proceed-to-checkout {
    margin-top: 20px;
}

body.woocommerce-cart a.checkout-button,
body.woocommerce-cart .checkout-button,
body.woocommerce-cart .woocommerce-proceed-to-checkout a {
    background: linear-gradient(135deg, #FF6B35 0%, #ff5a1f 100%) !important;
    color: #ffffff !important;
    padding: 12px 22px !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    letter-spacing: 1px !important;
    border-radius: 10px !important;
    border: none !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.28) !important;
    transition: all 0.3s cubic-bezier(.4,0,.2,1) !important;
    cursor: pointer !important;
}

/* Hover */
body.woocommerce-cart a.checkout-button:hover,
body.woocommerce-cart .checkout-button:hover,
body.woocommerce-cart .woocommerce-proceed-to-checkout a:hover {
    background: linear-gradient(135deg, #ff5a1f 0%, #FF6B35 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4) !important;
}

/* Focus / Active */
body.woocommerce-cart a.checkout-button:focus,
body.woocommerce-cart a.checkout-button:active,
body.woocommerce-cart .checkout-butt
