/* --- 1. CONTENEDORES --- */
.cart, 
.wc-block-grid__product-add-to-cart, 
.wc-block-components-product-button,
.woocommerce div.product form.cart {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-top: 15px !important;
}

/* --- 2. EL BOTÓN MORADO PRINCIPAL --- */
.vp-buy-now-link {
    background-color: #5B2C6F !important;
    color: #ffffff !important;
    border: 2px solid transparent !important; 
    transition: all 0.3s ease !important;
    border-radius: 50px !important;
    padding: 14px 30px !important;
    text-transform: uppercase !important;
    font-weight: bold !important;
    text-decoration: none !important;
    display: block !important;
    width: 100% !important;
    max-width: 300px !important;
    text-align: center !important;
    font-size: 15px !important;
    box-sizing: border-box !important;
}

.vp-buy-now-link:hover {
    background-color: #7D3C98 !important;
    border-color: #EAB839 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15) !important;
    color: #ffffff !important;
}

/* --- 3. DETALLE DE PRODUCTO: HOVER SIN FONDO --- */
.woocommerce div.product form.cart button.single_add_to_cart_button.button.alt {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 10px 0 0 0 !important;
    color: #777777 !important; 
    text-decoration: none !important;
    font-weight: 400 !important; 
    font-size: 13px !important;
    width: auto !important;
    height: auto !important;
    display: inline-block !important;
    text-transform: none !important;
}

/* Anulamos el morado del hover de woo-styles.txt */
.woocommerce div.product form.cart button.single_add_to_cart_button.button.alt:hover {
    background: transparent !important; /* MATA EL FONDO MORADO */
    background-color: transparent !important;
    color: #EAB839 !important; /* LETRA DORADA */
    text-decoration: underline !important;
    border: none !important;
    box-shadow: none !important;
}

/* --- 4. TIENDA Y HOME: HOVER SIN FONDO --- */
.wc-block-components-product-button__button.add_to_cart_button {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    color: #777777 !important;
    text-decoration: underline !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    text-transform: none !important;
}

/* Anulamos el morado del hover en la tienda */
.wc-block-components-product-button__button.add_to_cart_button:hover {
    background: transparent !important; /* MATA EL FONDO MORADO */
    background-color: transparent !important;
    color: #EAB839 !important; /* LETRA DORADA */
    text-decoration: underline !important;
}
