/**
 * Main Stylesheet
 *
 * @package Ensofia_Estates
 * @since 1.0.0
 */

/* Color Variables - Coolors Palette */
:root {
	--color-primary: #8183b1;
	--color-secondary: #a69cac;
	--color-dark-bg: #161b33;
	--color-text: #14122b;
	--color-bg-light: #ffffff;
	--color-bg-hover: #f5f5f5;
	--color-white: #fff;
	--color-border: #ddd;
	--color-button-hover: #565782;
	--color-placeholder: #c5c5c5;
	--color-error: #dc3545;
	--color-success: #28a745;
	--color-warning: #ffc107;
	
	
	/* RGBA variants for overlays and transparency */
	--color-primary-rgba-03: rgba(129, 131, 177, 0.3);
	--color-primary-rgba-01: rgba(129, 131, 177, 0.1);
}

/* Typography - Jost for English (LTR), Arimo for Hebrew (RTL) */
html {
	height: 100%;
}

body {
	font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	background-color: var(--color-bg-light);
	color: var(--color-text);
	min-height: 100%;
	display: flex;
	flex-direction: column;
}

#page.site {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-main {
	flex: 1;
}

/* Jost font for English (LTR) content - default */
[dir="ltr"],
html[lang="en"],
html[lang="en-US"],
html[lang="en-GB"] {
	font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

[dir="ltr"] body,
[dir="ltr"] *,
html[lang="en"] body,
html[lang="en"] *,
html[lang="en-US"] body,
html[lang="en-US"] *,
html[lang="en-GB"] body,
html[lang="en-GB"] * {
	font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

/* Arimo font specifically for Hebrew (RTL) content */
[dir="rtl"],
html[lang="he"],
html[lang="he-IL"] {
	font-family: 'Arimo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

[dir="rtl"] body,
[dir="rtl"] *,
html[lang="he"] body,
html[lang="he"] *,
html[lang="he-IL"] body,
html[lang="he-IL"] * {
	font-family: 'Arimo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

/* Site Header */
.site-header {
	background-color: var(--color-dark-bg);
	/* border-bottom: 1px solid #434343; */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	padding: 0.5rem 0;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.site-header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 2rem;
	position: relative;
}

.site-branding {
	grid-column: 1;
	justify-self: start;
}

.site-title {
	margin: 0;
	font-size: 1.5rem;
}

.site-title a {
	color: var(--color-white);
	text-decoration: none;
}

.custom-logo {
	max-width: 75px;
	height: auto;
}

/* Navigation */
.main-navigation {
	grid-column: 2;
	justify-self: center;
	width: 100%;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 2rem;
	justify-content: center;
	align-items: center;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	color: var(--color-white);
	text-decoration: none;
	font-weight: bold;
	padding: 0.5rem 0;
	display: block;
	transition: color 0.3s ease;
	white-space: nowrap;
}

.main-navigation a:hover {
	color: var(--color-primary);
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--color-white);
}

/* Language Switcher */
.language-switcher {
	grid-column: 3;
	justify-self: end;
	position: relative;
}

.language-switcher-dropdown {
	position: relative;
}

.language-switcher-trigger {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 4px;
	padding: 0.5rem 0.75rem;
	color: var(--color-white);
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 0.875rem;
	font-family: inherit;
}

.language-switcher-trigger:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
}

.language-switcher-trigger:focus {
	outline: none;
}

.language-switcher-trigger[aria-expanded="true"] {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.5);
}

.language-switcher-trigger[aria-expanded="true"] .language-arrow {
	transform: rotate(180deg);
}

.language-flag {
	width: 20px;
	height: 15px;
	object-fit: cover;
	border-radius: 2px;
	flex-shrink: 0;
}

.language-name {
	font-weight: 500;
	white-space: nowrap;
}

.language-arrow {
	font-size: 0.75rem;
	transition: transform 0.3s ease;
	margin-left: 0.25rem;
}

.language-switcher-menu {
	position: absolute;
	top: calc(100% + 0.5rem);
	right: 0;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	list-style: none;
	margin: 0;
	padding: 0.25rem 0;
	width: 100%;
	box-sizing: border-box;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
	z-index: 1000;
}

.language-switcher-dropdown[data-open="true"] .language-switcher-menu,
.language-switcher-menu:target {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.language-switcher-menu li {
	margin: 0;
}

.language-option {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 0.75rem 1rem;
	color: var(--color-white);
	text-decoration: none;
	transition: background-color 0.2s ease;
	width: 100%;
	box-sizing: border-box;
}

.language-option:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.language-option.active {
	background-color: rgba(255, 255, 255, 0.15);
	color: var(--color-white);
	font-weight: 600;
}

.language-option .language-flag {
	width: 20px;
	height: 15px;
	object-fit: cover;
	border-radius: 2px;
	flex-shrink: 0;
}

.language-option .language-name {
	font-weight: inherit;
}

/* RTL Support for Language Switcher */
[dir="rtl"] .language-switcher-menu {
	right: auto;
	left: 0;
}

[dir="rtl"] .language-switcher-trigger {
	direction: rtl;
}

[dir="rtl"] .language-arrow {
	margin-left: 0;
	margin-right: 0.25rem;
}

/* Hero Section - Carousel */
.hero-section {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 600px;
	max-height: 900px;
	overflow: hidden;
}

.hero-carousel-container {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero-carousel-slides {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero-carousel-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-carousel-slide.active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.hero-slide-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-slide-background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 8s ease-out;
}

.hero-carousel-slide.active .hero-slide-background img {
	transform: scale(1.1);
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to right,
		rgba(0, 0, 0, 0.7) 0%,
		rgba(0, 0, 0, 0.5) 50%,
		rgba(0, 0, 0, 0.3) 100%
	);
	z-index: 2;
}

.hero-slide-content {
	position: relative;
	z-index: 3;
	width: 100%;
	max-width: 1200px;
	padding: 0 2rem;
}

.hero-slide-info {
	max-width: 600px;
	color: var(--color-white);
	animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-slide-location {
	font-size: 0.875rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1rem;
	color: rgba(255, 255, 255, 0.9);
}

.hero-slide-title {
	margin: 0 0 1.5rem 0;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-white);
}

.hero-slide-title a {
	color: var(--color-white);
	text-decoration: none;
	transition: color 0.3s ease;
}

.hero-slide-title a:hover {
	color: var(--color-primary);
}

.hero-slide-price {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-white);
	margin-bottom: 2rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-slide-description {
	font-size: 1.125rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 2rem;
	max-width: 600px;
}

.hero-slide-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	margin-bottom: 2.5rem;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.95);
}

.hero-meta-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.hero-meta-item svg {
	width: 20px;
	height: 20px;
	stroke: currentColor;
	flex-shrink: 0;
}

.hero-slide-button {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: var(--color-primary);
	color: var(--color-white);
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	border: 2px solid var(--color-primary);
}

.hero-slide-button:hover {
	background: transparent;
	color: var(--color-primary);
	border-color: var(--color-primary);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px var(--color-primary-rgba-03);
}

/* Carousel Navigation */
.hero-carousel-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	z-index: 10;
	pointer-events: none;
}

.hero-carousel-prev,
.hero-carousel-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	color: var(--color-white);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	pointer-events: all;
	backdrop-filter: blur(10px);
}

.hero-carousel-prev {
	left: 2rem;
}

.hero-carousel-next {
	right: 2rem;
}

.hero-carousel-prev:hover,
.hero-carousel-next:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.8);
	transform: translateY(-50%) scale(1.1);
}

.hero-carousel-prev svg,
.hero-carousel-next svg {
	width: 24px;
	height: 24px;
	stroke: currentColor;
}

/* Carousel Indicators */
.hero-carousel-indicators {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.75rem;
	z-index: 10;
}

.hero-carousel-indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	border: 2px solid rgba(255, 255, 255, 0.6);
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
	margin: 0;
}

.hero-carousel-indicator:hover {
	background: rgba(255, 255, 255, 0.6);
	border-color: rgba(255, 255, 255, 0.9);
	transform: scale(1.2);
}

.hero-carousel-indicator.active {
	background: var(--color-white);
	border-color: var(--color-white);
	width: 32px;
	border-radius: 6px;
}

/* Property Cards */
.property-card {
	background: var(--color-white);
	border: 1px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
	transition: box-shadow 0.3s ease;
	cursor: pointer;
}

.property-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Property Card Carousel */
.property-card-carousel {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.property-card-image-link {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.property-card-carousel-container {
	position: relative;
	width: 100%;
	height: 100%;
}

.property-card-carousel-slides {
	position: relative;
	width: 100%;
	height: 100%;
}

.property-card-carousel-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.property-card-carousel-slide.active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.property-card-carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Navigation Arrows */
.property-card-carousel-prev,
.property-card-carousel-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	border-radius: 50%;
	color: var(--color-text);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
	opacity: 0;
	pointer-events: none;
}

.property-card:hover .property-card-carousel-prev,
.property-card:hover .property-card-carousel-next {
	opacity: 1;
	pointer-events: all;
}

.property-card-carousel-prev {
	left: 10px;
}

.property-card-carousel-next {
	right: 10px;
}

.property-card-carousel-prev:hover,
.property-card-carousel-next:hover {
	background: var(--color-white);
	transform: translateY(-50%) scale(1.1);
}

.property-card-carousel-prev svg,
.property-card-carousel-next svg {
	width: 20px;
	height: 20px;
	stroke: currentColor;
}

/* Carousel Indicators */
.property-card-carousel-indicators {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 6px;
	z-index: 10;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.property-card:hover .property-card-carousel-indicators {
	opacity: 1;
}

.property-card-carousel-indicator {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
	margin: 0;
}

.property-card-carousel-indicator:hover {
	background: rgba(255, 255, 255, 0.8);
	transform: scale(1.2);
}

.property-card-carousel-indicator.active {
	background: var(--color-white);
	width: 24px;
	border-radius: 4px;
}

.property-status-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background: var(--color-primary);
	color: var(--color-white);
	padding: 0.25rem 0.75rem;
	border-radius: 4px;
	font-size: 0.875rem;
	z-index: 10;
}

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

.property-card-content {
	padding: 1rem 1.25rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.property-card-title {
	margin: 0;
	font-size: 1.125rem;
	color: var(--color-text);
	line-height: 1.3;
	font-weight: 600;
}

.property-price {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-primary);
	line-height: 1.2;
}

.property-card-location-row {
	font-size: 0.95rem;
	color: #4a4a4a;
	line-height: 1.4;
}

.property-card-divider {
	width: calc(100% + 2.5rem);
	height: 1px;
	background: #e5e5e5;
	margin-left: -1.25rem;
	margin-right: -1.25rem;
}

.property-card-stats {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.property-card-stat {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	min-width: 0;
}

.property-card-stat-icon {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.property-card-stat-icon svg {
	width: 20px;
	height: 20px;
	stroke: var(--color-secondary);
	fill: none;
	stroke-width: 1.5;
}

.property-card-stat-value {
	font-weight: 500;
	color: var(--color-text);
	font-size: 0.875rem;
}

/* Property Gallery */
.property-gallery {
	margin-bottom: 2rem;
}

.property-gallery-carousel {
	position: relative;
}

.gallery-carousel-container {
	position: relative;
}

/* Main Carousel */
.gallery-carousel-main {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 8px;
	margin-bottom: 1rem;
	background: #000;
}

.gallery-carousel-slides {
	position: relative;
	width: 100%;
	height: 100%;
}

.gallery-carousel-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.gallery-carousel-slide.active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.gallery-carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
}

/* Navigation Arrows */
.gallery-carousel-prev,
.gallery-carousel-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	color: var(--color-white);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
	backdrop-filter: blur(10px);
}

.gallery-carousel-prev {
	left: 1rem;
}

.gallery-carousel-next {
	right: 1rem;
}

.gallery-carousel-prev:hover,
.gallery-carousel-next:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.8);
	transform: translateY(-50%) scale(1.1);
}

.gallery-carousel-prev svg,
.gallery-carousel-next svg {
	width: 24px;
	height: 24px;
	stroke: currentColor;
}

/* Counter */
.gallery-counter {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	background: rgba(0, 0, 0, 0.6);
	color: var(--color-white);
	padding: 0.5rem 1rem;
	border-radius: 4px;
	font-size: 0.875rem;
	font-weight: 600;
	z-index: 10;
	backdrop-filter: blur(10px);
}

.gallery-counter .gallery-current {
	font-weight: 700;
}

/* Thumbnails Container */
.gallery-thumbnails-container {
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0.5rem 0;
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.gallery-thumbnails-container::-webkit-scrollbar {
	height: 6px;
}

.gallery-thumbnails-container::-webkit-scrollbar-track {
	background: transparent;
}

.gallery-thumbnails-container::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 3px;
}

.gallery-thumbnails-container::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 0, 0, 0.3);
}

.gallery-thumbnails {
	display: flex;
	gap: 0.75rem;
	padding: 0.25rem 0;
}

.gallery-thumb {
	position: relative;
	flex-shrink: 0;
	width: 100px;
	height: 100px;
	padding: 0;
	border: 3px solid transparent;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	background: #f0f0f0;
	transition: all 0.3s ease;
	opacity: 0.7;
}

.gallery-thumb:hover {
	opacity: 1;
	transform: scale(1.05);
}

.gallery-thumb.active {
	opacity: 1;
	border-color: var(--color-secondary);
	box-shadow: 0 0 0 2px var(--color-primary-rgba-03);
}

.gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Property Gallery - Full Width */
.property-gallery {
	margin-bottom: 2rem;
	width: 100%;
}

/* Property Page Header Strip */
.property-page-header {
	background-color: var(--color-text);
	width: 100%;
	padding: .5rem 0;
	margin-bottom: 0.8rem;
}

.property-page-header .container {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.property-page-header .breadcrumbs {
	margin: 0;
	padding: 0;
}

.property-page-header .breadcrumbs a,
.property-page-header .breadcrumbs span {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
	text-decoration: none;
}

.property-page-header .breadcrumbs a:hover {
	color: var(--color-white);
}

.property-page-header .breadcrumbs .breadcrumb_separator {
	color: rgba(255, 255, 255, 0.5);
	margin: 0 0.5rem;
}

.property-header {
	margin: 0 0 0.5rem;
	padding: 0;
}

.property-title {
	color: var(--color-white);
	font-size: 2rem;
	font-weight: 600;
	margin: 0;
	line-height: 1.1;
}

/* Property Content Layout */
.property-content {
	display: grid;
	grid-template-columns: 2fr 1fr; /* 2/3 main content, 1/3 sidebar */
	gap: 2rem;
	align-items: start;
	max-width: 100%;
	margin-top: 0;
}

.property-main {
	width: 100%;
	min-width: 0; /* Prevents grid overflow */
	order: 1; /* Ensure main content appears first on desktop */
	overflow-wrap: break-word;
	word-wrap: break-word;
}

.property-main > * {
	max-width: 100%;
	overflow-wrap: break-word;
	word-wrap: break-word;
}

.property-sidebar {
	position: sticky;
	top: 100px;
	align-self: start;
	width: 100%;
	min-width: 0; /* Prevents grid overflow */
	max-width: 100%;
	order: 2; /* Ensure sidebar appears second on desktop */
	overflow-wrap: break-word;
	word-wrap: break-word;
}

.property-sidebar > * {
	max-width: 100%;
	overflow-wrap: break-word;
	word-wrap: break-word;
}

/* Property Details Box */
.property-details-box {
	margin-bottom: 2rem;
}

.property-details-box h2 {
	margin: 0 0 1.5rem 0;
	font-size: 1.5rem;
	color: var(--color-text);
}

.property-details-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.property-detail-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 0;
}

.detail-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	color: var(--color-secondary);
}

.detail-icon svg {
	width: 24px;
	height: 24px;
	stroke: currentColor;
}

.detail-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.detail-label {
	font-size: 0.875rem;
	color: #666;
	font-weight: 500;
}

.detail-value {
	font-size: 1rem;
	color: var(--color-text);
	font-weight: 600;
}

/* Property Features Box */
.property-features-box {
	margin-bottom: 2rem;
}

.property-features-box h2 {
	margin: 0 0 1.5rem 0;
	font-size: 1.5rem;
	color: var(--color-text);
	padding: 0;
}

.property-features-list {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 0;
	padding: 0;
	align-items: flex-start;
}

.property-feature-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
}

.property-feature-item .feature-icon {
	width: 48px;
	height: 48px;
	object-fit: contain;
	margin-bottom: 0;
}

.property-feature-item .feature-name {
	font-size: 0.875rem;
	color: #666;
	text-align: center;
	font-weight: 500;
}

/* Property Description */
.property-description {
	margin-bottom: 2rem;
	width: 100%;
	overflow-wrap: break-word;
	word-wrap: break-word;
}

.property-description h2 {
	margin: 0 0 1.5rem 0;
	font-size: 1.5rem;
	color: var(--color-text);
}

.property-description > * {
	max-width: 100%;
	overflow-wrap: break-word;
	word-wrap: break-word;
}

.property-description img {
	max-width: 100%;
	height: auto;
	display: block;
}

.property-description table {
	max-width: 100%;
	overflow-x: auto;
	display: block;
	width: 100%;
}

.property-description pre,
.property-description code {
	overflow-x: auto;
	max-width: 100%;
	word-wrap: break-word;
	white-space: pre-wrap;
}

.property-description a {
	word-break: break-all;
}

/* Property Tags */
.property-tags {
	margin-bottom: 2rem;
}

.property-tags h3 {
	margin: 0 0 1rem 0;
	font-size: 1.25rem;
	color: var(--color-text);
}

.property-tags ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.property-tags li {
	margin: 0;
}

.property-tags a {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: var(--color-bg-light);
	color: var(--color-text);
	text-decoration: none;
	border-radius: 4px;
	transition: background-color 0.3s ease;
	word-break: break-word;
}

.property-tags a:hover {
	background: var(--color-border);
}

/* Property Files */
.property-files {
	margin-bottom: 2rem;
}

.property-files h3 {
	margin: 0 0 1rem 0;
	font-size: 1.25rem;
	color: var(--color-text);
}

.property-files ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.property-files li {
	margin: 0 0 0.5rem 0;
}

.property-files a {
	color: var(--color-primary);
	text-decoration: none;
	word-break: break-all;
}

.property-files a:hover {
	text-decoration: underline;
}

/* Property Details Table (Legacy Support) */
.property-details-table {
	width: 100%;
	border-collapse: collapse;
}

.property-details-table th,
.property-details-table td {
	padding: 0.75rem;
	text-align: left;
	border-bottom: 1px solid #ddd;
}

.property-details-table th {
	font-weight: 600;
	width: 40%;
}

/* Property Search */
.property-search-form {
	background: var(--color-bg-light);
	padding: 1.5rem;
	border-radius: 8px;
	margin-bottom: 2rem;
}

.search-basic {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
	margin-bottom: 1rem;
}

.search-field label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.search-advanced {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #ddd;
}

/* Property Filters - Top Section */
.property-filters-top {
	border-radius: 8px;
	margin-bottom: 2rem;
}

.property-filters-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.1rem;
}

.property-filters-title {
	color: var(--color-text);
	font-size: 1.5rem;
	font-weight: 600;
	margin: 0;
}

.btn-reset-filters {
	background: transparent;
	border: none;
	color: var(--color-text);
	cursor: pointer;
	display: flex;
	align-items: center;
	font-weight: bold;
	gap: 0.5rem;
	font-size: 0.875rem;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	transition: background-color 0.3s ease;
}

.btn-reset-filters:hover {
	background: var(--color-border);
}

.reset-icon {
	font-size: 1rem;
}

.filters-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.filter-span-2 {
	grid-column: span 2;
}

.filter-search-button-wrapper {
	grid-column: 1 / -1;
	display: flex;
	justify-content: center;
	margin-top: 1rem;
	width: 100%;
}

.filter-search-button-wrapper .btn-search-filters {
	width: 100%;
	max-width: 100%;
}

/* Advanced Filters Indicator */
.advanced-filters-indicator {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1.5rem;
	padding: 0.5rem 1rem;
	background: var(--color-primary-rgba-01);
	border: 1px solid var(--color-primary);
	border-radius: 4px;
	color: var(--color-primary);
	font-size: 0.875rem;
	font-weight: 500;
}

.advanced-filters-indicator .indicator-icon {
	font-size: 1rem;
	font-weight: bold;
}

.advanced-filters-indicator .indicator-text {
	line-height: 1.4;
}

/* Advanced Filters Toggle */
.advanced-filters-toggle {
	margin-top: 1rem;
	width: 100%;
}

.btn-advanced-filters {
	background: transparent;
	border: 1px solid var(--color-border);
	color: var(--color-text);
	padding: 0.75rem 1rem;
	border-radius: 4px;
	cursor: pointer;
	font-size: 0.875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	transition: all 0.3s ease;
}

.btn-advanced-filters:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--color-primary);
}

.advanced-icon {
	transition: transform 0.3s ease;
}

.btn-advanced-filters.active .advanced-icon {
	transform: rotate(180deg);
}

/* Advanced Filters Section */
.advanced-filters-section {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.advanced-filters-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

/* Search Input */
.filter-search-wrapper {
	position: relative;
	width: 100%;
}

.filter-search-input {
	width: 100%;
	background: var(--color-bg-hover);
	border: 1px solid var(--color-border);
	border-radius: 4px;
	padding: 0.75rem;
	padding-right: 2.75rem;
	color: var(--color-text) !important;
	font-size: 0.875rem;
	height: 45px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-search-input:focus {
	outline: none;
	border-color: #5a5a5a;
	box-shadow: 0 0 0 1px rgba(90, 90, 90, 0.4);
	color: #fff !important;
}

.filter-search-input::placeholder {
	color: var(--color-placeholder);
}

.filter-search-clear {
	position: absolute;
	right: 0.5rem;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-placeholder);
	transition: color 0.2s ease, transform 0.2s ease;
	width: 20px;
	height: 20px;
	border-radius: 50%;
}

.filter-search-clear:hover {
	color: var(--color-text);
	background: var(--color-bg-hover);
}

.filter-search-clear:active {
	transform: translateY(-50%) scale(0.95);
}

.filter-search-clear svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* Ensure all filter inputs have white text to match dropdowns */
.property-filters-top input[type="text"],
.property-filters-top input[type="number"] {
	color: var(--color-text) !important;
	height: 45px;
}

/* Features Grid */
.filter-features {
	grid-column: 1 / -1;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	gap: 0.75rem;
}

.feature-checkbox {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0.75rem;
	background: var(--color-bg-hover);
	border: 1px solid var(--color-border);
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.2s ease;
	text-align: center;
	position: relative;
}

.feature-checkbox:hover {
	background: var(--color-primary);
	border-color: var(--color-secondary);
}

.feature-checkbox.selected {
	background: var(--color-primary);
	border-color: var(--color-secondary);
}

.feature-checkbox input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.feature-icon {
	width: 32px;
	height: 32px;
	object-fit: contain;
	margin-bottom: 0.5rem;
}

.feature-name {
	font-size: 0.75rem;
	color: var(--color-text);
	text-align: center;
}

.feature-checkbox:hover .feature-name, .feature-checkbox.selected .feature-name {
	color: var(--color-white);
}

.filter-item {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.filter-item label {
	color: var(--color-text);
	font-size: 0.875rem;
	font-weight: 500;
}

/* Multi-select Dropdowns - dom.com.cy style */
.multiselect-wrapper {
	position: relative;
}

.multiselect-display {
	background: var(--color-bg-hover);
	border: 1px solid var(--color-border);
	border-radius: 4px;
	padding: 0.75rem;
	color: var(--color-text);
	cursor: pointer;
	font-size: 0.875rem;
	height: 45px;
	min-height: 45px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	transition: border-color 0.2s ease;
}

.multiselect-display:hover {
	border-color: var(--color-secondary);
}

.multiselect-display.has-selection {
	color: var(--color-text);
}

.multiselect-display-text {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.multiselect-caret {
	font-size: 0.75rem;
	color: var(--color-secondary);
	margin-left: 0.5rem;
	transition: transform 0.2s ease;
	flex-shrink: 0;
}

.multiselect-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--color-bg-hover);
	border: 1px solid var(--color-border);
	border-radius: 4px;
	margin-top: 0.25rem;
	max-height: 200px;
	overflow-y: auto;
	z-index: 1000;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.multiselect-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem;
	color: var(--color-text);
	cursor: pointer;
	font-size: 0.875rem;
	border-bottom: 1px solid var(--color-border);
	transition: all 0.2s ease;
	position: relative;
}

.multiselect-option:last-child {
	border-bottom: none;
}

.multiselect-option:hover {
	background: var(--color-primary);
	color: var(--color-white);
}

.multiselect-option.selected {
	color: var(--color-white);
	background: var(--color-primary);
	font-weight: 500;
}

.multiselect-option input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	margin: 0;
	padding: 0;
}

.multiselect-option-text {
	flex: 1;
}

.multiselect-checkmark {
	color: var(--color-white);
	font-size: 1rem;
	font-weight: bold;
	margin-left: 0.5rem;
	flex-shrink: 0;
}

/* Range Sliders */
.filter-range {
	position: relative;
}

.range-inputs {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.range-input {
	background: var(--color-bg-hover);
	border: 1px solid var(--color-secondary);
	border-radius: 4px;
	padding: 0.5rem;
	color: var(--color-text);
	font-size: 0.875rem;
	width: 100px;
	height: 45px;
	text-align: right;
}

.range-separator {
	color: var(--color-text);
	font-size: 0.875rem;
}

.range-slider {
	position: relative;
	height: 6px;
	background: #4a4a4a;
	border-radius: 3px;
	cursor: pointer;
	width: 100%;
}

.range-slider-track {
	position: relative;
	width: 100%;
	height: 100%;
	cursor: pointer;
	background: var(--color-border);
}

.range-slider-fill {
	position: absolute;
	height: 100%;
	background: var(--color-primary);
	border-radius: 3px;
	top: 0;
}

.range-slider-handle {
	position: absolute;
	width: 18px;
	height: 18px;
	background: var(--color-primary);
	border: 2px solid #fff;
	border-radius: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	cursor: grab;
	z-index: 10;
	transition: transform 0.2s ease;
	touch-action: none;
	user-select: none;
	-webkit-user-select: none;
}

.range-slider-handle:active {
	cursor: grabbing;
	transform: translate(-50%, -50%) scale(1.2);
}

.range-slider-handle:hover {
	transform: translate(-50%, -50%) scale(1.1);
}

.range-slider-handle-left {
	left: 0;
}

.range-slider-handle-right {
	left: 100%;
}

/* Check Buttons (Segmented Control) */
.check-buttons {
	display: flex;
	gap: 0.25rem;
	background: var(--color-bg-hover);
	border: 1px solid var(--color-border);
	border-radius: 4px;
	padding: 0.25rem;
	flex-wrap: wrap;
}

.check-button {
	background: transparent;
	border: none;
	color: var(--color-text);
	padding: 0.5rem 1rem;
	border-radius: 4px;
	cursor: pointer;
	font-size: 0.875rem;
	transition: all 0.2s ease;
	flex: 1;
	min-width: 50px;
}

.check-button:hover {
	background: var(--color-secondary);
}

.check-button.active {
	background: var(--color-primary);
	color: var(--color-white);
	font-weight: 600;
}

.check-button.active:hover {
	background: var(--color-button-hover);
}

/* Search Button */
.btn-search-filters {
	background: var(--color-primary);
	color: var(--color-white);
	border: none;
	padding: 0.75rem 2rem;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 600;
	transition: background-color 0.3s ease;
	min-width: 150px;
}

.btn-search-filters:hover {
	background: var(--color-button-hover);
}

/* Properties Archive Layout */
.properties-archive {
	display: flex;
	flex-direction: column;
}

.properties-content {
	width: 100%;
}

.properties-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
	padding: 1rem 0;
}

.properties-count {
	font-size: 1rem;
	color: var(--color-text);
	font-weight: 500;
}

.properties-controls {
	display: flex;
	align-items: center;
	gap: 1rem;
}

/* RTL: View switcher on right, sort on left */
[dir="rtl"] .properties-controls,
html[lang="he"] .properties-controls,
html[lang="he-IL"] .properties-controls {
	flex-direction: row-reverse;
}

.properties-sort {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	min-width: 0;
	flex: 1;
}

.properties-sort label {
	font-size: 0.875rem;
	color: var(--color-text);
	white-space: nowrap;
	font-weight: 500;
	flex-shrink: 0;
}

.properties-sort select {
	background: var(--color-bg-hover);
	border: 1px solid var(--color-border);
	border-radius: 4px;
	padding: 0.75rem;
	color: var(--color-text);
	cursor: pointer;
	font-size: 0.875rem;
	height: 45px;
	min-height: 45px;
	transition: border-color 0.2s ease;
	width: 100%;
}

.properties-sort .multiselect-wrapper {
	min-width: 200px;
	flex: 1;
}

.properties-sort .multiselect-display-text {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.properties-sort select:hover {
	border-color: var(--color-secondary);
}

.properties-sort select:focus {
	outline: none;
	border-color: var(--color-secondary);
	box-shadow: 0 0 0 1px rgba(90, 90, 90, 0.4);
}

.properties-sort select option {
	background: var(--color-bg-hover);
	color: var(--color-text);
	padding: 0.75rem;
}

.btn-map {
	background: var(--color-primary);
	color: var(--color-white);
	border: none;
	padding: 0.5rem 1.5rem;
	border-radius: 4px;
	cursor: pointer;
	font-size: 0.875rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: background-color 0.3s ease;
}

.btn-map:hover {
	background: var(--color-button-hover);
}

/* View Switcher */
.properties-view-switcher {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

.view-switcher-btn {
	background: var(--color-bg-hover);
	color: var(--color-text);
	border: 1px solid var(--color-border);
	padding: 0.5rem 1rem;
	height: 45px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 0.875rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
}

.view-switcher-btn:hover {
	background: var(--color-bg-hover);
	border-color: var(--color-primary);
}

.view-switcher-btn.active {
	background: var(--color-primary);
	color: var(--color-white);
	border-color: var(--color-primary);
}

.view-switcher-btn svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.view-switcher-btn span {
	white-space: nowrap;
}

/* Properties Grid - 3 Columns (Default Grid View) */
.properties-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 2rem;
}

/* Grid View (explicit class) */
.properties-grid.properties-grid-view {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 2rem;
}

/* List View */
.properties-grid.properties-list-view {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.properties-list-view .property-card {
	display: flex;
	flex-direction: row;
	gap: 1.5rem;
	background: var(--color-white);
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	transition: box-shadow 0.3s ease;
}

.properties-list-view .property-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.properties-list-view .property-card-carousel {
	flex: 0 0 300px;
	max-width: 300px;
	height: 200px;
}

.properties-list-view .property-card-carousel-container {
	height: 100%;
}

.properties-list-view .property-card-carousel-slides {
	height: 100%;
}

.properties-list-view .property-card-carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.properties-list-view .property-card-content-link {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.properties-list-view .property-card-content {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
}

.properties-list-view .property-card-title {
	margin: 0 0 0.5rem 0;
	font-size: 1.25rem;
}

.properties-list-view .property-price {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	text-align: right;
	font-size: 1.5rem;
	font-weight: 700;
}

.properties-list-view .property-card-location-row {
	color: var(--color-text-light);
}

/* Mixed View Wrapper */
.properties-mixed-view-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.properties-mixed-view-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 1.5rem;
	max-height: 600px;
	overflow-y: auto;
}

.properties-mixed-view-grid .property-card {
	margin: 0;
}

#properties-map-container-mixed {
	height: 600px;
}

/* Map Container */
.properties-map-container {
	width: 100%;
	height: 600px;
	margin-bottom: 2rem;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #e0e0e0;
}

/* Map View */
.properties-grid.properties-map-view {
	display: none;
}

.properties-map-view + #properties-map-container {
	height: calc(100vh - 300px);
	min-height: 600px;
	margin-bottom: 0;
}

/* Mixed View - Map on Right */
.properties-mixed-view-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.properties-mixed-view-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 1.5rem;
	max-height: 600px;
	overflow-y: auto;
}

.properties-mixed-view-map {
	height: 600px;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #e0e0e0;
}

/* Info Window Styles */
.gm-style-iw-c {
	padding: 0 !important;
}

.gm-style-iw-d { 
	overflow: hidden !important;
}

.gm-style-iw-chr {
	position: absolute;
	top: 6px;
	left: 6px;
	z-index: 1000;
}

.gm-ui-hover-effect {
	background: rgba(255, 255, 255, 0.5) !important;
	border-radius: 8px !important;
	width: 38px !important;
	height: 38px !important;
}

.gm-ui-hover-effect>span {
	background: var(--color-white) !important;
	margin: 7px !important;
}

.property-info-window {
	max-width: 320px;
	font-family: inherit;
	background: var(--color-white);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.property-info-window-image-wrapper {
	position: relative;
	width: 100%;
	height: 180px;
	overflow: hidden;
}

.property-info-window-image {
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 8px 8px 0 0;
}

.property-info-window-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.property-info-window-status-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background: var(--color-primary);
	color: var(--color-white);
	padding: 0.25rem 0.75rem;
	border-radius: 4px;
	font-size: 0.875rem;
	font-weight: 600;
	z-index: 10;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.property-info-window-content {
	padding: 1rem 1.25rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.property-info-window-title {
	margin: 0;
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--color-text);
	line-height: 1.3;
}

.property-info-window-price {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-primary);
	line-height: 1.2;
	margin: 0;
}

.property-info-window-location {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #4a4a4a;
	font-size: 0.95rem;
	line-height: 1.4;
	margin: 0;
}

.property-info-window-location-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	stroke: #4a4a4a;
}

.property-info-window-divider {
	width: calc(100% + 2.5rem);
	height: 1px;
	background: #e5e5e5;
	margin-left: -1.25rem;
	margin-right: -1.25rem;
}

.property-info-window-stats {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.property-info-window-stat {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	min-width: 0;
}

.property-info-window-stat-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	stroke: var(--color-secondary);
	fill: none;
	stroke-width: 1.5;
}

.property-info-window-stat-value {
	font-weight: 500;
	color: var(--color-text);
	font-size: 0.875rem;
}

.property-info-window-link {
	display: block;
	width: 100%;
	padding: 0.75rem 1.5rem;
	background: var(--color-primary);
	color: var(--color-white);
	text-decoration: none;
	border-radius: 4px;
	border-top-right-radius: 0;
	border-top-left-radius: 0;
	font-size: 0.875rem;
	font-weight: 600;
	text-align: center;
	transition: all 0.3s ease;
	margin-top: 0.25rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.gm-style .gm-style-iw-tc::after {
	background-color: var(--color-primary);
}

.property-info-window-link:hover {
	background: var(--color-button-hover);
	color: var(--color-white);
	text-decoration: none;
}

/* Property Marker Price Badge Overlay */
.property-marker-price-badge-overlay {
	position: absolute;
	pointer-events: none;
	z-index: 1000;
}

.property-marker-price-label {
	position: relative;
	background-color: var(--color-primary);
	color: var(--color-white);
	padding: 5px 10px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.5px;
	white-space: nowrap;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	line-height: 1.2;
	font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.property-marker-price-label::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 8px solid #8183b1;
	filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
}

/* Legacy Property Filters (for backward compatibility) */
.property-filters {
	background: var(--color-bg-light);
	padding: 1.5rem;
	border-radius: 8px;
	margin-bottom: 2rem;
}

.filter-group {
	margin-bottom: 1.5rem;
}

.filter-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.filter-checkbox {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: normal;
}

.filter-checkbox input {
	margin-right: 0.5rem;
}

.filter-actions {
	display: flex;
	gap: 1rem;
}

/* Property CTA */
.property-cta {
	background: #fff;
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	margin-bottom: 2rem;
	width: 100%;
	max-width: 100%;
	overflow-wrap: break-word;
	word-wrap: break-word;
	box-sizing: border-box;
}

.property-cta h3 {
	margin: 0 0 1.5rem 0;
	font-size: 1.25rem;
	color: var(--color-text);
}

.property-cta-buttons {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
	flex-wrap: wrap;
}

.property-cta-buttons .btn {
	flex: 1;
	min-width: 120px;
	text-align: center;
}

/* Forms */
.contact-form-wrapper,
.property-management-form-wrapper,
.project-lead-form {
	max-width: 600px;
	margin: 0 auto;
	padding: 2rem;
	background: var(--color-white);
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.property-inquiry-form-wrapper {
	width: 100%;
	padding: 0;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	margin: 0;
}

.property-inquiry-form-wrapper .form-field {
	margin-bottom: 1.25rem;
}

.property-inquiry-form-wrapper .form-field:last-of-type {
	margin-bottom: 0;
}

.property-inquiry-form-wrapper input[type="text"],
.property-inquiry-form-wrapper input[type="email"],
.property-inquiry-form-wrapper input[type="tel"],
.property-inquiry-form-wrapper textarea {
	width: 100%;
	max-width: 100%;
	padding: 0.75rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 1rem;
	font-family: inherit;
	transition: border-color 0.3s ease;
	box-sizing: border-box;
}

.property-inquiry-form-wrapper input[type="text"]:focus,
.property-inquiry-form-wrapper input[type="email"]:focus,
.property-inquiry-form-wrapper input[type="tel"]:focus,
.property-inquiry-form-wrapper textarea:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 2px var(--color-primary-rgba-01);
}

.property-inquiry-form-wrapper textarea {
	resize: vertical;
	min-height: 100px;
}

.property-inquiry-form-wrapper button[type="submit"] {
	width: 100%;
	padding: 0.875rem 1.5rem;
	font-size: 1rem;
	font-weight: 600;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	background: var(--color-primary);
	color: var(--color-white);
	text-decoration: none;
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	font-family: inherit;
}

.btn:hover {
	background: var(--color-button-hover);
	color: var(--color-white);
	text-decoration: none;
}

.btn-primary {
	background: var(--color-primary);
	color: var(--color-white);
}

.btn-primary:hover {
	background: var(--color-button-hover);
	color: var(--color-white);
}

.btn-secondary {
	background: #666;
	color: var(--color-white);
}

.btn-secondary:hover {
	background: #444;
	color: var(--color-white);
}

.project-lead-form {
	max-width: 100%;
}

.form-field {
	margin-bottom: 1.5rem;
}

.form-field label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--color-text);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="number"],
.form-field select,
.form-field textarea {
	width: 100%;
	max-width: 100%;
	padding: 0.75rem;
	border: 1px solid var(--color-secondary);
	border-radius: 4px;
	font-size: 1rem;
	font-family: inherit;
	transition: border-color 0.3s ease;
	box-sizing: border-box;
}

.form-field input[type="text"]:focus,
.form-field input[type="email"]:focus,
.form-field input[type="tel"]:focus,
.form-field input[type="number"]:focus,
.form-field select:focus,
.form-field textarea:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 2px var(--color-primary-rgba-01);
}

.form-field input[type="text"]:invalid:not(:placeholder-shown),
.form-field input[type="email"]:invalid:not(:placeholder-shown),
.form-field input[type="tel"]:invalid:not(:placeholder-shown) {
	border-color: var(--color-secondary);
}

.form-field input[type="checkbox"] {
	margin-right: 0.5rem;
	width: auto;
}

.form-field textarea {
	resize: vertical;
	min-height: 120px;
}

.form-field select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 12px;
	padding-right: 2.5rem;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.form-field input.error,
.form-field select.error,
.form-field textarea.error {
	border-color: #dc3545;
}

/* Required field indicator - using class instead of :has() for better browser support */
.form-field label.required::after {
	content: '*';
	color: #dc3545;
	margin-left: 0.25rem;
}

.form-field input[type="checkbox"] {
	margin-right: 0.5rem;
}

.form-message {
	margin-top: 1rem;
	padding: 1rem;
	border-radius: 4px;
	display: none;
}

.form-message.success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.form-message.error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* Footer */
.site-footer {
	background: var(--color-text);
	color: var(--color-white);
	padding: 2rem 0;
	margin-top: auto;
}

.site-footer-inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.footer-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-navigation a {
	color: var(--color-white);
	text-decoration: none;
}

.footer-navigation a:hover {
	color: var(--color-primary);
}

.site-info {
	font-size: 0.875rem;
}

.site-info a {
	color: var(--color-white);
	text-decoration: none;
	margin-right: 1rem;
}

.social-links {
	display: flex;
	gap: 1rem;
}

.social-links a {
	color: var(--color-white);
	text-decoration: none;
}

/* Lightbox */
.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.lightbox img {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
	border-radius: 4px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
	position: absolute;
	top: 2rem;
	right: 2rem;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	color: var(--color-white);
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.lightbox-close:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.8);
	transform: scale(1.1);
}

/* Gallery Modal */
.gallery-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	z-index: 10000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	overflow-y: auto;
}

.gallery-modal.active {
	display: flex;
}

.gallery-modal-content {
	position: relative;
	width: 100%;
	max-width: 1400px;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.gallery-modal-main {
	position: relative;
	width: 100%;
	max-height: 80vh;
	margin-bottom: 1.5rem;
}

.gallery-modal-slides {
	position: relative;
	width: 100%;
	height: 100%;
}

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

.gallery-modal-slide.active {
	display: block;
}

.gallery-modal-slide img {
	width: 100%;
	height: auto;
	max-height: 80vh;
	object-fit: contain;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.gallery-modal-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	color: var(--color-white);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
	backdrop-filter: blur(10px);
}

.gallery-modal-nav:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.8);
	transform: translateY(-50%) scale(1.1);
}

.gallery-modal-prev {
	left: 2rem;
}

.gallery-modal-next {
	right: 2rem;
}

.gallery-modal-nav svg {
	width: 24px;
	height: 24px;
	stroke: currentColor;
}

.gallery-modal-close {
	position: fixed;
	top: 2rem;
	right: 2rem;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	color: var(--color-white);
	font-size: 1.3rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	z-index: 10001;
}

.gallery-modal-close:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.8);
	transform: scale(1.1);
}

.gallery-modal-counter {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	background: rgba(0, 0, 0, 0.6);
	color: var(--color-white);
	padding: 0.5rem 1rem;
	border-radius: 4px;
	font-size: 0.875rem;
	font-weight: 600;
	backdrop-filter: blur(10px);
	z-index: 10;
}

.gallery-modal-thumbnails {
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 100%;
	overflow-x: auto;
	padding: 0.5rem 0;
}

.gallery-modal-thumb {
	position: relative;
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	padding: 0;
	border: 3px solid transparent;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	background: #f0f0f0;
	transition: all 0.3s ease;
	opacity: 0.7;
}

.gallery-modal-thumb:hover {
	opacity: 1;
	transform: scale(1.05);
}

.gallery-modal-thumb.active {
	opacity: 1;
	border-color: var(--color-white);
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.gallery-modal-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Utilities */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

/* 404 Error Page */
.error-404 {
	padding: 4rem 0;
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.error-404-content {
	max-width: 800px;
	width: 100%;
	text-align: center;
}

.error-404-icon {
	margin-bottom: 2rem;
}

.error-number {
	font-size: 8rem;
	font-weight: 700;
	color: var(--color-primary);
	line-height: 1;
	display: block;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.error-404 .page-header {
	margin-bottom: 1.5rem;
}

.error-404 .page-title {
	font-size: 2.5rem;
	font-weight: 600;
	color: var(--color-text);
	margin: 0 0 1rem;
}

.error-404 .page-content {
	margin-top: 2rem;
}

.error-404 .error-message {
	font-size: 1.125rem;
	color: #666;
	line-height: 1.6;
	margin-bottom: 2.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.error-404-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin-bottom: 3rem;
}

.error-404-actions .btn {
	min-width: 180px;
}

.error-404-helpful-links {
	margin-top: 3rem;
	padding-top: 3rem;
	border-top: 1px solid #e0e0e0;
	text-align: left;
}

.error-404-helpful-links h2 {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 1.5rem;
	text-align: center;
}

.helpful-links-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 0.75rem;
}

.helpful-links-list li {
	margin: 0;
}

.helpful-links-list a {
	color: var(--color-primary);
	text-decoration: none;
	font-size: 1rem;
	display: block;
	padding: 0.5rem 0;
	transition: color 0.3s ease, padding-left 0.3s ease;
}

.helpful-links-list a:hover {
	color: #005177;
	padding-left: 0.5rem;
}

.error-404-search {
	margin-top: 3rem;
	padding-top: 3rem;
	border-top: 1px solid #e0e0e0;
}

.error-404-search h2 {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 1.5rem;
	text-align: center;
}

.error-404-search form {
	max-width: 500px;
	margin: 0 auto;
	display: flex;
	gap: 0.5rem;
}

.error-404-search input[type="search"] {
	flex: 1;
	padding: 0.75rem 1rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 1rem;
	font-family: inherit;
}

.error-404-search input[type="search"]:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 2px var(--color-primary-rgba-01);
}

.error-404-search input[type="submit"] {
	padding: 0.75rem 1.5rem;
	background: var(--color-primary);
	color: var(--color-white);
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease;
}

.error-404-search input[type="submit"]:hover {
	background: #005177;
}

/* Pagination Styles */
.posts-navigation,
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 3rem 0;
	padding: 0;
}

.nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 1rem;
	margin: 0;
	font-size: 1rem;
	font-weight: 500;
	color: var(--color-primary);
	background: var(--color-white);
	border: 1px solid var(--color-primary);
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	line-height: 1;
}

.page-numbers:hover {
	background: var(--color-primary);
	color: var(--color-white);
	border-color: var(--color-primary);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(129, 131, 177, 0.2);
}

.page-numbers.current {
	background: var(--color-primary);
	color: var(--color-white);
	border-color: var(--color-primary);
	font-weight: 600;
	cursor: default;
}

.page-numbers.current:hover {
	transform: none;
	box-shadow: none;
}

.page-numbers.dots {
	border: none;
	background: transparent;
	color: var(--color-primary);
	cursor: default;
	padding: 0 0.5rem;
	min-width: auto;
}

.page-numbers.dots:hover {
	background: transparent;
	color: var(--color-primary);
	transform: none;
	box-shadow: none;
}

/* Previous/Next Arrow Buttons */
.page-numbers.prev,
.page-numbers.next {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0 1.25rem;
	font-weight: 500;
	position: relative;
}

/* Hide text, show only arrows */
.page-numbers.prev,
.page-numbers.next {
	text-indent: -9999px;
	overflow: hidden;
	width: 44px;
	padding: 0;
}

.page-numbers.prev::before,
.page-numbers.next::after {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: transform 0.3s ease;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.page-numbers.prev::before {
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 18L9 12L15 6' stroke='%238183b1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.page-numbers.next::after {
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 18L15 12L9 6' stroke='%238183b1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.page-numbers.prev:hover::before {
	transform: translate(-50%, -50%) translateX(-2px);
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 18L9 12L15 6' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.page-numbers.next:hover::after {
	transform: translate(-50%, -50%) translateX(2px);
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 18L15 12L9 6' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Disabled state for prev/next */
.page-numbers.prev.disabled,
.page-numbers.next.disabled {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

/* Responsive Pagination */
@media (max-width: 768px) {
	.page-numbers {
		min-width: 40px;
		height: 40px;
		padding: 0 0.75rem;
		font-size: 0.9375rem;
	}
	
	.page-numbers.prev,
	.page-numbers.next {
		padding: 0 1rem;
	}
	
	.nav-links {
		gap: 0.375rem;
	}
	
	/* Hide some page numbers on mobile, show dots */
	.page-numbers:not(.prev):not(.next):not(.current):not(.dots) {
		display: none;
	}
	
	.page-numbers.prev,
	.page-numbers.next,
	.page-numbers.current,
	.page-numbers.dots {
		display: inline-flex;
	}
}

/* RTL Support */
[dir="rtl"] .page-numbers.prev::before {
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 18L15 12L9 6' stroke='%238183b1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

[dir="rtl"] .page-numbers.next::after {
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 18L9 12L15 6' stroke='%238183b1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

[dir="rtl"] .page-numbers.prev:hover::before {
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 18L15 12L9 6' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

[dir="rtl"] .page-numbers.next:hover::after {
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 18L9 12L15 6' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

