/* ================= GROUP BADGES ================= */

.panel.bg1 {
    position: relative;
    overflow: visible;
}

.cf-badge-container {
    position: absolute;
    top: 15px;
    right: -9px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    z-index: 5;
}

.cf-badge {
    padding: 8px 18px;
    border-radius: 10px 0 0 10px;
    font-family: 'roboto';
    font-size: 12px;
    font-size: italic;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    box-shadow:
        0 4px 12px rgba(0,0,0,0.18),
        inset 0 -2px 0 rgba(0,0,0,0.15);
}

.cf-badge {
    position: relative;
    padding: 6px 14px;
    border-radius: 10px 0 0 10px;
}

.cf-badge::after {
    content: "";
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 0;
    height: 0;
    border-top: 8px solid rgba(0,0,0,0.25);
    border-right: 8px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease;
}

.cf-badge.default {
    outline: 2px solid rgba(255,255,255,.5);
}

/* ================= BADGES PREMIUM ================= */

.cf-badge {
    position: relative;
    padding: 6px 16px;
    border-radius: 12px 0 0 12px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .3px;

    /* profondeur douce */
    box-shadow:
        0 6px 14px rgba(0, 0, 0, 0.18),
        inset 0 -2px 0 rgba(0, 0, 0, 0.15);

    transition:
        transform .18s ease,
        box-shadow .18s ease;
}

/* micro-hover élégant */
.cf-badge:hover {
    transform: translateX(-4px);
    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.28),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

/* ================= DEFAULT GROUP ================= */

.cf-badge.default::before {
    content: "★";
    margin-right: 6px;
    font-size: 12px;
}