/**
 * Trip Scope pill toggle - Hotels/Apartments style segmented control
 * Active: white bg, purple text & border. Inactive: purple bg, white text.
 */
.tourex-trip-scope-pill-wrap {
	margin-top: 12px;
	margin-bottom: 15px;
	width: 100%;
}

.tourex-trip-scope-pill {
	display: flex;
	width: 65%;
	margin: 0 auto;
	background: var(--tourex-pill-bg, #7c3aed);
	border-radius: 9999px;
	padding: 3px;
	border: 1px solid var(--tourex-pill-border, #7c3aed);
	overflow: hidden;
}

.tourex-pill-segment {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
	border-radius: 9999px;
	margin: 0;
}

.tourex-pill-segment input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	width: 0;
	height: 0;
}

.tourex-pill-segment .tourex-pill-text {
	pointer-events: none;
	font-size: 25px;
}

/* Inactive: purple bg, white text */
.tourex-pill-segment {
	background: transparent;
	color: #fff;
}

/* Active: white bg, purple text & border */
.tourex-pill-segment.active {
	background: #fff;
	color: var(--tourex-pill-active-color, #7c3aed);
}

.tourex-pill-segment:hover:not(.active) {
	background: rgba(255, 255, 255, 0.15);
}

/* Mobile */
@media (max-width: 768px) {
	.tourex-trip-scope-pill {
		width: 100%;
	}
}
