/* Стили для кнопки корзины */
#floatingCartButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: red;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    z-index: 1000;
    color: white;
    font-weight: bold;
    font-size: 14px;
    user-select: none;
    transition: transform 0.1s ease;
}

/* Стили для медиа-запроса (мобильные устройства) */
@media (max-width: 768px) {
    #floatingCartButton {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}