/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 23 2026 | 17:20:05 */
.alignwide{
	margin-inline: 0;
}

.entry-title{
	margin-top: 16px;
}

/* ====================================================
   ESTILOS BOTON FINALIZAR COMPRA (CARRITO)
   ==================================================== */

/* Estilo base (replicando el botón Contacto) */
.wp-block-woocommerce-cart .wc-block-cart__submit-button {
    background-color: var(--e-global-color-540259f, #619b64) !important;
    color: #ffffff !important;
    font-family: "Poppins", sans-serif !important;
    font-size: 1.1em !important;
    font-weight: 500 !important;
    line-height: 33px !important;
    box-shadow: 4px 4px 0 0 rgba(0,0,0,0.5) !important;
    border: none !important;
    border-radius: 4px !important; /* Puedes ajustarlo si tu botón Contacto es más cuadrado */
    padding: 10px 24px !important; /* Mantenemos un padding horizontal ancho porque es un botón principal */
    transition: all 0.2s ease-in-out !important;
}

/* Efecto Hover (limpiando el borde azul y dando efecto de presión) */
.wp-block-woocommerce-cart .wc-block-cart__submit-button:hover,
.wp-block-woocommerce-cart .wc-block-cart__submit-button:focus {
    background-color: #4e8251 !important; /* Un tono verde ligeramente más oscuro */
    color: #ffffff !important;
    box-shadow: 2px 2px 0 0 rgba(0,0,0,0.5) !important; /* Reduce la sombra */
    transform: translate(2px, 2px) !important; /* Desplaza el botón físicamente simulando el clic */
    outline: none !important; /* Elimina la línea azul nativa de WooCommerce */
    text-decoration: none !important;
}