.social-contact-bar-right,
.social-contact-bar-left {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    grid-auto-flow: row;          /* ابتدا ستون رو پر می‌کنه */
    gap: 10px;
    max-height: 90vh;
    z-index: 9999;
    width: 70px;                 /* عرض ثابت برای ستون‌ها */
    padding: 5px;
}

/* سمت راست و چپ */
.social-contact-bar-right { right: 0; }
.social-contact-bar-left { left: 0; }

/* وقتی تعداد زیاد شد: دو ستون، هر ستون با max 50% ارتفاع */
@media (min-height: 600px) {
    .social-contact-bar-right,
    .social-contact-bar-left {
        grid-template-columns: 1fr 1fr;  /* دو ستون */
        grid-auto-rows: 40px;           /* ارتفاع هر آیکون */
        max-height: none;               /* ارتفاع باز */
        width: 80px;
    }
}

/* آیکون‌ها */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: transparent;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

/* سایز آیکون‌ها */
.social-icon img {
    width: 20px;
    height: 20px;
}

/* هاور دایره‌ای */
.social-icon:hover {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    transform: scale(1.1);
}
