#floating-cart-button {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #E20A0A; /* Puedes cambiar este color para que coincida con los colores de tu tema */
    color: #ffffff;
    padding: 10px 20px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    z-index: 9999;
    display: none; /* Oculto inicialmente */
}

@media screen and (max-width: 768px) {
    #floating-cart-button {
        width: 90%;
    }
}

