/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 09 2025 | 20:15:38 */
/* Estilos para el botón de finalizar compra */
.wc-proceed-to-checkout {
    margin: 20px 0;
}

.wc-proceed-to-checkout .checkout-button {
    /* Colores y fondo */
    background-color: #451646 !important;
    color: #ffffff !important;
    border: 2px solid #451646 !important;
    
    /* Tipografía */
    font-size: 18px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    
    /* Espaciado y dimensiones */
    padding: 16px 40px !important;
    min-height: 55px !important;
    width: 100% !important;
    
    /* Bordes y sombras */
    border-radius: 4px !important;
    box-shadow: 0 4px 12px rgba(69, 22, 70, 0.25) !important;
    
    /* Efectos */
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
    text-align: center !important;
    cursor: pointer !important;
}

/* Efecto hover */
.wc-proceed-to-checkout .checkout-button:hover {
    background-color: #8B6594 !important;
    border-color: #8B6594 !important;
    box-shadow: 0 6px 16px rgba(139, 101, 148, 0.35) !important;
    transform: translateY(-2px) !important;
}

/* Efecto al hacer clic */
.wc-proceed-to-checkout .checkout-button:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px rgba(69, 22, 70, 0.3) !important;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .wc-proceed-to-checkout .checkout-button {
        font-size: 16px !important;
        padding: 14px 30px !important;
        min-height: 50px !important;
    }
}

