/* OCULTAR CARRITO ROSA ANTIGUO Y MOSTRAR SOLO EL MORADO */

/* Ocultar el carrito rosa flotante antiguo */
#ultimateCartBtn,
#advancedCartBtn,
.floating-cart-btn:not(#workingCartBtn),
button.fixed.bottom-4.right-4.bg-pink-500,
button.fixed.bottom-4.right-4.bg-pink-600,
button.fixed.bottom-20.right-4.bg-pink-500,
button.fixed.bottom-20.right-4.bg-pink-600,
.cart-fab,
.fab-cart {
    display: none !important;
}

/* Asegurar que el carrito morado sea visible */
#workingCartBtn {
    display: flex !important;
    background-color: rgb(147 51 234) !important; /* purple-600 */
}

/* Ocultar modales de carrito antiguos */
#ultimateCartModal,
#advancedCartModal,
.cart-modal:not(#cartModal) {
    display: none !important;
}

/* Estilo mejorado para el botón del carrito morado */
#workingCartBtn {
    position: fixed !important;
    bottom: 80px !important;
    right: 20px !important;
    z-index: 9999 !important;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.4) !important;
    transition: all 0.3s ease !important;
}

#workingCartBtn:hover {
    background-color: rgb(126 34 206) !important; /* purple-700 */
    transform: scale(1.1) !important;
}

/* Asegurar que el badge sea visible */
#workingCartBtn .badge {
    background-color: rgb(239 68 68) !important; /* red-500 */
    font-weight: bold !important;
}