.xtool-btn-group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

.xtool-btn-group__item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	line-height: 1;
	white-space: nowrap;
}

.xtool-btn-group__icon {
	display: inline-flex;
	flex-shrink: 0;
	font-size: 18px;
}

.xtool-btn-group__icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.xtool-btn-group__text {
	font-size: 15px;
	font-weight: 500;
}

/* Text variant — icon + text, no background */
.xtool-btn-group__item--text {
	color: #1a1814;
	transition: color 0.15s ease;
}

/* Filled variant — solid pill */
.xtool-btn-group__item--filled {
	padding: 16px 32px;
	border-radius: 50px;
	background: #1c1c1e;
	color: #fff;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.xtool-btn-group__item--filled .xtool-btn-group__text {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	font-size: 13px;
}

/* Outline variant — border only */
.xtool-btn-group__item--outline {
	padding: 16px 32px;
	border-radius: 50px;
	border-style: solid;
	border-width: 1.5px;
	border-color: #1a1814;
	background: transparent;
	color: #1a1814;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, border-width 0.15s ease;
}

.xtool-btn-group__item--outline .xtool-btn-group__text {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	font-size: 13px;
}
