/* ============================================
   SocialMedia.css - استایل شبکه‌های اجتماعی
   ============================================ */

.footer-simple-social {
    display: flex;
    gap: var(--gap-lg, 1rem);
    align-items: center;
}

.social-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    cursor: pointer;
    transition: all var(--transition-md, 0.3s ease);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
    border: var(--border-md, 2px) solid rgba(245, 237, 224, 0.15);
    padding: 0;
    opacity: 1;
}

.social-item img {
    width: 2.2rem;
    height: 2.2rem;
    display: block;
    transition: all var(--transition-md, 0.3s ease);
}

.social-item:hover {
    transform: scale(1.15) translateY(-3px);
    background: rgba(196, 149, 106, 0.15);
    border-color: var(--elam-gold, #d4a847);
    box-shadow: 0 4px 20px rgba(212, 168, 71, 0.2);
}

.social-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.social-item.eitaa:hover {
    border-color: #00A693;
    background: rgba(0, 166, 147, 0.1);
}
.social-item.whatsapp:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}
.social-item.instagram:hover {
    border-color: #E4405F;
    background: rgba(228, 64, 95, 0.1);
}
.social-item.rubika:hover {
    border-color: #FF6B35;
    background: rgba(255, 107, 53, 0.1);
}
.social-item.telegram:hover {
    border-color: #0088CC;
    background: rgba(0, 136, 204, 0.1);
}

/* ============================================
   واکنش‌گرایی
   ============================================ */

@media(max-width: 767px) {
    .footer-simple-social {
        gap: 0.75rem;
    }
    .social-item {
        width: 2.8rem;
        height: 2.8rem;
    }
    .social-item img {
        width: 1.8rem;
        height: 1.8rem;
    }
}

@media(min-width: 768px) and (max-width: 1023px) {
    .footer-simple-social {
        gap: 0.85rem;
    }
    .social-item {
        width: 3rem;
        height: 3rem;
    }
    .social-item img {
        width: 2rem;
        height: 2rem;
    }
}

@media(min-width: 1200px) {
    .footer-simple-social {
        gap: 1.25rem;
    }
    .social-item {
        width: 3.5rem;
        height: 3.5rem;
    }
    .social-item img {
        width: 2.4rem;
        height: 2.4rem;
    }
}

.social-item:focus-visible {
    outline: var(--border-thick, 3px) solid var(--primary-blue, #4A90E2);
    outline-offset: var(--border-md, 2px);
}