/* FOOTER SHARED */
footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 3rem 5% 2rem;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-family: 'Alibaba', sans-serif;
    font-size: 1.8rem;
    color: var(--red);
    margin-bottom: 0.5rem;
}

.footer-desc {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.socials a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--muted);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.socials a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--red);
    opacity: 0;
    transition: opacity 0.2s ease;
    border-radius: 11px;
}

.socials a:hover::before { opacity: 0.15; }
.socials a:hover { border-color: var(--red); color: var(--red); transform: translateY(-3px); }

.socials img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}



.social-label { font-size: 0.7rem; color: var(--muted); }

.copyright { color: var(--muted); font-size: 0.8rem; text-align: center; }

@media (max-width: 768px) {
    footer { padding: 2rem 5%; }
    .footer-logo { font-size: 1.5rem; }
    .footer-desc { font-size: 0.8rem; }
    .socials { gap: 0.5rem; }
    .socials a { width: 42px; height: 42px; }
    .social-label { font-size: 0.65rem; }
}

@media (max-width: 480px) {
    .socials { gap: 0.4rem; }
    .socials a { width: 38px; height: 38px; }
}
