/* comparetowhat.com — light theme */
:root {
    --bg: #f8f9fa;
    --bg-elevated: #ffffff;
    --surface: #ffffff;
    --surface-hover: #f1f3f5;
    --text: #1a1a1a;
    --text-secondary: #495057;
    --muted: #868e96;
    --accent: #c41e2a;
    --accent-hover: #a61a24;
    --accent-muted: rgba(196, 30, 42, 0.1);
    --border: #dee2e6;
    --radius: 12px;
    --radius-lg: 16px;
    --shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    --font-sans: 'Outfit', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    margin: 0;
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ----- Ad slots ----- */
.ad-slot { margin: 0; }
.ad-slot--header { padding: 0.5rem 0; text-align: center; min-height: 1px; }
.ad-slot--sidebar_top, .ad-slot--sidebar_bottom { margin-bottom: 1rem; }
.ad-slot--content_bottom { padding: 1rem 0; text-align: center; }
.ad-slot--footer { padding: 1rem 1.25rem; text-align: center; }

/* ----- Header ----- */
.site-header {
    position: relative;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    /* overflow-x sticky üzerinde olmasın: iOS’ta çift kaydırma / üst bant ayrı kayması */
    overflow-x: visible;
    overflow-y: visible;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.875rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}
.header-lang-row {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    background: var(--surface-hover);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius);
}
.header-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 1;
    min-width: 0;
    transition: opacity 0.2s;
}
.logo-link:hover { opacity: 0.85; }
.logo {
    height: 24px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
}
@media (max-width: 480px) {
    .header-inner { padding: 0.6rem 0.75rem; gap: 0.5rem; }
    .logo { height: 32px; max-width: 160px; }
    .lang-flag-img { width: 20px; height: 15px; }
}
.lang-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.lang-flag-link {
    display: inline-block;
    line-height: 0;
    border-radius: 4px;
    transition: opacity 0.2s;
}
.lang-flag-link:hover {
    opacity: 0.9;
}
.lang-flag-coming-soon {
    cursor: default;
    opacity: 0.9;
}
.lang-flag-coming-soon .lang-flag-img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    opacity: 0.85;
}
.lang-flag-img {
    display: block;
    width: 24px;
    height: 18px;
    object-fit: contain;
}

/* ----- Main nav (desktop) ----- */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius);
    transition: background 0.2s;
}
.nav-toggle:hover,
.nav-toggle:active,
.nav-toggle:focus { background: transparent; }
.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: transform 0.25s, opacity 0.25s;
}
.site-header.nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.site-header.nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
.site-header.nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.main-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0 1rem;
}
.main-nav-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0 1.5rem;
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.main-nav-list li {
    list-style: none !important;
    display: inline-flex;
}
.main-nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none !important;
    padding: 0.4rem 0.5rem;
    transition: color 0.2s;
    white-space: nowrap;
}
.main-nav-link:hover,
.main-nav-link.active {
    color: var(--accent);
}
.main-nav-link:hover {
    text-decoration: none !important;
}
.main-nav-link.active { font-weight: 600; }

/* Masaüstü (901px+): menü yatay, madde işareti ve alt çizgi yok (header-nav + header-nav-fix birleşik) */
@media (min-width: 901px) {
    .site-header .main-nav,
    .site-header.nav-open .main-nav {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        flex: 1;
        justify-content: center;
        margin: 0 1rem;
        position: static !important;
        max-height: none !important;
        overflow: visible !important;
        opacity: 1 !important;
    }
    .site-header .main-nav-list,
    .site-header.nav-open .main-nav-list {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        gap: 0 1.5rem;
    }
    .site-header .main-nav-list li,
    .site-header.nav-open .main-nav-list li {
        list-style: none !important;
        display: inline-flex !important;
        border: none !important;
        padding: 0 !important;
    }
    .site-header .main-nav-list li::marker {
        display: none !important;
    }
    .site-header .main-nav-link {
        font-size: 0.9375rem;
        font-weight: 500;
        color: #495057 !important;
        text-decoration: none !important;
        padding: 0.4rem 0.5rem;
        white-space: nowrap;
    }
    .site-header .main-nav-link:hover,
    .site-header .main-nav-link.active {
        color: #c41e2a !important;
        text-decoration: none !important;
    }
}

/* ----- Mobile nav ----- */
@media (max-width: 900px) {
    .header-nav-row {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        width: 100%;
    }
    .header-nav-row .logo-link {
        justify-self: start;
        grid-column: 1;
    }
    .header-nav-row .main-nav {
        grid-column: 1 / -1;
    }
    .header-nav-row .nav-toggle {
        justify-self: end;
        grid-column: 3;
    }
    .nav-toggle { display: flex; }
    .site-header.nav-open { overflow: visible; }
    .main-nav {
        flex: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 101;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        padding: 1rem 1.25rem;
        flex-direction: column;
        align-items: stretch;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s, opacity 0.2s, padding 0.2s;
    }
    .site-header.nav-open .main-nav {
        max-height: 500px;
        overflow: visible;
        opacity: 1;
        z-index: 101;
    }
    .main-nav-list {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        margin: 0;
    }
    .main-nav-list li {
        border-bottom: 1px solid var(--border);
    }
    .main-nav-list li:last-child { border-bottom: none; }
    .main-nav-link {
        display: block;
        padding: 0.75rem 0;
        font-size: 1rem;
    }
}

/* ----- Main layout ----- */
.main { min-height: calc(100vh - 140px); min-width: 0; overflow-x: hidden; }
.page-compare .main { min-height: auto; }

/* ----- Hero (home) ----- */
.hero {
    padding: 3.5rem 1.25rem 3rem;
    text-align: center;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--accent-muted) 0%, transparent 55%);
}
.hero-inner { max-width: 720px; margin: 0 auto; }
.hero .category-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    background: var(--accent-muted);
    border-radius: 999px;
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}
.hero .tagline {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ----- Home landing (/en) ----- */
.home-hero {
    padding-bottom: 3rem;
}
.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin: 1.5rem 0 0;
}
.home-hero__btn {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    border: 1px solid var(--border);
    color: var(--text);
    background: var(--surface);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.home-hero__btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.home-hero__btn--primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.home-hero__btn--primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
}
.home-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem 3rem;
}
.home-section--blog {
    padding-bottom: 4rem;
}
.home-section__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    margin-bottom: 1.25rem;
}
.home-section__title {
    margin: 0;
}
.home-section__more {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
}
.home-section__more:hover {
    text-decoration: underline;
}
.home-city-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}
.home-city-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.25s ease;
}
.home-city-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    border-color: var(--border-strong);
    transform: translateY(-5px);
}
.home-city-card__media {
    aspect-ratio: 16 / 9;
    background: var(--bg);
    overflow: hidden;
}
.home-city-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.home-city-card:hover .home-city-card__media img {
    transform: scale(1.06);
}
.home-city-card__media--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-muted) 0%, var(--bg) 100%);
}
.home-city-card__placeholder {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    padding: 1rem;
    text-align: center;
}
.home-city-card__body {
    padding: 1rem 1.15rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.home-city-card__name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
}
.home-city-card__country {
    font-size: 0.8125rem;
    color: var(--muted);
}
.home-city-card__excerpt {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home-compare-grid {
    margin-top: 0;
}
.home-empty {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--muted);
}
.home-blog-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.home-blog-link {
    display: block;
    padding: 0.75rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
}
.home-blog-link:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.home-blog-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}
.home-blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.25s ease;
}
.home-blog-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    border-color: var(--border-strong);
    transform: translateY(-5px);
}
.home-blog-card__body {
    padding: 1.15rem 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
}
.home-blog-card__cat {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    background: var(--accent-muted);
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
}
.home-blog-card__title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text);
}
.home-blog-card__date {
    font-size: 0.75rem;
    color: var(--muted);
}
.home-blog-card__excerpt {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.home-blog-card__cta {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 0.25rem;
}

.home-section--divider {
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
}
.home-section--tight-bottom {
    padding-bottom: 4rem;
}
.home-featured {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem 2.75rem;
}
.home-featured__inner {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 1.5rem 1.25rem 1.75rem;
}
.home-featured__head {
    margin-bottom: 1.35rem;
}
.home-featured__head .home-section__title {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}
.home-featured__hint {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 400;
}
.home-featured__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1rem 1.25rem;
    align-items: stretch;
}
.home-featured__rail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    align-content: start;
}
.home-featured-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.25s ease;
}
.home-featured-card:hover {
    border-color: var(--border-strong);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}
.home-featured-card--lead {
    grid-row: span 2;
    border-radius: var(--radius-lg);
}
.home-featured-card--lead .home-featured-card__media {
    aspect-ratio: 16 / 10;
}
.home-featured-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--bg);
    overflow: hidden;
}
.home-featured-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.home-featured-card:hover .home-featured-card__media img {
    transform: scale(1.06);
}
.home-featured-card__media--gradient {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a5f 0%, var(--accent) 55%, #7c2d12 100%);
}
.home-featured-card--blog .home-featured-card__media--gradient {
    min-height: 7rem;
}
.home-featured-card__initial {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    opacity: 0.95;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.home-featured-card__media--compare {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--surface-hover) 0%, var(--border) 100%);
    min-height: 5.5rem;
}
.home-featured-card__compare-strip {
    padding: 0.75rem 1rem;
    text-align: center;
}
.home-featured-card__compare-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    height: 100%;
}
.home-featured-card__compare-thumb {
    position: relative;
    overflow: hidden;
    min-height: 5.5rem;
    background: linear-gradient(145deg, var(--surface-hover) 0%, var(--border) 100%);
}
.home-featured-card__compare-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.home-featured-card__compare-thumb-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-secondary);
}
.home-featured-card__vs {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.35;
}
.home-featured-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent);
    background: linear-gradient(135deg, var(--accent-muted) 0%, var(--bg) 100%);
    text-align: center;
}
.home-featured-card__body {
    padding: 0.85rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}
.home-featured-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0;
    align-items: center;
}
.home-featured-card__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text);
}
.home-featured-card--lead .home-featured-card__title {
    font-size: clamp(1.15rem, 2.5vw, 1.35rem);
}
.home-featured-card__excerpt {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home-featured-card__cta {
    margin-top: auto;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
}
.home-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    line-height: 1.2;
}
.home-badge--type {
    color: var(--text-secondary);
    background: var(--surface-hover);
}
.home-badge--region.home-badge--europe {
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.12);
}
.home-badge--region.home-badge--asia {
    color: #c2410c;
    background: rgba(234, 88, 12, 0.15);
}
.home-badge--region.home-badge--africa {
    color: #15803d;
    background: rgba(22, 163, 74, 0.12);
}
.home-badge--region.home-badge--north-america {
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.12);
}
.home-badge--region.home-badge--south-america {
    color: #0d9488;
    background: rgba(13, 148, 136, 0.12);
}
.home-badge--region.home-badge--oceania {
    color: #0369a1;
    background: rgba(2, 132, 199, 0.12);
}
.home-badge--region.home-badge--other,
.home-badge--region.home-badge--default {
    color: var(--muted);
    background: var(--bg);
}
.home-badge--cat-nomad {
    color: #0f766e;
    background: rgba(13, 148, 136, 0.15);
}
.home-badge--cat-family {
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.12);
}
.home-badge--cat-career {
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.12);
}
.home-badge--cat-default {
    color: var(--accent);
    background: var(--accent-muted);
}
.home-scroll-row-wrap {
    position: relative;
    margin: 0 -1.25rem;
    padding: 0 2.5rem 0.35rem;
}
.home-scroll-row {
    margin: 0;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.home-scroll-row::-webkit-scrollbar {
    display: none;
}
.home-scroll-btn {
    position: absolute;
    top: clamp(4.5rem, 26vw, 7rem);
    transform: translateY(-50%);
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--surface);
    color: var(--text);
    font-size: 1.65rem;
    line-height: 1;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}
.home-scroll-btn:hover:not(:disabled) {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--bg-elevated);
}
.home-scroll-btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
.home-scroll-btn:disabled {
    opacity: 0.28;
    cursor: not-allowed;
}
.home-scroll-btn--prev {
    left: 0.25rem;
}
.home-scroll-btn--next {
    right: 0.25rem;
}
@media (max-width: 520px) {
    .home-scroll-row-wrap {
        padding-left: 2.35rem;
        padding-right: 2.35rem;
    }
    .home-scroll-btn {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1.45rem;
    }
}
.home-scroll-row__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
    width: max-content;
    min-width: 100%;
}
.home-scroll-row__item {
    flex: 0 0 min(280px, 78vw);
    scroll-snap-align: start;
}
.home-scroll-row__item .home-city-card {
    max-width: 280px;
}
.home-load-more {
    margin: 1.75rem 0 0;
    text-align: center;
}
.home-load-more__btn {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.35rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    background: var(--surface);
    transition: border-color 0.2s, background 0.2s;
}
.home-load-more__btn:hover {
    border-color: var(--accent);
    background: var(--accent-muted);
}
.home-blog-card__media {
    aspect-ratio: 16 / 9;
    min-height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #334155 0%, var(--accent) 50%, #431407 100%);
    transition: transform 0.4s ease;
    transform-origin: center center;
}
.home-blog-card:hover .home-blog-card__media {
    transform: scale(1.04);
}
.home-blog-card__media--nomad {
    background: linear-gradient(135deg, #0f766e 0%, #134e4a 50%, #042f2e 100%);
}
.home-blog-card__media--photo {
    padding: 0;
    background: var(--bg);
    overflow: hidden;
}
.home-blog-card__media--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.home-blog-card:hover .home-blog-card__media--photo {
    transform: none;
}
.home-blog-card:hover .home-blog-card__media--photo img {
    transform: scale(1.06);
}
.home-blog-card__initial {
    font-size: clamp(2rem, 6vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    opacity: 0.95;
}
.home-blog-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0 0 0.15rem;
    align-items: center;
}
.home-city-card__badges {
    margin: 0 0 0.25rem;
}
.compare-card--home {
    min-height: 100%;
}
.home-region-quick {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem 1.5rem;
}
.home-region-quick__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
    padding: 0.75rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.home-region-quick__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    flex-shrink: 0;
}
.home-region-quick__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
}
.home-region-quick__pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: var(--font-sans);
    color: var(--text-secondary);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 999px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s;
}
.home-region-quick__pill:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.home-region-quick__pill.is-active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.home-region-quick__pill:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
/* Bölge filtresi (yalnızca son şehirler ızgarası): scroll hedefi */
#home-latest-cities [data-home-region],
#home-region-empty {
    scroll-margin-top: 5.5rem;
}
.home-cities-region-note {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    line-height: 1.45;
    color: var(--text-secondary);
    max-width: 48rem;
}
.home-score-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0.15rem 0 0.35rem;
    padding: 0.2rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text);
    background: linear-gradient(135deg, var(--surface-hover) 0%, var(--bg) 100%);
    border: 1px solid var(--border);
    border-radius: 8px;
    width: fit-content;
    max-width: 100%;
}
.home-score-pill--compact {
    margin: 0 0 0.35rem;
}
.home-score-pill__star {
    color: #d97706;
    font-size: 0.85em;
    line-height: 1;
}
.home-score-pill__val {
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}
.home-featured-card .home-score-pill {
    margin-top: 0;
    margin-bottom: 0.35rem;
}
.home-region-empty {
    margin: 1rem 0 0;
    padding: 0.85rem 1rem;
    font-size: 0.9375rem;
    text-align: center;
    color: var(--text-secondary);
    background: var(--surface-hover);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
}
.home-region-empty a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}
.home-region-empty a:hover {
    text-decoration: underline;
}
@media (max-width: 900px) {
    .home-featured__grid {
        grid-template-columns: 1fr;
    }
    .home-featured-card--lead {
        grid-row: auto;
    }
    .home-featured__rail {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 520px) {
    .home-featured__rail {
        grid-template-columns: 1fr;
    }
}

.blog-archive-hero {
    padding: 2.5rem 1.25rem 1rem;
    text-align: center;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--accent-muted) 0%, transparent 55%);
}
.blog-archive-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}
.blog-archive-title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}
.blog-archive-tagline {
    margin: 0;
    font-size: 1rem;
    color: var(--text-secondary);
}
.blog-archive-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem 4rem;
}

.blog-post {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.25rem 4rem;
}
.blog-post-inner {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem 2.5rem;
    box-shadow: var(--shadow);
}
.blog-post-city-hero {
    margin: -2rem -1.5rem 1.25rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    background: var(--bg);
}
.blog-post-city-hero img {
    width: 100%;
    max-height: min(62vh, 520px);
    object-fit: cover;
    object-position: center;
    display: block;
}
.blog-post-header {
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}
.blog-post-cat {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin-bottom: 0.65rem;
}
.blog-post-title {
    margin: 0 0 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}
.blog-post-meta {
    margin: 0;
    font-size: 0.875rem;
    color: var(--muted);
}
.blog-post-lead {
    margin: 1rem 0 0;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.blog-post-content {
    margin-top: 0.5rem;
}
.blog-post-content.static-page-content {
    max-width: none;
}
.blog-post-expedia {
    margin-top: 1.5rem;
}
.blog-post-expedia__mini-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0 0 1rem;
    padding: 0.4rem 0.85rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
}
.blog-post-expedia__mini-cta:hover {
    border-color: rgba(196, 30, 42, 0.35);
    color: var(--accent);
    background: var(--accent-muted);
}
.blog-post-expedia__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 1rem;
}
.blog-post-expedia--bottom .blog-post-expedia__box {
    max-width: none;
}
.blog-post-expedia__box {
    border: 1px solid rgba(196, 30, 42, 0.22);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 248, 245, 0.98) 42%, rgba(255, 235, 228, 0.95) 100%);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.15rem 1.2rem;
}
.blog-post-expedia__box--mid {
    margin: 1.4rem 0;
}
.blog-post-expedia__box h2 {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
    line-height: 1.35;
}
.blog-post-expedia__box p {
    margin: 0 0 0.9rem;
    color: var(--text-secondary);
}
.blog-post-expedia__btn {
    display: inline-block;
    padding: 0.58rem 1rem;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(180deg, #d42835 0%, #c41e2a 45%, #8f1520 100%);
    border-radius: 10px;
}
.blog-post-content .blog-post-expedia__btn,
.blog-post-content.static-page-content .blog-post-expedia__btn {
    color: #fff !important;
    text-decoration: none !important;
}
.blog-post-expedia__btn:hover {
    filter: brightness(1.06);
    color: #fff !important;
}
.blog-post-extras-wrap {
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.blog-post-extra__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.85rem;
    line-height: 1.3;
    color: var(--text);
}
.blog-post-extra__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.blog-post-extra__list li {
    margin: 0 0 0.45rem;
    font-size: 0.9375rem;
    line-height: 1.45;
}
.blog-post-extra__list a {
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
}
.blog-post-extra__list a:hover {
    text-decoration: underline;
}
.blog-post-empty {
    margin: 0;
    color: var(--muted);
    font-style: italic;
}
.blog-post-back {
    margin: 2rem 0 0;
    font-size: 0.9375rem;
}
.blog-post-back a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}
.blog-post-back a:hover {
    text-decoration: underline;
}

/* ----- Compare section (reusable for Cities, later: Countries, Products…) ----- */
.compare-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem 4rem;
}

/* ----- City search (compare-section) ----- */
.compare-search-wrap {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.compare-search-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}
.compare-search-input {
    display: block;
    width: 100%;
    max-width: 560px;
    min-width: 280px;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
    font-family: var(--font-sans);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--text);
    transition: border-color 0.2s;
}
.compare-search-input:hover { border-color: var(--muted); }
.compare-search-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-muted);
}
.compare-search-input::placeholder { color: var(--muted); }
.compare-search-hint {
    display: block;
    font-size: 0.8125rem;
    color: var(--muted);
    margin-top: 0.5rem;
}
.compare-search-hint--loading { color: var(--accent); }
.compare-search-hint--results { color: var(--text-secondary); font-weight: 500; }

.compare-section .section-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
    margin: 0 0 1.25rem;
}

/* ----- Card grid ----- */
.compare-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
}
.compare-grid > li {
    min-width: 0;
}
.compare-card {
    --compare-card-bw: 1px;
    background: var(--surface);
    border: var(--compare-card-bw) solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.35rem 1.35rem 1.5rem;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
}
.compare-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}
.compare-card--home:hover {
    transform: translateY(-5px);
}
.compare-card__thumb {
    --compare-thumb-pad: 1.35rem;
    margin: calc(-1 * var(--compare-thumb-pad) - var(--compare-card-bw))
        calc(-1 * var(--compare-thumb-pad) - var(--compare-card-bw)) 0.65rem
        calc(-1 * var(--compare-thumb-pad) - var(--compare-card-bw));
    width: calc(100% + 2 * (var(--compare-thumb-pad) + var(--compare-card-bw)));
    max-width: none;
    box-sizing: border-box;
    border-radius: 0;
    overflow: hidden;
    background: var(--bg);
    display: block;
    position: relative;
}
.compare-card__thumb-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 11.5rem;
    background: linear-gradient(145deg, var(--surface-hover) 0%, var(--border) 100%);
}
.compare-card__thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    max-width: none;
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: 0;
}
.compare-card__thumb-img.is-active {
    opacity: 1;
    z-index: 1;
}
.compare-card__thumb--single .compare-card__thumb-img {
    opacity: 1;
    z-index: 1;
}
.compare-card__vs-pick {
    cursor: default;
}
.compare-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}
.compare-card__meta .vs-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}
.compare-card__title {
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 0.5rem;
    color: var(--text);
}
.compare-card__cta {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent);
}
.compare-card:hover .compare-card__cta { color: var(--accent-hover); }

/* ----- Cities browse (cities1 cards) ----- */
.cities-browse-wrap {
    padding-bottom: 4rem;
}
.cities-subnav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.25rem 0;
}
.cities-subnav-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}
.cities-subnav-link {
    display: inline-block;
    padding: 0.45rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-secondary);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.cities-subnav-link:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.cities-subnav-link--active {
    color: var(--accent);
    border-color: var(--accent);
    background: var(--accent-muted);
}
.cities-subnav + .hero {
    padding-top: 2rem;
}
section.cities-city-hero + .cities-subnav,
.cities-subnav + section.cities-city-hero {
    margin-top: 0;
}
.cities-city-body + .cities-subnav {
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
}
.compare-section.cities-browse-wrap + .cities-subnav {
    padding-top: 0;
    padding-bottom: 1.5rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
}
.cities-breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}
.cities-breadcrumb a {
    color: var(--accent);
    text-decoration: none;
}
.cities-breadcrumb a:hover {
    text-decoration: underline;
}
.cities-breadcrumb-sep {
    margin: 0 0.35rem;
    color: var(--muted);
}
.cities-breadcrumb__crumb {
    color: var(--text-secondary);
}
.cities-browse-grid .cities-browse-card {
    padding: 0;
    overflow: hidden;
}
.cities-browse-card__img {
    margin: -1px -1px 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    background: var(--bg);
    aspect-ratio: 16 / 9;
}
.cities-browse-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cities-browse-card__img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--surface-hover) 0%, var(--border) 100%);
}
.cities-browse-card__placeholder-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--muted);
    text-align: center;
    padding: 1rem 1.25rem;
    line-height: 1.35;
}
.cities-browse-card .compare-card__title {
    padding: 1rem 1.35rem 0;
}
.cities-browse-card .compare-card__cta {
    display: block;
    padding: 0 1.35rem 1.35rem;
}
.cities-city-hero {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem 2rem;
}
.cities-city-hero__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg);
    max-height: min(70vh, 520px);
}
.cities-city-hero__media img {
    width: 100%;
    max-height: min(70vh, 520px);
    object-fit: cover;
}
.cities-city-hero__media--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: min(40vh, 280px);
    max-height: min(70vh, 520px);
    background: linear-gradient(160deg, var(--surface-hover) 0%, var(--border) 100%);
}
.cities-city-hero__placeholder-label {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--muted);
    text-align: center;
    padding: 2rem 1.5rem;
}
.cities-city-hero__inner {
    margin-top: 1rem;
}
.cities-breadcrumb--overlay {
    padding: 0 0 0.75rem;
}
.cities-city-hero__title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    margin: 0 0 0.35rem;
    line-height: 1.2;
}
.cities-city-hero__sub {
    margin: 0;
    font-size: 1.0625rem;
    color: var(--text-secondary);
}
.cities-city-body {
    padding-top: 0;
}
.cities-city-body .money-box {
    --money-accent: #c41e2a;
    --money-accent-deep: #8f1520;
    position: relative;
    margin: 2.25rem 0 0;
    padding: 1.5rem 1.65rem 1.6rem;
    padding-top: 1.65rem;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid rgba(196, 30, 42, 0.22);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 248, 245, 0.98) 42%, rgba(255, 235, 228, 0.95) 100%);
    box-shadow:
        0 4px 6px rgba(196, 30, 42, 0.06),
        0 18px 40px rgba(26, 26, 26, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.cities-city-body .money-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--money-accent-deep), var(--money-accent) 40%, #e85a4f 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.cities-city-body .money-box h2 {
    margin: 0 0 0.45rem;
    font-size: clamp(1.2rem, 2.8vw, 1.45rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: #141414;
    font-family: var(--font-sans);
}
.cities-city-body .money-box h3 {
    margin: 0 0 0.45rem;
    font-size: clamp(1.15rem, 2.6vw, 1.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: #141414;
    font-family: var(--font-sans);
}
.cities-city-body .money-box p {
    margin: 0 0 1.15rem;
    font-size: 1.02rem;
    line-height: 1.55;
    font-weight: 500;
    color: #3d4449;
    max-width: 36em;
}
.cities-city-body .money-box .affiliate-btn {
    display: inline-block;
    padding: 0.65rem 1.35rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(180deg, #d42835 0%, var(--money-accent) 45%, var(--money-accent-deep) 100%);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow:
        0 2px 4px rgba(143, 21, 32, 0.25),
        0 8px 20px rgba(196, 30, 42, 0.22);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.cities-city-body .money-box .affiliate-btn:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow:
        0 4px 8px rgba(143, 21, 32, 0.28),
        0 14px 28px rgba(196, 30, 42, 0.26);
}
.cities-city-body .money-box .affiliate-btn:active {
    transform: translateY(0);
}
.cities-city-related {
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 1.5rem 2.5rem;
    align-items: start;
}
@media (max-width: 768px) {
    .cities-city-related {
        gap: 2rem;
    }
}
.cities-city-related__block {
    margin: 0;
    min-width: 0;
}
.cities-city-related__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: var(--text);
}
.cities-city-related__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.cities-city-related__list li {
    margin-bottom: 0.45rem;
}
.cities-city-related__list li:last-child {
    margin-bottom: 0;
}
.cities-city-related__list a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
}
.cities-city-related__list a:hover {
    text-decoration: underline;
}
.cities-hub-wrap {
    padding-bottom: 4rem;
}
.cities-hub-tabs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.cities-hub-tabs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}
.cities-hub-tabs-list li {
    list-style: none;
    margin: 0;
}
.cities-hub-tab {
    display: inline-block;
    padding: 0.4rem 0.95rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-secondary);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.cities-hub-tab:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.cities-hub-tab--active {
    color: var(--accent);
    border-color: var(--accent);
    background: var(--accent-muted);
}
.cities-hub-grid {
    margin-top: 0.5rem;
}
.cities-hub-card-meta {
    margin: -0.25rem 0 0.35rem;
    padding: 0 1.35rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.3;
}
.cities-card-excerpt {
    margin: 0 0 0.35rem;
    padding: 0 1.35rem;
    font-size: 0.8125rem;
    color: var(--muted);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cities-city-ai-ozet {
    margin: 0 0 1.25rem;
    font-size: 1.25rem;
    font-weight: 700;
    font-style: italic;
    line-height: 1.65;
    color: var(--text);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.cities-city-scores {
    margin: 0 0 2.25rem;
    padding: 1.75rem 1.5rem 2rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--surface) 0%, var(--bg-elevated) 45%, var(--accent-muted) 120%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.cities-city-scores__head {
    text-align: center;
    margin-bottom: 1.5rem;
}
.cities-city-scores__title {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    margin: 0 0 0.35rem;
}
.cities-city-scores__hint {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}
.cities-city-scores__hint strong {
    color: var(--accent);
    font-weight: 700;
}
.cities-city-scores__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
@media (max-width: 900px) {
    .cities-city-scores__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 480px) {
    .cities-city-scores__grid {
        grid-template-columns: 1fr;
    }
}
.cities-city-score-card {
    margin: 0;
    padding: 0;
    list-style: none;
}
.cities-city-score-card__inner {
    height: 100%;
    padding: 1.15rem 1.1rem 1.25rem;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.cities-city-score-card__inner:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}
.cities-city-score-card__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}
.cities-city-score-card__figure {
    margin: 0 0 0.85rem;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
    flex-wrap: wrap;
}
.cities-city-score-card__num {
    font-size: clamp(2.25rem, 6vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text);
    font-variant-numeric: tabular-nums;
}
.cities-city-score-card__max {
    font-size: 1rem;
    font-weight: 600;
    color: var(--muted);
}
.cities-city-score-card__track {
    height: 8px;
    border-radius: 999px;
    background: var(--bg);
    overflow: hidden;
}
.cities-city-score-card__fill {
    display: block;
    height: 100%;
    border-radius: 999px;
    transition: width 0.5s ease;
}
.cities-city-score-card--huzur .cities-city-score-card__fill {
    background: linear-gradient(90deg, #0d9488, #14b8a6);
}
.cities-city-score-card--aile .cities-city-score-card__fill {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}
.cities-city-score-card--kariyer .cities-city-score-card__fill {
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
}
.cities-city-score-card--ekonomi .cities-city-score-card__fill {
    background: linear-gradient(90deg, #d97706, #f59e0b);
}
.cities-city-score-card--huzur .cities-city-score-card__num {
    color: #0f766e;
}
.cities-city-score-card--aile .cities-city-score-card__num {
    color: #1d4ed8;
}
.cities-city-score-card--kariyer .cities-city-score-card__num {
    color: #6d28d9;
}
.cities-city-score-card--ekonomi .cities-city-score-card__num {
    color: #b45309;
}
.cities-city-ai-sections {
    margin: 0 0 2rem;
}
.cities-city-ai-block {
    margin-bottom: 2.25rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}
.cities-city-ai-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 1.5rem;
}
.cities-city-ai-block h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: var(--text);
    text-align: left;
}
.cities-city-ai-html {
    max-width: 100%;
}

/* City page: single-city QoL index bars (yasamkalitesi), sprinkled between paragraphs */
.cities-city-index-bars-wrap {
    margin: 1.25rem 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.cities-city-index-bar-row {
    display: grid;
    grid-template-columns: minmax(140px, 1fr) 1fr auto;
    align-items: center;
    gap: 0.75rem 1rem;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}
.cities-city-index-bar-row:last-child {
    margin-bottom: 0;
}
.cities-city-index-bar-label {
    font-weight: 500;
    color: var(--text);
}
.cities-city-index-bar-track {
    height: 14px;
    background: var(--border);
    border-radius: 7px;
    overflow: hidden;
    min-width: 80px;
}
.cities-city-index-bar-fill {
    display: block;
    height: 100%;
    border-radius: 7px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-hover) 100%);
    transition: width 0.3s ease;
}
.cities-city-index-bar-val {
    min-width: 3rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: right;
}
@media (max-width: 600px) {
    .cities-city-index-bar-row {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 0.25rem 0.5rem;
    }
    .cities-city-index-bar-row .cities-city-index-bar-label {
        grid-column: 1 / -1;
    }
    .cities-city-index-bar-row .cities-city-index-bar-track {
        grid-row: 2;
        grid-column: 1;
        min-width: 0;
    }
    .cities-city-index-bar-row .cities-city-index-bar-val {
        grid-row: 2;
        grid-column: 2;
        font-size: 0.75rem;
    }
    .cities-city-index-bars-wrap {
        padding: 0.75rem;
    }
}
.cities-city-index-bars-slot {
    margin: 0 0 2rem;
}
.cities-city-data-footer {
    margin: 2.5rem 0 0;
    padding: 1.5rem 1.25rem 1.75rem;
    border-radius: var(--radius-lg);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.cities-city-data-footer__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: var(--text);
}
.cities-city-data-footer__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
}
@media (max-width: 768px) {
    .cities-city-data-footer__cols {
        grid-template-columns: 1fr;
    }
}
.cities-city-data-footer__sub {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: var(--text-secondary);
}
.cities-city-data-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface);
}
.cities-city-data-table {
    width: 100%;
    min-width: 260px;
    border-collapse: collapse;
    font-size: 0.875rem;
}
.cities-city-data-table th,
.cities-city-data-table td {
    padding: 0.55rem 0.75rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--border);
}
.cities-city-data-table th {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
    background: var(--bg);
}
.cities-city-data-table td:first-child {
    font-weight: 500;
    color: var(--text);
    max-width: 55%;
    word-break: break-word;
}
.cities-city-data-table td:last-child {
    font-variant-numeric: tabular-nums;
    color: var(--text-secondary);
}
.cities-city-data-table tbody tr:last-child td {
    border-bottom: none;
}
.cities-city-data-table tbody tr:hover td {
    background: var(--surface-hover);
}
.cities-city-data-footer__empty {
    margin: 0;
    font-size: 0.875rem;
    color: var(--muted);
}

/* ----- Pagination ----- */
.pagination {
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border);
    text-align: center;
}
.pagination-list,
nav.pagination .pagination-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.5rem !important;
}
.pagination-list li {
    list-style: none !important;
    display: inline-block !important;
}
.pagination-link,
.pagination-current {
    display: inline-block;
    padding: 0.5rem 0.9rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-width: 2.5rem;
    text-align: center;
    background: var(--surface);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.pagination-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: #fff;
}
.pagination-current {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    cursor: default;
}
.pagination-prev,
.pagination-next { min-width: auto; padding-left: 1rem; padding-right: 1rem; }

/* ----- Compare page layout (main + sidebar) ----- */
.compare-page-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    min-width: 0;
}
.compare-main { flex: 1; min-width: 0; align-self: flex-start; }
.compare-sidebar {
    width: 280px;
    flex-shrink: 0;
}
.sidebar-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}
.sidebar-block:last-child { margin-bottom: 0; }
.sidebar-title {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: var(--text);
}
.sidebar-list,
.sidebar-list li {
    list-style: none !important;
    padding: 0 !important;
    margin: 0;
}
.sidebar-list li { margin-bottom: 0.35rem; }
.sidebar-list li:last-child { margin-bottom: 0; }
.sidebar-list a {
    display: block;
    font-size: 0.875rem;
    color: var(--accent);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    margin: 0 -0.75rem 0.35rem;
    border-radius: 10px;
    background: var(--surface-hover);
    transition: color 0.2s, background 0.2s, text-decoration 0.2s;
}
.sidebar-list li:last-child a { margin-bottom: 0; }
.sidebar-list a:hover {
    text-decoration: underline;
    background: var(--accent-muted);
}
@media (max-width: 900px) {
    .compare-page-wrap { flex-direction: column; }
    .compare-sidebar { width: 100%; max-width: 400px; }
}

/* ----- Article (single comparison) ----- */
.compare-article {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 2rem 0 4rem;
}
.compare-article > header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.compare-article h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.02em;
}
/* İki şehir yan yana (üstteki hero ile aynı); tek şehirde tek sütun tam genişlik */
.city-images {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 1rem;
    margin-top: 1.5rem;
    max-width: 100%;
    width: 100%;
}
.city-images .city-image-wrap {
    flex: 1 1 0;
    min-width: 0;
}
.city-images .city-image-wrap:only-child {
    flex: 1 1 100%;
    max-width: 100%;
}
.city-images .city-image-wrap:only-child img {
    height: 280px;
}
/* Metin / yemek / gezi arası şehir görselleri (üsttekiyle aynı grid) */
.city-images--inline-extra {
    margin-top: 1.5rem;
    margin-bottom: 1.75rem;
}
.city-images--inline-extra + .sehir-yemek-wrap,
.city-images--inline-extra + .sehir-gezi-wrap {
    margin-top: 0;
}
.city-image-wrap {
    margin: 0;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg);
}
.city-image-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.city-image-name {
    position: absolute;
    bottom: 0.5rem;
    right: 0.75rem;
    padding: 0.35rem 0.6rem;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}
.city-image-credit {
    position: absolute;
    bottom: 0.5rem;
    left: 0.75rem;
    font-size: 0.5rem;
    font-style: italic;
    color: rgba(255,255,255,0.45);
}
@media (max-width: 600px) {
    .city-images { flex-direction: column; }
    .city-image-wrap img { height: 180px; }
    .city-images .city-image-wrap:only-child img { height: 220px; }
}
.compare-content {
    font-size: 1.0625rem;
    line-height: 1.75;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    max-width: 100%;
    width: 100%;
    display: block;
    overflow-wrap: break-word;
    word-break: break-word;
}
.compare-content p,
.compare-content li,
.compare-content div:not([class]) {
    text-align: justify;
    text-justify: inter-word;
}
.compare-content p { margin: 0 0 1.5em; }
.compare-content h2 { font-size: 1.25rem; margin: 2rem 0 0.75rem; font-weight: 600; text-align: left; }
.compare-content h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; font-weight: 600; text-align: left; }
.compare-content ul, .compare-content ol { margin: 0 0 1.25rem; padding-left: 1.5rem; text-align: left; }
.compare-content li { text-align: justify; }

/* ----- Sehir yemek (sehir.yemek JSON) — paragraf bitiminde dikkat çekici blok ----- */
.sehir-yemek-wrap {
    margin: 2.5rem 0;
    padding: 2rem 2.25rem;
    background: linear-gradient(145deg, #e8f5e9 0%, #c8e6c9 20%, #a5d6a7 50%, #81c784 100%);
    border: 2px solid rgba(46, 125, 50, 0.35);
    border-left: 6px solid #2e7d32;
    border-radius: 16px;
    box-shadow: 0 10px 36px rgba(46, 125, 50, 0.2), 0 4px 12px rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.9);
    position: relative;
    overflow: hidden;
}
.sehir-yemek-wrap::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.sehir-yemek-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 1.5rem;
    color: #1b5e20;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.02em;
}
.sehir-yemek-title::before { content: '🍲'; font-size: 1.4rem; }
.sehir-yemek-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
}
@media (max-width: 768px) {
    .sehir-yemek-grid { grid-template-columns: 1fr; }
    .sehir-yemek-wrap { padding: 1.25rem 1.25rem; }
}
.sehir-yemek-city-block {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(46, 125, 50, 0.15);
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.sehir-yemek-city-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1b5e20;
    margin: 0 0 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid rgba(46, 125, 50, 0.25);
}
.sehir-yemek-content { line-height: 1.55; }
.sehir-yemek-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-bottom: 0.65rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px dashed rgba(46, 125, 50, 0.2);
    font-size: 0.9rem;
}
.sehir-yemek-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}
.sehir-yemek-item-name {
    font-weight: 700;
    color: #2e7d32;
    font-size: 0.9375rem;
}
.sehir-yemek-item-desc {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ----- Sehir gezi (sehir.gezi JSON) — yemek bloğunun altında, mavi/teal renkler ----- */
.sehir-gezi-wrap {
    margin: 2.5rem 0;
    padding: 2rem 2.25rem;
    background: linear-gradient(145deg, #e3f2fd 0%, #bbdefb 20%, #90caf9 50%, #64b5f6 100%);
    border: 2px solid rgba(25, 118, 210, 0.35);
    border-left: 6px solid #1565c0;
    border-radius: 16px;
    box-shadow: 0 10px 36px rgba(25, 118, 210, 0.2), 0 4px 12px rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.9);
    position: relative;
    overflow: hidden;
}
.sehir-gezi-wrap::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(25, 118, 210, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.sehir-gezi-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 1.5rem;
    color: #0d47a1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.02em;
}
.sehir-gezi-title::before { content: '✈️'; font-size: 1.4rem; }
.sehir-gezi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
}
@media (max-width: 768px) {
    .sehir-gezi-grid { grid-template-columns: 1fr; }
    .sehir-gezi-wrap { padding: 1.25rem 1.25rem; }
}
.sehir-gezi-city-block {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(25, 118, 210, 0.15);
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.sehir-gezi-city-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d47a1;
    margin: 0 0 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid rgba(25, 118, 210, 0.25);
}
.sehir-gezi-content { line-height: 1.55; }
.sehir-gezi-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-bottom: 0.65rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px dashed rgba(25, 118, 210, 0.2);
    font-size: 0.9rem;
}
.sehir-gezi-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}
.sehir-gezi-item-name {
    font-weight: 700;
    color: #1565c0;
    font-size: 0.9375rem;
}
.sehir-gezi-item-desc {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ----- Food & Dining (yemek_bilgi) — paragraf bitiminde dikkat çekici blok ----- */
.yemek-bilgi-wrap {
    margin: 2.5rem 0;
    padding: 2rem 2.25rem;
    background: linear-gradient(145deg, #fef5eb 0%, #ffecd8 25%, #ffe4c8 60%, #ffd9b8 100%);
    border: 2px solid rgba(196, 30, 42, 0.22);
    border-left: 6px solid var(--accent);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(196, 30, 42, 0.12), 0 2px 10px rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.9);
    position: relative;
    overflow: hidden;
}
.yemek-bilgi-wrap::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -40px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(196, 30, 42, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.yemek-bilgi-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 1.5rem;
    color: #b91c1c;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.02em;
}
.yemek-bilgi-title::before { content: '🍽️'; font-size: 1.4rem; }
.yemek-stacked {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}
.yemek-city-block {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(196, 30, 42, 0.12);
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.yemek-city-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0 0 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid rgba(196, 30, 42, 0.2);
}
.yemek-city-content {
    line-height: 1.5;
}
.yemek-intro {
    margin: 0 0 1rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.yemek-intro:last-child { margin-bottom: 0; }
.yemek-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem 0;
    align-items: flex-start;
    margin-bottom: 0.6rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px dashed rgba(196, 30, 42, 0.1);
    font-size: 0.9rem;
}
.yemek-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}
.yemek-item-name {
    font-weight: 700;
    color: var(--accent);
    font-size: 0.875rem;
    flex-shrink: 0;
}
.yemek-item-sep { color: rgba(196, 30, 42, 0.4); flex-shrink: 0; }
.yemek-item-desc {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
    min-width: 0;
}
@media (max-width: 768px) {
    .yemek-bilgi-wrap { padding: 1.25rem 1.25rem; }
    .yemek-city-block { padding: 1rem 1.25rem; }
}

/* ----- Real estate / data table ----- */
.realestate-table-wrap {
    margin-top: 3rem;
    padding: 1.75rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.realestate-table-wrap h2 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 1.25rem;
    color: var(--text);
}
.realestate-table {
    width: 100%;
    min-width: 280px;
    border-collapse: collapse;
    font-size: 0.9375rem;
}
.realestate-table th,
.realestate-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}
.realestate-table td:first-child {
    font-weight: 500;
    min-width: 6rem;
    max-width: 12rem;
}
.realestate-table td {
    word-wrap: break-word;
    word-break: break-word;
}
@media (max-width: 600px) {
    .realestate-table-wrap { padding: 1rem; }
    .realestate-table td:first-child { min-width: 5rem; max-width: 10rem; }
}
.realestate-table th {
    background: var(--bg-elevated);
    font-weight: 600;
    color: var(--text-secondary);
}
.realestate-table tbody tr:last-child th,
.realestate-table tbody tr:last-child td { border-bottom: 0; }
.realestate-table tbody tr:hover td { background: rgba(0,0,0,0.03); }

/* ----- Country comparisons (more links by country) ----- */
.country-comparisons-wrap {
    margin-top: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
}
.country-comparisons-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1.25rem;
    color: var(--text);
}
.country-comparisons-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
    .country-comparisons-grid { grid-template-columns: 1fr; }
}
.country-comparisons-subtitle {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: var(--text-secondary);
}
.country-comparisons-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.country-comparisons-list li { margin-bottom: 0.4rem; }
.country-comparisons-list li:last-child { margin-bottom: 0; }
.country-comparisons-list a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9375rem;
}
.country-comparisons-list a:hover { text-decoration: underline; }

/* ----- Error ----- */
.error {
    text-align: center;
    padding: 4rem 1.25rem;
}
.error h1 { font-size: 1.5rem; margin: 0 0 0.5rem; }
.error a { color: var(--accent); font-weight: 500; }

/* ----- Comments ----- */
.comments-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.25rem 4rem;
    background: linear-gradient(to bottom, var(--accent-muted) 0%, transparent 120px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-top: 2rem;
}
.comments-title {
    font-size: 1.375rem;
    margin: 0 0 2rem;
    font-weight: 600;
    color: var(--text);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}
.comments-msg { margin: 0 0 1rem; padding: 0.5rem 0; }
.comments-msg--success { color: #0d6b0d; }
.comments-msg--error { color: var(--accent); }

/* Comment toast (modal) — ekran ortasında mesaj (body sonunda, viewport sabit) */
.comment-toast-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
    pointer-events: none;
}
.comment-toast-overlay.comment-toast-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.comment-toast-box {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    padding: 1.75rem 2rem;
    max-width: 90vw;
    width: 380px;
    text-align: center;
    pointer-events: auto;
}
.comment-toast-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: var(--text);
}
.comment-toast-msg {
    margin: 0 0 1.25rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-secondary);
}
.comment-toast-msg--success { color: #0d6b0d; }
.comment-toast-msg--error { color: #b91c1c; }
.comment-toast-close {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
}
.comment-toast-close:hover { background: var(--accent-hover); }

.comments-list { list-style: none; padding: 0; margin: 0 0 2.5rem; }
.comments-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--accent);
    transition: box-shadow 0.2s;
}
.comments-item:hover { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); }
.comments-item:last-child { margin-bottom: 0; }
.comments-item-avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(196, 30, 42, 0.3);
}
.comments-item-body { flex: 1; min-width: 0; }
.comments-item-name {
    font-size: 1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.4rem;
    color: var(--text);
}
.comments-item-content {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.65;
}
.comments-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    padding: 2rem;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.comments-form .comments-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
}
.comments-input, .comments-textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0.65rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.comments-input:focus, .comments-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-muted);
}
.comments-textarea { min-height: 6rem; resize: vertical; }
.comments-captcha { margin: 0.25rem 0 0; }
.comments-captcha-hint { font-size: 0.8125rem; color: var(--muted); margin: 0.25rem 0 0; }
.comments-submit {
    align-self: flex-start;
    padding: 0.6rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}
.comments-submit:hover { background: var(--accent-hover); }
.comments-submit:active { transform: scale(0.98); }

/* ----- Footer ----- */
.site-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 2rem 1.25rem;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.logo-footer {
    height: 20px;
    width: auto;
    margin: 0 auto 0.75rem;
    opacity: 0.85;
}
.footer-nav {
    margin: 0 0 0.5rem;
    font-size: 0.875rem;
}
.footer-nav a {
    color: var(--accent-hover);
    text-decoration: none;
}
.footer-nav a:hover { text-decoration: underline; }
.footer-nav a.footer-nav-active {
    color: var(--accent);
    font-weight: 600;
}
.footer-sep {
    margin: 0 0.35rem;
    color: var(--text);
}
.copyright {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--text);
}

/* ----- Cookie / Privacy consent bar ----- */
.cookie-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--text);
    color: #fff;
    padding: 1rem 1.25rem;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.cookie-consent-bar--hidden {
    transform: translateY(100%);
    opacity: 0;
}
.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.cookie-consent-text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    flex: 1;
    min-width: 200px;
}
.cookie-consent-text a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-consent-text a:hover {
    opacity: 0.9;
}
.cookie-consent-accept-link {
    color: #22c55e !important;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
    margin-left: 0.25em;
}
.cookie-consent-accept-link:hover {
    text-decoration: underline !important;
    opacity: 1;
}
.cookie-consent-btn {
    flex-shrink: 0;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    background: #fff;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}
.cookie-consent-btn:hover {
    background: var(--surface-hover);
}
.cookie-consent-btn:active {
    transform: scale(0.98);
}
@media (max-width: 600px) {
    .cookie-consent-bar {
        padding: 0.5rem 0.75rem;
    }
    .cookie-consent-text {
        font-size: 0.75rem;
        line-height: 1.4;
        min-width: 0;
    }
    .cookie-consent-accept-link {
        font-size: 0.8125rem;
        font-weight: 700;
    }
    .cookie-consent-btn {
        display: none;
    }
}

/* ----- Index bars (compare page) ----- */
.index-bars-wrap {
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.index-bars-list { display: flex; flex-direction: column; gap: 1rem; }
.index-bar-row {
    display: grid;
    grid-template-columns: minmax(140px, 1fr) 1fr auto;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
}
.index-bar-label { font-weight: 500; color: var(--text); }
.index-bar-single {
    display: flex;
    height: 14px;
    background: var(--border);
    border-radius: 7px;
    overflow: hidden;
    min-width: 80px;
}
.index-bar-seg {
    height: 100%;
    flex: var(--flex-pct, 1) 1 0;
    flex-shrink: 0;
    min-width: 3px;
    transition: width 0.3s ease;
}
.index-bar-seg:first-child { border-radius: 7px 0 0 7px; }
.index-bar-seg:last-child { border-radius: 0 7px 7px 0; }
.index-bar-city1 { background: linear-gradient(90deg, var(--accent) 0%, var(--accent-hover) 100%); }
.index-bar-city2 { background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%); }
.index-bar-vals { min-width: 4rem; font-size: 0.8125rem; font-weight: 600; color: var(--text-secondary); text-align: right; }
.index-bars-legend { margin: 1rem 0 0; font-size: 0.8125rem; color: var(--muted); }
.index-legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 0.25rem;
}
.index-legend-dot.index-bar-city1 { background: var(--accent); }
.index-legend-dot.index-bar-city2 { background: #2563eb; }
@media (max-width: 600px) {
    .index-bar-row { grid-template-columns: 1fr auto; grid-template-rows: auto auto; gap: 0.25rem 0.5rem; }
    .index-bar-row .index-bar-label { grid-column: 1 / -1; }
    .index-bar-row .index-bar-single { grid-row: 2; grid-column: 1; min-width: 0; }
    .index-bar-row .index-bar-vals { grid-row: 2; grid-column: 2; font-size: 0.75rem; }
    .index-bars-wrap { padding: 1rem; }
}

/* ----- Static pages (page.php, cookie_policy) ----- */
.static-page { max-width: 720px; margin: 0 auto; padding: 2rem 1.25rem 4rem; }
.static-page-inner h1 { font-size: 1.75rem; font-weight: 700; margin: 0 0 1.5rem; }
.static-page-content { line-height: 1.7; color: var(--text); text-align: justify; }
.static-page-content p { margin: 0 0 1rem; }
.static-page-content h2 { font-size: 1.25rem; margin: 1.5rem 0 0.75rem; }
.static-page-content h3 { font-size: 1.1rem; margin: 1.25rem 0 0.5rem; }
.static-page-content ul, .static-page-content ol { margin: 0 0 1rem; padding-left: 1.5rem; }
.static-page-content a { color: var(--accent); text-decoration: underline; }
.static-page-content a:hover { color: var(--accent-hover); }
.static-page-content .static-page-img { width: 100%; max-width: 100%; height: auto; display: block; margin: 1.5rem 0; border-radius: 4px; }

/* ----- Contact page ----- */
.contact-section { max-width: 600px; margin: 0 auto; padding: 2rem 1.25rem 4rem; }
.contact-inner {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}
.contact-section .category-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    background: var(--accent-muted);
    border-radius: 999px;
}
.contact-section h1 { font-size: 1.75rem; font-weight: 700; margin: 0 0 0.5rem; }
.contact-tagline { margin: 0 0 1.5rem; color: var(--text-secondary); font-size: 1rem; }
.contact-direct {
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.contact-direct li { margin-bottom: 0.5rem; }
.contact-direct li:last-child { margin-bottom: 0; }
.contact-direct strong { color: var(--text); font-weight: 600; }
.contact-direct a { color: var(--accent); text-decoration: none; font-weight: 500; }
.contact-direct a:hover { text-decoration: underline; }
.contact-email-obf {
    font-family: ui-monospace, monospace;
    font-size: 0.95em;
    color: var(--text);
}
.contact-success { background: #d4edda; border: 1px solid #c3e6cb; color: #155724; padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.5rem; }
.contact-error { background: #f8d7da; border: 1px solid #f5c6cb; color: #721c24; padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-field label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--text); }
.contact-field .required { color: var(--accent); }
.contact-field input, .contact-field textarea {
    width: 100%;
    padding: 0.65rem 0.9rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-sizing: border-box;
}
.contact-field input:focus, .contact-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-muted);
}
.contact-submit {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.2s;
}
.contact-submit:hover { background: var(--accent-hover); }
.contact-captcha-hint { font-size: 0.8125rem; color: var(--text-secondary); margin: 0; }

/* ----- Compare page overflow (mobile) ----- */
@media (max-width: 900px) {
    html, body, .main, .site-footer, .compare-page-wrap, .compare-main, .compare-article, .compare-content { overflow-x: hidden !important; }
}

/* ----- Empty state ----- */
.compare-section .empty-state {
    padding: 2rem;
    text-align: center;
    color: var(--text-secondary);
    background: var(--surface);
    border: 1px dashed var(--border);
    border-radius: var(--radius-lg);
}
