/* ============================================================
   UNPOP — Artist Social Links — v1.5.0
   ============================================================ */

.unpop-social {
    font-family: 'Outfit', sans-serif;
}

.unpop-social__list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px; /* contrôlé via Elementor */
}

/* Bouton icône */
.unpop-social__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: #0d1e2e;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.2s ease,
        box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

/* Shimmer au hover */
.unpop-social__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 30%,
        rgba(251, 146, 60, 0.08) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    pointer-events: none;
}

.unpop-social__btn:hover::before {
    transform: translateX(100%);
}

.unpop-social__btn:hover {
    border-color: rgba(251, 146, 60, 0.3);
    transform: translateY(-2px);
    box-shadow:
        0 4px 16px rgba(251, 146, 60, 0.2),
        0 0 0 1px rgba(251, 146, 60, 0.15);
}

.unpop-social__btn:active {
    transform: translateY(0) scale(0.96);
}

.unpop-social__btn i {
    font-size: 18px;
    color: #ffffff;
    transition: color 0.25s ease, transform 0.2s ease;
    position: relative;
    z-index: 1;
}

.unpop-social__btn:hover i {
    color: #FB923C;
    transform: scale(1.1);
}
