
/* ===== Social Sidebar ===== */
.social-sidebar {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    background: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    border-radius: 0 8px 8px 0;
    overflow: hidden;
}

[dir="rtl"] .social-sidebar {
    left: auto;
    right: 0;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    border-radius: 8px 0 0 8px;
}

.social-sidebar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: white;
    font-size: 1.2rem;
    transition: width 0.3s ease;
    text-decoration: none;
    position: relative;
}

.social-sidebar a:hover {
    width: 140px;
    justify-content: flex-start;
    padding-left: 15px;
}

[dir="rtl"] .social-sidebar a:hover {
    padding-left: 0;
    padding-right: 15px;
}

.social-sidebar a span {
    display: none;
    margin-left: 10px;
    font-size: 0.9rem;
    white-space: nowrap;
}

[dir="rtl"] .social-sidebar a span {
    margin-left: 0;
    margin-right: 10px;
}

.social-sidebar a:hover span {
    display: inline-block;
}

.social-sidebar .facebook { background: #3b5998; }
.social-sidebar .twitter { background: #1da1f2; }
.social-sidebar .linkedin { background: #0077b5; }
.social-sidebar .whatsapp { background: #25d366; }
.social-sidebar .telegram { background: #0088cc; }
.social-sidebar .email { background: #EA4335; }

@media (max-width: 768px) {
    .social-sidebar {
        display: none; /* Hide on mobile to save space */
    }
}
