/* Floating Cart Button */
.cart-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1100;
    transition: all 0.3s ease;
}

.cart-float-btn {
    background: linear-gradient(135deg, var(--primary-blue, #2E99CD) 0%, var(--dark-blue, #1e7ba8) 100%);
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    box-shadow: 0 4px 20px rgba(46, 153, 205, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.cart-float-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(46, 153, 205, 0.6);
}

.cart-float-btn:active {
    transform: translateY(-1px);
}

.cart-float-icon {
    position: relative;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.cart-float-icon svg {
    width: 24px;
    height: 24px;
}

.cart-float-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #dc3545;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid white;
}

.cart-float-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    flex: 1;
}

.cart-float-count {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.9;
}

.cart-float-total {
    font-size: 1rem;
    font-weight: 700;
}

/* На мобильных устройствах */
@media (max-width: 768px) {
    .cart-float {
        bottom: 80px;
        left: 16px;
        right: 16px;
    }

    .cart-float-btn {
        min-width: auto;
        width: 100%;
        justify-content: center;
    }

    .cart-float-info {
        align-items: center;
    }
}

/* Адаптация для очень маленьких экранов */
@media (max-width: 480px) {
    .cart-float {
        bottom: 70px;
    }

    .cart-float-btn {
        padding: 10px 16px;
    }

    .cart-float-icon {
        width: 36px;
        height: 36px;
    }

    .cart-float-icon svg {
        width: 20px;
        height: 20px;
    }

    .cart-float-count {
        font-size: 0.8rem;
    }

    .cart-float-total {
        font-size: 0.9rem;
    }
}
