.sp-auto-floating-wrapper {
    position: fixed;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column; 
    gap: 12px; 
    z-index: 99; 
}

.sp-auto-floating-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
    border-radius: 0%; 
}

.sp-auto-floating-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sp-auto-floating-item:hover {
    transform: scale(1.15) translateX(-3px);
    filter: drop-shadow(0px 4px 8px rgba(0,0,0,0.3));
}


@media (max-width: 767px) {
    .sp-auto-floating-wrapper {
        right: 8px; 
        gap: 8px;
    }

    .sp-auto-floating-item {
        width: 40px;
        height: 40px;
    }

    .sp-auto-floating-item:hover {
        transform: scale(0.95);
    }
}