/* حالت کلی ویجت */
.support-widget {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap; /* این باعث میشه که در صفحه‌های کوچیک‌تر، عناصر بریزند پایین */
}

/* اطلاعات و تصویر پشتیبان */
.support-info {
    text-align: left;
    flex: 1;
}

.support-name {
    font-size: 13px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-top: 5px;
}

.support-phone {
    font-size: 13px;
    font-weight: bold;
    color: #000;
    margin-bottom: 8px;
}

.support-phone .phone-number {
    color: #d4a017;
    font-weight: bold;
}

.support-widget a {
    margin: 4px;
    text-decoration: none;
}

.support-widget i {
    font-size: 22px;
    margin: 4px;
}

/* تصویر پشتیبان */
.support-image {
    flex-shrink: 0;
    order: 1;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    text-align: center;
}

.support-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* مدیا کوئری برای موبایل */
@media (max-width: 767px) {
    .support-widget {
        flex-direction: column; /* در موبایل، نمایش عمودی */
        align-items: center;
    }

    .support-info {
        text-align: center; /* مرکز چیدمان */
        margin-top: 10px;
    }

    .support-name {
        font-size: 14px;
        margin-top: 10px;
    }

    .support-phone {
        font-size: 14px;
    }

    .support-widget i {
        font-size: 25px;
    }

    .support-image {
        margin-bottom: 10px; /* کمی فاصله از پایین تصویر */
    }
}
.support-widget i.fab.fa-whatsapp {
    color: #25D366;
}

.support-widget i.fab.fa-telegram {
    color: #0088cc;
}
.support-image img {
    width: 70px !important;
    height: 70px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    display: block;
    margin: 0 auto;
}
