.azzar-offers-page {
	--azzar-color-primary: var(--ast-global-color-1, #fdc160);
	--azzar-color-primary-strong: #e49a24;
	--azzar-color-primary-dark: #8a5200;
	--azzar-color-primary-soft: #fff7e8;
	--azzar-color-primary-border: #f1d39e;
	--azzar-color-text: var(--ast-global-color-2, #1e293b);
	--azzar-color-muted: var(--ast-global-color-3, #67768e);
	--azzar-color-surface: var(--ast-global-color-5, #ffffff);
	--azzar-color-page: var(--ast-global-color-4, #f9f6fe);
	box-sizing: border-box;
	position: relative;
	left: 50%;
	width: min(1360px, calc(100vw - 48px));
	max-width: none;
	margin: 0;
	padding: 32px 0 48px;
	transform: translateX(-50%);
}

.azzar-offers-page *,
.azzar-offers-page *::before,
.azzar-offers-page *::after {
	box-sizing: border-box;
}

.azzar-offers-archive-header {
	margin: 0 0 24px;
}

.azzar-offers-archive-header h1 {
	margin: 0;
	color: var(--azzar-color-text);
	font-size: 2rem;
	line-height: 1.15;
}

.azzar-offers-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.azzar-offer-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	min-height: 100%;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	background: var(--azzar-color-surface);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.azzar-offer-card__image {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--azzar-color-page);
}

.azzar-offer-card__image img,
.azzar-offer-gallery img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.azzar-offer-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px;
}

.azzar-offer-card__type,
.azzar-offer-hero__type {
	margin: 0 0 8px;
	color: var(--azzar-color-primary-dark);
	font-size: 0.84rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.azzar-offer-card__type a,
.azzar-offer-hero__type a {
	color: inherit;
	text-decoration: none;
}

.azzar-offer-card__title {
	margin: 0 0 14px;
	font-size: 1.35rem;
	line-height: 1.25;
}

.azzar-offer-card__title a {
	color: var(--azzar-color-text);
	text-decoration: none;
}

.azzar-offer-card__title a:hover,
.azzar-offer-card__title a:focus {
	color: var(--azzar-color-primary-dark);
}

.azzar-offer-card__price {
	margin: 0 0 8px;
	color: var(--azzar-color-primary-dark);
	font-size: 1.75rem;
	font-weight: 900;
	line-height: 1.2;
}

.azzar-offer-card__location,
.azzar-offer-hero__location {
	margin: 0;
	color: var(--azzar-color-muted);
	font-size: 1rem;
}

.azzar-offer-card__specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin: 18px 0;
	padding: 0;
	list-style: none;
}

.azzar-offer-card__specs li {
	padding: 10px;
	border: 1px solid #d8dee8;
	border-radius: 6px;
	background: var(--azzar-color-page);
}

.azzar-offer-card__specs span {
	display: block;
	margin-bottom: 2px;
	color: var(--azzar-color-muted);
	font-size: 0.78rem;
}

.azzar-offer-card__specs strong {
	display: block;
	color: var(--azzar-color-text);
	font-size: 0.95rem;
}

.azzar-offer-card__summary {
	margin: 0 0 18px;
	color: var(--azzar-color-muted);
	line-height: 1.65;
}

.azzar-offer-card__actions {
	margin-top: auto;
}

.azzar-offer-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 18px;
	border-radius: 6px;
	background: var(--azzar-color-primary);
	color: var(--azzar-color-text);
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 160ms ease, transform 160ms ease;
}

.azzar-offer-button:hover,
.azzar-offer-button:focus {
	background: var(--azzar-color-primary-strong);
	color: var(--azzar-color-text);
	transform: translateY(-1px);
}

.azzar-offer-button--wide {
	width: 100%;
}

.azzar-offer-hero {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin: 0 0 24px;
	padding-bottom: 22px;
	border-bottom: 1px solid #d1d5db;
}

.azzar-offer-hero__title {
	margin: 0 0 10px;
	color: var(--azzar-color-text);
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: 1.08;
}

.azzar-offer-hero__price {
	flex: 0 0 auto;
	padding: 14px 18px;
	border-radius: 8px;
	background: var(--azzar-color-primary-soft);
	color: var(--azzar-color-primary-dark);
	font-size: 1.35rem;
	font-weight: 900;
	line-height: 1.2;
}

.azzar-offer-gallery {
	display: grid;
	grid-template-columns: minmax(0, 2fr) repeat(2, minmax(120px, 1fr));
	grid-auto-rows: 170px;
	gap: 10px;
	margin: 0 0 30px;
}

.azzar-offer-gallery a {
	display: block;
	overflow: hidden;
	border-radius: 8px;
	background: #f3f4f6;
}

.azzar-offer-gallery__main {
	grid-row: span 2;
}

.azzar-offer-navigation {
	display: flex;
	gap: 16px;
	margin: 0 0 22px;
	align-items: center;
	justify-content: space-between;
}

.azzar-offer-navigation__link {
	display: inline-flex;
	min-height: 42px;
	padding: 9px 14px;
	align-items: center;
	gap: 8px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	background: var(--azzar-color-surface);
	color: var(--azzar-color-text);
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
	transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.azzar-offer-navigation__link:hover,
.azzar-offer-navigation__link:focus {
	border-color: var(--azzar-color-primary-strong);
	color: var(--azzar-color-primary-dark);
	transform: translateY(-1px);
}

.azzar-offer-navigation__link--next {
	margin-left: auto;
}

.azzar-offer-personal {
	margin: 0 0 12px;
	padding: 15px 16px;
	border: 1px solid var(--azzar-color-primary-border);
	border-radius: 9px;
	background: var(--azzar-color-surface);
}

.azzar-offer-personal__heading {
	margin-bottom: 11px;
}

.azzar-offer-personal__heading h2 {
	margin: 0 0 3px;
	color: var(--azzar-color-text);
	font-size: 1.05rem;
	font-weight: 900;
	line-height: 1.2;
}

.azzar-offer-personal__heading p {
	margin: 0;
	color: var(--azzar-color-muted);
	font-size: 0.82rem;
	line-height: 1.4;
}

.azzar-offer-personal__eyebrow {
	margin-bottom: 3px !important;
	color: var(--azzar-color-primary-dark) !important;
	font-size: 0.68rem !important;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.azzar-offer-personal__label {
	display: block;
	margin: 0 0 5px;
	color: #1e293b;
	font-size: 0.86rem;
	font-weight: 750;
}

.azzar-offer-personal__textarea {
	display: block;
	width: 100%;
	min-height: 74px;
	max-height: 180px;
	padding: 9px 11px;
	resize: vertical;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	background: #ffffff;
	color: #111827;
	font: inherit;
	font-size: 0.92rem;
	line-height: 1.4;
}

.azzar-offer-personal__textarea:focus {
	border-color: var(--azzar-color-primary-strong);
	outline: 2px solid rgba(253, 193, 96, 0.22);
	outline-offset: 1px;
}

.azzar-offer-personal__footer {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	gap: 10px;
	margin-top: 6px;
	align-items: center;
	color: #64748b;
	font-size: 0.75rem;
}

.azzar-offer-personal__footer button {
	padding: 0;
	border: 0;
	background: transparent;
	color: #b91c1c;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
}

.azzar-offer-personal__footer button:disabled {
	opacity: 0.45;
	cursor: default;
}

.azzar-offer-sharing {
	display: flex;
	gap: 18px;
	margin: 0 0 30px;
	padding: 11px 0;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #e5e7eb;
}

.azzar-offer-sharing strong,
.azzar-offer-sharing span {
	display: block;
}

.azzar-offer-sharing strong {
	color: #1f2937;
	font-size: 0.9rem;
}

.azzar-offer-sharing span {
	margin-top: 2px;
	color: #64748b;
	font-size: 0.78rem;
}

.azzar-offer-share {
	position: relative;
	flex: 0 0 auto;
}

.azzar-offer-share__toggle {
	display: inline-flex;
	min-height: 42px;
	padding: 9px 16px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--azzar-color-primary);
	border-radius: 8px;
	background: var(--azzar-color-primary);
	color: var(--azzar-color-text);
	font: inherit;
	font-weight: 800;
	cursor: pointer;
}

.azzar-offer-share__toggle:hover,
.azzar-offer-share__toggle:focus {
	background: var(--azzar-color-primary-strong);
}

.azzar-offer-share__menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 30;
	width: min(280px, calc(100vw - 40px));
	padding: 7px;
	border: 1px solid #cbd5e1;
	border-radius: 9px;
	background: #ffffff;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.2);
}

.azzar-offer-share__menu[hidden] {
	display: none !important;
}

.azzar-offer-share__menu a,
.azzar-offer-share__menu button {
	display: flex;
	width: 100%;
	min-height: 40px;
	padding: 9px 11px;
	align-items: center;
	border: 0;
	border-radius: 6px;
	background: transparent;
	color: #1f2937;
	font: inherit;
	font-weight: 700;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
}

.azzar-offer-share__menu a:hover,
.azzar-offer-share__menu a:focus,
.azzar-offer-share__menu button:hover,
.azzar-offer-share__menu button:focus {
	background: var(--azzar-color-primary-soft);
	color: var(--azzar-color-primary-dark);
}

.azzar-offer-published-date {
	display: flex;
	gap: 8px;
	margin-top: 38px;
	padding-top: 18px;
	align-items: center;
	justify-content: flex-end;
	border-top: 1px solid #d1d5db;
	color: #64748b;
	font-size: 0.9rem;
}

.azzar-offer-published-date time {
	color: #334155;
	font-weight: 800;
}

.azzar-offer-contact {
	margin-top: 44px;
	padding: 34px;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	background: var(--azzar-color-surface);
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.azzar-offer-contact__heading {
	max-width: 760px;
	margin: 0 auto 26px;
	text-align: center;
}

.azzar-offer-contact__heading p {
	margin: 0 0 5px;
	color: var(--azzar-color-primary-dark);
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.azzar-offer-contact__heading h2 {
	margin: 0 0 8px;
	color: #172033;
	font-size: clamp(1.65rem, 3vw, 2.35rem);
	line-height: 1.12;
}

.azzar-offer-contact__heading span {
	color: #64748b;
	font-size: 1rem;
}

.azzar-offer-contact__form {
	max-width: 900px;
	margin: 0 auto;
}

.azzar-offer-contact .kt-row-column-wrap {
	gap: 18px;
}

.azzar-offer-contact .kb-adv-form-field {
	margin-bottom: 16px;
}

.azzar-offer-contact .kb-adv-form-label {
	display: block;
	margin-bottom: 5px;
	color: #334155;
	font-size: 0.9rem;
	font-weight: 700;
}

.azzar-offer-contact .kb-field {
	display: block;
	width: 100%;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	background: #ffffff;
	color: #111827;
	font: inherit;
}

.azzar-offer-contact textarea.kb-field {
	min-height: 112px;
	resize: vertical;
}

.azzar-offer-contact .kb-field:focus {
	border-color: var(--azzar-color-primary-strong);
	outline: 3px solid rgba(253, 193, 96, 0.22);
	outline-offset: 1px;
}

.azzar-offer-contact .kb-submit-field {
	display: flex;
	justify-content: center;
	margin: 4px 0 0;
}

.azzar-offer-contact .kb-adv-form-submit-button {
	min-height: 46px;
	padding: 10px 24px;
	border: 0;
	border-radius: 7px;
	background: var(--azzar-color-primary);
	color: var(--azzar-color-text);
	font: inherit;
	font-weight: 900;
	cursor: pointer;
}

.azzar-offer-contact .kb-adv-form-submit-button:hover,
.azzar-offer-contact .kb-adv-form-submit-button:focus {
	background: var(--azzar-color-primary-strong);
}

.azzar-related-offers {
	margin-top: 30px;
}

.azzar-related-offers > h2 {
	margin: 0 0 24px;
	color: var(--azzar-color-text);
	font-size: clamp(1.45rem, 2.5vw, 2rem);
	font-weight: 800;
	line-height: 1.25;
	text-align: center;
}

.azzar-related-offers__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.azzar-related-offers__grid .azzar-offer-card {
	min-width: 0;
}

.azzar-related-offers__grid .azzar-offer-card__summary,
.azzar-related-offers__grid .azzar-offer-card__specs {
	display: none;
}

.azzar-related-offers__grid .azzar-offer-card__image {
	aspect-ratio: 4 / 3;
}

.azzar-related-offers__grid .azzar-offer-card__body {
	padding: 16px;
}

.azzar-offer-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
	gap: 42px;
	align-items: start;
}

.azzar-offer-single__main {
	min-width: 0;
	color: var(--azzar-color-text);
	line-height: 1.75;
}

.azzar-offer-single__sidebar {
	position: sticky;
	top: 24px;
	padding: 22px;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	background: var(--azzar-color-surface);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.azzar-offer-section {
	position: relative;
	margin: 0 0 32px;
	padding: 0 0 2px;
}

.azzar-offer-section h2 {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 0 0 16px;
	color: #0f172a;
	font-size: 1.65rem;
	font-weight: 900;
	line-height: 1.2;
}

.azzar-offer-section h2::after {
	content: '';
	flex: 1 1 auto;
	min-width: 48px;
	border-top: 2px solid #cbd5e1;
}

.azzar-offer-details {
	display: grid;
	gap: 12px;
	margin: 0 0 20px;
}

.azzar-offer-details__item {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 12px;
	border-bottom: 1px solid #d8dee8;
}

.azzar-offer-details__item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.azzar-offer-details dt {
	margin: 0;
	color: #6b7280;
	font-weight: 700;
}

.azzar-offer-details dd {
	margin: 0;
	color: #111827;
	font-weight: 800;
	text-align: right;
}

.azzar-offer-amenities {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.azzar-offer-amenities li {
	padding: 8px 12px;
	border: 1px solid var(--azzar-color-primary-border);
	border-radius: 999px;
	background: var(--azzar-color-primary-soft);
	color: var(--azzar-color-primary-dark);
	font-weight: 700;
}

.azzar-offer-price-per-meter {
	display: flex;
	gap: 22px;
	padding: 18px 0;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid #e2e8f0;
	border-bottom: 1px solid #e2e8f0;
	background: transparent;
}

.azzar-offer-price-per-meter h2 {
	margin-bottom: 6px;
	font-size: 1.25rem;
}

.azzar-offer-price-per-meter h2::after {
	display: none;
}

.azzar-offer-price-per-meter p {
	margin: 0;
	color: var(--azzar-color-muted);
	font-size: 0.85rem;
	line-height: 1.45;
}

.azzar-offer-price-per-meter > strong {
	flex: 0 0 auto;
	padding: 12px 15px;
	border-radius: 8px;
	background: var(--azzar-color-primary-soft);
	color: var(--azzar-color-primary-dark);
	font-size: 1.2rem;
	font-weight: 900;
	white-space: nowrap;
}

.azzar-offer-files {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.azzar-offer-files a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 13px 14px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	background: var(--azzar-color-surface);
	color: var(--azzar-color-text);
	font-weight: 700;
	text-decoration: none;
}

.azzar-offer-files a::after {
	content: 'PDF';
	padding: 3px 7px;
	border-radius: 4px;
	background: var(--azzar-color-primary-soft);
	color: var(--azzar-color-primary-dark);
	font-size: 0.75rem;
	font-weight: 900;
}

.azzar-offer-files a:hover,
.azzar-offer-files a:focus {
	border-color: var(--azzar-color-primary-strong);
	color: var(--azzar-color-primary-dark);
}

.azzar-offers-pagination {
	margin-top: 28px;
}

/* Offers archive: filter and sort bar. */
.azzar-offers-filters {
	margin: 0 0 28px;
	padding: 18px 20px;
	border: 1px solid var(--azzar-color-primary-border);
	border-radius: 10px;
	background: var(--azzar-color-surface);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.azzar-offers-filters__toggle {
	display: none;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 4px 2px;
	border: 0;
	background: transparent;
	color: var(--azzar-color-text);
	font-size: 1rem;
	font-weight: 800;
	cursor: pointer;
}

.azzar-offers-filters__badge {
	width: 9px;
	height: 9px;
	margin-left: 10px;
	border-radius: 50%;
	background: var(--azzar-color-primary);
}

.azzar-offers-filters__row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 16px;
	align-items: end;
}

.azzar-offers-filters__field {
	display: grid;
	gap: 6px;
	margin: 0;
	min-width: 0;
}

.azzar-offers-filters__field--location {
	grid-column: span 2;
}

.azzar-offers-filters__field label {
	color: var(--azzar-color-muted);
	font-size: 0.82rem;
	font-weight: 700;
}

.azzar-offers-filters__field input,
.azzar-offers-filters__field select {
	width: 100%;
	min-height: 42px;
	padding: 0 12px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	background: var(--azzar-color-surface);
	color: var(--azzar-color-text);
	font-size: 0.95rem;
}

.azzar-offers-filters__field input:focus,
.azzar-offers-filters__field select:focus {
	border-color: var(--azzar-color-primary);
	outline: 0;
	box-shadow: 0 0 0 2px var(--azzar-color-primary-soft);
}

.azzar-offers-filters__range {
	display: flex;
	align-items: center;
	gap: 8px;
}

.azzar-offers-filters__range input {
	min-width: 0;
}

.azzar-offers-filters__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	margin-top: 18px;
}

.azzar-offers-filters__submit {
	min-height: 42px;
	padding: 10px 24px;
}

.azzar-offers-filters__reset {
	color: var(--azzar-color-muted);
	font-weight: 700;
	text-decoration: underline;
}

.azzar-offers-filters__reset:hover,
.azzar-offers-filters__reset:focus {
	color: var(--azzar-color-text);
}

@media (max-width: 900px) {
	.azzar-offers-filters {
		padding: 14px 16px;
	}

	.azzar-offers-filters__toggle {
		display: flex;
	}

	.azzar-offers-filters__body {
		display: none;
		margin-top: 16px;
	}

	.azzar-offers-filters__body.is-open {
		display: block;
	}

	.azzar-offers-filters__field--location {
		grid-column: span 1;
	}
}

/* Offers archive: pagination. */
.azzar-offers-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.azzar-offers-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	border: 1px solid #d1d5db;
	border-radius: 999px;
	background: var(--azzar-color-surface);
	color: var(--azzar-color-text);
	font-weight: 700;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.azzar-offers-pagination a.page-numbers:hover,
.azzar-offers-pagination a.page-numbers:focus {
	border-color: var(--azzar-color-primary-strong);
	color: var(--azzar-color-primary-dark);
	transform: translateY(-1px);
}

.azzar-offers-pagination .page-numbers.current {
	border-color: var(--azzar-color-primary-strong);
	background: var(--azzar-color-primary);
	color: var(--azzar-color-primary-dark);
}

.azzar-offers-pagination .page-numbers.dots {
	border-color: transparent;
	background: transparent;
	color: var(--azzar-color-muted);
}

.azzar-offers-pagination .page-numbers.prev,
.azzar-offers-pagination .page-numbers.next {
	padding: 0 18px;
	font-weight: 800;
}

@media (max-width: 560px) {
	.azzar-offers-pagination .page-numbers {
		min-width: 38px;
		height: 38px;
		padding: 0 10px;
		font-size: 0.9rem;
	}
}

.azzar-offers-empty {
	padding: 22px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	background: var(--azzar-color-surface);
	color: #374151;
}

@media (max-width: 900px) {
	.azzar-offers-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.azzar-offer-hero,
	.azzar-offer-single__layout {
		grid-template-columns: 1fr;
	}

	.azzar-offer-hero {
		display: grid;
		align-items: start;
	}

	.azzar-offer-hero__price {
		justify-self: start;
	}

	.azzar-offer-single__sidebar {
		position: static;
	}

	.azzar-offer-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: 150px;
	}

	.azzar-offer-gallery__main {
		grid-column: 1 / -1;
		grid-row: span 2;
	}

	.azzar-related-offers__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.azzar-offers-page {
		width: min(100vw - 20px, 1360px);
		padding-top: 22px;
	}

	.azzar-offers-grid,
	.azzar-offer-card__specs {
		grid-template-columns: 1fr;
	}

	.azzar-offer-gallery {
		grid-auto-rows: 120px;
		gap: 8px;
	}

	.azzar-offer-gallery__main {
		grid-row: span 2;
	}

	.azzar-offer-navigation__link {
		min-height: 40px;
		padding: 8px 11px;
		font-size: 0.84rem;
	}

	.azzar-offer-personal {
		padding: 13px;
	}

	.azzar-offer-price-per-meter {
		align-items: flex-start;
		flex-direction: column;
		padding: 16px 0;
	}

	.azzar-offer-contact {
		padding: 24px 16px;
	}

	.azzar-related-offers__grid {
		grid-template-columns: 1fr;
	}

	.azzar-offer-personal__heading {
		margin-bottom: 9px;
	}

	.azzar-offer-sharing {
		align-items: stretch;
		flex-direction: column;
		gap: 9px;
	}

	.azzar-offer-share,
	.azzar-offer-share__toggle {
		width: 100%;
	}

	.azzar-offer-share__menu {
		left: 0;
		right: auto;
		width: 100%;
	}

	.azzar-offer-personal__footer {
		grid-template-columns: 1fr auto;
	}

	.azzar-offer-personal__footer [data-azzar-note-status] {
		grid-column: 1 / -1;
	}

	.azzar-offer-published-date {
		align-items: flex-start;
		justify-content: flex-start;
		flex-direction: column;
	}

	.azzar-offer-details__item {
		display: grid;
		gap: 4px;
	}

	.azzar-offer-details dd {
		text-align: left;
	}
}
.azzar-offer-address__text,
.azzar-offer-address__hidden {
	margin: 0 0 14px;
	color: #374151;
	font-weight: 700;
}

.azzar-offer-address__hidden {
	padding: 14px 16px;
	border: 1px solid #fde68a;
	border-radius: 8px;
	background: #fffbeb;
	color: #92400e;
}

.azzar-offer-map {
	overflow: hidden;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	aspect-ratio: 16 / 9;
	background: #f3f4f6;
}

.azzar-offer-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.azzar-offer-energy__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 16px;
}

.azzar-energy-scale {
	padding: 16px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	background: var(--azzar-color-surface);
}

.azzar-energy-scale__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}

.azzar-energy-scale__header strong {
	color: #111827;
	font-size: 1.05rem;
}

.azzar-energy-scale__header span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #111827;
	color: #ffffff;
	font-size: 1.1rem;
	font-weight: 900;
}

.azzar-energy-scale ul {
	display: grid;
	gap: 5px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.azzar-energy-scale li {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 28px;
	padding: 4px 10px;
	border-radius: 4px;
	color: #ffffff;
	font-weight: 900;
}

.azzar-energy-scale li::after {
	content: '';
	position: absolute;
	right: -12px;
	width: 0;
	height: 0;
	border-top: 14px solid transparent;
	border-bottom: 14px solid transparent;
	border-left: 12px solid currentColor;
}

.azzar-energy-scale li span {
	position: relative;
	z-index: 1;
}

.azzar-energy-scale li[data-class='a'] {
	width: 46%;
	background: #15803d;
	color: #15803d;
}

.azzar-energy-scale li[data-class='b'] {
	width: 54%;
	background: #65a30d;
	color: #65a30d;
}

.azzar-energy-scale li[data-class='c'] {
	width: 62%;
	background: #a3e635;
	color: #a3e635;
}

.azzar-energy-scale li[data-class='d'] {
	width: 70%;
	background: #facc15;
	color: #facc15;
}

.azzar-energy-scale li[data-class='e'] {
	width: 78%;
	background: #fb923c;
	color: #fb923c;
}

.azzar-energy-scale li[data-class='f'] {
	width: 86%;
	background: #ef4444;
	color: #ef4444;
}

.azzar-energy-scale li[data-class='g'] {
	width: 94%;
	background: #991b1b;
	color: #991b1b;
}

.azzar-energy-scale li span {
	color: #ffffff;
}

.azzar-energy-scale li.is-active {
	outline: 3px solid #111827;
	outline-offset: 2px;
}

.azzar-offer-location-details p {
	margin: 0 0 14px;
	color: #374151;
	line-height: 1.7;
}

.azzar-offer-location-facts {
	display: grid;
	gap: 10px;
	margin: 0;
}

.azzar-offer-location-facts div {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 14px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	background: var(--azzar-color-surface);
}

.azzar-offer-location-facts dt,
.azzar-offer-location-facts dd {
	margin: 0;
}

.azzar-offer-location-facts dt {
	color: #6b7280;
	font-weight: 700;
}

.azzar-offer-location-facts dd {
	color: #111827;
	font-weight: 900;
}

.azzar-offer-gallery a {
	position: relative;
	cursor: zoom-in;
}

.azzar-offer-gallery__count {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.72);
	color: #111827;
	font-size: clamp(2rem, 5vw, 4rem);
	font-weight: 900;
	line-height: 1;
	backdrop-filter: blur(1px);
}

.azzar-offer-gallery__count::before {
	content: '+';
	margin-right: 2px;
}

.azzar-gallery-lightbox-open {
	overflow: hidden;
}

.azzar-gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 28px;
}

.azzar-gallery-lightbox.is-open {
	display: flex;
}

.azzar-gallery-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(17, 24, 39, 0.92);
}

.azzar-gallery-lightbox__dialog {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr) 56px;
	grid-template-rows: minmax(0, 1fr);
	align-items: center;
	width: min(1180px, 100%);
	height: min(760px, calc(100vh - 96px));
	gap: 14px;
}

.azzar-gallery-lightbox__figure {
	grid-column: 2;
	grid-row: 1;
	display: grid;
	align-items: center;
	justify-items: center;
	min-width: 0;
	min-height: 0;
	margin: 0;
}

.azzar-gallery-lightbox__image {
	display: block;
	max-width: 100%;
	max-height: clamp(260px, calc(100vh - 190px), 680px);
	border-radius: 8px;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
	object-fit: contain;
}

.azzar-gallery-lightbox__caption {
	min-height: 20px;
	margin: 0 0 14px;
	color: #e5e7eb;
	font-size: 0.95rem;
	text-align: center;
}

.azzar-gallery-lightbox__nav,
.azzar-gallery-lightbox__close {
	border: 0;
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	cursor: pointer;
	transition: background-color 160ms ease, transform 160ms ease;
}

.azzar-gallery-lightbox__nav:hover,
.azzar-gallery-lightbox__nav:focus,
.azzar-gallery-lightbox__close:hover,
.azzar-gallery-lightbox__close:focus {
	background: rgba(255, 255, 255, 0.24);
	outline: 2px solid rgba(255, 255, 255, 0.55);
	outline-offset: 2px;
}

.azzar-gallery-lightbox__nav {
	width: 56px;
	height: 72px;
	border-radius: 8px;
	font-size: 3rem;
	line-height: 1;
}

.azzar-gallery-lightbox__nav--prev {
	grid-column: 1;
	grid-row: 1;
}

.azzar-gallery-lightbox__nav--next {
	grid-column: 3;
	grid-row: 1;
}

.azzar-gallery-lightbox__close {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	font-size: 2rem;
	line-height: 1;
}

.azzar-gallery-lightbox__counter {
	position: fixed;
	left: 50%;
	bottom: clamp(12px, 3vh, 34px);
	transform: translateX(-50%);
	z-index: 2;
	padding: 8px 14px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 999px;
	background: rgba(17, 24, 39, 0.78);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
	color: #ffffff;
	font-weight: 800;
	line-height: 1.2;
	backdrop-filter: blur(6px);
}

@media (max-width: 760px) {
	.azzar-gallery-lightbox {
		padding: 14px;
	}

	.azzar-gallery-lightbox__dialog {
		grid-template-columns: 44px minmax(0, 1fr) 44px;
		height: calc(100vh - 72px);
		gap: 8px;
	}

	.azzar-gallery-lightbox__nav {
		width: 44px;
		height: 56px;
		font-size: 2.4rem;
	}

	.azzar-gallery-lightbox__image {
		max-height: calc(100vh - 170px);
	}

	.azzar-gallery-lightbox__close {
		width: 40px;
		height: 40px;
	}
}



.azzar-gallery-lightbox__original {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	justify-self: center;
	min-height: 38px;
	margin-top: 14px;
	padding: 8px 14px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	font-size: 0.92rem;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 160ms ease, transform 160ms ease;
}

.azzar-gallery-lightbox__original:hover,
.azzar-gallery-lightbox__original:focus {
	background: rgba(255, 255, 255, 0.24);
	color: #ffffff;
	outline: 2px solid rgba(255, 255, 255, 0.55);
	outline-offset: 2px;
	transform: translateY(-1px);
}

.azzar-offer-video__frame {
	overflow: hidden;
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	background: #0f172a;
}

.azzar-offer-video__frame iframe {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}
@media (max-width: 782px) {
	.azzar-offer-section {
		padding-right: 0;
	}

	.azzar-offer-section h2 {
		font-size: 1.35rem;
	}
}
/* Defensive physical spacer for single offers when a theme header overlaps content. */
.single-oferta .azzar-offers-page {
	padding-top: 0;
	background: var(--azzar-color-page);
}

.single-oferta .azzar-offer-top-spacer {
	display: block;
	clear: both;
	width: 100%;
	height: 72px;
	min-height: 72px;
	background: var(--azzar-color-page);
	pointer-events: none;
}

.single-oferta .azzar-offer-hero {
	position: relative;
	z-index: 0;
	clear: both;
	isolation: auto;
	min-height: 0;
	margin-top: 0;
	padding-top: 24px;
	background: var(--azzar-color-page);
}

.single-oferta .azzar-offer-gallery {
	position: relative;
	z-index: 0;
	clear: both;
}

@media (max-width: 782px) {
	.single-oferta .azzar-offer-top-spacer {
		height: 64px;
		min-height: 64px;
	}

	.single-oferta .azzar-offer-hero {
		padding-top: 16px;
	}
}

/* Defensive physical spacer for the offers archive/search page when a theme header overlaps content. */
.azzar-offers-page.azzar-offers-archive {
	padding-top: 0;
	background: var(--azzar-color-page);
}

.azzar-offers-archive .azzar-offer-top-spacer {
	display: block;
	clear: both;
	width: 100%;
	height: 72px;
	min-height: 72px;
	background: var(--azzar-color-page);
	pointer-events: none;
}

.azzar-offers-archive .azzar-offers-archive-header {
	position: relative;
	z-index: 0;
	clear: both;
	isolation: auto;
	margin-top: 0;
	padding-top: 24px;
	background: var(--azzar-color-page);
}

@media (max-width: 782px) {
	.azzar-offers-archive .azzar-offer-top-spacer {
		height: 64px;
		min-height: 64px;
	}

	.azzar-offers-archive .azzar-offers-archive-header {
		padding-top: 16px;
	}
}


