		/*
		 * Figma token’ları (kullanıcı + glass close-up):
		 * bg #F3F8F9 · input #E5EBED · text #424242
		 * glass dock ~218×79 · radius muted (aşırı pill yok)
		 */
		:root {
			--bg: #F3F8F9;
			--surface: #FFFFFF;
			--ink: #424242;
			--muted: #8A9290;
			--field: #E5EBED;
			--accent: #C9BB5A;
			--border: rgba(255, 255, 255, 0.65);
			/* Figma: linear #FFF 44% → #FFF 100%, blur 23 */
			--glass-grad: linear-gradient(180deg, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 1) 100%);
			--shadow: 0 10px 28px rgba(66, 66, 66, 0.08);
			--shadow-soft: 0 6px 18px rgba(66, 66, 66, 0.06);
			--r-card: 20px;
			--r-dock: 14px;
			--r-list: 16px;
			--r-thumb: 12px;
			--r-go: 10px;
			--r-btn: 9px;
			--r-input: 9px;
			--r-control: 9px;
			--rail: 1120px;
			/* Sayfa geneli tipografi */
			--font: "Gilroy", "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
			/*
			 * Tipografi ölçeği (web standart — 16px base, ~1.25 oranı):
			 * xs 12 · sm 14 · base 16 · md 18 · lg 20 · xl 24 · 2xl 32
			 * Kaynak: LearnUI / major-third scale (body 16–18, H2≈24, H1≈32)
			 */
			--text-xs: 0.75rem;    /* 12px — meta, caption */
			--text-sm: 0.875rem;   /* 14px — secondary, UI, hero lead */
			--text-base: 1rem;     /* 16px — body, input, card title */
			--text-md: 1.125rem;   /* 18px — vurgulu satır */
			--text-lg: 1.25rem;    /* 20px — alt başlık / H3 */
			--text-xl: 1.5rem;     /* 24px — section H2 */
			--text-2xl: 2rem;      /* 32px — page H1 */
		}

		body.mc-ds, body.mc-ds * { box-sizing: border-box; }
		body.mc-ds { margin: 0; }
		html {
			font-family: var(--font);
			font-size: 16px;
			-webkit-font-smoothing: antialiased;
			-moz-osx-font-smoothing: grayscale;
		}
		body.mc-ds {
			font-family: var(--font);
			font-size: var(--text-base);
			line-height: 1.5;
			color: var(--ink);
			background: var(--bg);
			position: relative;
			isolation: isolate;
			min-height: 100vh;
			overflow-x: clip;
		}
		/* Genel arka plan — soft blobs + frosted glass veil */
		body.mc-ds::before {
			content: "";
			position: fixed;
			inset: 0;
			z-index: -2;
			pointer-events: none;
			background:
				radial-gradient(ellipse 55% 42% at 8% -5%, rgba(201, 187, 90, 0.22) 0%, transparent 55%),
				radial-gradient(ellipse 50% 48% at 92% 8%, rgba(120, 176, 186, 0.28) 0%, transparent 58%),
				radial-gradient(ellipse 48% 40% at 70% 88%, rgba(168, 198, 204, 0.3) 0%, transparent 55%),
				radial-gradient(ellipse 40% 35% at 18% 72%, rgba(229, 235, 237, 0.9) 0%, transparent 50%),
				var(--bg);
		}
		body.mc-ds::after {
			content: "";
			position: fixed;
			inset: 0;
			z-index: -1;
			pointer-events: none;
			background: linear-gradient(
				180deg,
				rgba(243, 248, 249, 0.42) 0%,
				rgba(243, 248, 249, 0.72) 55%,
				rgba(243, 248, 249, 0.88) 100%
			);
			backdrop-filter: blur(28px) saturate(1.15);
			-webkit-backdrop-filter: blur(28px) saturate(1.15);
		}
		a { color: inherit; text-decoration: none; }
		button, input, textarea, select {
			font-family: inherit;
			font-size: inherit;
			border: 0;
			background: none;
		}
		img { display: block; max-width: 100%; }
		iconify-icon {
			display: inline-block;
			vertical-align: middle;
			flex-shrink: 0;
		}

		.rail {
			width: min(100% - 48px, var(--rail));
			margin-inline: auto;
		}

		/* ========== HEADER (minimal — Figma) ========== */
		.mc-site-header {
			position: sticky;
			top: 0;
			z-index: 30;
			width: 100%;
			transition:
				background 0.35s ease,
				box-shadow 0.35s ease,
				backdrop-filter 0.35s ease,
				-webkit-backdrop-filter 0.35s ease,
				border-color 0.35s ease;
			background: transparent;
			border-bottom: 1px solid transparent;
		}
		.mc-site-header.is-scrolled {
			background: rgba(243, 248, 249, 0.72);
			backdrop-filter: blur(22px) saturate(1.15);
			-webkit-backdrop-filter: blur(22px) saturate(1.15);
			box-shadow: 0 10px 28px rgba(66, 66, 66, 0.07);
			border-bottom-color: rgba(229, 235, 237, 0.85);
		}
		.mc-topbar {
			display: grid;
			grid-template-columns: 44px 1fr auto;
			align-items: center;
			gap: 16px;
			padding: 22px 0 8px;
			max-width: var(--rail);
			margin-inline: auto;
			width: min(100% - 48px, var(--rail));
			transition: padding 0.35s ease;
		}
		.mc-site-header.is-scrolled .mc-topbar {
			padding: 12px 0;
		}
		.mc-nav-toggle {
			width: 44px;
			height: 44px;
			display: flex;
			flex-direction: column;
			justify-content: center;
			gap: 5px;
			cursor: pointer;
			position: relative;
			z-index: 60;
			appearance: none;
			-webkit-appearance: none;
			border: 0;
			background: transparent;
			box-shadow: none;
			padding: 0;
			margin: 0;
			min-height: 0;
			min-width: 0;
			color: inherit;
			line-height: 1;
		}
		.mc-nav-toggle i {
			display: block;
			height: 2px;
			background: var(--ink);
			border-radius: 2px;
			transition: transform 0.25s ease, opacity 0.2s ease, width 0.2s ease;
		}
		.mc-nav-toggle i:nth-child(1) { width: 22px; }
		.mc-nav-toggle i:nth-child(2) { width: 14px; }
		.mc-nav-toggle i:nth-child(3) { width: 18px; }
		body.mc-ds.nav-open .mc-nav-toggle i:nth-child(1) {
			width: 22px;
			transform: translateY(7px) rotate(45deg);
		}
		body.mc-ds.nav-open .mc-nav-toggle i:nth-child(2) {
			opacity: 0;
		}
		body.mc-ds.nav-open .mc-nav-toggle i:nth-child(3) {
			width: 22px;
			transform: translateY(-7px) rotate(-45deg);
		}

		/* Sağdan kayan menü */
		.nav-backdrop {
			position: fixed;
			inset: 0;
			z-index: 40;
			background: rgba(66, 66, 66, 0.28);
			opacity: 0;
			pointer-events: none;
			transition: opacity 0.28s ease;
		}
		body.mc-ds.nav-open .nav-backdrop {
			opacity: 1;
			pointer-events: auto;
		}
		.nav-drawer {
			position: fixed;
			top: 0;
			right: 0;
			z-index: 50;
			width: min(86vw, 360px);
			height: 100%;
			height: 100dvh;
			margin: 0;
			border: 0;
			background: var(--glass-grad);
			backdrop-filter: blur(28px) saturate(1.15);
			-webkit-backdrop-filter: blur(28px) saturate(1.15);
			box-shadow: -12px 0 40px rgba(66, 66, 66, 0.12);
			transform: translateX(105%);
			transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
			display: flex;
			flex-direction: column;
			padding: 28px 24px;
			overflow-y: auto;
			box-sizing: border-box;
		}
		body.mc-ds.nav-open .nav-drawer {
			transform: translateX(0);
		}
		.nav-drawer__top {
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: 12px;
			min-height: 52px;
			margin-bottom: 24px;
			padding: 0 0 16px;
			border-bottom: 1px solid rgba(229, 235, 237, 0.9);
		}
		.nav-drawer__brand {
			display: inline-flex;
			align-items: center;
			justify-content: flex-start;
			flex-shrink: 1;
			min-width: 0;
			color: var(--ink);
			text-decoration: none;
			line-height: 0;
			border-radius: 27%;
			overflow: hidden;
		}
		.nav-drawer__brand img {
			height: 52px;
			width: auto;
			max-width: min(200px, 70%);
			display: block;
			object-fit: contain;
			border-radius: 27%;
			box-shadow: var(--shadow-soft);
		}
		.nav-drawer__close {
			flex-shrink: 0;
			width: 40px;
			height: 40px;
			border-radius: var(--r-btn);
			background: #fff;
			box-shadow: var(--shadow-soft);
			display: grid;
			place-items: center;
			cursor: pointer;
			color: var(--ink);
			border: 0;
			padding: 0;
		}
		.nav-drawer__list {
			list-style: none;
			display: flex;
			flex-direction: column;
			gap: 10px;
			flex: 1;
			margin: 0;
			padding: 0;
		}
		.nav-drawer__list a {
			display: flex;
			align-items: center;
			justify-content: flex-start;
			text-align: left;
			min-height: 48px;
			padding: 12px 16px;
			border-radius: var(--r-btn);
			background: #fff;
			box-shadow: var(--shadow-soft);
			font-size: var(--text-sm);
			font-weight: 600;
			color: var(--ink);
			transition: box-shadow 0.15s ease, transform 0.15s ease;
		}
		.nav-drawer__list a:hover {
			box-shadow: var(--shadow);
			transform: translateY(-1px);
		}
		.nav-drawer__list a span {
			font-size: var(--text-xs);
			font-weight: 500;
			color: var(--muted);
		}
		.nav-drawer__foot {
			margin-top: 24px;
			padding-top: 18px;
			border-top: 1px solid rgba(229, 235, 237, 0.9);
		}
		.nav-drawer__stores {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 10px;
		}
		.nav-drawer__store {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 8px;
			min-height: 48px;
			padding: 10px 12px;
			border-radius: var(--r-btn);
			background: #fff;
			color: var(--ink);
			font-size: 12px;
			font-weight: 700;
			letter-spacing: 0.02em;
			text-decoration: none;
			box-shadow: var(--shadow-soft);
			transition: box-shadow 0.15s ease, transform 0.15s ease;
		}
		.nav-drawer__store:hover {
			box-shadow: var(--shadow);
			transform: translateY(-1px);
		}
		.nav-drawer__store iconify-icon {
			display: block;
			flex-shrink: 0;
			animation: mc-store-bob 2.2s ease-in-out infinite;
		}
		.nav-drawer__store:nth-child(2) iconify-icon {
			animation-delay: 0.35s;
		}
		@keyframes mc-store-bob {
			0%, 100% { transform: translateY(0); }
			50% { transform: translateY(-2px); }
		}
		.nav-drawer__cta {
			display: flex;
			align-items: center;
			justify-content: center;
			height: 48px;
			border-radius: var(--r-btn);
			background: #fff;
			color: var(--ink);
			font-size: var(--text-sm);
			font-weight: 700;
			box-shadow: var(--shadow-soft);
		}
		.nav-drawer__cta:hover {
			box-shadow: var(--shadow);
		}
		.nav-drawer__note {
			margin-top: 12px;
			text-align: center;
			font-size: var(--text-xs);
			color: var(--muted);
		}
		body.mc-ds.nav-open {
			overflow: hidden;
		}

		.mc-brand {
			justify-self: center;
			display: flex;
			align-items: center;
			height: auto;
		}
		.mc-brand img {
			height: 52px;
			width: auto;
			display: block;
			border-radius: 10px;
			box-shadow: var(--shadow-soft);
		}

		.header-cta {
			justify-self: end;
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 8px;
			height: 40px;
			padding: 0 16px;
			border-radius: var(--r-btn);
			background: #fff;
			color: var(--ink);
			font-size: 12px;
			font-weight: 700;
			letter-spacing: 0.91px;
			white-space: nowrap;
			cursor: pointer;
			box-shadow: var(--shadow-soft);
			min-width: 64px;
			text-decoration: none;
			border: 0;
		}
		.header-cta:hover {
			background: #fff;
			box-shadow: var(--shadow);
		}
		.header-cta__short { display: none; }

		.header-lang {
			justify-self: center;
			position: relative;
		}
		.header-lang.header-cta,
		.header-lang__trigger {
			gap: 0;
			min-width: 40px;
			width: 40px;
			padding: 0;
		}
		.header-lang--icon.header-cta {
			min-width: 40px;
			width: 40px;
			padding: 0;
		}
		.header-lang iconify-icon {
			display: block;
			flex-shrink: 0;
			color: var(--ink);
		}
		.header-lang__code {
			display: none;
		}
		.header-lang--menu {
			justify-self: end;
		}
		.header-lang--menu > summary {
			list-style: none;
		}
		.header-lang--menu > summary::-webkit-details-marker {
			display: none;
		}
		.header-lang__list {
			position: absolute;
			top: calc(100% + 8px);
			right: 0;
			z-index: 40;
			min-width: 148px;
			margin: 0;
			padding: 8px;
			list-style: none;
			border-radius: 14px;
			background: #fff;
			box-shadow: var(--shadow);
		}
		.header-lang__list a {
			display: block;
			padding: 10px 12px;
			border-radius: 10px;
			color: var(--ink);
			font-size: 13px;
			font-weight: 600;
			text-decoration: none;
		}
		.header-lang__list a:hover,
		.header-lang__list a.is-current {
			background: var(--field);
		}
		.header-lang--shortcode {
			justify-self: end;
			display: flex;
			align-items: center;
			min-height: 40px;
		}
		.header-lang--shortcode .trp-language-switcher {
			position: static;
			margin: 0;
		}
		/* Icon-only: hide TranslatePress / shortcode language labels in the topbar. */
		.header-lang--shortcode .trp-language-switcher > div,
		.header-lang--shortcode .trp-ls-shortcode-current-language,
		.header-lang--shortcode .trp-ls-shortcode-language,
		.mc-topbar .header-lang span:not([class]),
		.mc-topbar .trp-language-switcher span {
			font-size: 0;
			line-height: 0;
			color: transparent;
		}
		.header-lang--shortcode img,
		.header-lang--shortcode iconify-icon,
		.mc-topbar .trp-language-switcher img {
			font-size: initial;
			line-height: normal;
			color: inherit;
		}

		/* ========== HERO — üstte cam kenar, alta doğru açılır ========== */
		.hero {
			position: relative;
			isolation: isolate;
			padding: 28px 24px 40px;
			border-radius: var(--r-card) var(--r-card) 0 0;
			overflow: hidden;
		}
		.hero::before {
			content: "";
			position: absolute;
			inset: 0;
			z-index: -2;
			border-radius: inherit;
			background:
				radial-gradient(ellipse 72% 78% at 6% 12%, rgba(201, 187, 90, 0.28) 0%, transparent 56%),
				radial-gradient(ellipse 68% 72% at 94% 8%, rgba(120, 176, 186, 0.34) 0%, transparent 58%),
				radial-gradient(ellipse 58% 50% at 48% 70%, rgba(168, 198, 204, 0.32) 0%, transparent 56%),
				radial-gradient(circle 100px at 82% 48%, rgba(95, 143, 150, 0.18) 0%, transparent 70%),
				radial-gradient(circle 70px at 22% 62%, rgba(229, 235, 237, 0.85) 0%, transparent 68%),
				linear-gradient(180deg, #E5EBED 0%, #F3F8F9 42%, transparent 100%);
			-webkit-mask-image: linear-gradient(180deg, #000 0%, #000 48%, transparent 100%);
			mask-image: linear-gradient(180deg, #000 0%, #000 48%, transparent 100%);
		}
		.hero::after {
			content: "";
			position: absolute;
			inset: 0;
			z-index: -1;
			border-radius: inherit;
			background: linear-gradient(
				180deg,
				rgba(255, 255, 255, 0.5) 0%,
				rgba(255, 255, 255, 0.72) 38%,
				rgba(255, 255, 255, 0.28) 72%,
				transparent 100%
			);
			backdrop-filter: blur(23px) saturate(1.15);
			-webkit-backdrop-filter: blur(23px) saturate(1.15);
			/* Üst + sol/sağ cam kenar; alta mask ile erir */
			box-shadow:
				inset 0 1px 0 rgba(255, 255, 255, 0.9),
				inset 1px 0 0 rgba(255, 255, 255, 0.65),
				inset -1px 0 0 rgba(255, 255, 255, 0.65);
			-webkit-mask-image: linear-gradient(180deg, #000 0%, #000 42%, transparent 100%);
			mask-image: linear-gradient(180deg, #000 0%, #000 42%, transparent 100%);
		}
		.hero h1 {
			position: relative;
			font-size: clamp(1.75rem, 1.2rem + 1.5vw, var(--text-2xl)); /* 28–32px */
			line-height: 1.15;
			letter-spacing: -0.03em;
			font-weight: 800;
			color: var(--ink);
			max-width: 20ch;
		}
		.hero__lead {
			position: relative;
			margin-top: 10px;
			font-size: var(--text-sm); /* 14px */
			font-weight: 400;
			line-height: 1.5;
			color: var(--muted);
			max-width: 48ch;
		}
		.hero .mc-search,
		.hero .mc-chips {
			position: relative;
		}

		/* Search — birebir field dili (HTML DS: 560px geniş ekran, rail full ≤1024) */
		.mc-search {
			margin-top: 22px;
			width: 100%;
			max-width: 560px;
			height: 47px;
			display: flex;
			align-items: center;
			padding: 0 6px 0 22px;
			background: var(--field);
			border-radius: var(--r-input);
			box-shadow: var(--shadow-soft);
			box-sizing: border-box;
		}
		.mc-search input {
			flex: 1;
			min-width: 0;
			height: 100%;
			margin: 0;
			padding: 0;
			border: 0;
			border-radius: 0;
			box-shadow: none;
			outline: none;
			font-size: var(--text-base); /* 16px — iOS zoom önleme */
			font-weight: 400;
			color: var(--ink);
			background: transparent;
			-webkit-appearance: none;
			appearance: none;
		}
		.mc-search input::placeholder { color: var(--muted); }
		.mc-search button {
			width: 40px;
			height: 40px;
			display: grid;
			place-items: center;
			cursor: pointer;
			color: var(--ink);
			border-radius: 50%;
		}

		.mc-chips {
			display: flex;
			flex-wrap: wrap;
			gap: 8px;
			margin-top: 16px;
		}
		.mc-chip {
			height: 36px;
			padding: 0 14px;
			border-radius: var(--r-btn);
			background: #fff;
			font-size: var(--text-sm);
			font-weight: 600;
			display: inline-flex;
			align-items: center;
			color: var(--ink);
		}
		.mc-chip:hover { box-shadow: var(--shadow); }

		/* ========== SECTIONS ========== */
		.sec { padding: 40px 0 8px; }
		.sec__head {
			display: flex;
			align-items: baseline;
			justify-content: space-between;
			margin-bottom: 18px;
		}
		.sec__title {
			margin: 0;
			font-size: var(--text-xl); /* 24px */
			font-weight: 800;
			letter-spacing: -0.025em;
		}
		.sec__more {
			font-size: var(--text-sm);
			font-weight: 600;
			color: var(--muted);
		}
		.sec__more:hover { color: var(--ink); }

		/* Near By cards — glassmorphism dock */
		.nearby-grid {
			display: grid;
			grid-template-columns: repeat(4, minmax(0, 1fr));
			gap: 18px;
		}
		.nearby {
			position: relative;
			aspect-ratio: 3 / 4;
			min-height: 300px;
			border-radius: var(--r-thumb);
			overflow: hidden;
			box-shadow: var(--shadow);
			background: #2a2a2a;
		}
		.nearby > img {
			position: absolute;
			inset: 0;
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
		/* Glass dock — Figma: blur 23 + white 44%→100% */
		.nearby__dock {
			position: absolute;
			left: 14px;
			right: 14px;
			bottom: 14px;
			z-index: 2;
			min-height: 78px;
			padding: 14px 16px;
			border-radius: var(--r-dock);
			background: var(--glass-grad);
			backdrop-filter: blur(23px);
			-webkit-backdrop-filter: blur(23px);
			border: none;
			box-shadow: 0 8px 20px rgba(66, 66, 66, 0.12);
		}
		.nearby__top {
			display: flex;
			align-items: flex-start;
			justify-content: space-between;
			gap: 8px;
			margin-bottom: 12px;
		}
		.nearby__name {
			font-size: var(--text-base);
			font-weight: 700;
			color: #2d2d2d;
			line-height: 1.15;
			letter-spacing: -0.02em;
			overflow: hidden;
			display: -webkit-box;
			-webkit-box-orient: vertical;
			-webkit-line-clamp: 2;
			text-overflow: ellipsis;
		}
		.nearby__rating {
			flex-shrink: 0;
			font-size: var(--text-sm);
			font-weight: 700;
			color: #000;
			opacity: 0.7;
			white-space: nowrap;
			line-height: 1;
		}
		.nearby__bot {
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: 8px;
		}
		.nearby__meta {
			display: inline-flex;
			align-items: center;
			gap: 6px;
			font-size: var(--text-xs);
			font-weight: 500;
			color: #6b7371;
		}
		.nearby__cta {
			height: 28px;
			padding: 4px 13px;
			border-radius: var(--r-btn);
			background: #fff;
			font-size: var(--text-xs);
			font-weight: 700;
			box-shadow: 0 2px 8px rgba(66, 66, 66, 0.1);
			cursor: pointer;
			white-space: nowrap;
			display: inline-flex;
			align-items: center;
			justify-content: center;
			box-sizing: border-box;
		}
		.nearby__cta span {
			color: #000;
		}

		/* Şehirleri keşfet — popüler kart dili, glass yok */
		.city-grid {
			display: grid;
			grid-template-columns: repeat(5, minmax(0, 1fr));
			gap: 18px;
		}
		.city-grid--all {
			grid-template-columns: repeat(4, minmax(0, 1fr));
		}
		.city-card {
			position: relative;
			display: block;
			aspect-ratio: 3 / 4;
			min-height: 260px;
			border-radius: var(--r-thumb);
			overflow: hidden;
			box-shadow: var(--shadow);
			background: #2a2a2a;
		}
		.city-card > img {
			position: absolute;
			inset: 0;
			width: 100%;
			height: 100%;
			object-fit: cover;
			transition: transform 0.35s ease;
		}
		.city-card:hover > img {
			transform: scale(1.04);
		}
		.city-card__shade {
			position: absolute;
			inset: 0;
			z-index: 1;
			pointer-events: none;
			background: linear-gradient(
				180deg,
				transparent 42%,
				rgba(0, 0, 0, 0.55) 100%
			);
		}
		.city-card__meta {
			position: absolute;
			left: 16px;
			right: 16px;
			bottom: 16px;
			z-index: 2;
		}
		.city-card__name {
			display: block;
			font-size: var(--text-base);
			font-weight: 700;
			color: #fff;
			line-height: 1.2;
			letter-spacing: -0.02em;
		}
		.city-card__count {
			display: block;
			margin-top: 4px;
			font-size: var(--text-sm);
			font-weight: 400;
			color: rgba(255, 255, 255, 0.88);
			line-height: 1.3;
		}

		/* First Floor — yatay liste kartları */
		.list {
			display: flex;
			flex-direction: column;
			gap: 12px;
			max-width: 720px;
		}
		.list--wide {
			max-width: none;
			display: grid;
			grid-template-columns: repeat(2, minmax(0, 1fr));
			gap: 12px;
		}
		.row {
			display: flex;
			align-items: center;
			gap: 16px;
			padding: 12px 14px 12px 12px;
			background: var(--glass-grad);
			backdrop-filter: blur(23px);
			-webkit-backdrop-filter: blur(23px);
			border-radius: var(--r-list);
			box-shadow: var(--shadow-soft);
			transition: box-shadow 0.15s ease, transform 0.15s ease;
		}
		.row:hover {
			box-shadow: var(--shadow);
			transform: translateY(-1px);
		}
		.row__thumb {
			width: 64px;
			height: 64px;
			border-radius: var(--r-thumb);
			object-fit: cover;
			flex-shrink: 0;
			box-shadow: 0 8px 22px rgba(20, 30, 28, 0.22);
			background: var(--field);
		}
		.row__text {
			flex: 1;
			min-width: 0;
			display: flex;
			flex-direction: column;
			align-items: flex-start;
			gap: 4px;
		}
		.row__title {
			display: block;
			font-size: var(--text-base);
			font-weight: 700;
			color: var(--ink);
			line-height: 1.2;
		}
		.row__sub {
			display: block;
			margin-top: 0;
			font-size: var(--text-sm);
			font-weight: 400;
			color: var(--muted);
		}
		.row__go {
			width: 38px;
			height: 38px;
			border-radius: var(--r-go);
			background: var(--field);
			display: grid;
			place-items: center;
			flex-shrink: 0;
			color: var(--ink);
		}

		/* Rehberler — üstteki MüzeKart row__thumb dili: radius + shadow görselde */
		.mc-guides {
			display: grid;
			grid-template-columns: repeat(4, minmax(0, 1fr));
			gap: 16px;
		}
		.mc-guide {
			background: var(--glass-grad);
			backdrop-filter: blur(23px);
			-webkit-backdrop-filter: blur(23px);
			border-radius: var(--r-list);
			overflow: visible;
			box-shadow: var(--shadow-soft);
		}
		.mc-guide__media {
			aspect-ratio: 4 / 3;
			overflow: hidden;
			background: var(--field);
			border-radius: var(--r-thumb);
			box-shadow: 0 8px 22px rgba(20, 30, 28, 0.22);
			position: relative;
			margin: 10px;
		}
		.mc-guide__media img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			display: block;
		}
		.mc-guide__body {
			padding: 0px 14px 16px;
			position: relative;
		}
		.mc-guide__eye {
			font-size: var(--text-xs);
			font-weight: 600;
			letter-spacing: 0.05em;
			text-transform: uppercase;
			color: var(--muted);
			margin-bottom: 6px;
		}
		.mc-guide__name {
			font-size: var(--text-sm);
			font-weight: 700;
			line-height: 1.35;
		}
		.mc-guide__date {
			display: block;
			margin-top: 8px;
			font-size: var(--text-xs);
			font-weight: 500;
			color: var(--muted);
		}

		.more-btn-wrap {
			text-align: center;
			margin-top: 22px;
			padding-bottom: 8px;
		}
		.more-btn {
			display: inline-flex;
			align-items: center;
			height: 44px;
			padding: 0 20px;
			border-radius: var(--r-btn);
			background: #fff;
			box-shadow: var(--shadow-soft);
			font-size: var(--text-sm);
			font-weight: 600;
			color: var(--ink);
		}

		/* App download CTA */
		.app-cta {
			position: relative;
			isolation: isolate;
			margin: 40px 0 28px;
			padding: 36px 28px;
			border-radius: var(--r-card);
			overflow: hidden;
			text-align: center;
			box-shadow: var(--shadow);
		}
		.app-cta::before {
			content: "";
			position: absolute;
			inset: 0;
			z-index: -2;
			background:
				radial-gradient(ellipse 70% 80% at 12% 20%, rgba(201, 187, 90, 0.22) 0%, transparent 55%),
				radial-gradient(ellipse 65% 70% at 90% 15%, rgba(120, 176, 186, 0.28) 0%, transparent 58%),
				radial-gradient(ellipse 55% 60% at 50% 100%, rgba(168, 198, 204, 0.35) 0%, transparent 55%),
				linear-gradient(145deg, #E5EBED 0%, #F3F8F9 50%, #e8f0f2 100%);
		}
		.app-cta::after {
			content: "";
			position: absolute;
			inset: 0;
			z-index: -1;
			background: linear-gradient(
				180deg,
				rgba(255, 255, 255, 0.44) 0%,
				rgba(255, 255, 255, 0.78) 100%
			);
			backdrop-filter: blur(23px) saturate(1.15);
			-webkit-backdrop-filter: blur(23px) saturate(1.15);
		}
		.app-cta__logo {
			display: flex;
			justify-content: center;
			margin-bottom: 14px;
		}
		.app-cta__logo img {
			height: 40px;
			width: auto;
			display: block;
			border-radius: 10px;
			box-shadow: var(--shadow-soft);
		}
		.app-cta__title {
			font-size: clamp(1.5rem, 2.6vw, 2rem);
			font-weight: 800;
			letter-spacing: -0.03em;
			color: var(--ink);
			line-height: 1.15;
			margin-bottom: 14px;
		}
		.app-cta__lead {
			font-size: clamp(1.05rem, 1.8vw, 1.25rem);
			font-weight: 700;
			color: var(--ink);
			line-height: 1.35;
			max-width: 28ch;
			margin: 0 auto 10px;
		}
		.app-cta__sub {
			font-size: var(--text-sm);
			font-weight: 400;
			color: var(--muted);
			line-height: 1.55;
			max-width: 42ch;
			margin: 0 auto 22px;
		}
		.app-cta__stores {
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			gap: 10px;
		}
		.app-cta__store {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 8px;
			height: 44px;
			padding: 0 18px;
			border-radius: var(--r-btn);
			background: #fff;
			box-shadow: var(--shadow-soft);
			font-size: var(--text-sm);
			font-weight: 700;
			color: var(--ink);
			transition: box-shadow 0.15s ease, transform 0.15s ease;
		}
		.app-cta__store:hover {
			box-shadow: var(--shadow);
			transform: translateY(-1px);
		}
		.app-cta__store svg {
			flex-shrink: 0;
		}

		/* ========== FOOTER — header dili, glass + beyaz yüzeyler ========== */
		.mc-site-footer {
			position: relative;
			margin-top: 8px;
			padding: 0 0 28px;
		}
		.site-footer__shell {
			width: min(100% - 48px, var(--rail));
			margin-inline: auto;
			padding: 32px 28px 22px;
			border-radius: var(--r-card);
			background: var(--glass-grad);
			backdrop-filter: blur(28px) saturate(1.15);
			-webkit-backdrop-filter: blur(28px) saturate(1.15);
			border: 1px solid rgba(255, 255, 255, 0.72);
			box-shadow: var(--shadow);
		}
		.site-footer__top {
			display: grid;
			grid-template-columns: 1.4fr 1fr 1fr;
			gap: 32px 28px;
			padding-bottom: 28px;
			border-bottom: 1px solid rgba(229, 235, 237, 0.9);
		}
		.site-footer__brand {
			max-width: 320px;
		}
		.site-footer__logo {
			display: inline-flex;
			align-items: center;
			margin-bottom: 14px;
		}
		.site-footer__logo img {
			height: 44px;
			width: auto;
			border-radius: 10px;
			box-shadow: var(--shadow-soft);
		}
		.site-footer__tagline {
			font-size: var(--text-sm);
			font-weight: 400;
			line-height: 1.55;
			color: var(--muted);
			margin-bottom: 18px;
		}
		.site-footer__stores {
			display: flex;
			flex-wrap: wrap;
			gap: 10px;
		}
		.site-footer__store {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 8px;
			height: 40px;
			padding: 0 16px;
			border-radius: var(--r-btn);
			background: #fff;
			box-shadow: var(--shadow-soft);
			font-size: var(--text-xs);
			font-weight: 700;
			color: var(--ink);
			transition: box-shadow 0.15s ease, transform 0.15s ease;
		}
		.site-footer__store iconify-icon {
			display: block;
			flex-shrink: 0;
		}
		.site-footer__store:hover {
			box-shadow: var(--shadow);
			transform: translateY(-1px);
		}
		.site-footer__heading {
			font-size: var(--text-xs);
			font-weight: 700;
			letter-spacing: 0.06em;
			text-transform: uppercase;
			color: var(--muted);
			margin: 0 0 14px;
		}
		.site-footer__col ul {
			list-style: none;
			display: flex;
			flex-direction: column;
			gap: 10px;
			margin: 0;
			padding: 0;
		}
		.site-footer__col a {
			display: block;
			padding: 10px 14px;
			border-radius: var(--r-btn);
			background: #fff;
			box-shadow: var(--shadow-soft);
			font-size: var(--text-sm);
			font-weight: 600;
			color: var(--ink);
			transition: box-shadow 0.15s ease, transform 0.15s ease;
		}
		.site-footer__col a:hover {
			box-shadow: var(--shadow);
			transform: translateY(-1px);
		}
		.site-footer__bottom {
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: 12px;
			flex-wrap: wrap;
			padding-top: 18px;
		}
		.site-footer__copy {
			font-size: var(--text-xs);
			font-weight: 600;
			color: var(--ink);
		}
		.site-footer__note {
			font-size: var(--text-xs);
			font-weight: 500;
			color: var(--muted);
		}

		.fab {
			position: fixed;
			right: 28px;
			bottom: 28px;
			width: 58px;
			height: 58px;
			border-radius: 50%;
			background: var(--ink);
			color: #fff;
			display: grid;
			place-items: center;
			box-shadow: 0 8px 20px rgba(66, 66, 66, 0.28);
			cursor: pointer;
			z-index: 20;
		}

		@media (max-width: 1024px) {
			.nearby-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
			.city-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
			.city-grid--all { grid-template-columns: repeat(3, minmax(0, 1fr)); }
			.site-footer__top {
				grid-template-columns: 1fr 1fr;
			}
			.site-footer__brand {
				grid-column: 1 / -1;
				max-width: none;
			}
			.list--wide { grid-template-columns: 1fr; }
			.mc-guides { grid-template-columns: repeat(2, minmax(0, 1fr)); }
			.nearby { min-height: 280px; }
			.city-card { min-height: 220px; }
			.mc-search {
				width: 100%;
				max-width: none;
			}
		}

		@media (max-width: 768px) {
			.mc-topbar,
			.rail {
				width: min(100% - 28px, var(--rail));
			}
			.mc-topbar {
				gap: 10px;
				padding: 14px 0 6px;
			}
			.mc-site-header.is-scrolled .mc-topbar {
				padding: 10px 0;
			}
			.mc-brand {
				height: auto;
			}
			.mc-brand img {
				height: 52px;
				border-radius: 10px;
				box-shadow: var(--shadow-soft);
			}
			.header-cta {
				padding: 0 12px;
				font-size: 11px;
				min-width: 0;
				letter-spacing: 0.04em;
				height: 36px;
				gap: 6px;
			}
			.header-lang.header-cta,
			.header-lang__trigger,
			.header-lang--icon.header-cta {
				min-width: 36px;
				width: 36px;
				padding: 0;
				height: 36px;
				gap: 0;
			}
			.header-cta__full { display: none; }
			.header-cta__short { display: inline; }
			.header-lang__code { display: none; }

			.hero {
				padding: 20px 18px 32px;
			}
			.hero h1 {
				font-size: 1.6rem;
				max-width: none;
			}
			.hero__lead {
				font-size: 13px;
				max-width: none;
			}
			.mc-search {
				margin-top: 16px;
				width: 100%;
				max-width: none;
				height: 47px;
				padding: 0 4px 0 16px;
			}
			.mc-search button {
				width: 38px;
				height: 38px;
			}
			.mc-chips {
				flex-wrap: nowrap;
				overflow-x: auto;
				-webkit-overflow-scrolling: touch;
				scrollbar-width: none;
				margin-top: 12px;
				gap: 8px;
			}
			.mc-chips::-webkit-scrollbar { display: none; }
			.mc-chip {
				flex-shrink: 0;
				height: 34px;
				padding: 0 12px;
				font-size: 12px;
			}

			.sec {
				padding: 28px 0 4px;
			}
			.sec__head {
				margin-bottom: 14px;
				gap: 10px;
				align-items: center;
			}
			.sec__title {
				font-size: 1.25rem;
			}
			.sec__more {
				font-size: 13px;
				white-space: nowrap;
			}

			/* Popüler: 2×2 grid */
			.nearby-grid {
				display: grid;
				grid-template-columns: repeat(2, minmax(0, 1fr));
				gap: 12px;
				margin-inline: 0;
				padding: 0;
				overflow: visible;
			}
			.nearby {
				flex: none;
				width: auto;
				min-height: 0;
				aspect-ratio: 3 / 4;
			}
			.nearby__dock {
				left: 10px;
				right: 10px;
				bottom: 10px;
				min-height: 0;
				padding: 10px 12px;
			}
			.nearby__name { font-size: 13px; }
			.nearby__top { margin-bottom: 8px; }
			.nearby__rating { font-size: 12px; }
			.nearby__cta {
				height: 28px;
				padding: 4px 13px;
				font-size: 10px;
			}
			.nearby__cta span {
				font-size: 10px;
			}

			/* Şehirleri keşfet: 2 kolon (anasayfa 4 kart; /sehirler/ hepsi) */
			.city-grid {
				grid-template-columns: repeat(2, minmax(0, 1fr));
				gap: 12px;
			}
			.city-grid:not(.city-grid--all) > .city-card:nth-child(n + 5) {
				display: none;
			}
			.city-card {
				min-height: 0;
				aspect-ratio: 3 / 4;
			}
			.city-card__meta {
				left: 12px;
				right: 12px;
				bottom: 12px;
			}
			.city-card__name { font-size: 14px; }
			.city-card__count { font-size: 12px; }

			.row {
				padding: 10px 12px 10px 10px;
				gap: 12px;
			}
			.list--wide {
				grid-template-columns: 1fr;
				gap: 10px;
			}
			.row__thumb {
				width: 56px;
				height: 56px;
			}
			.row__go {
				width: 34px;
				height: 34px;
			}

			.mc-guides {
				grid-template-columns: repeat(2, minmax(0, 1fr));
				gap: 12px;
			}

			.more-btn-wrap {
				padding-bottom: 8px;
			}
			.app-cta {
				margin: 28px 0 24px;
				padding: 24px 18px;
			}
			.app-cta__logo img {
				height: 36px;
			}
			.app-cta__lead {
				max-width: none;
			}
			.app-cta__sub {
				max-width: none;
			}
			.mc-site-footer {
				padding-bottom: 20px;
			}
			.site-footer__shell {
				width: min(100% - 32px, var(--rail));
				padding: 24px 18px 18px;
				border-radius: 16px;
			}
			.site-footer__top {
				grid-template-columns: 1fr;
				gap: 24px;
				padding-bottom: 22px;
			}
			.site-footer__brand {
				max-width: none;
			}
			.site-footer__col ul {
				display: flex;
				flex-direction: column;
				gap: 8px;
				margin: 0;
				padding: 0;
			}
			.site-footer__col a {
				padding: 10px 12px;
				font-size: 13px;
			}

			.fab {
				right: 16px;
				bottom: max(16px, env(safe-area-inset-bottom));
				width: 52px;
				height: 52px;
			}
		}

		@media (max-width: 400px) {
			.mc-topbar,
			.rail {
				width: min(100% - 20px, var(--rail));
			}
			.header-cta {
				padding: 0 12px;
				font-size: 11px;
				min-width: 0;
				letter-spacing: 0.04em;
			}
			.header-lang.header-cta,
			.header-lang__trigger,
			.header-lang--icon.header-cta {
				min-width: 36px;
				width: 36px;
				padding: 0;
			}
			.city-grid { gap: 10px; }
		}
	

/* Hide theme chrome when MuseConnect DS chrome is active */
body.mc-ds.mc-ds-chrome .site-header-primary,
body.mc-ds.mc-ds-chrome .main-header-bar,
body.mc-ds.mc-ds-chrome .ast-primary-header-bar,
body.mc-ds.mc-ds-chrome #masthead,
body.mc-ds.mc-ds-chrome header.site-header,
body.mc-ds.mc-ds-chrome .ast-above-header-bar,
body.mc-ds.mc-ds-chrome .ast-below-header-bar,
body.mc-ds.mc-ds-chrome footer#colophon,
body.mc-ds.mc-ds-chrome .site-footer:not(.mc-site-footer),
body.mc-ds.mc-ds-chrome footer.site-footer,
body.mc-ds.mc-ds-chrome .ast-footer-overlay,
body.mc-ds.mc-ds-chrome .ast-small-footer {
  display: none;
}
body.mc-ds .mc-site-header { display: block; }
body.mc-ds .mc-site-footer { display: block; }

/* --- WP glue --- */
/* Astra CSS dequeued — restore WP a11y helpers that lived in theme CSS */
.screen-reader-text,
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}
.skip-link,
.skip-link.screen-reader-text {
	position: absolute;
	top: -100px;
	left: 0;
	z-index: 100000;
	padding: 10px 16px;
	margin: 0;
	width: auto;
	height: auto;
	overflow: visible;
	clip: auto;
	clip-path: none;
	white-space: nowrap;
	background: #fff;
	color: var(--ink, #424242);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 0 0 10px 0;
	box-shadow: var(--shadow-soft, 0 6px 18px rgba(66, 66, 66, 0.06));
}
.skip-link:focus,
.skip-link.screen-reader-text:focus {
	top: 0;
	left: 0;
	clip: auto;
	clip-path: none;
	width: auto;
	height: auto;
}

a.nearby { color: inherit; text-decoration: none; display: block; }
.nearby-grid--listing {
	margin-bottom: 28px;
}
/* Listing pages — center content rail (Astra container CSS removed) */
body.mc-ds.mc-wide-listing .mc-listing-bleed {
	width: min(100% - 48px, var(--rail));
	max-width: var(--rail);
	margin-inline: auto;
	box-sizing: border-box;
	padding-top: 4px;
}
@media (max-width: 768px) {
	body.mc-ds.mc-wide-listing .mc-listing-bleed {
		width: min(100% - 28px, var(--rail));
	}
}
a.fab {
	display: grid;
	place-items: center;
	color: #fff;
	text-decoration: none;
}
a.fab iconify-icon { color: #fff; }
.mc-app-cta-footer.rail {
	width: min(100% - 48px, var(--rail));
	margin-inline: auto;
	margin-bottom: 8px;
}
.row__thumb:not(img) {
	display: block;
	background: #E5EBED;
}
.mc-hero-suggest {
	border-radius: 12px;
	box-shadow: var(--shadow);
	background: #fff;
	overflow: hidden;
	box-sizing: border-box;
}
.mc-hero-suggest a,
.mc-hero-suggest__row {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 12px 14px;
	text-decoration: none;
	color: #171717;
	border-bottom: 1px solid #f0f0f0;
	background: #fff;
	box-sizing: border-box;
	max-width: 100%;
}
.mc-hero-suggest__row:last-child {
	border-bottom: none;
}
.mc-hero-suggest__thumb {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: #e5ebed;
	flex-shrink: 0;
	display: block;
}
.mc-hero-suggest__thumb--city {
	background: #e8f1f2;
	position: relative;
}
.mc-hero-suggest__thumb--city::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 46%;
	width: 10px;
	height: 10px;
	border: 2px solid #5f8f96;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	box-sizing: border-box;
}
.mc-hero-suggest__thumb--city::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 58%;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 9px solid #5f8f96;
	transform: translateX(-50%);
}
.mc-hero-suggest__text {
	min-width: 0;
}
.mc-hero-suggest__title {
	display: block;
	font-size: 14px;
	font-weight: 650;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.mc-hero-suggest__meta {
	display: block;
	font-size: 12px;
	color: #737373;
	margin-top: 2px;
}
.mc-hero-suggest__row--city .mc-hero-suggest__title {
	font-weight: 700;
}
body.mc-ds .entry-content > .rail,
body.mc-ds .entry-content > section.rail {
	margin-top: 28px;
}
body.mc-ds .entry-content > .rail.hero,
body.mc-ds .entry-content > section.rail.hero {
	margin-top: 8px;
}
/* Astra / Spectra shells — match HTML DS full-bleed */
body.mc-ds #content,
body.mc-ds .site-content,
body.mc-ds .entry-content,
body.mc-ds .ast-container,
body.mc-ds .site-content .ast-container,
body.mc-ds .ast-plain-container .site-content > .ast-container {
	max-width: none;
	width: 100%;
	padding-left: 0;
	padding-right: 0;
	margin-left: 0;
	margin-right: 0;
}
body.mc-ds .ast-separate-container .ast-article-single,
body.mc-ds .ast-separate-container .entry-content,
body.mc-ds.ast-separate-container .ast-article-post {
	background: transparent;
	box-shadow: none;
	padding: 0;
	border: 0;
}
body.mc-ds .entry-header,
body.mc-ds .page-header,
body.mc-ds .ast-archive-description,
body.mc-ds .ast-breadcrumbs-wrapper,
body.mc-ds #secondary,
body.mc-ds .widget-area,
body.mc-ds .ast-builder-menu,
body.mc-ds .main-header-menu,
body.mc-ds .ast-mobile-header-wrap,
body.mc-ds .ast-desktop-header-content {
	display: none;
}
body.mc-ds .site-main,
body.mc-ds #primary {
	margin: 0;
	padding: 0;
	width: 100%;
	float: none;
}
