/* ===== FLOATING MENU ===== */
.floating-menu {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: linear-gradient(145deg, rgba(145,145,145, .2), rgba(180, 180, 180, .2));
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(76, 175, 80, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
    border: 1px solid rgba(76, 175, 80, 0.3);
    display: flex;
    gap: 15px;
    align-items: center;
}

.floating-menu__btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(30, 30, 30, 0.8);
    border: 2px solid var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.floating-menu__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.2), transparent);
    transition: left 0.5s ease;
}

.floating-menu__btn:hover::before {
    left: 100%;
}

.floating-menu__btn:hover {
    background: rgba(76, 175, 80, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
    color: white;
    border-color: var(--secondary-green);
}

.floating-menu__btn i {
    font-size: 1.2rem;
    z-index: 1;
}

.floating-menu__btn--menu {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.floating-menu__btn--menu:hover {
    background: var(--secondary-green);
    border-color: var(--secondary-green);
}

/* Анимация появления */
@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.floating-menu {
    animation: floatIn 0.5s ease-out;
}

/* ===== АДАПТИВНОСТЬ FLOATING MENU ===== */
@media (max-width: 768px) {
    .floating-menu {
        bottom: 20px;
        padding: 12px 20px;
        gap: 12px;
    }
    
    .floating-menu__btn {
        width: 45px;
        height: 45px;
    }
    
    .floating-menu__btn i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .floating-menu {
        bottom: 15px;
        padding: 10px 15px;
        gap: 10px;
        border-radius: 40px;
    }
    
    .floating-menu__btn {
        width: 40px;
        height: 40px;
    }
    
    .floating-menu__btn i {
        font-size: 1rem;
    }
}