/**
 * Movento Price Selector — estilos base.
 * La personalización fina se aplica vía controles Elementor.
 */

.mtwp-selector {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 20px;
	width: 100%;
	box-sizing: border-box;
}

/* Cuando "Disposición" = Cuadrícula (grid), Elementor sobreescribe
   display/grid-template-columns vía controles de Style; estas reglas
   solo cubren el valor por defecto de alineación de cada celda. */
.mtwp-selector .mtwp-group,
.mtwp-selector .mtwp-price {
	min-width: 0;
}

.mtwp-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	box-sizing: border-box;
}

.mtwp-group__label {
	font-weight: 600;
	line-height: 1.3;
}

.mtwp-chips {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 8px;
}

.mtwp-chip {
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 10px 16px;
	border: 1px solid #cfd6dd;
	border-radius: 6px;
	background: #ffffff;
	color: #1a1a1a;
	font: inherit;
	line-height: 1.2;
	text-align: center;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.mtwp-chip:hover {
	border-color: #004680;
	color: #004680;
}

.mtwp-chip.is-active {
	background: #004680;
	border-color: #004680;
	color: #ffffff;
}

.mtwp-chip:focus-visible {
	outline: 2px solid #004680;
	outline-offset: 2px;
}

.mtwp-price {
	display: flex;
	flex-direction: column;
	gap: 4px;
	width: 100%;
	box-sizing: border-box;
}

.mtwp-price__line {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: baseline;
}

.mtwp-price__value {
	font-weight: 700;
	font-size: 1.75em;
	line-height: 1.1;
	color: #004680;
}

.mtwp-price__prefix,
.mtwp-price__suffix {
	font-weight: 500;
	opacity: 0.9;
}

.mtwp-price__hint {
	display: block;
	font-size: 0.875em;
	opacity: 0.75;
}

.mtwp-price__hint[hidden] {
	display: none;
}

.mtwp-empty {
	padding: 8px 0;
	opacity: 0.8;
}
