.search-page {
	min-height: 60vh;
}

/* Arama kutusu */
.search-input {
	border-right: 0;
	border-radius: 0.6rem 0 0 0.6rem;
	box-shadow: none;
	border-color: #c8d6e5;
	font-size: 1rem;
}

.search-input:focus {
	border-color: #18b7b0;
	box-shadow: 0 0 0 0.2rem rgba(24, 183, 176, 0.18);
}

.btn-search-main {
	background: #18b7b0;
	border-color: #18b7b0;
	color: #ffffff;
	border-radius: 0 0.6rem 0.6rem 0;
	padding: 0 1.1rem;
	font-size: 1.15rem;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-search-main:hover,
.btn-search-main:focus {
	background: #0f9b94;
	border-color: #0f9b94;
	color: #ffffff;
}

/* Filtre blokları */
.filter-block {
	background: #f8fafc;
	border: 1px solid #e2ecf4;
	border-radius: 0.75rem;
	padding: 0.9rem 1rem;
}

.filter-label {
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.35px;
	color: #18b7b0;
	margin-bottom: 0.6rem;
}

/* Chip (checkbox etiket) */
.filter-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.32rem 0.75rem;
	border-radius: 999px;
	border: 1px solid #c8d6e5;
	background: #ffffff;
	font-size: 0.88rem;
	font-weight: 500;
	color: #334155;
	cursor: pointer;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
	user-select: none;
}

.filter-chip input[type="checkbox"] {
	display: none;
}

.filter-chip:has(input:checked),
.filter-chip:hover {
	background: #e6faf9;
	border-color: #18b7b0;
	color: #0b8d87;
}

.filter-chip--letter {
	min-width: 2.5rem;
	justify-content: center;
	font-weight: 700;
}

/* Sağ panel: ipuçları */
.search-tips {
	background: #f0fbfa;
	border: 1px solid #c5eeec;
	border-radius: 0.9rem;
	padding: 1.6rem 1.5rem;
	height: 100%;
}

.tips-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 1.1rem;
	font-size: 1.05rem;
}

.tips-icon {
	color: #18b7b0;
	font-size: 1.1rem;
}

.tips-list {
	padding-left: 1.1rem;
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.tips-list li {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #334155;
}

.tips-list li strong {
	color: #0f172a;
}

@media (max-width: 991.98px) {
	.search-tips {
		height: auto;
	}
}
