/* ==========================================================
   CYBERIAL — Widget Services Bar
   Barre inline : icône SVG + label + séparateur vertical.
   Couleurs, tailles, espacements → Elementor selectors.
   ========================================================== */

.cy-sbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	font-family: 'Inter', -apple-system, system-ui, sans-serif;
}

/* --- Item (span ou a) --- */
.cy-sbar__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 24px;
	font-size: 15px;
	font-weight: 500;
	color: #1d1c1a;
	text-decoration: none;
	transition: opacity 0.2s ease;
	white-space: nowrap;
}

a.cy-sbar__item:hover {
	opacity: 0.6;
}

/* --- Icône --- */
.cy-sbar__item svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	opacity: 0.55;
	transition: opacity 0.2s ease;
}

a.cy-sbar__item:hover svg {
	opacity: 0.6;
}

/* --- Séparateur --- */
.cy-sbar__sep {
	display: block;
	width: 1px;
	height: 20px;
	background-color: #e0e0e0;
	flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
	.cy-sbar {
		gap: 4px;
	}

	.cy-sbar__item {
		padding: 6px 14px;
		font-size: 13px;
	}

	.cy-sbar__sep {
		height: 16px;
	}
}

@media (max-width: 480px) {
	.cy-sbar__sep {
		display: none;
	}

	.cy-sbar__item {
		padding: 6px 10px;
	}
}
