/* Menu flottante circolare - Solo tablet/mobile */
.floating-menu-container {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .floating-menu-container {
        display: block;
    }
}

.floating-menu-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--e-global-color-primary);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.floating-menu-toggle span {
    width: 16px;
    height: 2px;
    background: black;
    transition: all 0.3s ease;
}

.floating-menu-toggle.active {
    background: white;
    transform: translateX(-50vw) translateX(50px);
}

.floating-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
}

.floating-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.floating-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.floating-menu-nav {
    position: absolute;
    bottom: 25px;
    right: 25px;
    pointer-events: none;
}

.floating-menu-item {
    position: absolute;
    bottom: 0;
    right: 0;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translate(0, 0) scale(0);
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-menu-item .menu-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--e-global-color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.floating-menu-item .menu-circle svg {
    width: 18px !important;
    height: 18px !important;
    stroke-width: 2;
    color: black;
}

.floating-menu-item .menu-label {
    position: absolute;
    bottom: 45px;
    background: #000;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.floating-menu-item .menu-label::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #000;
}

.floating-menu-item:hover .menu-circle {
    background: var(--e-global-color-primary);
}

.floating-menu-item:hover .menu-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-menu-container.active .floating-menu-nav {
    transform: translateX(-40vw) translateX(50px);
}

.floating-menu-container.active .floating-menu-item {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.floating-menu-container.active .floating-menu-item:nth-child(1) {
    transform: translate(-105px, 0) scale(1);
    transition-delay: 0.1s;
}

.floating-menu-container.active .floating-menu-item:nth-child(2) {
    transform: translate(-95px, -40px) scale(1);
    transition-delay: 0.15s;
}

.floating-menu-container.active .floating-menu-item:nth-child(3) {
    transform: translate(-65px, -70px) scale(1);
    transition-delay: 0.2s;
}

.floating-menu-container.active .floating-menu-item:nth-child(4) {
    transform: translate(-25px, -80px) scale(1);
    transition-delay: 0.25s;
}

.floating-menu-container.active .floating-menu-item:nth-child(5) {
    transform: translate(15px, -70px) scale(1);
    transition-delay: 0.3s;
}

.floating-menu-container.active .floating-menu-item:nth-child(6) {
    transform: translate(45px, -40px) scale(1);
    transition-delay: 0.35s;
}

.floating-menu-container.active .floating-menu-item:nth-child(7) {
    transform: translate(55px, 0) scale(1);
    transition-delay: 0.4s;
}