/* Floating Social Sidebar - Left Center */
.social-float-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.social-float-item {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    height: 48px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    text-decoration: none;
    transition: width 0.35s ease;
    width: 48px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.35);
}

.social-float-item:hover {
    width: 190px;
    text-decoration: none;
}

.social-float-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-float-icon svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

.social-float-label {
    white-space: nowrap;
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.25s ease 0.05s, transform 0.25s ease 0.05s;
    pointer-events: none;
    padding-right: 12px;
}

.social-float-item:hover .social-float-label {
    opacity: 1;
    transform: translateX(0);
}

/* Colors per network */
.social-float-item.sf-whatsapp1 { background-color: #25d366; }
.social-float-item.sf-whatsapp2 { background-color: #1da851; }
.social-float-item.sf-facebook  { background-color: #1877f2; }
.social-float-item.sf-youtube   { background-color: #ff0000; }
.social-float-item.sf-discord   { background-color: #5865f2; }
