/* premium-badge.css — CSS extrait de premium-badge.php (Phase 4) */
/* Styles pour les badges premium */
.premium-crown {
    animation: crown-glow 2s ease-in-out infinite alternate;
}

@keyframes crown-glow {
    from {
        filter: drop-shadow(0 0 2px rgba(251, 191, 36, 0.5));
    }
    to {
        filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.8));
    }
}

/* Badge inline */
.premium-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 6px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 4px;
    color: #1f2937;
    font-size: 12px;
    font-weight: 500;
}

/* Badge card */
.premium-badge-card {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 6px;
    color: #1f2937;
    font-size: 14px;
    font-weight: 600;
}

/* Badge modal — styles détaillés dans modal-profil.css (.profile-modal-overlay) */
.premium-badge-modal {
    margin: 14px 16px 6px;
    padding: 14px 16px;
    border-radius: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 52%, #d97706 100%);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.28);
}
