.fsc-wrapper {
    position: fixed;
    bottom: 24px;
}

.fsc-circle-menu {
    position: relative;
    width: 60px;
    height: 60px;
}

.fsc-main-btn {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    z-index: 3;
}

.fsc-main-btn:hover {
    transform: scale(1.05);
}

.fsc-main-btn i {
    font-size: 22px;
}

.fsc-main-btn img,
.fsc-social-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.fsc-social-list {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    pointer-events: none;
}

.fsc-social-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
    opacity: 0;
    transform: translate(4px, 4px) scale(0.6);
    transition: transform 0.35s ease, opacity 0.25s ease;
    pointer-events: none;
}

.fsc-social-item i {
    font-size: 20px;
}

.fsc-circle-menu.is-open .fsc-social-list {
    pointer-events: auto;
}

.fsc-circle-menu.is-open .fsc-social-item {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 767px) {
    .fsc-wrapper {
        bottom: 18px;
    }

    .fsc-main-btn {
        width: 56px;
        height: 56px;
    }

    .fsc-social-item {
        width: 48px;
        height: 48px;
    }
}