:root {
	--as-bg: #ffffff;
	--as-soft: #f6f3ee;
	--as-ink: #24302b;
	--as-muted: #69756e;
	--as-line: #dedbd3;
	--as-green: #1f6f55;
	--as-green-dark: #164d3d;
	--as-amber: #b7791f;
	--as-blue: #315f7d;
	--as-radius: 8px;
	--as-shadow: 0 14px 35px rgba(36, 48, 43, 0.08);
}

.as-site,
.as-site * {
	box-sizing: border-box;
}

.as-site,
.as-section,
.as-hero,
.as-page-hero,
.as-price-strip,
.as-cta-bar {
	color: var(--as-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.as-site {
	background: var(--as-bg);
}

.as-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
	gap: clamp(24px, 4vw, 56px);
	align-items: center;
	max-width: 1180px;
	margin: 0 auto;
	padding: clamp(32px, 6vw, 78px) 20px 24px;
}

.as-hero h1,
.as-page-hero h1,
.as-single-hero h1 {
	max-width: 820px;
	margin: 0 0 16px;
	font-size: clamp(2.1rem, 4.5vw, 4.6rem);
	line-height: 1.02;
	letter-spacing: 0;
}

.as-hero__intro,
.as-page-hero p,
.as-single-hero p,
.as-section__head p {
	max-width: 760px;
	color: var(--as-muted);
	font-size: 1.06rem;
	line-height: 1.7;
}

.as-eyebrow,
.as-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	margin: 0 0 12px;
	border: 1px solid #e6d4aa;
	border-radius: 999px;
	padding: 5px 10px;
	background: #fff7e8;
	color: #7a4f16;
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1.2;
}

.as-hero__note,
.as-panel-note {
	color: var(--as-muted);
	font-size: 0.92rem;
}

.as-hero__media {
	overflow: hidden;
	border: 1px solid var(--as-line);
	border-radius: var(--as-radius);
	background: var(--as-soft);
	box-shadow: var(--as-shadow);
}

.as-hero__media img,
.as-single-hero__image img,
.as-apart-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.as-section,
.as-page-hero,
.as-price-strip,
.as-cta-bar,
.as-single {
	max-width: 1180px;
	margin: 0 auto;
	padding: 34px 20px;
}

.as-section__head {
	margin-bottom: 22px;
}

.as-section h2,
.as-cta-bar h2 {
	margin: 0 0 10px;
	font-size: clamp(1.55rem, 2.6vw, 2.25rem);
	line-height: 1.15;
	letter-spacing: 0;
}

.as-card-grid {
	display: grid;
	gap: 16px;
}

.as-card-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.as-card-grid--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.as-card-grid--rooms {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.as-card {
	border: 1px solid var(--as-line);
	border-radius: var(--as-radius);
	background: #fff;
	box-shadow: 0 10px 24px rgba(36, 48, 43, 0.05);
}

a.as-card {
	color: inherit;
	text-decoration: none;
}

.as-category-card,
.as-link-card {
	display: grid;
	min-height: 146px;
	align-content: start;
	gap: 10px;
	padding: 18px;
	transition: border-color 160ms ease, transform 160ms ease;
}

.as-category-card:hover,
.as-link-card:hover {
	border-color: var(--as-green);
	transform: translateY(-2px);
}

.as-card__mark {
	width: 28px;
	height: 3px;
	border-radius: 999px;
	background: var(--as-green);
}

.as-category-card strong,
.as-link-card strong {
	font-size: 1rem;
}

.as-category-card small,
.as-link-card small {
	color: var(--as-muted);
	font-size: 0.9rem;
	line-height: 1.5;
}

.as-apart-card {
	overflow: hidden;
	display: grid;
	grid-template-rows: 210px auto;
}

.as-apart-card__media {
	display: block;
	background: var(--as-soft);
	color: var(--as-muted);
	text-decoration: none;
}

.as-image-placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	padding: 20px;
	text-align: center;
}

.as-apart-card__body {
	display: grid;
	gap: 10px;
	padding: 18px;
}

.as-apart-card h3 {
	margin: 0;
	font-size: 1.25rem;
	line-height: 1.25;
}

.as-apart-card h3 a {
	color: var(--as-ink);
	text-decoration: none;
}

.as-location,
.as-price {
	margin: 0;
	font-weight: 700;
}

.as-price {
	color: var(--as-green-dark);
	font-size: 1.18rem;
}

.as-facts {
	display: grid;
	gap: 8px;
	margin: 4px 0 0;
}

.as-facts div {
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr);
	gap: 10px;
	border-top: 1px solid #ebe8e0;
	padding-top: 8px;
}

.as-facts dt {
	color: var(--as-muted);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
}

.as-facts dd {
	margin: 0;
}

.as-contact-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.as-button,
.as-filter-bar a,
.as-quick-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	border: 1px solid transparent;
	border-radius: var(--as-radius);
	padding: 10px 14px;
	font-weight: 800;
	line-height: 1.1;
	text-decoration: none;
}

.as-phone-button {
	background: var(--as-green);
	color: #fff;
}

.as-whatsapp-button {
	background: #f0f8f4;
	color: var(--as-green-dark);
	border-color: #b8d9ca;
}

.as-button--ghost,
.as-filter-bar a,
.as-quick-actions a {
	background: #fff;
	color: var(--as-ink);
	border-color: var(--as-line);
}

.as-price-strip,
.as-cta-bar {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
	border-block: 1px solid var(--as-line);
	background: var(--as-soft);
}

.as-price-strip strong,
.as-price-strip span {
	display: block;
}

.as-price-strip span {
	color: var(--as-muted);
}

.as-filter-bar,
.as-quick-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.as-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.as-trust-grid div {
	border: 1px solid var(--as-line);
	border-radius: var(--as-radius);
	padding: 16px;
	background: #fff;
}

.as-trust-grid strong,
.as-trust-grid span {
	display: block;
}

.as-trust-grid span {
	margin-top: 6px;
	color: var(--as-muted);
}

.as-faq-list {
	display: grid;
	gap: 14px;
}

.as-faq-item {
	border-top: 1px solid var(--as-line);
	padding-top: 16px;
}

.as-faq-item h3 {
	margin: 0 0 8px;
	font-size: 1.05rem;
}

.as-faq-item p {
	margin: 0;
	color: var(--as-muted);
	line-height: 1.65;
}

.as-empty {
	border: 1px dashed var(--as-line);
	border-radius: var(--as-radius);
	padding: 22px;
	background: #fffdf8;
}

.as-filter-form {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	align-items: end;
	border: 1px solid var(--as-line);
	border-radius: var(--as-radius);
	padding: 16px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(36, 48, 43, 0.05);
}

.as-filter-form label {
	display: grid;
	gap: 6px;
	color: var(--as-muted);
	font-size: 0.82rem;
	font-weight: 800;
}

.as-filter-form select {
	width: 100%;
	min-height: 42px;
	border: 1px solid var(--as-line);
	border-radius: var(--as-radius);
	padding: 8px 10px;
	background: #fff;
	color: var(--as-ink);
	font: inherit;
}

.as-single-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
	gap: 26px;
	align-items: center;
	margin-bottom: 24px;
}

.as-single-hero__image {
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border: 1px solid var(--as-line);
	border-radius: var(--as-radius);
	background: var(--as-soft);
}

.as-single-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 26px;
	align-items: start;
}

.as-contact-panel {
	position: sticky;
	top: 24px;
	border: 1px solid var(--as-line);
	border-radius: var(--as-radius);
	padding: 18px;
	background: #fff;
	box-shadow: var(--as-shadow);
}

.as-content {
	line-height: 1.75;
}

.as-pagination {
	margin-top: 24px;
}

.as-verified-link {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin: 0 0 10px;
	border: 1px solid rgba(31, 111, 85, 0.2);
	border-radius: 999px;
	padding: 6px 10px;
	background: #eff8f3;
	color: #1f6f55;
	font-size: 0.82rem;
	font-weight: 800;
	text-decoration: none;
}

.as-breadcrumbs {
	margin: 12px 0 24px;
	font-size: 0.92rem;
	color: var(--as-muted);
}

.as-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.as-breadcrumbs li {
	display: inline-flex;
	gap: 8px;
	align-items: center;
}

.as-breadcrumbs li + li::before {
	content: "/";
	color: var(--as-line-strong);
}

.as-breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.as-breadcrumbs a:hover {
	color: var(--as-text);
}

@media (max-width: 900px) {
	.as-hero,
	.as-single-hero,
	.as-single-grid {
		grid-template-columns: 1fr;
	}

	.as-card-grid--three,
	.as-card-grid--four,
	.as-card-grid--rooms,
	.as-trust-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.as-price-strip,
	.as-cta-bar {
		align-items: flex-start;
		flex-direction: column;
	}

	.as-filter-form {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.as-contact-panel {
		position: static;
	}
}

@media (max-width: 560px) {
	.as-hero {
		padding-top: 24px;
	}

	.as-hero__media {
		display: none;
	}

	.as-card-grid--three,
	.as-card-grid--four,
	.as-card-grid--rooms,
	.as-trust-grid {
		grid-template-columns: 1fr;
	}

	.as-contact-row,
	.as-button,
	.as-filter-form {
		width: 100%;
	}

	.as-filter-form {
		grid-template-columns: 1fr;
	}

	.as-facts div {
		grid-template-columns: 1fr;
		gap: 2px;
	}
}

/* v4.6 premium listing surfaces */
.as-apart-card {
	position: relative;
	overflow: hidden;
	border-color: rgba(20, 27, 24, 0.08);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 18px 48px rgba(20, 27, 24, 0.1);
	-webkit-backdrop-filter: blur(20px) saturate(1.18);
	backdrop-filter: blur(20px) saturate(1.18);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.as-apart-card:hover {
	border-color: rgba(20, 27, 24, 0.14);
	box-shadow: 0 24px 64px rgba(20, 27, 24, 0.14);
	transform: translateY(-3px);
}

.as-gallery {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	min-height: 210px;
	background: #eef1ef;
	touch-action: pan-y;
}

.as-gallery__track,
.as-gallery__slide {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
}

.as-gallery__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 220ms ease;
}

.as-gallery__slide.is-active {
	position: relative;
	opacity: 1;
}

.as-card-price-pill {
	position: absolute;
	right: 14px;
	bottom: 14px;
	z-index: 2;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: 999px;
	padding: 9px 12px;
	background: rgba(17, 24, 21, 0.72);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
	color: #fff;
	font-size: 0.88rem;
	font-weight: 800;
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
}

.as-gallery__dots {
	position: absolute;
	bottom: 17px;
	left: 14px;
	z-index: 2;
	display: inline-flex;
	gap: 5px;
	align-items: center;
}

.as-gallery__dots span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.54);
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.as-gallery__dots span.is-active {
	width: 18px;
	border-radius: 999px;
	background: #fff;
}

.as-feature-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.as-feature-icons li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 34px;
	border: 1px solid rgba(20, 27, 24, 0.08);
	border-radius: 999px;
	padding: 7px 10px;
	background: rgba(248, 250, 249, 0.84);
	color: #33413a;
	font-size: 0.8rem;
	font-weight: 750;
}

.as-feature-icons__mark {
	display: inline-grid;
	width: 18px;
	height: 18px;
	place-items: center;
	border-radius: 50%;
	background: #eaf7f1;
	color: #17664d;
	font-size: 0.58rem;
	font-weight: 900;
	line-height: 1;
}

.as-feature-icons__mark::before {
	content: "+";
}

.as-feature-icons__mark[data-as-feature-icon="wifi"]::before {
	content: "Wi";
}

.as-feature-icons__mark[data-as-feature-icon="bed"]::before {
	content: "Y";
}

.as-feature-icons__mark[data-as-feature-icon="shower"]::before {
	content: "Du";
}

.as-feature-icons__mark[data-as-feature-icon="tv"]::before {
	content: "TV";
}

.as-feature-icons__mark[data-as-feature-icon="climate"]::before {
	content: "K";
}

.as-feature-icons__mark[data-as-feature-icon="parking"]::before {
	content: "P";
}

.as-feature-icons__mark[data-as-feature-icon="kitchen"]::before {
	content: "M";
}

.as-feature-icons__mark[data-as-feature-icon="clean"]::before {
	content: "T";
}

/* v4.6.6 Apart Sakarya card system inspired by the SaatlikKiralik listing cards. */
.as-card-grid--rooms {
	gap: 22px;
	align-items: stretch;
}

.as-sk-card,
.as-card.as-sk-card {
	position: relative;
	display: block;
	overflow: hidden;
	border: 0;
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 2px 12px rgba(17, 17, 17, 0.06);
	transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.as-sk-card:hover,
.as-sk-card:focus-within {
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
	transform: translateY(-6px);
}

.as-sk-card .as-sk-card__media,
.as-sk-card .as-gallery {
	position: relative;
	overflow: visible;
	min-height: 0;
	background: transparent;
	color: #667085;
	isolation: isolate;
	touch-action: pan-y;
}

.as-sk-card__image-cabin {
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid rgba(17, 17, 17, 0.06);
	border-radius: 22px 22px 0 0;
	aspect-ratio: 1 / 0.78;
	background: #f2f4f8;
	isolation: isolate;
}

.as-sk-card__track,
.as-sk-card .as-gallery__track {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	color: inherit;
	text-decoration: none;
}

.as-sk-card__slide,
.as-sk-card .as-gallery__slide,
.as-sk-card .as-gallery__slide.is-active {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	opacity: 0;
	transition: opacity 260ms ease;
}

.as-sk-card .as-gallery__slide.is-active {
	opacity: 1;
}

.as-sk-card__slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.02) 28%, rgba(0, 0, 0, 0) 46%);
	pointer-events: none;
}

.as-sk-card__slide img,
.as-sk-card .as-apart-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	user-select: none;
}

.as-sk-card__placeholder {
	display: grid;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	place-items: center;
	padding: 20px;
	color: #667085;
	font-size: 0.92rem;
	text-align: center;
}

.as-sk-card__badge,
.as-sk-card .as-sk-card__badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 4;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	max-width: calc(100% - 96px);
	min-height: 34px;
	margin: 0;
	border: 1.5px solid rgba(255, 255, 255, 0.78);
	border-radius: 999px;
	padding: 7px 14px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3), 0 10px 18px rgba(17, 17, 17, 0.08);
	color: #4a4040;
	font-size: 13px;
	font-weight: 740;
	line-height: 1.1;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.as-sk-card__badge--cool {
	background: rgba(239, 246, 255, 0.94);
	color: #1d4ed8;
}

.as-sk-card__badge--neutral {
	background: rgba(255, 251, 235, 0.96);
	color: #6b4f00;
}

.as-sk-card__badge--warm {
	color: #4a4040;
}

.as-sk-card__badge-icon-wrap {
	display: inline-grid;
	width: 18px;
	height: 18px;
	min-width: 18px;
	place-items: center;
	overflow: hidden;
	border-radius: 999px;
	flex: 0 0 18px;
}

.as-sk-card__badge-icon {
	display: block;
	width: 15px;
	height: 15px;
	max-width: 15px;
	max-height: 15px;
	flex: 0 0 15px;
	fill: #ff8a00;
	filter: drop-shadow(0 3px 6px rgba(255, 138, 0, 0.24));
}

img.as-sk-card__badge-icon {
	object-fit: contain;
}

.as-sk-card__heart {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 4;
	display: inline-flex;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	background: transparent;
	pointer-events: none;
}

.as-sk-card__heart svg {
	display: block;
	width: 28px;
	height: 28px;
	overflow: visible;
	filter: drop-shadow(0 10px 18px rgba(156, 43, 84, 0.28)) drop-shadow(0 4px 10px rgba(214, 97, 45, 0.18));
}

.as-sk-card__heart path {
	fill: rgba(186, 61, 102, 0.24);
	stroke: rgba(255, 248, 249, 0.98);
	stroke-width: 2.35;
	paint-order: stroke fill;
	vector-effect: non-scaling-stroke;
	transition: fill 220ms ease, stroke 220ms ease;
}

.as-sk-card:hover .as-sk-card__heart path,
.as-sk-card:focus-within .as-sk-card__heart path {
	fill: rgba(209, 78, 117, 0.36);
	stroke: #fff;
}

.as-sk-card__dots,
.as-sk-card .as-gallery__dots {
	position: absolute;
	bottom: 12px;
	left: 50%;
	z-index: 4;
	display: inline-flex;
	gap: 6px;
	align-items: center;
	transform: translateX(-50%);
}

.as-sk-card .as-gallery__dots span {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.16);
}

.as-sk-card .as-gallery__dots span.is-active {
	width: 18px;
	background: #fff;
}

.as-sk-card__price-badge,
.as-sk-card .as-card-price-pill {
	position: absolute;
	right: 14px;
	bottom: -22px;
	z-index: 5;
	display: inline-flex;
	width: auto;
	max-width: calc(100% - 28px);
	min-width: 0;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: 18px;
	padding: 11px 50px 10px 12px;
	background:
		radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.5), transparent 30%),
		linear-gradient(145deg, rgba(0, 125, 245, 0.98), rgba(0, 84, 205, 0.94));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.42),
		0 18px 42px rgba(0, 92, 190, 0.34);
	color: #fff;
	font-size: 1rem;
	font-weight: 750;
	line-height: 1;
	text-align: center;
	-webkit-backdrop-filter: blur(18px) saturate(170%);
	backdrop-filter: blur(18px) saturate(170%);
}

.as-sk-card__price-top {
	display: inline-flex;
	max-width: 100%;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.as-sk-card__price-map {
	position: absolute;
	top: 7px;
	right: 7px;
	display: inline-grid;
	width: 32px;
	height: 32px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 13px;
	background:
		radial-gradient(circle at 62% 16%, rgba(255, 255, 255, 0.74), transparent 36%),
		linear-gradient(180deg, rgba(249, 241, 229, 0.97), rgba(229, 216, 200, 0.96));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.58),
		inset 0 -1px 0 rgba(95, 75, 55, 0.08),
		0 9px 18px rgba(0, 45, 105, 0.2);
	color: #0057c8;
}

.as-sk-card__price-map svg {
	display: block;
	width: 17px;
	height: 17px;
	fill: currentColor;
}

.as-sk-card__price-map circle {
	fill: rgba(255, 255, 255, 0.88);
}

.as-sk-card__price-label {
	display: inline-flex;
	min-height: 32px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.52);
	border-radius: 999px;
	padding: 0 11px;
	background: none;
	color: rgba(255, 255, 255, 0.82);
	font-size: 11px;
	font-weight: 660;
	letter-spacing: 0.03em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.as-sk-card__price-main {
	display: inline-flex;
	max-width: 190px;
	align-items: baseline;
	gap: 5px;
	overflow: hidden;
	font-size: 24px;
	font-weight: 760;
	letter-spacing: 0;
	line-height: 1;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.as-sk-card__price-period {
	overflow: hidden;
	max-width: 72px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 11px;
	font-weight: 680;
	line-height: 1;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.as-sk-card__body,
.as-sk-card .as-apart-card__body {
	display: grid;
	gap: 0;
	padding: 36px 18px 16px;
}

.as-sk-card__location-row {
	display: flex;
	max-width: 100%;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
	margin-bottom: 2px;
	color: #3f4653;
	font-size: 14px;
	font-weight: 740;
	line-height: 1.18;
	white-space: nowrap;
}

.as-sk-card__district,
.as-sk-card__room-type,
.as-sk-card__city,
.as-sk-card__separator {
	display: inline-block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.as-sk-card__room-type {
	flex: 0 1 auto;
	min-width: 0;
	color: #1f2937;
}

.as-sk-card__separator {
	margin: 0 5px;
	color: rgba(17, 17, 17, 0.28);
}

.as-sk-card__city {
	min-width: 0;
	flex: 1 1 auto;
	margin: 0;
}

.as-sk-card__meta-row {
	display: inline-flex;
	max-width: 100%;
	align-items: center;
	flex-wrap: wrap;
	gap: 0;
	row-gap: 2px;
	margin: 0 0 7px;
	color: #6c6c6c;
	font-size: 14px;
	font-weight: 440;
	line-height: 1.18;
}

.as-sk-card__price-inline {
	display: inline-flex;
	align-items: baseline;
	color: #2f3742;
	font-size: 15px;
	font-weight: 620;
}

.as-sk-card__meta-note {
	display: inline-flex;
	align-items: center;
	margin-left: 0.42em;
	font-size: 15px;
	font-weight: 440;
}

.as-sk-card__rating {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	width: auto;
	min-height: 24px;
	margin: 0;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 999px;
	padding: 3px 8px 3px 7px;
	background: #f8fafc;
	color: #111827;
	font-size: 14px;
	font-weight: 650;
	line-height: 1;
	text-decoration: none;
}

.as-sk-card__rating-count {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-left: 3px;
	color: #667085;
	font-size: 12px;
	font-weight: 650;
	white-space: nowrap;
}

.as-sk-card__rating-count::before {
	content: "";
	width: 1px;
	height: 13px;
	background: rgba(17, 24, 39, 0.16);
}

.as-sk-card__rating::before {
	display: none;
	content: none;
}

.as-sk-card__rating-star {
	color: #111827;
	font-size: 13px;
	line-height: 1;
}

.as-sk-card__rating-score {
	color: #111827;
	font-weight: 780;
}

.as-sk-card__rating-scale {
	margin-left: -3px;
	color: #667085;
	font-size: 12px;
	font-weight: 680;
}

.as-sk-card__title,
.as-sk-card .as-sk-card__title,
.as-sk-card .as-apart-card h3 {
	margin: 0 0 4px;
	color: #1f2937;
	font-size: 17px;
	font-weight: 660;
	line-height: 1.24;
	letter-spacing: 0;
}

.as-sk-card__title a {
	color: inherit;
	text-decoration: none;
}

.as-sk-card__title a:hover,
.as-sk-card__title a:focus-visible {
	color: #0071e3;
}

.as-sk-card__context {
	margin: 0 0 6px;
	color: #596273;
	font-size: 13px;
	font-weight: 620;
	line-height: 1.25;
}

.as-sk-card__excerpt,
.as-sk-card .as-sk-card__excerpt {
	display: -webkit-box;
	overflow: hidden;
	margin: 0;
	color: #666;
	font-size: 14px;
	line-height: 1.34;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.as-sk-card__features,
.as-sk-card .as-feature-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
}

.as-sk-card__features li,
.as-sk-card .as-feature-icons li {
	display: inline-flex;
	min-height: 30px;
	align-items: center;
	gap: 7px;
	border: 0;
	border-radius: 999px;
	padding: 0;
	background: transparent;
	color: #94a3b8;
	font-size: 0;
	font-weight: 600;
}

.as-sk-card .as-feature-icons__mark {
	display: inline-grid;
	width: 24px;
	height: 24px;
	place-items: center;
	border-radius: 999px;
	background: #f1f5f9;
	color: #64748b;
	font-size: 9px;
	font-weight: 800;
	line-height: 1;
}

.as-sk-card__feature-label {
	overflow: hidden;
	max-width: 96px;
	color: #667085;
	font-size: 12px;
	line-height: 1.15;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.as-sk-card__facts,
.as-sk-card .as-facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 6px;
	margin: 12px 0 0;
}

.as-sk-card__facts div,
.as-sk-card .as-facts div {
	display: grid;
	min-width: 0;
	grid-template-columns: 1fr;
	gap: 2px;
	border: 1px solid rgba(15, 23, 42, 0.06);
	border-radius: 12px;
	padding: 8px;
	background: #f8fafc;
}

.as-sk-card__facts dt,
.as-sk-card .as-facts dt {
	overflow: hidden;
	color: #8a94a3;
	font-size: 10px;
	font-weight: 760;
	letter-spacing: 0.02em;
	line-height: 1.1;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}

.as-sk-card__facts dd,
.as-sk-card .as-facts dd {
	overflow: hidden;
	margin: 0;
	color: #344054;
	font-size: 12px;
	font-weight: 650;
	line-height: 1.15;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.as-sk-card .as-contact-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin-top: 12px;
}

.as-sk-card .as-contact-row:empty {
	display: none;
}

.as-sk-card .as-contact-row .as-button {
	min-height: 38px;
	border-radius: 999px;
	padding: 9px 12px;
	font-size: 13px;
	font-weight: 760;
	line-height: 1.05;
	white-space: nowrap;
}

.as-sk-card .as-phone-button {
	background: #0071e3;
	box-shadow: 0 10px 22px rgba(0, 113, 227, 0.2);
	color: #fff;
}

.as-sk-card .as-whatsapp-button {
	border-color: rgba(0, 128, 96, 0.2);
	background: #effaf5;
	color: #007a5f;
}

@media (max-width: 900px) {
	.as-card-grid--rooms {
		gap: 18px;
	}
}

@media (max-width: 560px) {
	.as-sk-card,
	.as-card.as-sk-card {
		border-radius: 20px;
	}

	.as-sk-card__image-cabin {
		border-radius: 20px 20px 0 0;
	}

	.as-sk-card__price-badge,
	.as-sk-card .as-card-price-pill {
		right: 12px;
		bottom: -20px;
		max-width: calc(100% - 24px);
		border-radius: 10px;
		padding: 10px 46px 9px 11px;
	}

	.as-sk-card__price-label {
		min-height: 30px;
		padding: 0 9px;
		font-size: 10px;
	}

	.as-sk-card__price-map {
		width: 29px;
		height: 29px;
	}

	.as-sk-card__price-main {
		max-width: 154px;
		font-size: 21px;
	}

	.as-sk-card__price-period {
		max-width: 58px;
		font-size: 10px;
	}

	.as-sk-card__body,
	.as-sk-card .as-apart-card__body {
		padding: 34px 16px 14px;
	}

	.as-sk-card__facts,
	.as-sk-card .as-facts {
		grid-template-columns: 1fr;
	}

	.as-sk-card .as-contact-row {
		grid-template-columns: 1fr;
	}
}

.as-apart-card .as-card-price-pill,
.as-card.as-sk-card .as-card-price-pill,
.as-card.as-sk-card .as-sk-card__price-badge,
article.as-sk-card .as-card-price-pill.as-sk-card__price-badge {
	border: 1px solid rgba(255, 255, 255, 0.42) !important;
	border-radius: 18px !important;
	background:
		radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.5), transparent 30%),
		linear-gradient(145deg, rgba(0, 125, 245, 0.98), rgba(0, 84, 205, 0.94)) !important;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.42),
		0 18px 42px rgba(0, 92, 190, 0.34) !important;
	color: #fff !important;
	-webkit-backdrop-filter: blur(18px) saturate(170%) !important;
	backdrop-filter: blur(18px) saturate(170%) !important;
}

.as-apart-card .as-card-price-pill:hover,
.as-apart-card .as-card-price-pill:focus-visible,
.as-card.as-sk-card .as-sk-card__price-badge:hover,
.as-card.as-sk-card .as-sk-card__price-badge:focus-visible {
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.46),
		0 22px 50px rgba(0, 92, 190, 0.38) !important;
}

.as-apart-card .as-card-price-pill .as-sk-card__price-label,
.as-card.as-sk-card .as-sk-card__price-label {
	border-color: rgba(255, 255, 255, 0.52) !important;
	background: none !important;
	color: rgba(255, 255, 255, 0.82) !important;
}

.as-apart-card .as-card-price-pill .as-price-amount,
.as-apart-card .as-card-price-pill .as-price-amount__value,
.as-apart-card .as-card-price-pill .as-price-amount__currency,
.as-card.as-sk-card .as-sk-card__price-badge .as-price-amount,
.as-card.as-sk-card .as-sk-card__price-badge .as-price-amount__value,
.as-card.as-sk-card .as-sk-card__price-badge .as-price-amount__currency {
	color: #fff !important;
}

/* 4.7.x restore: keep the earlier compact blue card price box. */
.as-sk-card__price-badge,
.as-sk-card .as-card-price-pill,
.as-apart-card .as-card-price-pill,
.as-card.as-sk-card .as-card-price-pill,
.as-card.as-sk-card .as-sk-card__price-badge,
article.as-sk-card .as-card-price-pill.as-sk-card__price-badge {
	gap: 4px !important;
	border: 0 !important;
	border-radius: 12px !important;
	padding: 11px 46px 10px 12px !important;
	background: linear-gradient(180deg, #2d7eea, #266fd3) !important;
	box-shadow: 0 8px 20px rgba(32, 90, 170, 0.24) !important;
	color: #fff !important;
	-webkit-backdrop-filter: none !important;
	backdrop-filter: none !important;
}

.as-sk-card__price-badge:hover,
.as-sk-card__price-badge:focus-visible,
.as-apart-card .as-card-price-pill:hover,
.as-apart-card .as-card-price-pill:focus-visible,
.as-card.as-sk-card .as-sk-card__price-badge:hover,
.as-card.as-sk-card .as-sk-card__price-badge:focus-visible {
	box-shadow: 0 10px 24px rgba(32, 90, 170, 0.28) !important;
}

.as-sk-card__price-label,
.as-apart-card .as-card-price-pill .as-sk-card__price-label,
.as-card.as-sk-card .as-sk-card__price-label {
	min-height: 32px !important;
	border: 1.5px solid rgba(255, 255, 255, 0.72) !important;
	border-radius: 7px !important;
	padding: 0 11px !important;
	background: transparent !important;
	color: #eef7ff !important;
	font-size: 11px !important;
	font-weight: 660 !important;
	line-height: 1 !important;
	text-transform: uppercase !important;
	white-space: nowrap !important;
}

.as-sk-card__price-period {
	display: block;
	overflow: hidden;
	max-width: 150px;
	margin-top: 3px;
	color: rgba(255, 255, 255, 0.9) !important;
	font-size: 11px;
	font-weight: 650;
	line-height: 1;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.as-sk-card__price-map {
	top: 8px !important;
	right: 8px !important;
	width: 30px !important;
	height: 30px !important;
	border: 1px solid rgba(255, 255, 255, 0.46) !important;
	border-radius: 10px !important;
	background: rgba(255, 255, 255, 0.16) !important;
	box-shadow: none !important;
	color: #fff !important;
}

.as-sk-card__badge {
	gap: 5px;
	min-height: 32px;
	padding: 7px 12px;
}

.as-sk-card__badge > span:last-child {
	overflow: hidden;
	min-width: 0;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.as-sk-card__badge-icon-wrap {
	width: 16px !important;
	height: 16px !important;
	min-width: 16px !important;
	flex: 0 0 16px !important;
	border-radius: 0;
}

.as-sk-card__badge-icon,
img.as-sk-card__badge-icon {
	display: block;
	width: 14px !important;
	height: 14px !important;
	max-width: 14px !important;
	max-height: 14px !important;
	object-fit: contain;
}

.as-sk-card__rating {
	gap: 3px;
	white-space: nowrap;
}

.as-sk-card__rating-count {
	gap: 0;
	margin-left: 2px;
}

.as-sk-card__rating-count::before {
	display: none;
	content: none;
}

.as-single-video {
	overflow: hidden;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 20px 54px rgba(17, 24, 39, 0.08);
}

.as-single-video__frame {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #0f172a;
}

.as-single-video__frame iframe,
.as-single-video__frame video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.as-single-video__copy {
	display: grid;
	gap: 6px;
	padding: 18px;
}

.as-single-video__copy h2,
.as-single-video__copy p {
	margin: 0;
}

@media (max-width: 560px) {
	.as-sk-card__price-badge,
	.as-sk-card .as-card-price-pill,
	.as-apart-card .as-card-price-pill,
	.as-card.as-sk-card .as-card-price-pill,
	.as-card.as-sk-card .as-sk-card__price-badge,
	article.as-sk-card .as-card-price-pill.as-sk-card__price-badge {
		right: 12px !important;
		bottom: -20px !important;
		max-width: calc(100% - 24px) !important;
		border-radius: 10px !important;
		padding: 10px 42px 9px 11px !important;
	}

	.as-sk-card__price-map {
		width: 28px !important;
		height: 28px !important;
	}
}

/* 4.7.x completion: stable image framing, clearer map pin, and compact verification chip. */
.as-hero__media img,
.as-single-hero__image img,
.as-apart-card__media img,
.as-gallery__slide img,
.as-sk-card__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover !important;
	object-position: center center !important;
}

.as-sk-card__price-map {
	border-color: rgba(255, 255, 255, 0.72) !important;
	background: rgba(255, 255, 255, 0.24) !important;
	box-shadow: 0 4px 12px rgba(9, 50, 120, 0.22) !important;
}

.as-sk-card__price-map svg {
	width: 18px !important;
	height: 18px !important;
	filter: drop-shadow(0 1px 2px rgba(0, 45, 120, 0.28));
}

.as-feature-icons__mark img,
.as-single-feature-list__icon img {
	display: block;
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.as-single-verify-chip {
	display: inline-grid !important;
	grid-template-columns: 22px minmax(0, 1fr);
	gap: 7px;
	align-items: center;
	max-width: 100%;
	border: 1px solid rgba(22, 101, 52, 0.14) !important;
	border-radius: 999px !important;
	padding: 5px 9px 5px 6px !important;
	background: #f2fbf6 !important;
	color: #14532d !important;
	text-decoration: none !important;
	box-shadow: none !important;
}

.as-single-verify-chip__icon {
	display: inline-grid;
	width: 22px;
	height: 22px;
	place-items: center;
	border-radius: 999px;
	background: #16a34a;
	color: #fff;
}

.as-single-verify-chip__icon svg {
	display: block;
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.as-single-verify-chip__text {
	display: grid;
	min-width: 0;
	gap: 1px;
	line-height: 1.05;
}

.as-single-verify-chip__text strong,
.as-single-verify-chip__text small {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.as-single-verify-chip__text strong {
	font-size: 11px;
	font-weight: 780;
}

.as-single-verify-chip__text small {
	color: #37654a;
	font-size: 10px;
	font-weight: 680;
}

/* 4.7.10: stable card controls, clearer location pin, hover gallery arrows, and compact verification. */
html {
	scroll-behavior: smooth;
}

@supports (scrollbar-gutter: stable) {
	html {
		scrollbar-gutter: stable;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto !important;
	}
}

.as-sk-card__price-badge,
.as-sk-card .as-card-price-pill,
.as-apart-card .as-card-price-pill,
.as-card.as-sk-card .as-card-price-pill,
.as-card.as-sk-card .as-sk-card__price-badge,
article.as-sk-card .as-card-price-pill.as-sk-card__price-badge {
	transform: none !important;
	transition: background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease, color 140ms ease !important;
}

.as-sk-card__price-badge:hover,
.as-sk-card__price-badge:focus-visible,
.as-apart-card .as-card-price-pill:hover,
.as-apart-card .as-card-price-pill:focus-visible,
.as-card.as-sk-card .as-sk-card__price-badge:hover,
.as-card.as-sk-card .as-sk-card__price-badge:focus-visible {
	transform: none !important;
	box-shadow: 0 8px 20px rgba(32, 90, 170, 0.24) !important;
}

.as-sk-card__price-custom {
	display: block;
	overflow: hidden;
	max-width: 150px;
	margin-top: 3px;
	color: rgba(255, 255, 255, 0.92) !important;
	font-size: 11px;
	font-weight: 720;
	line-height: 1;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.as-sk-card__price-map {
	border-color: rgba(255, 255, 255, 0.9) !important;
	background: #ffffff !important;
	box-shadow: 0 5px 14px rgba(9, 50, 120, 0.2) !important;
	color: #0b5fc7 !important;
}

.as-sk-card__price-map svg {
	filter: none !important;
}

.as-sk-card__price-map circle {
	fill: #0b5fc7 !important;
	opacity: 0.18;
}

.as-sk-card .as-contact-row .as-button,
.as-contact-row .as-button,
.as-button,
.as-phone-button,
.as-whatsapp-button {
	transform: none !important;
	transition: background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease, color 140ms ease !important;
}

.as-sk-card .as-contact-row .as-button:hover,
.as-sk-card .as-contact-row .as-button:focus-visible,
.as-contact-row .as-button:hover,
.as-contact-row .as-button:focus-visible,
.as-button:hover,
.as-button:focus-visible,
.as-phone-button:hover,
.as-phone-button:focus-visible,
.as-whatsapp-button:hover,
.as-whatsapp-button:focus-visible {
	transform: none !important;
}

.as-gallery-nav {
	position: absolute;
	top: 50%;
	z-index: 8;
	display: inline-grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.76);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: #1f2937;
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.2);
	opacity: 0;
	transform: translateY(-50%);
	transition: opacity 140ms ease, background-color 140ms ease, color 140ms ease;
	cursor: pointer;
}

.as-gallery-nav--prev {
	left: 10px;
}

.as-gallery-nav--next {
	right: 10px;
}

.as-gallery-nav::before {
	content: "";
	display: block;
	width: 9px;
	height: 9px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
}

.as-gallery-nav--prev::before {
	transform: rotate(-135deg) translate(-1px, -1px);
}

.as-gallery-nav--next::before {
	transform: rotate(45deg) translate(-1px, 1px);
}

@media (hover: hover) and (pointer: fine) {
	.as-gallery:hover .as-gallery-nav,
	.as-gallery:focus-within .as-gallery-nav {
		opacity: 1;
	}
}

.as-gallery-nav:hover,
.as-gallery-nav:focus-visible {
	background: #ffffff;
	color: #0b5fc7;
	opacity: 1;
	outline: none;
}

.as-contact-panel .as-single-verify-chip.as-verified-link,
.as-single-verify-chip.as-verified-link,
.as-single-verify-chip {
	display: inline-flex !important;
	width: auto !important;
	height: auto !important;
	min-height: 0 !important;
	gap: 7px !important;
	align-items: center !important;
	margin: 0 !important;
	border: 1px solid rgba(21, 128, 61, 0.16) !important;
	border-radius: 999px !important;
	padding: 5px 10px 5px 6px !important;
	background: #f2fbf6 !important;
	color: #14532d !important;
	font-size: 12px !important;
	text-decoration: none !important;
	box-shadow: none !important;
	opacity: 1 !important;
}

.as-contact-panel .as-single-verify-chip.as-verified-link::before,
.as-single-verify-chip.as-verified-link::before,
.as-single-verify-chip::before {
	display: none !important;
	content: none !important;
}

.as-single-verify-chip__icon {
	flex: 0 0 20px !important;
	width: 20px !important;
	height: 20px !important;
}

.as-single-verify-chip__icon svg,
.as-single-verify-chip__icon svg path {
	display: block !important;
	width: 13px !important;
	height: 13px !important;
	fill: currentColor !important;
}
