:root {
	--primary-color: #53b966;
	--secondary-color: #004238;
	--text-color: #333;
	--text-secondary-color: #6c757d;
	--bg-color: #f9fafb;
	--border-color: #e5e7eb;
	--white-color: #fff;
	--danger-color: #dc3545
}

.main-header {
	background-color: var(--white-color);
	border-bottom: 1px solid var(--border-color);
	position: sticky;
	top: 0;
	z-index: 100;
	height: 70px
}

.header-container {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 0 1rem;
	position: relative;
	max-width: 1200px;
	margin: 0 auto
}

.logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--secondary-color);
	text-decoration: none
}

.logo span {
	color: var(--primary-color)
}

.header-actions {
	display: flex;
	align-items: center;
	gap: .5rem;
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	z-index: 102
}

.search-button {
	background: none;
	border: 1px solid var(--border-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #555
}

.hamburger-button {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	width: 40px;
	height: 40px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	box-sizing: border-box;
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	z-index: 102
}

.hamburger-button span {
	display: block;
	width: 24px;
	height: 3px;
	background: #555;
	border-radius: 3px;
	transition: all .3s ease-in-out;
	margin: 0 auto
}

.menu-overlay {
	position: fixed;
	top: 70px;
	left: 0;
	width: 100%;
	height: calc(100vh - 70px);
	background-color: #00000080;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transition: opacity .35s ease, visibility 0s .35s linear
}

.menu-overlay.is-visible {
	opacity: 1;
	visibility: visible;
	transition-delay: 0s
}

.main-nav {
	display: block;
	position: fixed;
	top: 70px;
	left: 0;
	width: 300px;
	max-width: 85vw;
	height: calc(100vh - 70px);
	background-color: var(--white-color);
	z-index: 101;
	/* box-shadow: 4px 0 15px #0000001a; */
	transform: translate(-100%);
	transition: transform .35s cubic-bezier(.23, 1, .32, 1);
	overflow: hidden
}

.main-nav.is-open {
	transform: translate(0)
}

.main-nav>ul#main-menu-list {
	display: none
}

.menu-slider {
	display: flex;
	height: 100%;
	width: 100%;
	transition: transform .35s cubic-bezier(.23, 1, .32, 1)
}

.menu-panel {
	width: 100%;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	box-sizing: border-box
}

.panel-header {
	display: flex;
	align-items: center;
	padding: 0 1rem;
	height: 70px;
	border-bottom: 1px solid var(--border-color);
	flex-shrink: 0
}

.panel-back-button {
	color: var(--text-secondary-color);
	background: none;
	border: none;
	cursor: pointer;
	padding: .5rem;
	margin-left: -.5rem;
	margin-right: .5rem
}

.panel-title {
	font-weight: 600
}

.panel-list {
	display: block;
	list-style: none;
	padding: 0;
	margin: 0;
	overflow-y: auto;
	flex-grow: 1
}

.panel-list li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1.5rem;
	text-decoration: none;
	color: var(--text-color);
	border-bottom: 1px solid var(--border-color);
	font-weight: 500
}

.panel-list li:last-child a {
	border-bottom: none
}

.panel-list .has-submenu>a:after {
	content: "›";
	font-size: 1.5rem;
	color: #ccc
}

.panel-list .mega-menu,
.panel-list .simple-menu {
	display: none
}

.search-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #00221dcc;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	display: none;
	align-items: flex-start;
	justify-content: center;
	padding-top: 15vh;
	z-index: 1000
}

.close-popup-button {
	position: absolute;
	top: 40px;
	right: 40px;
	font-size: 3rem;
	color: #fff;
	background: none;
	border: none;
	cursor: pointer;
	line-height: 1
}

.search-popup-content {
	width: 100%;
	max-width: 700px
}

.search-form {
	display: flex;
	gap: 1rem
}

#popup-search-input {
	flex-grow: 1;
	padding: 1rem 1.5rem;
	font-size: 1.2rem;
	border: 2px solid var(--primary-color);
	border-radius: 50px;
	background-color: var(--white-color)
}

#popup-search-input:focus {
	outline: none
}

.search-form button {
	padding: 1rem 2rem;
	border: none;
	background-color: var(--primary-color);
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	border-radius: 50px;
	cursor: pointer
}

.search-suggestions-container {
	display: none;
	margin-top: 1rem;
	background-color: var(--white-color);
	border-radius: 8px;
	padding: .5rem;
	max-height: 40vh;
	overflow-y: auto
}

.suggestion-group {
	padding: .5rem 1rem
}

.suggestion-group-title {
	color: #999;
	font-size: .8rem;
	text-transform: uppercase;
	margin-bottom: .5rem;
	font-weight: 600
}

.suggestion-list {
	list-style: none;
	padding: 0;
	margin: 0
}

.suggestion-item {
	padding: .75rem 1rem;
	cursor: pointer;
	border-radius: 6px;
	transition: background-color .2s
}

.suggestion-item:hover {
	background-color: #f1f3f5
}

.main-content {
	padding: 0 1rem
}

.search-results-page {
	max-width: 1100px;
	margin: 2rem auto
}

.results-header h1 {
	text-align: left;
	font-size: 1.8rem
}

.results-header h1 span {
	color: var(--primary-color)
}

.results-header p {
	color: var(--text-secondary-color);
	margin-top: -1rem
}

.results-top-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 1.5rem
}

.result-tabs {
	display: flex;
	flex-wrap: wrap
}

.tab-button {
	padding: .75rem 1rem;
	border: none;
	background: none;
	cursor: pointer;
	font-size: .95rem;
	font-weight: 600;
	color: var(--text-secondary-color);
	border-bottom: 3px solid transparent;
	margin-bottom: -1px
}

.tab-button.active {
	color: var(--primary-color);
	border-bottom-color: var(--primary-color)
}

.tab-button span {
	font-size: .8em;
	font-weight: 500;
	margin-left: 6px
}

.result-filters {
	display: flex;
	gap: 1rem;
	padding-bottom: 1.5rem
}

.result-filters select,
#sort-by {
	padding: .5rem 1rem;
	border-radius: 6px;
	border: 1px solid var(--border-color);
	background-color: var(--white-color);
	font-size: .9rem
}

.results-list {
	display: grid;
	gap: 1.5rem
}

.no-results-message {
	text-align: center;
	padding: 4rem;
	background-color: var(--white-color);
	border-radius: 8px;
	border: 1px solid var(--border-color)
}

.result-item {
	display: flex;
	background-color: var(--white-color);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	overflow: hidden;
	transition: box-shadow .2s ease-in-out;
	position: relative
}

.result-item:hover {
	box-shadow: 0 4px 12px #00000014
}

.result-item .item-thumbnail {
	flex-shrink: 0;
	width: 200px;
	background-color: #eee
}

.result-item .item-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.result-item .item-content {
	flex-grow: 1;
	padding: 1.25rem 1.5rem;
	display: flex;
	flex-direction: column;
	min-width: 0
}

.item-header {
	margin-bottom: .25rem
}

.item-header h2 {
	margin: 0;
	font-size: 1.2rem;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-right: 100px
}

.item-header h2 a {
	text-decoration: none;
	color: var(--secondary-color)
}

.item-header h2 a:hover {
	color: var(--primary-color)
}

.item-badge {
	position: absolute;
	top: 1.25rem;
	right: 1.5rem;
	flex-shrink: 0;
	padding: .25em .75em;
	font-size: .75rem;
	font-weight: 700;
	border-radius: 50px;
	color: var(--white-color)
}

.item-description,
.item-address,
.item-price,
.item-date {
	font-size: .9rem;
	color: var(--text-secondary-color);
	margin: 4px 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.item-price {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--danger-color);
	margin-top: auto
}

.item-date {
	font-size: .8rem;
	color: #999
}

.search-extra-suggestions {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding-top: 1rem
}

.suggestions-section {
	flex: 1
}

.suggestions-title {
	color: #a0aec0;
	font-size: .9rem;
	font-weight: 600;
	margin-bottom: .75rem;
	display: flex;
	align-items: center;
	gap: .5rem
}

.suggestions-tags {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem
}

.suggestion-tag {
	background-color: #ffffff1a;
	color: #edf2f7;
	padding: .4rem .8rem;
	border-radius: 20px;
	font-size: .9rem;
	cursor: pointer;
	border: 1px solid rgba(255, 255, 255, .2);
	transition: all .2s ease
}

.suggestion-tag:hover {
	background-color: var(--primary-color);
	color: var(--white-color);
	border-color: var(--primary-color)
}

@media (min-width: 1025px) {
	.main-header {
		background-color: var(--white-color);
		border-bottom: 1px solid var(--border-color);
		padding: 0 2rem;
		position: sticky;
		top: 0;
		z-index: 100;
		box-shadow: 0 2px 4px #0000000d
	}

	.header-container {
		max-width: 1200px;
		margin: 0 auto;
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: 70px
	}

	.main-nav {
		display: flex;
		position: static;
		width: auto;
		height: 100%;
		transform: none;
		transition: none;
		background-color: transparent;
		box-shadow: none !important;
		overflow: visible;
		margin: auto
	}

	.logo {
		font-size: 1.8rem;
		font-weight: 700;
		color: var(--secondary-color);
		text-decoration: none
	}

	.logo span {
		color: var(--primary-color)
	}

	.header-actions {
		display: flex;
		align-items: center;
		gap: .5rem;
		margin-left: 1rem
	}

	.search-button {
		background: none;
		border: 1px solid var(--border-color);
		border-radius: 50%;
		width: 40px;
		height: 40px;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #555;
		transition: all .2s
	}

	.search-button:hover {
		background-color: var(--primary-color);
		color: #fff;
		border-color: var(--primary-color)
	}

	.main-nav ul {
		display: flex;
		list-style: none;
		padding: 0;
		margin: 0;
		height: 100%
	}

	.main-nav li {
		position: relative;
		display: flex;
		align-items: center;
		height: 100%
	}

	.main-nav>ul>li>a {
		display: flex;
		align-items: center;
		gap: 6px;
		padding: 0 1.5rem;
		height: 100%;
		text-decoration: none;
		color: #555;
		font-weight: 500;
		transition: color .2s, background-color .2s
	}

	.simple-menu,
	.mega-menu {
		right: 0;
		background-color: var(--white-color);
		box-shadow: 0 8px 16px #0000001a;
		border: 1px solid var(--border-color);
		border-top: 3px solid var(--primary-color);
		opacity: 0;
		transform: translateY(10px);
		transition: opacity .2s ease, transform .2s ease;
		display: none;
		position: fixed;
		top: 70px;
		z-index: 99;
		width: 100vw;
		left: 50%;
		transform: translate(-50%)
	}

	.simple-menu-content,
	.mega-menu-content {
		max-width: 1100px;
		margin: 0 auto;
		display: flex
	}

	.mega-menu-column {
		padding: 1.5rem;
		box-sizing: border-box
	}

	.mega-menu-column.col-1 {
		flex: 0 0 30%;
		border-right: 1px solid #d1d5db;
		padding: 1.5rem;
		box-sizing: border-box
	}

	.mega-menu-column.col-2 {
		flex: 0 0 35%;
		border-right: 1px solid #d1d5db;
		padding: 1.5rem;
		box-sizing: border-box
	}

	.mega-menu-column.col-3 {
		flex: 0 0 35%;
		background-color: #f8f9fa
	}

	.mega-menu-column h4 {
		margin-top: 0;
		margin-bottom: 1rem;
		font-size: .9rem;
		text-transform: uppercase;
		color: #888;
		font-weight: 600
	}

	.mega-menu-column ul,
	.simple-menu ul {
		display: block;
		list-style: none;
		padding: 0;
		margin: 0
	}

	.mega-menu-column ul li,
	.simple-menu li {
		display: block;
		height: auto;
		width: 100%;
		margin: 0;
		padding: 0
	}

	.mega-menu-column ul a,
	.simple-menu ul a {
		display: block;
		padding: 8px 12px 8px 8px;
		margin: 2px 0;
		color: var(--text-color);
		text-decoration: none;
		transition: all .2s ease;
		box-sizing: border-box;
		width: 100%
	}

	.mega-menu-column ul a:after,
	.simple-menu ul a:after {
		display: none
	}

	.mega-menu-column ul a:hover,
	.simple-menu ul a:hover,
	.mega-menu-column ul a.active {
		background-color: #f0f2f5;
		color: var(--primary-color)
	}

	.featured-card {
		text-decoration: none;
		display: block;
		color: inherit
	}

	.featured-card img {
		width: 100%;
		border-radius: 6px;
		margin-bottom: .75rem;
		border: 1px solid var(--border-color);
		aspect-ratio: 3/2;
		object-fit: cover
	}

	.featured-card-content h5 {
		margin: 0 0 .25rem;
		font-size: 1rem;
		color: var(--secondary-color)
	}

	.featured-card-content p {
		margin: 0;
		font-size: .9rem;
		color: #666
	}

	.spinner {
		border: 4px solid rgba(0, 0, 0, .1);
		width: 24px;
		height: 24px;
		border-radius: 50%;
		border-left-color: var(--secondary-color);
		animation: spin 1s ease infinite;
		margin: 1rem auto
	}

	@keyframes spin {
		0% {
			transform: rotate(0)
		}

		to {
			transform: rotate(360deg)
		}
	}

	.search-popup {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #00221dcc;
		-webkit-backdrop-filter: blur(5px);
		backdrop-filter: blur(5px);
		display: none;
		align-items: flex-start;
		justify-content: center;
		padding-top: 15vh;
		z-index: 1000
	}

	.close-popup-button {
		position: absolute;
		top: 40px;
		right: 40px;
		font-size: 3rem;
		color: #fff;
		background: none;
		border: none;
		cursor: pointer;
		line-height: 1
	}

	.search-popup-content {
		width: 100%;
		max-width: 700px
	}

	.search-form {
		display: flex;
		gap: 1rem
	}

	#popup-search-input {
		flex-grow: 1;
		padding: 1rem 1.5rem;
		font-size: 1.2rem;
		border: 2px solid var(--primary-color);
		border-radius: 50px;
		background-color: var(--white-color)
	}

	#popup-search-input:focus {
		outline: none
	}

	.search-form button {
		padding: 1rem 2rem;
		border: none;
		background-color: var(--primary-color);
		color: #fff;
		font-size: 1rem;
		font-weight: 700;
		border-radius: 50px;
		cursor: pointer
	}

	.search-suggestions-container {
		display: none;
		margin-top: 1rem;
		background-color: var(--white-color);
		border-radius: 8px;
		padding: .5rem;
		max-height: 40vh;
		overflow-y: auto
	}

	.suggestion-group {
		padding: .5rem 1rem
	}

	.suggestion-group-title {
		color: #999;
		font-size: .8rem;
		text-transform: uppercase;
		margin-bottom: .5rem;
		font-weight: 600
	}

	.suggestion-list {
		list-style: none;
		padding: 0;
		margin: 0
	}

	.suggestion-item {
		padding: .75rem 1rem;
		cursor: pointer;
		border-radius: 6px;
		transition: background-color .2s
	}

	.suggestion-item:hover {
		background-color: #f1f3f5
	}

	.main-content {
		padding: 0 1rem
	}

	.search-results-page {
		max-width: 1100px;
		margin: 2rem auto
	}

	.results-header h1 {
		text-align: left;
		font-size: 1.8rem
	}

	.results-header h1 span {
		color: var(--primary-color)
	}

	.results-header p {
		color: var(--text-secondary-color);
		margin-top: -1rem
	}

	.results-top-bar {
		display: flex;
		justify-content: space-between;
		align-items: center;
		border-bottom: 1px solid var(--border-color);
		margin-bottom: 1.5rem
	}

	.result-tabs {
		display: flex;
		flex-wrap: wrap
	}

	.tab-button {
		padding: .75rem 1rem;
		border: none;
		background: none;
		cursor: pointer;
		font-size: .95rem;
		font-weight: 600;
		color: var(--text-secondary-color);
		border-bottom: 3px solid transparent;
		margin-bottom: -1px
	}

	.tab-button.active {
		color: var(--primary-color);
		border-bottom-color: var(--primary-color)
	}

	.tab-button span {
		font-size: .8em;
		font-weight: 500;
		margin-left: 6px
	}

	.result-filters {
		display: flex;
		gap: 1rem;
		padding-bottom: 1.5rem
	}

	.result-filters select,
	#sort-by {
		padding: .5rem 1rem;
		border-radius: 6px;
		border: 1px solid var(--border-color);
		background-color: var(--white-color);
		font-size: .9rem
	}

	.results-list {
		display: grid;
		gap: 1.5rem
	}

	.no-results-message {
		text-align: center;
		padding: 4rem;
		background-color: var(--white-color);
		border-radius: 8px;
		border: 1px solid var(--border-color)
	}

	.result-item {
		display: flex;
		background-color: var(--white-color);
		border: 1px solid var(--border-color);
		border-radius: 8px;
		overflow: hidden;
		transition: box-shadow .2s ease-in-out;
		position: relative
	}

	.result-item:hover {
		box-shadow: 0 4px 12px #00000014
	}

	.result-item .item-thumbnail {
		flex-shrink: 0;
		width: 200px;
		background-color: #eee
	}

	.result-item .item-thumbnail img {
		width: 100%;
		height: 100%;
		object-fit: cover
	}

	.result-item .item-content {
		flex-grow: 1;
		padding: 1.25rem 1.5rem;
		display: flex;
		flex-direction: column;
		min-width: 0
	}

	.item-header {
		margin-bottom: .25rem
	}

	.item-header h2 {
		margin: 0;
		font-size: 1.2rem;
		line-height: 1.4;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		padding-right: 100px
	}

	.item-header h2 a {
		text-decoration: none;
		color: var(--secondary-color)
	}

	.item-header h2 a:hover {
		color: var(--primary-color)
	}

	.item-badge {
		position: absolute;
		top: 1.25rem;
		right: 1.5rem;
		flex-shrink: 0;
		padding: .25em .75em;
		font-size: .75rem;
		font-weight: 700;
		border-radius: 50px;
		color: var(--white-color)
	}

	.item-description,
	.item-address,
	.item-price,
	.item-date {
		font-size: .9rem;
		color: var(--text-secondary-color);
		margin: 4px 0;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis
	}

	.item-price {
		font-size: 1.1rem;
		font-weight: 700;
		color: var(--danger-color);
		margin-top: auto
	}

	.item-date {
		font-size: .8rem;
		color: #999
	}

	.search-extra-suggestions {
		margin-top: 1.5rem;
		display: flex;
		gap: 2rem;
		border-top: 1px solid rgba(255, 255, 255, .1);
		padding-top: 1.5rem
	}

	.suggestions-section {
		flex: 1
	}

	.suggestions-title {
		color: #a0aec0;
		font-size: .9rem;
		font-weight: 600;
		margin-bottom: .75rem;
		display: flex;
		align-items: center;
		gap: .5rem
	}

	.suggestions-tags {
		display: flex;
		flex-wrap: wrap;
		gap: .5rem
	}

	.suggestion-tag {
		background-color: #ffffff1a;
		color: #edf2f7;
		padding: .4rem .8rem;
		border-radius: 20px;
		font-size: .9rem;
		cursor: pointer;
		border: 1px solid rgba(255, 255, 255, .2);
		transition: all .2s ease
	}

	.suggestion-tag:hover {
		background-color: var(--primary-color);
		color: var(--white-color);
		border-color: var(--primary-color)
	}

	.hamburger-button {
		display: none
	}

	.menu-overlay {
		display: none !important
	}

	.main-nav.is-open {
		transform: none
	}

	.main-nav.is-open {
		display: block;
		position: absolute;
		top: 70px;
		left: 0;
		width: 100%;
		height: calc(100vh - 70px);
		background-color: var(--white-color);
		z-index: 100;
		overflow-y: auto
	}

	.main-nav .has-submenu>a:after {
		content: "▼";
		font-size: .6em;
		margin-top: 2px;
		transition: transform .2s ease-in-out
	}

	.simple-menu.is-active,
	.mega-menu.is-active {
		display: block;
		opacity: 1;
		pointer-events: auto;
		visibility: visible
	}

	.simple-menu ul,
	.simple-menu li {
		display: block;
		height: auto
	}

	.simple-menu a {
		width: 100%;
		height: auto;
		padding: .75rem 1rem;
		box-sizing: border-box
	}

	.simple-menu a:after {
		display: none
	}

	.simple-menu-content {
		max-width: 1100px;
		margin: 0 auto;
		padding: 1rem 1.5rem
	}

	.simple-menu.menu-align-right,
	.mega-menu.menu-align-right {
		left: auto;
		right: 0
	}

	.main-nav.active .simple-menu,
	.main-nav.active .mega-menu {
		display: none;
		position: static;
		border: none;
		box-shadow: none !important;
		opacity: 1;
		visibility: visible;
		transform: none;
		width: 100%;
		background-color: #f8f9fa
	}

	.main-nav.active .has-submenu.open>.simple-menu,
	.main-nav.active .has-submenu.open>.mega-menu {
		display: block
	}

	.main-nav>ul#main-menu-list {
		display: flex;
		align-items: center;
		height: 100%;
		margin: auto
	}

	.main-nav>ul>li>a:hover {
		background-color: #f0f2f5;
		color: var(--primary-color)
	}
}

@media (max-width: 768px) {
	.search-popup {
		padding-left: 1rem;
		padding-right: 1rem;
		box-sizing: border-box
	}

	.main-content {
		padding: 0 .5rem
	}

	.search-results-page {
		margin: 1rem auto
	}

	.results-header h1 {
		font-size: 1.5rem
	}

	.result-item {
		flex-direction: column
	}

	.result-item .item-thumbnail {
		width: 100%;
		height: 180px
	}

	.result-item .item-content {
		padding: 1rem
	}

	.item-badge {
		top: 1rem;
		right: 1rem
	}

	.item-header h2 {
		white-space: normal;
		padding-right: 0;
		line-height: 1.4
	}

	.item-description {
		white-space: normal
	}

	.results-top-bar {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
		margin-bottom: 1rem
	}

	.result-tabs {
		overflow-x: auto;
		white-space: nowrap;
		padding-left: 1rem;
		padding-right: 1rem;
		margin-left: -.5rem;
		margin-right: -.5rem;
		box-sizing: border-box;
		-ms-overflow-style: none;
		scrollbar-width: none
	}

	.result-tabs::-webkit-scrollbar {
		display: none
	}

	.result-filters {
		flex-direction: column;
		width: 100%;
		overflow-x: auto;
		white-space: nowrap;
		padding-left: 1rem;
		padding-right: 1rem;
		margin-left: -.5rem;
		margin-right: -.5rem;
		box-sizing: border-box;
		-ms-overflow-style: none;
		scrollbar-width: none
	}

	.results-header {
		text-align: left;
		padding: 1rem
	}

	.results-header h1 {
		font-size: 1.5rem;
		line-height: 1.3;
		margin: 0
	}

	.results-header p {
		font-size: .9rem;
		margin-top: .25rem
	}

	.result-filters select,
	#sort-by {
		padding: .5rem 1rem;
		border-radius: 6px;
		border: 1px solid var(--border-color);
		background-color: var(--white-color);
		font-size: .9rem;
		margin-left: 1rem
	}

	.select-wrapper {
		position: relative;
		width: 100%
	}

	.custom-select-trigger {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		padding: .75rem 1rem;
		border-radius: 6px;
		border: 1px solid var(--border-color);
		background-color: var(--white-color);
		font-size: .9rem;
		cursor: pointer
	}

	.custom-dropdown-panel {
		position: absolute;
		top: calc(100% + 4px);
		left: 0;
		right: 0;
		z-index: 10;
		background-color: var(--white-color);
		border: 1px solid var(--border-color);
		border-radius: 6px;
		box-shadow: 0 4px 12px #0000001a;
		padding: .5rem;
		display: none
	}

	.select-wrapper.is-open .custom-dropdown-panel {
		display: block
	}
}

.pagination-container {
	display: flex;
	justify-content: center;
	margin-top: 2.5rem;
	padding-bottom: 2rem
}

.pagination-list {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: .5rem
}

.page-link {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: var(--text-color);
	background-color: var(--white-color);
	border: 1px solid var(--border-color);
	border-radius: 6px;
	min-width: 40px;
	height: 40px;
	padding: 0 .5rem;
	font-weight: 500;
	transition: all .2s ease
}

.page-link:hover {
	background-color: #f1f3f5;
	border-color: #adb5bd
}

.page-item.active .page-link {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: var(--white-color);
	font-weight: 700
}

.page-item.disabled .page-link {
	color: #ccc;
	background-color: #f9fafb;
	cursor: not-allowed;
	border-color: var(--border-color)
}

@media (max-width: 480px) {
	.search-form {
		flex-direction: column;
		gap: .75rem
	}

	.search-form button {
		width: 100%;
		padding-top: 1rem;
		padding-bottom: 1rem;
		font-size: 1.1rem
	}
}

.badge-PROJECT {
	background-color: #198754
}

.badge-PRODUCT_SALE {
	background-color: #dc3545
}

.badge-PRODUCT_RENT {
	background-color: #0d6efd
}

.badge-NEWS_ARTICLE {
	background-color: #0dcaf0
}

.badge-WIKI_ARTICLE {
	background-color: #6c757d
}

.badge-BUSINESS_PROFILE {
	background-color: #ffc107;
	color: #000
}