/* Feature Badges for Elementor
 * CSS-first. No JavaScript. RTL-safe (uses flexbox logical flow + column-gap).
 */

.fbe-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

/* ---- BAR: inline, no pill chrome (just colored icons + text) ---- */
.fbe-wrap--bar {
	gap: 28px;
}
.fbe-wrap--bar .fbe-badge {
	background: transparent;
	padding: 0;
	border-radius: 0;
}

/* ---- FIXED: pills that wrap to the next line ---- */
.fbe-wrap--fixed {
	flex-wrap: wrap;
}

/* ---- CAROUSEL: pills on one line, scroll horizontally ---- */
.fbe-wrap--carousel {
	flex-wrap: nowrap;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;          /* Firefox */
	-ms-overflow-style: none;       /* old Edge */
	scroll-snap-type: x proximity;
}
.fbe-wrap--carousel::-webkit-scrollbar {
	display: none;                  /* Chrome / Safari */
}
.fbe-wrap--carousel .fbe-badge {
	flex: 0 0 auto;
	scroll-snap-align: start;
}

/* ---- BADGE BASE ---- */
.fbe-badge {
	display: inline-flex;
	align-items: center;
	column-gap: 8px;
	background: #F3F2EC;
	color: #2B2B2B;
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 15px;
	line-height: 1.2;
	box-sizing: border-box;
	text-decoration: none;
}

/* Linked badges keep the badge look (no underline / link color) */
a.fbe-badge {
	cursor: pointer;
}
a.fbe-badge,
a.fbe-badge:hover,
a.fbe-badge:focus {
	text-decoration: none;
	color: inherit;
}

/* Disable text wrap (default on via .fbe-nowrap) */
.fbe-nowrap .fbe-badge,
.fbe-nowrap .fbe-badge__text {
	white-space: nowrap;
}

/* ---- ICON ---- */
.fbe-badge__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	line-height: 1;
	flex: 0 0 auto;
}
.fbe-badge__icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}
.fbe-badge__icon i {
	font-size: inherit;
}

/* ---- TEXT ---- */
.fbe-badge__text {
	display: inline-block;
}
