/**
 * Igus Product Configurator — front-end styles.
 *
 * Intentionally lightweight and theme-agnostic. The plugin is a backend engine;
 * detailed styling is expected to come from the theme / Elementor Theme Builder.
 */
.igus-configurator {
	margin: 1.5em 0;
	display: grid;
	gap: 1em;
}

.igus-configurator__field {
	display: grid;
	gap: 0.35em;
}

.igus-configurator__label {
	font-weight: 600;
	font-size: 0.95em;
}

.igus-configurator__select {
	width: 100%;
	max-width: 22em;
	padding: 0.55em 0.7em;
	border: 1px solid rgba( 0, 0, 0, 0.2 );
	border-radius: 4px;
	background: #fff;
	font-size: 1em;
	line-height: 1.3;
}

.igus-configurator__select:focus {
	outline: 2px solid rgba( 0, 0, 0, 0.35 );
	outline-offset: 1px;
}

.igus-configurator__summary {
	margin: 0;
	padding: 0.9em 1em;
	border: 1px solid rgba( 0, 0, 0, 0.1 );
	border-radius: 6px;
	background: rgba( 0, 0, 0, 0.02 );
	display: grid;
	gap: 0.5em;
}

.igus-configurator__row {
	display: flex;
	justify-content: space-between;
	gap: 1em;
	margin: 0;
}

.igus-configurator__row dt {
	margin: 0;
	font-weight: 600;
}

.igus-configurator__row dd {
	margin: 0;
	text-align: right;
}

.igus-configurator__row--price dd {
	font-size: 1.15em;
	font-weight: 700;
}

.igus-configurator__row dd.is-in-stock {
	color: #1a7f37;
}

.igus-configurator__row dd.is-out-of-stock {
	color: #b32d2e;
}

.igus-configurator__notice {
	margin: 0;
	padding: 0.6em 0.8em;
	border-radius: 4px;
	background: rgba( 179, 45, 46, 0.08 );
	color: #b32d2e;
	font-size: 0.95em;
}
