/* Buscador Hero Click&Sail
   Réplica de la estética del Search Form Builder del theme:
   campos blancos apilados con icono, botón índigo oscuro con lupa. */

.csmc-hero-search {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.csmc-hero-search__field {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	border: 1px solid #e4e7ec;
	border-radius: 10px;
	padding: 0 16px;
	min-height: 52px;
	position: relative;
}

.csmc-hero-search__icon {
	display: inline-flex;
	color: #e8403a;
	flex-shrink: 0;
}

.csmc-hero-search__icon svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.csmc-hero-search__select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 0;
	outline: none;
	background: transparent;
	box-shadow: none;
	flex: 1;
	width: 100%;
	font-size: 15px;
	color: #3d4350;
	padding: 14px 28px 14px 0;
	margin: 0;
	cursor: pointer;
	line-height: 1.4;
	height: auto;
}

.csmc-hero-search__select:focus {
	outline: none;
	box-shadow: none;
}

.csmc-hero-search__chevron {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	color: #6b7a8d;
}

.csmc-hero-search__persons-label {
	flex: 1;
	font-size: 15px;
	color: #3d4350;
	line-height: 1.4;
}

.csmc-hero-search__stepper {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.csmc-hero-search__step-btn {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px solid #d8dde3;
	background: #fff;
	color: #3d4350;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	transition: border-color 0.15s, color 0.15s;
}

.csmc-hero-search__step-btn:hover:not(:disabled) {
	border-color: #3d4350;
}

.csmc-hero-search__step-btn:disabled {
	opacity: 0.35;
	cursor: default;
}

.csmc-hero-search__persons-value {
	min-width: 28px;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	color: #1d2433;
}

.csmc-hero-search__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	border: 0;
	border-radius: 8px;
	background: #221440;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	padding: 15px 20px;
	cursor: pointer;
	transition: background 0.2s;
	line-height: 1.3;
}

.csmc-hero-search__submit:hover,
.csmc-hero-search__submit:focus {
	background: #160d2e;
	color: #fff;
}

.csmc-hero-search__submit svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
	flex-shrink: 0;
}
