.fl-social-bar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 8800;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fl-social-bar a {
    display: flex;
    align-items: center;
    text-decoration: none;
    overflow: hidden;
    height: 44px;
    border-radius: 0 6px 6px 0;
    transition: width .28s cubic-bezier(.4,0,.2,1), box-shadow .28s;
    width: 44px;          /* collapsed = icon only */
    position: relative;
    box-shadow: 2px 2px 8px rgba(0,0,0,.18);
}

.fl-social-bar a:hover {
    width: 150px;         /* expanded = icon + label */
    box-shadow: 3px 3px 14px rgba(0,0,0,.28);
}

/* Icon container */
.fl-social-bar a .fl-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: #fff;
}

/* Label */
.fl-social-bar a .fl-label {
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .4px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .22s .05s, transform .22s .05s;
    font-family: 'Outfit', system-ui, sans-serif;
}

.fl-social-bar a:hover .fl-label {
    opacity: 1;
    transform: translateX(0);
}

/* Brand colours */
.fl-social-bar .fls-wa  { background: #25d366; }
.fl-social-bar .fls-fb  { background: #1877f2; }
.fl-social-bar .fls-ig  { background: linear-gradient(135deg,#f9ce34,#ee2a7b,#6228d7); }
.fl-social-bar .fls-yt  { background: #ff0000; }
.fl-social-bar .fls-li  { background: #0a66c2; }
.fl-social-bar .fls-tw  { background: #000; }

/* WhatsApp pulse ring */
@keyframes fls-pulse {
    0%,100% { box-shadow: 2px 2px 8px rgba(0,0,0,.18), 0 0 0 0 rgba(37,211,102,.55); }
    60%      { box-shadow: 2px 2px 8px rgba(0,0,0,.18), 0 0 0 8px rgba(37,211,102,0); }
}
.fl-social-bar .fls-wa { animation: fls-pulse 2.4s ease-in-out infinite; }

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