/**
 * Chip List Widget — Frontend Styles
 * Enqueued automatically by Elementor when the widget is on the page.
 * These are the base structural styles; visual styles come from Elementor controls.
 */

.chip-list-wrapper {
	display: flex;
	flex-wrap: wrap;      /* default layout */
	gap: 8px;             /* overridden by Elementor gap control */
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Layout variants driven by the Layout control */
.chip-list-wrapper.flex-nowrap {
	flex-wrap: nowrap;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.chip-list-wrapper.flex-column {
	flex-direction: column;
	flex-wrap: nowrap;
}

/* Base chip appearance — all visual values overridden by Elementor controls */
.chip-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	cursor: default;
	box-sizing: border-box;

	/* Elementor control defaults (fallbacks if controls not set) */
	font-size: 14px;
	line-height: 1.4;
	padding: 6px 14px;
	border-radius: 100px;
	background-color: #3a3a3a;
	color: #ffffff;
	border-style: none;
	border-width: 1px;
	border-color: transparent;

	transition:
		background-color 200ms ease,
		color 200ms ease,
		border-color 200ms ease,
		box-shadow 200ms ease;
}
