/* ==========================================================================
   UCE Footer Social Icons
   ========================================================================== */

.uce-footer-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 8px 0 0;
}

/* Icon link base */
.uce-footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    transition: opacity 0.18s ease, color 0.18s ease, background 0.18s ease;
    line-height: 1;
    touch-action: manipulation;
}

@media (hover: hover) {
    .uce-footer-social-link {
        transition: transform 0.18s ease, opacity 0.18s ease, color 0.18s ease, background 0.18s ease;
    }
    .uce-footer-social-link:hover {
        transform: translateY(-2px);
        text-decoration: none;
    }
}

.uce-footer-social-label {
    font-size: 12px;
    font-weight: 600;
}

/* ---- Circle style ---- */
.uce-footer-social--circle .uce-footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    justify-content: center;
    background: rgba(13,27,42,0.06);
    border: 1px solid rgba(13,27,42,0.1);
}

.uce-footer-social--circle .uce-footer-social-link:hover {
    background: rgba(13,27,42,0.1);
}

/* ---- Square style ---- */
.uce-footer-social--square .uce-footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    justify-content: center;
    background: rgba(13,27,42,0.06);
    border: 1px solid rgba(13,27,42,0.1);
}

.uce-footer-social--square .uce-footer-social-link:hover {
    background: rgba(13,27,42,0.1);
}

/* ---- Plain style ---- */
.uce-footer-social--plain .uce-footer-social-link {
    padding: 4px 6px;
}

/* ---- Color modes ---- */

/* Gold */
.uce-footer-social--gold .uce-footer-social-link {
    color: rgba(107,30,63,0.6);
}

.uce-footer-social--gold .uce-footer-social-link:hover {
    color: var(--uce-gold, #6b1e3f);
}

/* White */
.uce-footer-social--white .uce-footer-social-link {
    color: rgba(255,255,255,0.45);
}

.uce-footer-social--white .uce-footer-social-link:hover {
    color: #ffffff;
}

/* Muted */
.uce-footer-social--muted .uce-footer-social-link {
    color: rgba(123,167,212,0.45);
}

.uce-footer-social--muted .uce-footer-social-link:hover {
    color: var(--uce-text-muted, #4a5568);
}

/* Brand colors */
.uce-footer-social--brand .uce-footer-social-link { color: rgba(13,27,42,0.35); }
.uce-footer-social--brand .uce-footer-social-link--facebook:hover  { color: #1877f2; }
.uce-footer-social--brand .uce-footer-social-link--instagram:hover { color: #e4405f; }
.uce-footer-social--brand .uce-footer-social-link--x:hover         { color: #0d1b2a; }
.uce-footer-social--brand .uce-footer-social-link--linkedin:hover  { color: #0a66c2; }
.uce-footer-social--brand .uce-footer-social-link--youtube:hover   { color: #ff0000; }
.uce-footer-social--brand .uce-footer-social-link--pinterest:hover { color: #bd081c; }
.uce-footer-social--brand .uce-footer-social-link--tiktok:hover    { color: #69c9d0; }
.uce-footer-social--brand .uce-footer-social-link--threads:hover   { color: #0d1b2a; }

/* Responsive -------------------------------------------------------------- */
@media (max-width: 480px) {
    .uce-footer-social {
        gap: 8px;
    }
}
