.profile-drawer-btn-icon--font {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #6366f1;
}

.badges-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.badges-hero-eyebrow-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #6366f1;
}

.badges-hero-accent .pb-hero-banner__title em {
	color: #6366f1;
}

.badges-tabs {
	display: flex;
	gap: 8px;
	margin: 18px 0 16px;
}

.badges-tab {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.03);
	color: rgba(255, 255, 255, 0.65);
	font-size: 13px;
	font-weight: 700;
	padding: 10px 18px;
	cursor: pointer;
	transition: all 0.15s ease;
}

.badges-tab i {
	font-size: 16px;
}

.badges-tab:hover {
	border-color: rgba(99, 102, 241, 0.35);
	color: #fff;
}

.badges-tab.is-active {
	background: rgba(99, 102, 241, 0.14);
	border-color: rgba(99, 102, 241, 0.45);
	color: #fff;
}

.badges-tab__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.7);
	font-size: 11px;
	font-weight: 800;
}

.badges-tab.is-active .badges-tab__count {
	background: #6366f1;
	color: #fff;
}

.badges-panel {
	min-width: 0;
}

.badges-card {
	position: relative;
	z-index: 1;
	isolation: isolate;
	min-width: 0;
	background: linear-gradient(1deg, #25252e 30%, #292932 100%);
	box-shadow: 0 5px 10px #13151a4f;
	border-radius: 18px;
	overflow: hidden;
}

.badges-card__head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 18px 22px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	color: #fff;
	font-size: 15px;
	font-weight: 800;
}

.badges-card__head i {
	color: #6366f1;
	font-size: 18px;
}

.badges-card__body {
	padding: 22px;
	min-width: 0;
}

.badges-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	min-width: 0;
}

@media (max-width: 900px) {
	.badges-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.badges-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

.badges-empty {
	grid-column: 1 / -1;
	padding: 34px 16px;
	text-align: center;
	color: rgba(255, 255, 255, 0.5);
	font-size: 13px;
	border: 1px dashed rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(6px);
}

.badge-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 22px 16px 18px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
	overflow: hidden;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.6);
	transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.badge-card:before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(120px 90px at 50% -10%, rgba(99, 102, 241, 0.16), transparent 70%);
	pointer-events: none;
}

.badge-card:hover {
	border-color: rgba(99, 102, 241, 0.35);
	transform: translateY(-2px);
	box-shadow: 0 16px 34px -16px rgba(99, 102, 241, 0.35);
}

.badge-card--equipped {
	background: rgba(99, 102, 241, 0.1);
	border-color: rgba(99, 102, 241, 0.5);
	box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.25), 0 16px 34px -16px rgba(99, 102, 241, 0.4);
}

.badge-card__img {
	position: relative;
	z-index: 1;
	width: 76px;
	height: 76px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.badge-card__img img {
	max-width: 68%;
	max-height: 68%;
	object-fit: contain;
	filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}

.badge-card__name {
	position: relative;
	z-index: 1;
	font-size: 13.5px;
	font-weight: 700;
	color: #fff;
}

.badge-card__price {
	position: relative;
	z-index: 1;
	font-size: 16px;
	font-weight: 800;
	color: #f0b429;
}

.badge-card__stock {
	position: relative;
	z-index: 1;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.45);
	margin-top: -4px;
}

.badge-card__btn {
	position: relative;
	z-index: 1;
	width: 100%;
	border: none;
	border-radius: 11px;
	padding: 10px;
	font-size: 12.5px;
	font-weight: 800;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.1s ease;
}

.badge-card__btn:active {
	transform: scale(0.97);
}

.badge-card__btn--buy,
.badge-card__btn--equip {
	background: #f0b429;
	color: #5b3a00;
}

.badge-card__btn--buy:hover,
.badge-card__btn--equip:hover {
	background: #ffc94a;
}

.badge-card__btn--unequip {
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.75);
}

.badge-card__btn--unequip:hover {
	background: rgba(255, 255, 255, 0.14);
}

.badge-card__state {
	position: relative;
	z-index: 1;
	font-size: 11.5px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.45);
	padding: 9px 0;
}

.badge-card__state--owned {
	color: #4fea9f;
}

.badge-card__state--sold-out,
.badge-card__state--no-funds {
	color: #f87171;
}

.badges-login-row {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	vertical-align: middle;
	margin-left: 4px;
	line-height: 1;
}

.badges-login-row .badge-icon {
	width: 16px;
	height: 16px;
	object-fit: contain;
	display: inline-block;
	vertical-align: middle;
}
