.woo-mobile-cart-icon {
    display: none;
    position: fixed;
    bottom: 200px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #000000; /* Cor alterada para preto */
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    z-index: 9999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.woo-mobile-cart-icon:hover {
    transform: scale(1.1);
    background-color: #333333; /* Cor do hover alterada para preto mais claro */
}

.woo-mobile-cart-icon a {
    color: #fff;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.woo-mobile-cart-icon i {
    font-size: 20px;
}

.woo-mobile-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff0000; /* Sugiro manter o contador em vermelho para contraste */
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .woo-mobile-cart-icon {
        display: block;
    }
}