/* /web_list/assets/style.css - Production Optimized */

/* CSS Reset and Base */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.4;
	color: #333;
	background: #fff;
}

.main{
	/* height: 100vh;
	margin-bottom: 10px; */
	min-height: 35vh;

}
.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}




/* Screen reader only */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Header */
.header {
	background: #fff;
	border-bottom: 1px solid #f5f4f4;
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;
	position: relative;
	padding: 0 5px;
}

.logo img {
	height: 32px;
	width: auto;
}

/* Navigation */
.desktop-nav {
	display: flex;
	gap: 32px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.nav {
	display: flex;
	gap: 24px;
}

.nav-link {
	text-decoration: none;
	color: #333;
	font-weight: 400;
	font-size: 14px;
	transition: color 0.2s;
	padding: 8px 0;
}

.nav-link:hover {
	color: #e53e3e;
}

/* Header Controls */
.header-controls {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	flex-direction: row;
	align-content: space-between;
	justify-content: space-between;
	flex-wrap: wrap;
}

.menu-controls {
	display: flex;
	align-items: center;
	gap: 16px;
}

.header-buttons {
	display: flex;
	gap: 12px;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
}

/* Button Base Styles */
.favorites-btn, .language-btn, .filters-toggle-btn, .favorites-active-btn {
	background: transparent;
	border: none;
	padding: 8px 12px;
	border-radius: 12px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: all 0.2s;
	color: #666;
	font-size: 14px;
	white-space: nowrap;
	height: 40px;
}

.favorites-btn:hover, .language-btn:hover, .filters-toggle-btn:hover {
	background: #f5f5f5;
	color: #e53e3e;
}

.favorites-count {
	background: #e53e3e;
	color: white;
	font-size: 12px;
	font-weight: 600;
	padding: 2px 6px;
	border-radius: 10px;
	min-width: 18px;
	text-align: center;
	line-height: 1.2;
}

/* Language Switcher */
.language-switcher {
	position: relative;
}

.language-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	background: white;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	min-width: 140px;
	z-index: 1000;
	display: none;
	margin-top: 4px;
}

.language-dropdown.show {
	display: block;
}

.language-dropdown a {
	display: block;
	padding: 10px 16px;
	text-decoration: none;
	color: #333;
	font-size: 14px;
	transition: background-color 0.2s;
}

.language-dropdown a:hover {
	background: #f5f5f5;
}

/* Mobile Menu */
.mobile-menu-btn {
	display: none;
	flex-direction: column;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
	border-radius: 12px;
	gap: 3px;
}

.mobile-menu-btn span {
	width: 20px;
	height: 2px;
	background: #333;
	transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
	transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-btn.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
	transform: rotate(-45deg) translate(3px, -3px)
}

.mobile-nav {
	display: none;
	background: white;
	border-top: 1px solid #e0e0e0;
	padding: 12px 10px;
}

.mobile-nav.show {
	display: block;
	animation: slideDown 0.3s ease;
}

.mobile-nav-content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.mobile-nav-link {
	/* text-decoration: none; */
	color: #555;
	font-weight: 500;
	font-size: 16px;
	padding: 5px 0;
	/* border-bottom: 1px solid #f0f0f0; */
	transition: color 0.2s;
}

.mobile-nav-link:hover {
	color: #e53e3e;
}

/* Breadcrumbs */
.breadcrumbs {
	margin: 8px 0;
}

.breadcrumb-list {
	display: flex;
	list-style: none;
	gap: 0;
	font-size: 14px;
	flex-wrap: wrap;
	align-items: center;
}

.breadcrumb-list li {
	display: flex;
	align-items: center;
}

.breadcrumb-list li::after {
	content: '›';
	margin: 0 8px;
	color: #999;
	font-size: 16px;
	font-weight: 200;
}

.breadcrumb-list li:last-child::after {
	display: none;
}

.breadcrumb-list a {
	color: #666;
	text-decoration: none;
	font-weight: 500;
	padding: 4px 0;
	transition: color 0.2s;
}

.breadcrumb-list a:hover {
	color: #e53e3e;
}

.breadcrumb-list li:last-child span {
	color: #333;
	font-weight: 600;
}

/* Page Header */
.page-header {
	background: #fff;
	padding: 0 15px 10px 5px;
}

.page-title {
	font-size: 28px;
	font-weight: 500;
	color: #333;
	margin-bottom: 8px;
	white-space: pre-wrap;
}

.results-info {
	/* display: flex;
	gap: 16px; */
	font-size: 14px;
	color: #666;
	margin: 18px 0px 0px 0;
	font-weight: 500;
}

.results-count{
	padding-right: 20px;
}

.results-sort {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* Map Button */
.map-btn {
	background: #333;
	color: white;
	text-decoration: none;
	padding: 8px 16px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: background-color 0.2s;
	white-space: nowrap;
	height: 40px;
}

.map-btn:hover {
	background: #444;
}

/* Filters */
.filters {
	background: #fff;
	padding: 20px;
	margin-bottom: 20px;
	border-radius: 28px;
	border: 1px solid #e0e0e0;
	transition: all 0.3s ease;
}

.filters-hidden {
	display: none;
}

.filters-visible {
	display: block;
	animation: slideDown 0.3s ease;
}

.filters-form {
	padding: 0 10px;
}

.filters-row {
	display: flex;
	gap: 16px;
	align-items: end;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.filter-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 140px;
	flex: 1;
}

.filter-group label {
	font-size: 13px;
	color: #666;
	font-weight: 500;
}

.filter-group input, .filter-group select {
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 12px;
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s;
	background: white;
}

.filter-group input:focus, .filter-group select:focus {
	border-color: #e53e3e;
}

.filter-group select {
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 16px;
	padding-right: 40px;
}

.filters-actions {
	display: flex;
	gap: 10px;
}

.filter-apply {
	background: #FF1500;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 12px;
	cursor: pointer;
	font-weight: 500;
	font-size: 14px;
	transition: background-color 0.3s ease;
}

.filter-apply:hover {
	background: #e60000;
}

.filter-clear {
	background: transparent;
	color: #666;
	border: 1px solid #ddd;
	padding: 10px 20px;
	border-radius: 12px;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.3s ease;
}

.filter-clear:hover {
	background: #f5f5f5;
	border-color: #bbb;
}

/* Properties Grid */
.properties-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px 20px;
	/* margin-bottom: 15px; */
	padding: 0px 5px;
}

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

.property-card {
	background: #fff;
	position: relative;
	display: flex;
	flex-direction: column;
	cursor: pointer;
	border-radius: 27px;
	/* margin: 8px 4px; */
	/* padding-bottom: 0px; */
	height: 98%;
}

.property-image {
	position: relative;
	max-height: 67%;
	overflow: hidden;
	border-radius: 28px;
	margin-bottom: 10px;
	background: #eee;
}

.property-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s ease;
	aspect-ratio: 16 / 12;
}

/* .property-location a::after {
	content: '›';
	margin: 0 8px;
	color: #999;
	font-size: 16px;
	font-weight: 200;
} */

.property-image img:hover {
	transform: scale(1.3);
}

.simple-placeholder {
	width: 100%;
	height: 100%;
	background: #f5f5f5;
	border-radius: 28px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: #999;
	position: absolute;
}

.simple-placeholder svg {
	opacity: 0.6;
	stroke: #999;
}

.simple-placeholder span {
	font-size: 12px;
	font-weight: 500;
	color: #999;
}

/* Property Badges */
.property-badges {
	position: absolute;
	top: 14px;
	left: 16px;
	display: flex;
	gap: 6px;
	z-index: 10;
}

.badge {
	padding: 7px 13px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 400;
	color: white;
	backdrop-filter: blur(3px);
}

.badge-new {
	background: rgba(0, 255, 0, 0.6);
}

.badge-featured {
	background: rgba(255, 0, 0, 0.6);
}

.badge-3dtour {
	background: rgba(0, 123, 255, 0.8);
}

/* Favorite Button */
.favorite-btn {
	position: absolute;
	top: 12px;
	right: 14px;
	background: transparent;
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s;
	color: #666;
	z-index: 10;
}

.favorite-btn:hover {
	/* background: rgba(255, 255, 255, 0.4); */
	transform: scale(1.15);
	color: #e74c3c;
}

.favorite-btn.favorite-active {
	color: #ff1500;
}

.favorite-btn svg {
	transition: all 0.3s ease;
	fill: rgba(51, 51, 51, 0.575);
	stroke-width: 1.1;
	stroke: #fff;
}

.favorite-btn.favorite-active svg {
	fill: red !important;
	color: red !important;
	stroke: red !important;
}

.favorite-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Property Content */
.property-content {
	padding: 0 9px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.property-specs {
	display: flex;
	gap: 4px;
	/* margin-bottom: 8px; */
	font-size: 14px;
	color: #333;
	flex-direction: row;
	flex-wrap: wrap;
}



.property-specs a {
	color: #333;
	text-decoration: none;
}

.property-specs a:hover {
	color: #222;
	text-decoration: underline;
}

.prop_type {
	font-size: 14px;
	font-weight: 500;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	
	
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.prop_type a{
	/* white-space: nowrap; */

}

.property-card-link .spec {
	color: #666;
	
	white-space: nowrap;

}

.property-price {
	/* margin-bottom: 8px; */
}

.price {
	font-size: 16px;
	font-weight: 500;
	color: #333;
}

.currency {
	font-size: 14px;
	color: #666;
	margin-left: 4px;
}

.period {
	font-size: 14px;
	color: #666;
}

.property-address {
	font-size: 13px;
	color: #999;
	margin-bottom: 4px;
	/* line-height: 1.3; */
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.property-location {
	color: #666;
	font-size: 13px;
	/* margin-bottom: 8px; */
}

.property-location a {
	color: #666;
	font-size: 13px;
	/* margin-bottom: 8px; */
}
.property-project {
	font-size: 13px;
	font-weight: 400;
	color: #333;
	line-height: 1.3;
}

.property-project {
	font-size: 13px;
	font-weight: 400;
	color: #333;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.clickable-project a {
	color: #333;



}

.clickable-project {
padding: 3px 10px;
border-radius: 10px;
margin: 0px -10px;
}


.properties-section{
	/* padding: 0px 15px; */
}

/* Pagination */
.pagination {
	background: #fff;
	padding: 20px 0;
	margin-bottom: 10px;
	text-align: center;
}

.pagination-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.pagination-link {
	border-radius: 28px;
	text-decoration: none;
	color: #333;
	font-size: 14px;
	transition: all 0.2s;
	min-width: 40px;
	text-align: center;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pagination-link:hover {
	background: #f5f5f5;
	border-color: #ccc;
}

.pagination-current {
	background: #e6e6e6;
	color: #323232;
	border-color: #c6c6c6;
}

.pagination-prev, .pagination-next {
	font-weight: 500;
}

/* SEO Content */
.seo-content {
	background: #fff;
	padding: 12px 15px;
	margin-bottom: 40px;
}

.seo-content h2, .seo-content h3 {
	color: #333;
	margin-bottom: 16px;
}

.seo-content h2 {
	font-size: 24px;
}

.seo-content h3 {
	font-size: 20px;
	margin: 24px 0 12px;
}

.search-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 2fr));
	font-size: 14px;
	gap: 2px;
	color: #333;
}

.search-grid a {
	color: #333;
	padding: 5px 4px;
	display: block;
	transition: color 0.2s;
}

.search-grid a:hover {
	color: #c53030;
}

/* Footer */
.footer {
	background: #2d3748;
	color: #a0aec0;
	padding: 40px 15px;
	/* position: fixed;
		bottom: 0px;
		width: 100%; */
	
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	margin-bottom: 32px;
	justify-items: start;
	justify-content: space-around;
}

.footer-section h4 {
	color: #fff;
	margin-bottom: 16px;
	font-size: 16px;
	font-weight: 600;
}

.footer-section ul {
	list-style: none;
}

.footer-section li {
	margin-bottom: 8px;
}

.footer-section a {
	color: #a0aec0;
	text-decoration: none;
	transition: color 0.2s;
	font-size: 14px;
}

.footer-section a:hover {
	color: #fff;
}

.footer-section p {
	color: #a0aec0;
	font-size: 14px;
	margin-bottom: 4px;
}

.footer-bottom {
	border-top: 1px solid #4a5568;
	text-align: center;
	font-size: 14px;
	display: flex;
	align-items: baseline;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-top: 10px;
}

.footer-bottom-left {
	display: flex;
	gap: 14px;
	justify-content: flex-start;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
}

.footer-bottom-left a {
	color: #a0aec0;
}

.footer-bottom-right {
	display: flex;
	gap: 5px;
	margin-top: 16px;
	justify-content: flex-end;
}


.footer-bottom-right a {
	color: #a0aec0;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s;
}

.footer-bottom-right a:hover {
	color: #fff;
}

/* Social Links */
.social-links {
	display: flex;
	gap: 5px;
	margin-top: 16px;
	justify-content: center;
}

.social-links a {
	width: 36px;
	height: 36px;
	/* background: #4a5568; */
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #a0aec0;
	transition: all 0.2s;
}

.social-links a:hover {
	background: #718096;
	color: #fff;
}

/* Notifications */
.notification {
	position: fixed;
	top: 80px;
	right: 20px;
	z-index: 9999;
	max-width: 400px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	animation: slideInRight 0.3s ease;
	overflow: hidden;
}

.notification-info {
	background: #e3f2fd;
	border-left: 4px solid #2196f3;
	color: #0d47a1;
}

.notification-success {
	background: #e8f5e8;
	border-left: 4px solid #4caf50;
	color: #1b5e20;
}

.notification-error {
	background: #ffebee;
	border-left: 4px solid #f44336;
	color: #c62828;
}

.notification-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 16px;
	font-size: 14px;
	font-weight: 500;
}

.notification-close {
	background: none;
	border: none;
	font-size: 16px;
	cursor: pointer;
	color: inherit;
	opacity: 0.7;
	padding: 0 4px;
	margin-left: 12px;
	transition: opacity 0.2s;
}

.notification-close:hover {
	opacity: 1;
}

/* Search Notification */
.search-notification {
	background: #fff3cd;
	border: 1px solid #ffeaa7;
	border-radius: 25px;
	padding: 12px 16px;
	margin-bottom: 20px;
	animation: slideIn 0.3s ease;
}

.search-notification-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	color: #856404;
}

.clear-search-btn {
	background: none;
	border: none;
	font-size: 16px;
	cursor: pointer;
	color: #856404;
	padding: 0 4px;
	transition: color 0.2s;
}

.clear-search-btn:hover {
	color: #533f01;
}

/* Animations */
@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInRight {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Focus States */
.property-card-link:focus {
	/* outline: 1px solid #e53e3e;
	outline-offset: 2px;
	border-radius: 34px; */
}

.favorite-btn:focus, .language-btn:focus, .favorites-btn:focus, .mobile-menu-btn:focus {
	outline: 2px solid #e53e3e;
	outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 1200px) {
	.container {
		max-width: 1200px;
		padding: 0 18px;
	}
	
	.properties-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 15px 20px;
	}
	
	.property-image {
		max-height: 67%;
	}
}

@media (max-width: 900px) {
	.properties-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px 20px;

	}
	
	.property-image {
		max-height: 67%;
	}
	
	.property-specs {
		font-size: 16px;
		/* gap: 8px; */
	}
	
	.prop_type{
		font-size: 16px;
	}
	
	.price {
		font-size: 18px;
	}
	
	.property-project {
		font-size: 13px;
	}
}

@media (max-width: 768px) {
	.header-content {
		height: 56px;
	}
	
	.desktop-nav {
		display: none;
	}
	
	.mobile-menu-btn {
		display: flex;
	}
	
	.header-controls {
		gap: 12px;
	}
	
	.footer-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
	
	.results-sort {
		flex-direction: column;
		gap: 12px;
		align-items: flex-start;
	}
	
	.lazy-slide video {
		height: 300px !important;
	}
}

@media (max-width: 600px) {
	.container {
		padding: 0 18px;
	}
	
	.header-content {
		height: 50px;
	}
	
	.logo img {
		height: 28px;
	}
	
	.page-title {
		font-size: 20px;
	}
	
	.results-info {
		/* flex-direction: column; */
		/* gap: 4px; */
		font-size: 13px;
	}
	
	.filters {
		padding: 16px;
	}
	
	.property-card {

		height: 100%;
	}
	
	.properties-grid {
		grid-template-columns: 1fr;
		/* margin-bottom: 15px; */
	}
	
	.property-image {
		height: 67%;
	}
	
	.pagination {
		padding: 16px 0;
		/* margin-bottom: 32px; */
	}
	
	.pagination-links {
		gap: 4px;
	}
	
	.pagination-link {
		font-size: 14px;
		/* min-width: 32px; */
	}
	
	.seo-content {
		padding: 20px 10px;
		margin-bottom: 32px;
	}
	
	.seo-content h2 {
		font-size: 20px;
	}
	
	.seo-content h3 {
		font-size: 18px;
	}
	
	.footer {
		padding: 32px 5px;
	}
	
	.footer-content {
		gap: 24px;
		margin-bottom: 24px;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	
	.breadcrumb-list {
		font-size: 13px;
	}
	
	.breadcrumb-list li::after {
		margin: 0 6px;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 12px;
	}
	
	.page-title {
		font-size: 18px;
	}
	
	.notification {
		top: 60px;
		left: 16px;
		right: 16px;
		max-width: none;
	}
	
	.language-dropdown {
		right: -16px;
		min-width: 120px;
	}
	
	.footer-bottom-right {
		/* flex-direction: column; */
		gap: 8px;
	}
	
	.pagination-prev, .pagination-next {
		display: none;
	}
	
	.lazy-slide video {
		height: 300px !important;
	}
}

/* Hide mobile nav on desktop */
@media (min-width: 769px) {
	.mobile-nav {
		display: none !important;
	}
}


////

/* Property Slider */
.property-slider {
	position: relative;
	height: 220px;
	overflow: hidden;
	border-radius: 28px;
	background: #f5f5f5;
}

.slider-container {
	width: 100%;
	height: 100%;
}

.slider-slide {
	width: 100%;
	height: 100%;
	display: none;
}

.slider-slide.active {
	display: block;
}



/* Navigation */
.slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 20;
	opacity: 0;
	transition: all 0.2s ease;
	color: #333;
}

.property-slider:hover .slider-nav {
	opacity: 1;
}

.slider-prev {
	left: 12px;
}

.slider-next {
	right: 12px;
}

/* Dots indicator */
.slider-dots {
	position: absolute;
	bottom: 12px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 6px;
	z-index: 20;
}

.slider-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.2s ease;
}

.slider-dot.active {
	background: rgba(255, 255, 255, 0.9);
	transform: scale(1.2);
}

/* Mobile optimizations */
@media (max-width: 768px) {
	.slider-nav {
		display: none;
	}

}

.slider-slide img, 
.slider-slide video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}


/* Video in slider */
.slider-slide video {
	width: 100%;
	/* max-height: 212px; */
	object-fit: cover;
	display: block;
	border-radius: 28px;
}

.lazy-slide video {
	width: 100%;
	height: 15rem ;
	object-fit: cover;
	display: block;
}
.lazy-video{
	/* max-height: 300px; */

}
