

/* Section wrapper */
.search-20 {
	padding-bottom: 0px;
	margin-top: -60px;
	z-index: 3;
	position: relative;
}

/* Search bar outer */
.search-21 {
	background: #ffffff;
	border-radius: 60px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
	display: flex;
	align-items: center;
	padding: 50px 30px ;
	position: relative;
	flex-wrap: wrap;
}

/* divider between fields */
.search-27 {
	width: 1px;
	height: 45px;
	border-left: 1px dashed #d9d9d9;
	margin: 0 18px;
}

/* Destination / Travel Date / Nights / Adults / Children field boxes */
.search-22,
.search-28,
.search-31,
.search-34,
.search-40 {
	display: flex;
	flex-direction: column;
	position: relative;
	flex: 1;
	min-width: 130px;
}

/* Labels (DESTINATION, TRAVEL DATE, NIGHTS, ADULTS, CHILDREN) */
.search-23,
.search-29,
.search-32,
.search-35,
.search-41 {
	font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #e75a03;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.search-23 i,
.search-29 i,
.search-32 i,
.search-35 i,
.search-41 i {
	margin-right: 4px;
}

/* Destination input */
.search-24 {
	border: none;
	outline: none;
	font-size: 17px;
	color: #1c1c1c;
	font-weight: 600;
	width: 100%;
	padding-right: 20px;
	background: transparent;
}

.search-24::placeholder {
	color: #9a9a9a;
	font-weight: 500;
}

.search-25 {
	position: absolute;
	right: 0;
	top: 34px;
	color: #b5b5b5;
	font-size: 13px;
	pointer-events: none;
}

/* Destination autocomplete dropdown */
.search-26 {
	display: none;
	position: absolute;
	top: 62px;
	left: -35px;
	width: 320px;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
	max-height: 320px;
	overflow-y: auto;
	z-index: 50;
	padding: 8px 0;
}

.search-26.search-active {
	display: block;
}

.search-26-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 20px;
	cursor: pointer;
	transition: background 0.2s;
}

.search-26-item:hover {
	background: #fff3ec;
}

.search-26-item img {
	width: 42px;
	height: 42px;
	border-radius: 8px;
	object-fit: cover;
	flex-shrink: 0;
}

.search-26-item-name {
	font-size: 14px;
	font-weight: 600;
	color: #1c1c1c;
}

.search-26-item-loc {
	font-size: 12px;
	color: #888;
}

.search-26-empty {
	padding: 14px 20px;
	font-size: 13px;
	color: #999;
}

/* Travel date input */
.search-30 {
	border: none;
	outline: none;
	font-size: 17px;
	color: #1c1c1c;
	font-weight: 600;
	background: transparent;
	width: 100%;
}

/* Nights select */
.search-33 {
	border: none;
	outline: none;
	font-size: 17px;
	color: #1c1c1c;
	font-weight: 600;
	background: transparent;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	width: 100%;
}

/* Adults / Children counters */
.search-36,
.search-42 {
	display: flex;
	align-items: center;
	gap: 14px;
}

.search-37,
.search-39,
.search-43,
.search-45 {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid #ddd;
	background: #fff;
	color: #444;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
}

.search-37:hover,
.search-39:hover,
.search-43:hover,
.search-45:hover {
	background: #e8763c;
	border-color: #e8763c;
	color: #fff;
}

.search-38,
.search-44 {
	font-size: 17px;
	font-weight: 600;
	color: #1c1c1c;
	min-width: 14px;
	text-align: center;
}

/* Search button */
.search-46 {
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: #e75a03;
	border: none;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	margin-left: 25px;
	flex-shrink: 0;
	transition: background 0.2s;
}

.search-46:hover {
	background: #a3137c;
}

/* RESULTS GRID */
.search-47 {
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 25px;
}

.search-47-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s;
}

.search-47-card:hover {
	transform: translateY(-4px);
}

.search-47-card img {
	width: 100%;
	height: 170px;
	object-fit: cover;
}

.search-47-card-body {
	padding: 16px;
}

.search-47-card-name {
	font-size: 16px;
	font-weight: 700;
	color: #1c1c1c;
	margin-bottom: 4px;
}

.search-47-card-loc {
	font-size: 13px;
	color: #888;
	margin-bottom: 10px;
}

.search-47-card-price {
	font-size: 15px;
	font-weight: 700;
	color: #e8763c;
}

.search-47-empty {
	grid-column: 1 / -1;
	text-align: center;
	color: #999;
	font-size: 15px;
	padding: 30px 0;
}

/* Responsive */
@media (max-width: 900px) {
	.search-21 {
		flex-wrap: wrap;
		border-radius: 24px;
		padding: 20px;
	}
	.search-27 {
		display: none;
	}
	.search-22, .search-28, .search-31, .search-34, .search-40 {
		flex: 1 1 45%;
		margin-bottom: 15px;
	}
	.search-46 {
		margin: 10px auto 0;
	}
	.search-20{
		display: none;
	}
}