.mobile-cart {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100;
    display: none;
    visibility: hidden;
}
.mobile-cart.visible{
    visibility: visible;
}

.mobile-cart-inner {
    background: #ffffff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}



.mobile-cart-icon {
    color: #333;
    font-size: 24px;
}

.quality-icon {
    position: absolute;
    bottom: -8px;
    right: -8px;
    color: #ffd700;
    font-size: 14px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.mobile-cart-counter {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444 !important;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Показываем только на мобильных устройствах */
@media (max-width: 768px) {
    .mobile-cart {
        display: block;
    }
}
