.bsf-social-bar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    background: #f1f1f1;
    border-radius: 0 18px 18px 0;
    padding: 12px 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 58px;
}

.bsf-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #111111;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.bsf-social-link:hover,
.bsf-social-link:focus {
    transform: scale(1.12);
    opacity: 0.85;
    outline: none;
}

.bsf-social-link svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    display: block;
}

@media (max-width: 1024px) {
    .bsf-social-bar {
        display: none;
    }
}
