/*
 * Bileşen: Kart Rozetleri (Badges)
 * Amaç: Kartların üzerindeki "Featured", "Exclusive" gibi rozetlerin stillerini yönetir.
 */

/* Exclusive Rozet için Gradyan Çerçeve */
.bfwt-card__badge-wrapper--exclusive {
    padding: 1.5px; /* Çerçeve kalınlığı */
    border-radius: var(--border-radius-pill);
    background: var(--gradient-v2);
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    line-height: 0; 
}

/* Genel Rozet Stili */
.bfwt-card__badge {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: var(--border-radius-pill);
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
}
.bfwt-card__badge-wrapper--exclusive .bfwt-card__badge {
    border-radius: calc(var(--border-radius-pill) - 1.5px);
}
.bfwt-card__media > .bfwt-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

/* Özel Rozetler */
.bfwt-card__badge.bfwt-card__badge--featured { background: var(--color-static-green); color: var(--color-static-dark); }
.bfwt-card__badge--custom { background-image: none !important; text-transform: none; }
.bfwt-card__badge--custom .material-symbols-rounded { font-size: 1.2em; }

/* Kart Boyutuna Göre Rozet Boyutları */
.bfwt-card--large .bfwt-card__badge { padding: 2px 9px; font-size: var(--font-size-xs); }
.bfwt-card--small .bfwt-card__badge { padding: 1px 7px; font-size: var(--font-size-xxs); }
.bfwt-card--small .bfwt-card__badge .material-symbols-rounded { font-size: 1.3em; }

/* Küçük Kartlar İçin Sadece İkon Gösteren Rozet */
.bfwt-card__badge--icon-only {
    width: 28px;
    height: 28px;
    padding: 0;
    justify-content: center;
}
.bfwt-card--small .bfwt-card__badge--icon-only { width: 24px; height: 24px; }
.bfwt-card__badge--icon-only .material-symbols-rounded { font-size: 18px; margin: 0; }
.bfwt-card--small .bfwt-card__badge--icon-only .material-symbols-rounded { font-size: 16px; }