.bfm-wrapper {
	direction: rtl;
	font-family: inherit;
	max-width: 700px;
	margin: 0 auto 40px;
}

/* ---------- Tabs (circular icons) ---------- */

.bfm-tabs {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	padding: 10px 4px 20px;
	scrollbar-width: none;
}
.bfm-tabs::-webkit-scrollbar {
	display: none;
}

.bfm-tab-btn {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	width: 74px;
}

.bfm-tab-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #444;
	transition: border-color 0.2s, box-shadow 0.2s;
	background: #262626;
}

.bfm-tab-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.bfm-tab-icon-fallback {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 22px;
	font-weight: bold;
	border-radius: 50%;
}

.bfm-tab-btn.bfm-active .bfm-tab-icon,
.bfm-tab-btn:hover .bfm-tab-icon {
	border-color: #e6c877;
	box-shadow: 0 0 0 2px rgba(230, 200, 119, 0.35);
}

.bfm-tab-label {
	color: #ccc;
	font-size: 12px;
	white-space: nowrap;
	max-width: 74px;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color 0.2s;
}

.bfm-tab-btn.bfm-active .bfm-tab-label,
.bfm-tab-btn:hover .bfm-tab-label {
	color: #e6c877;
	font-weight: bold;
}

/* ---------- Category content ---------- */

.bfm-category-group {
	display: none;
}
.bfm-category-group.bfm-visible {
	display: block;
}

.bfm-category-title {
	color: #e6c877;
	border-bottom: 2px solid #e6c877;
	display: inline-block;
	padding-bottom: 6px;
	margin-bottom: 16px;
}

.bfm-items {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.bfm-item-card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #262626;
	border-radius: 14px;
	padding: 14px;
	gap: 12px;
}

.bfm-item-info {
	flex: 1;
	min-width: 0;
}

.bfm-item-title {
	color: #fff;
	margin: 0 0 6px;
	font-size: 16px;
}

.bfm-item-desc {
	color: #aaa;
	font-size: 13px;
	margin: 0 0 8px;
	line-height: 1.6;
}

.bfm-item-price {
	color: #e6c877;
	font-weight: bold;
	font-size: 14px;
}

.bfm-item-image {
	flex: 0 0 100px;
	width: 100px;
	height: 100px;
	border-radius: 12px;
	overflow: hidden;
}

.bfm-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}

@media (max-width: 480px) {
	.bfm-item-image {
		flex-basis: 80px;
		width: 80px;
		height: 80px;
	}
	.bfm-tab-icon {
		width: 54px;
		height: 54px;
	}
	.bfm-tab-btn {
		width: 64px;
	}
}

/* ---------- Admin: category icon field ---------- */

.bfm-icon-preview img {
	display: block;
	margin-bottom: 8px;
}
