.ferienfinder-search {
	display: flex;
	align-items: stretch;
	background: #fff;
	border-radius: 50px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.14);
	overflow: hidden;
	width: 100%;
}

.ff-field {
	display: flex;
	align-items: center;
	flex: 1;
	padding: 0 24px;
	gap: 12px;
	min-width: 0;
}

.ff-field + .ff-field {
	border-left: 1px solid #e0e0e0;
}

.ff-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.ff-icon svg {
	width: 22px;
	height: 22px;
	fill: var(--e-global-color-primary, #1a3c6b);
}

.ff-field select {
	flex: 1;
	border: none;
	outline: none;
	background: transparent;
	font-size: 14px;
	color: #333;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	padding: 22px 8px;
	min-width: 0;
	font-family: inherit;
}

.ff-field select option:first-child {
	color: #999;
}

.ff-field select:focus {
	outline: none;
}

.ff-chevron {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	pointer-events: none;
}

.ff-chevron svg {
	width: 20px;
	height: 20px;
	fill: #888;
}

.ff-submit {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--e-global-color-primary, #1a3c6b);
	color: #fff;
	border: none;
	padding: 0 48px;
	font-size: 17px;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.3s ease;
	font-family: inherit;
	flex-shrink: 0;
	letter-spacing: 0.02em;
}

.ff-submit:hover {
	background: var(--e-global-color-accent, #c0392b);
}

.ff-submit svg {
	fill: #fff;
	width: 20px;
	height: 20px;
}

@media (max-width: 640px) {
	.ferienfinder-search {
		flex-direction: column;
		border-radius: 20px;
	}

	.ff-field + .ff-field {
		border-left: none;
		border-top: 1px solid #e0e0e0;
	}

	.ff-submit {
		justify-content: center;
		padding: 18px;
		font-size: 16px;
	}
}
