/*
Theme Name: KBA26
Theme URI: https://kadikoybodyart.com
Author: KBA
Author URI: https://kadikoybodyart.com
Description: Kadikoy Body Art 2026 Custom Theme — Zero dependency, vanilla CSS/JS, dark atelier design system. v2.1: Global i18n, reduced specificity debt, normalized z-layers.
Version: 26.2.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kba26
*/
/* KBA GLOBAL LANGUAGE SYSTEM — FORCE */
.lang-en,
.lang-en-block {
    display: none !important;
}

html[data-kba-lang="tr"] .lang-tr {
    display: inline !important;
}

html[data-kba-lang="tr"] .lang-tr-block {
    display: block !important;
}

html[data-kba-lang="tr"] .lang-en,
html[data-kba-lang="tr"] .lang-en-block {
    display: none !important;
}

html[data-kba-lang="en"] .lang-tr,
html[data-kba-lang="en"] .lang-tr-block {
    display: none !important;
}

html[data-kba-lang="en"] .lang-en {
    display: inline !important;
}

html[data-kba-lang="en"] .lang-en-block {
    display: block !important;
}

/* =========================================================
   0. GLOBAL i18n — Tüm sayfaları kapsar (html[data-kba-lang])
   ========================================================= */
.lang-en,
.lang-en-block {
    display: none;
}

html[data-kba-lang="en"] .lang-tr {
    display: none;
}

html[data-kba-lang="en"] .lang-en {
    display: inline;
}

html[data-kba-lang="en"] .lang-en-block {
    display: block;
}

/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
    --kba-bg: #0d0d0d;
    --kba-bg-2: #111;
    --kba-surface: rgba(255, 255, 255, 0.028);
    --kba-border: rgba(255, 255, 255, 0.08);
    --kba-cream: #F2E8D9;
    --kba-muted: #7a7a7a;
    --kba-amber: #C9A84C;
    --kba-amber-2: #E8C870;
    --kba-amber-10: rgba(201, 168, 76, 0.1);
    --kba-amber-15: rgba(201, 168, 76, 0.15);
    --kba-nav-bg: rgba(13, 13, 13, 0.95);
    --kba-nav-h: 80px;
    --card-radius: 20px;
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --font-serif: ui-serif, "Cormorant Garamond", Georgia, serif;
    --z-base: 1;
    --z-content: 10;
    --z-header: 100;
    --z-overlay: 200;
    --z-modal: 300;
    --z-progress: 400;
    --z-float: 500;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--kba-cream);
    background: var(--kba-bg);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* Noise texture global */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* =========================================================
   WORDPRESS BASE FIXES
   ========================================================= */
#kba-main {
    width: 100%;
    position: relative;
    z-index: var(--z-base);
}

.wp-block-post-content {
    width: 100%;
}

.alignwide {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.entry-content img {
    border-radius: 12px;
}

/* =========================================================

   KBA BLOG CONTENT FIGURES — Global blog görsel boşlukları

   ========================================================= */

.single-post .article-content figure,

.single-post .entry-content figure,

.single-post .post-content figure {

    margin: 36px 0 44px !important;

    overflow: hidden;

}

.single-post .article-content figure img,

.single-post .entry-content figure img,

.single-post .post-content figure img {

    display: block;

    width: 100%;

    height: auto;

    border-radius: 18px;

    border: 1px solid rgba(255, 255, 255, 0.08);

}

.single-post .article-content figcaption,

.single-post .entry-content figcaption,

.single-post .post-content figcaption {

    margin-top: 12px !important;

    padding: 0 10px;

    text-align: center;

    font-size: 14px;

    line-height: 1.55;

    color: rgba(242, 232, 217, 0.62);

}

/* Öne çıkan görsel altındaki otomatik caption yazısını gizler */

.single-post .post-thumbnail figcaption,

.single-post .wp-post-image+figcaption,

.single-post .article-hero figcaption {

    display: none !important;

}

@media (max-width: 768px) {

    .single-post .article-content figure,

    .single-post .entry-content figure,

    .single-post .post-content figure {

        margin: 28px 0 36px !important;

    }

    .single-post .article-content figure img,

    .single-post .entry-content figure img,

    .single-post .post-content figure img {

        border-radius: 14px;

    }

    .single-post .article-content figcaption,

    .single-post .entry-content figcaption,

    .single-post .post-content figcaption {

        font-size: 13px;

        line-height: 1.5;

    }

}

/* =========================================================
   V2: READING PROGRESS BAR (Single Post / Page)
   ========================================================= */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--kba-amber), var(--kba-amber-2));
    width: 0%;
    z-index: var(--z-progress);
    transition: width 0.1s linear;
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
    will-change: width;
}

@media (prefers-reduced-motion: reduce) {
    .reading-progress {
        transition: none;
    }
}

/* =========================================================
   V2: CONTROLLED GOLD FOIL (No shimmer animation)
   ========================================================= */
.gold-foil {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #C9A84C 0%, #E8C870 30%, #FFF 50%, #C9A84C 70%, #8B6B2F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-foil em {
    font-style: italic;
    background: linear-gradient(135deg, #E8C870 0%, #FFF 40%, #C9A84C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================================
   GLOBAL HEADER — Tek fixed wrapper, izole namespace
   ========================================================= */
#kba-global-header {
    font-family: var(--font-sans);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    width: 100%;
    height: var(--kba-nav-h);
    background: var(--kba-nav-bg);
    border-bottom: 1px solid var(--kba-border);
}

/* Admin bar offset */
body.admin-bar #kba-global-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar #kba-global-header {
        top: 46px;
    }
}

/* Nav iç yapı — relative, fixed wrapper içinde */
.kba-nav {
    width: 100%;
    height: 100%;
    background: var(--kba-nav-bg);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--kba-border);
    transition: all .25s ease;
}

.kba-nav.scrolled {
    background: rgba(13, 13, 13, .98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--kba-nav-h);
    gap: 14px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.nav-logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.1));
    transition: transform .25s;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links>li {
    position: relative;
}

.nav-links>li::before,
.nav-links>li::marker {
    display: none;
    content: none;
}

.nav-links a,
.nav-links button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    color: #a7b0bc;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    transition: all .2s;
}

.nav-links a:hover,
.nav-links button:hover {
    color: #fff;
    background: rgba(255, 255, 255, .04);
}

.nav-links a.active,
.nav-links button.active {
    color: var(--kba-amber);
}

/* Desktop Dropdown */
.dd {
    position: relative;
}

.dd-panel {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: rgba(20, 20, 22, .98);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .22s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    z-index: calc(var(--z-header) + 10);
}

.dd:hover .dd-panel,
.dd:focus-within .dd-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dd-item {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    color: #a7b0bc;
    font-size: 13px;
    font-weight: 700;
    transition: all .15s;
}

.dd-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--kba-amber);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.nav-lang {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-lang button {
    padding: 6px 12px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #a7b0bc;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    transition: all .2s;
}

.nav-lang button.active {
    background: var(--kba-amber);
    color: #000;
}

.nav-social {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #a7b0bc;
    transition: all .2s;
}

.nav-social:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--kba-amber);
    border-color: var(--kba-amber);
    transform: translateY(-2px);
}

.nav-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #D4AF37, #E8C870);
    color: #000;
    border-radius: 10px;
    font-weight: 900;
    font-size: 13px;
    white-space: nowrap;
    transition: all .2s;
}

.nav-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.nav-burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all .2s;
    align-items: center;
    justify-content: center;
}

.nav-burger:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--kba-amber);
}

/* Mobile Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: calc(var(--z-overlay) - 10);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Drawer — Sağdan, dar, native his */
.nav-mobile {
    position: fixed;
    top: var(--kba-nav-h);
    right: 0;
    width: min(380px, 85vw);
    height: calc(100vh - var(--kba-nav-h));
    background: rgba(13, 13, 13, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 12px 16px 22px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: var(--z-overlay);
    transform: translateX(110%);
    opacity: 0;
    visibility: hidden;
    transition: transform .25s ease, opacity .2s ease, visibility .2s ease;
    overscroll-behavior: contain;
    border-left: 1px solid rgba(255, 255, 255, .06);
    box-shadow: -20px 0 60px rgba(0, 0, 0, .55);
}

.nav-mobile.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.nav-mobile a {
    display: block;
    padding: 16px 14px;
    color: rgba(242, 232, 217, .75);
    font-size: 16px;
    font-weight: 900;
    border-radius: 12px;
    transition: all .2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-mobile a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.m-dd {
    margin: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.m-dd-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px;
    color: var(--kba-amber);
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    border-radius: 12px;
    background: rgba(212, 175, 55, .12);
    border: 1px solid rgba(212, 175, 55, .22);
    transition: all .2s;
    user-select: none;
}

.m-dd-btn:hover {
    background: rgba(212, 175, 55, .16);
}

.m-dd-panel {
    display: none;
    padding: 6px 0 10px 10px;
}

.m-dd-panel.active {
    display: block;
}

.m-dd-panel a {
    padding: 12px 14px;
    font-size: 14px;
    border-bottom: none;
    color: rgba(242, 232, 217, .78);
    font-weight: 850;
}

.m-dd-panel a.active {
    color: var(--kba-amber);
    background: rgba(212, 175, 55, .08);
    border-radius: 10px;
}

.nav-lang-mobile {
    display: flex;
    gap: 8px;
    padding: 14px 0 4px;
    justify-content: center;
}

.nav-lang-mobile button {
    padding: 10px 22px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    color: #a7b0bc;
    font-weight: 900;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s;
    min-width: 88px;
}

.nav-lang-mobile button.active {
    background: rgba(212, 175, 55, 1);
    color: #000;
    border-color: rgba(212, 175, 55, 1);
}

/* =========================================================
   V2: BENTO BLOG GRID (index.php)
   ========================================================= */
#kba-blog-archive {
    padding-top: var(--kba-nav-h);
    position: relative;
    width: 100%;
}

#kba-blog-archive .kba-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: var(--z-content);
}

.blog-hero {
    padding: 70px 0 40px;
    position: relative;
    overflow: hidden;
}

.blog-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--kba-amber);
    margin-bottom: 20px;
}

.blog-eyebrow::before {
    content: '';
    height: 1px;
    width: 24px;
    background: var(--kba-amber);
    opacity: .5;
}

.blog-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -.02em;
    line-height: 1.05;
}

.blog-hero h1 em {
    font-style: italic;
    color: var(--kba-amber);
}

.blog-hero-desc {
    font-size: 18px;
    color: var(--kba-muted);
    max-width: 650px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.filter-bar {
    padding: 20px 0 40px;
    position: sticky;
    top: var(--kba-nav-h);
    z-index: 50;
    background: linear-gradient(180deg, var(--kba-bg) 0%, var(--kba-bg) 80%, transparent 100%);
}

.filter-chips {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--kba-surface);
    border: 1px solid var(--kba-border);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(242, 232, 217, 0.8);
    cursor: pointer;
    transition: all .25s ease;
    white-space: nowrap;
}

.filter-chip:hover {
    border-color: rgba(201, 168, 76, 0.3);
    background: rgba(201, 168, 76, 0.05);
}

.filter-chip.active {
    background: var(--kba-amber-10);
    border-color: var(--kba-amber);
    color: var(--kba-amber);
}

/* Bento Grid — minmax ile taşma güvenliği */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 20px;
    padding: 20px 0 60px;
}

.bento-card {
    background: var(--kba-surface);
    border: 1px solid var(--kba-border);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.bento-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.bento-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-card:nth-child(2) {
    grid-column: span 2;
}

.bento-card:nth-child(3) {
    grid-column: span 1;
}

.bento-card:nth-child(4) {
    grid-column: span 1;
}

.bento-card:nth-child(5) {
    grid-column: span 2;
}

.bento-card:nth-child(6) {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-img {
    flex: 1;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    position: relative;
    overflow: hidden;
    min-height: 160px;
}

.bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bento-card:hover .bento-img img {
    transform: scale(1.05);
}

.bento-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(13, 13, 13, 0.8) 100%);
}

.bento-content {
    padding: 24px;
    position: relative;
    z-index: 1;
}

.bento-content .cat-label {
    font-size: 11px;
    color: var(--kba-amber);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.bento-content h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    color: var(--kba-cream);
}

.bento-content p {
    font-size: 13px;
    color: var(--kba-muted);
    line-height: 1.5;
}

.bento-card:nth-child(1) .bento-content h3,
.bento-card:nth-child(6) .bento-content h3 {
    font-size: 26px;
}

.bento-card.hidden {
    display: none;
}

/* Load More */
.load-more-wrap {
    text-align: center;
    padding: 40px 0 80px;
}

.kba-btn {
    border-radius: 12px;
    padding: 16px 32px;
    font-weight: 900;
    font-size: 15px;
    border: 1px solid transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .25s;
    cursor: pointer;
}

.kba-btn-primary {
    background: linear-gradient(135deg, var(--kba-amber), var(--kba-amber-2));
    color: #000;
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.25);
}

.kba-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 168, 76, 0.35);
}

.kba-btn-ghost {
    background: transparent;
    border: 1px solid rgba(242, 232, 217, 0.2);
    color: rgba(242, 232, 217, 0.9);
}

.kba-btn-ghost:hover {
    border-color: var(--kba-amber);
    background: var(--kba-amber-10);
}

/* =========================================================
   BLOG SINGLE (single.php) — V2 Mesh Gradient Hero
   ========================================================= */
#kba-blog-single {
    padding-top: var(--kba-nav-h);
    position: relative;
    width: 100%;
}

#kba-blog-single .kba-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: var(--z-content);
}

.article-hero {
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.article-hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--kba-amber-10) 0%, transparent 60%);
    pointer-events: none;
    opacity: .5;
    top: -200px;
    right: -100px;
}

.article-meta-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.article-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--kba-amber-10);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    color: var(--kba-amber);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-date {
    font-size: 14px;
    color: var(--kba-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-reading-time {
    font-size: 14px;
    color: var(--kba-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -.02em;
    line-height: 1.1;
    max-width: 800px;
}

.article-hero h1 em {
    font-style: italic;
    color: var(--kba-amber);
}

.article-intro {
    font-size: 18px;
    color: var(--kba-muted);
    max-width: 700px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--kba-surface);
    border: 1px solid var(--kba-border);
    border-radius: 16px;
    max-width: 400px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--kba-amber), var(--kba-amber-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.author-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--kba-cream);
}

.author-role {
    font-size: 13px;
    color: var(--kba-muted);
}

.article-body {
    padding: 40px 0 80px;
}

.article-content {
    max-width: 720px;
    margin: 0 auto;
}

.article-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(26px, 3.5vw, 36px);
    margin: 48px 0 20px;
    color: var(--kba-cream);
    font-weight: 700;
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content h3 {
    font-family: var(--font-serif);
    font-size: clamp(20px, 2.5vw, 24px);
    margin: 36px 0 16px;
    color: var(--kba-cream);
    font-weight: 700;
}

.article-content p {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(242, 232, 217, 0.85);
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 28px;
}

.article-content li {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(242, 232, 217, 0.85);
    margin-bottom: 10px;
}

.article-content ul li::marker {
    color: var(--kba-amber);
}

.article-content strong {
    color: var(--kba-cream);
    font-weight: 700;
}

.article-content a {
    color: var(--kba-amber);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-content a:hover {
    color: var(--kba-amber-2);
}

/* Content Boxes */
.quote-block {
    margin: 40px 0;
    padding: 32px 36px;
    background: var(--kba-surface);
    border-left: 4px solid var(--kba-amber);
    border-radius: 0 16px 16px 0;
    position: relative;
}

.quote-block::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
    font-size: 80px;
    color: var(--kba-amber);
    opacity: .2;
    line-height: 1;
}

.quote-block p {
    font-family: var(--font-serif);
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    color: var(--kba-cream);
    margin: 0;
    position: relative;
    z-index: 1;
}

.quote-author {
    margin-top: 16px;
    font-size: 14px;
    color: var(--kba-muted);
}

.info-box {
    margin: 32px 0;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.02));
    border: 1px dashed rgba(201, 168, 76, 0.3);
    border-radius: 16px;
}

.info-box-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 800;
    color: var(--kba-amber);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-box p {
    margin: 0;
    font-size: 15px;
}

.warning-box {
    margin: 32px 0;
    padding: 24px 28px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 16px;
}

.warning-box-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 800;
    color: #ef4444;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.warning-box p {
    margin: 0;
    font-size: 15px;
    color: rgba(242, 232, 217, 0.8);
}

.tip-box {
    margin: 32px 0;
    padding: 24px 28px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 16px;
}

.tip-box-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 800;
    color: #22c55e;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tip-box p {
    margin: 0;
    font-size: 15px;
    color: rgba(242, 232, 217, 0.8);
}

.kba-note {
    margin: 32px 0;
    padding: 24px 28px;
    background: var(--kba-amber-10);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 16px;
}

.kba-note-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 800;
    color: var(--kba-amber);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kba-note p {
    margin: 0;
    font-size: 15px;
}

.article-image {
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--kba-border);
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-image-caption {
    padding: 16px 20px;
    background: var(--kba-surface);
    font-size: 13px;
    color: var(--kba-muted);
    text-align: center;
}

/* End CTA — compact premium */
.article-end-cta {
    padding: 36px 0;
    background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.025), transparent);
}

.end-cta-card {
    max-width: 640px;
    margin: 0 auto;
    padding: 32px 34px;
    background: var(--kba-surface);
    border: 1px solid var(--kba-border);
    border-radius: 22px;
    text-align: center;
}

.end-cta-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.end-cta-card p {
    font-size: 15px;
    color: var(--kba-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.end-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.end-cta-buttons .kba-btn,
.end-cta-buttons a,
.end-cta-card .kba-btn,
.end-cta-card a {
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 14px;
    font-size: 15px;
}

@media (max-width: 768px) {
    .article-end-cta {
        padding: 28px 0;
    }

    .end-cta-card {
        margin: 0 18px;
        padding: 24px 20px;
        border-radius: 20px;
    }

    .end-cta-card h3 {
        font-size: 21px;
        margin-bottom: 8px;
    }

    .end-cta-card p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .end-cta-buttons {
        gap: 10px;
    }

    .end-cta-buttons .kba-btn,
    .end-cta-buttons a,
    .end-cta-card .kba-btn,
    .end-cta-card a {
        width: 100%;
        min-height: 46px;
        padding: 11px 18px;
        font-size: 15px;
        border-radius: 14px;
    }
}

/* Related Posts */
.related-posts {
    padding: 60px 0;
}

.related-header {
    text-align: center;
    margin-bottom: 40px;
}

.related-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

/* Trust Bar */
.trust-bar {
    padding: 40px 0 60px;
}

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

.trust-item {
    text-align: center;
    padding: 28px 20px;
    background: var(--kba-surface);
    border: 1px solid var(--kba-border);
    border-radius: 16px;
    transition: all .3s ease;
}

.trust-item:hover {
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-4px);
}

.trust-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.trust-item h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--kba-cream);
    margin-bottom: 6px;
}

.trust-item p {
    font-size: 13px;
    color: var(--kba-muted);
    line-height: 1.5;
}

/* =========================================================
   V2: HORIZONTAL SCROLL GALLERY (Page Template)
   ========================================================= */
.horizontal-section {
    padding: 80px 0;
    overflow: hidden;
}

.horizontal-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 24px 40px;
    -webkit-overflow-scrolling: touch;
}

.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.horizontal-scroll>.h-card {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 380px;
    height: 280px;
    background: var(--kba-surface);
    border: 1px solid var(--kba-border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.horizontal-scroll>.h-card:hover {
    border-color: var(--kba-amber);
    transform: scale(1.02);
}

.h-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.h-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(0deg, rgba(13, 13, 13, 0.9), transparent);
}

.h-card-overlay h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    margin-bottom: 4px;
}

.h-card-overlay span {
    font-size: 12px;
    color: var(--kba-amber);
    text-transform: uppercase;
    font-weight: 800;
}

/* =========================================================
   GLOBAL FOOTER
   ========================================================= */
#kba-global-bottom {
    color: var(--kba-cream);
    background: transparent;
    font-family: var(--font-sans);
    width: 100%;
    position: relative;
}

#kba-iletisim {
    padding: 100px 0 60px;
    background: radial-gradient(ellipse at 20% 100%, rgba(201, 168, 76, 0.05) 0%, transparent 50%), radial-gradient(ellipse at 80% 0%, rgba(201, 168, 76, 0.03) 0%, transparent 40%), var(--kba-bg);
    position: relative;
}

#kba-iletisim::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.kba-contact-header {
    text-align: center;
    margin-bottom: 48px;
}

.kba-contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    color: var(--kba-amber);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.kba-contact-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 12px;
}

.kba-contact-header p {
    color: var(--kba-muted);
    font-size: 1.1rem;
    margin: 0;
}

.kba-contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 32px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    background: rgba(20, 20, 22, 0.6);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    margin: 0 auto;
    max-width: 1100px;
    width: calc(100% - 32px);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.kba-cc-info {
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.kba-info-block h3 {
    font-size: 14px;
    font-weight: 800;
    margin: 0 0 16px;
    color: var(--kba-amber);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kba-info-block h3 span:first-child {
    font-size: 18px;
}

.kba-address-text {
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
    margin: 0;
    color: var(--kba-cream);
}

.kba-warning-box {
    background: rgba(201, 168, 76, 0.08);
    border-left: 3px solid var(--kba-amber);
    padding: 16px 20px;
    border-radius: 0 12px 12px 0;
    margin-top: 16px;
}

.kba-warning-box strong {
    color: var(--kba-amber);
    font-weight: 700;
}

.kba-contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kba-contact-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: all .25s ease;
}

.kba-contact-link:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateX(4px);
}

.kba-contact-link-icon {
    width: 42px;
    height: 42px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.kba-contact-link-info {
    display: flex;
    flex-direction: column;
}

.kba-contact-link-label {
    font-size: 12px;
    color: var(--kba-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kba-contact-link-value {
    font-size: 15px;
    color: #fff;
    font-weight: 700;
}

.kba-hours-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    color: var(--kba-cream);
}

.kba-hours-badge b {
    color: var(--kba-amber);
}

.kba-coffee-box {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.02));
    border: 1px dashed rgba(201, 168, 76, 0.3);
    padding: 20px 24px;
    border-radius: 16px;
    margin-top: 8px;
}

.kba-coffee-box h4 {
    color: var(--kba-amber);
    font-size: 14px;
    font-weight: 800;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.kba-coffee-box p {
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
    color: var(--kba-muted);
}

.kba-coffee-box p b {
    color: var(--kba-cream);
}

.kba-map-frame {
    position: relative;
    min-height: 100%;
    background: #1a1a1a;
}

.kba-map-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 20, 22, 0.8) 0%, transparent 20%, transparent 80%, rgba(20, 20, 22, 0.8) 100%);
    pointer-events: none;
    z-index: 1;
}

.kba-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 0;
    filter: invert(92%) hue-rotate(180deg) brightness(90%) contrast(95%);
}

.kba-cta-buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.kba-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    transition: all .25s ease;
}

.kba-cta-btn-primary {
    background: linear-gradient(135deg, var(--kba-amber), var(--kba-amber-2));
    color: #000;
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.kba-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
}

.kba-footer {
    background: #0d0d0d;
    padding: 60px 0 0;
    position: relative;
}

.kba-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-brand {
    max-width: 280px;
}

.footer-brand img {
    height: 52px;
    width: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 8px rgba(201, 168, 76, 0.1));
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(242, 232, 217, 0.55);
    margin: 0 0 20px;
    max-width: 260px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(242, 232, 217, 0.5);
    transition: all .25s ease;
}

.footer-social:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.3);
    color: var(--kba-amber);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 800;
    color: var(--kba-amber);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 18px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(242, 232, 217, 0.6);
    transition: all .2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.footer-col ul li a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--kba-amber);
    transition: width .2s ease;
}

.footer-col ul li a:hover {
    color: var(--kba-cream);
    transform: translateX(4px);
}

.footer-col ul li a:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
}

.footer-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(201, 168, 76, 0.28);
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.10), rgba(201, 168, 76, 0.04));
    color: rgba(201, 168, 76, 0.95);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .2px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 0 1px rgba(201, 168, 76, 0.05);
}

.footer-pill::before {
    content: "✦";
    font-size: 10px;
    opacity: .95;
}

/* =========================================================
   FLOATING CTA
   ========================================================= */
.kba-float {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: var(--z-float);
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: linear-gradient(0deg, rgba(13, 13, 13, 0.9) 0%, rgba(13, 13, 13, 0.42) 58%, transparent);
    pointer-events: none;

    /* Başlangıçta gizli */
    transform: translateY(110%);
    opacity: 0;
    visibility: hidden;

    transition:
        transform .38s cubic-bezier(0.16, 1, 0.3, 1),
        opacity .25s ease,
        visibility .25s ease;
}

.kba-float.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.kba-float-inner {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 16px;
    border: 1px solid rgba(201, 168, 76, 0.16);
    background: rgba(10, 10, 10, 0.94);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    padding: 12px 14px;
    pointer-events: auto;
}

.kba-float-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    text-align: left;
}

.kba-float-text b {
    display: block;
    font-size: 13px;
    line-height: 1.2;
    color: var(--kba-cream);
    font-weight: 900;
    margin-bottom: 2px;
}

.kba-float-text small {
    display: block;
    font-size: 11px;
    line-height: 1.3;
    color: var(--kba-amber);
    font-weight: 800;
}

.kba-float-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 96px;
    padding: 10px 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--kba-amber), var(--kba-amber-2));
    color: #000;
    font-weight: 900;
    font-size: 13px;
    white-space: nowrap;
    transition: all .2s;
    flex-shrink: 0;
    text-decoration: none;
}

.kba-float-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(201, 168, 76, 0.24);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
    .nav-links {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(220px, auto);
    }

    .bento-card:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento-card:nth-child(2) {
        grid-column: span 2;
    }

    .bento-card:nth-child(3) {
        grid-column: span 1;
    }

    .bento-card:nth-child(4) {
        grid-column: span 1;
    }

    .bento-card:nth-child(5) {
        grid-column: span 2;
    }

    .bento-card:nth-child(6) {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media (max-width: 992px) {
    .kba-contact-card {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        max-width: 100%;
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    :root {
        --kba-nav-h: 72px;
    }

    .blog-hero {
        padding: 50px 0 35px;
    }

    .blog-hero h1 {
        font-size: 30px;
    }

    .filter-bar {
        position: relative;
        top: 0;
    }

    .filter-chips {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .filter-chip {
        flex-shrink: 0;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .bento-card {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 280px;
    }

    .bento-card:nth-child(1) .bento-content h3,
    .bento-card:nth-child(6) .bento-content h3 {
        font-size: 20px;
    }

    .horizontal-scroll>.h-card {
        width: 300px;
        height: 220px;
    }

    .article-hero {
        padding: 40px 0 30px;
    }

    .article-hero h1 {
        font-size: 28px;
    }

    .article-content h2 {
        font-size: 24px;
    }

    .article-content h3 {
        font-size: 20px;
    }

    .article-content p {
        font-size: 16px;
    }

    .quote-block {
        padding: 24px;
    }

    .quote-block p {
        font-size: 18px;
    }

    .end-cta-card {
        padding: 32px 24px;
    }

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

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .kba-contact-card {
        padding: 30px;
        gap: 30px;
        margin: 40px auto;
        width: calc(100% - 24px);
    }

    .kba-cc-info {
        padding: 28px 22px;
        gap: 24px;
    }

    .kba-map-frame {
        min-height: 280px;
    }

    .kba-map-frame iframe {
        min-height: 280px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding-bottom: 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        max-width: 100%;
    }

    .footer-brand img {
        margin: 0 auto 14px;
        height: 48px;
    }

    .footer-brand p {
        margin: 0 auto 18px;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-col {
        width: max-content;
        margin: 0 auto;
    }

    .footer-col h4 {
        margin: 0 0 14px;
        font-size: 11px;
        text-align: left;
    }

    .footer-col ul {
        gap: 10px;
        align-items: flex-start;
        width: max-content;
        margin: 0;
    }

    .footer-col ul li {
        width: 100%;
        text-align: left;
    }

    .footer-col ul li a {
        font-size: 13px;
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        padding: 16px 0;
        align-items: center;
        text-align: center;
    }

    .footer-copyright {
        font-size: 12px;
        text-align: center;
    }

    .footer-pill {
        justify-content: center;
    }

    .kba-float-inner {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .kba-float-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 360px) {
    .nav-inner {
        padding: 0 12px;
        gap: 10px;
    }

    .nav-logo img {
        height: 44px;
    }

    .nav-phone {
        padding: 9px 10px;
        font-size: 12px;
    }

    .nav-burger {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    #kba-global-header {
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    #kba-global-header.is-hidden {
        transform: translateY(-100%);
    }
}

/* 1. Eski mesh-hero'yu her yerde gizle */
.mesh-hero {
    display: none !important;
}

/* 2. Tüm sayfa başlıklarını (entry-title) her yerde gizle */
.entry-header,
.page-header,
.kadence-post-title,
.wp-block-post-title,
h1.entry-title,
.gold-foil[class*="title"] {
    display: none !important;
}

#kba-global-header [data-nav-key].active,
#kba-global-header [data-nav-group].active>button,
#kba-global-header [data-nav-group].active>.m-dd-btn {
    color: #C9A84C !important;
}

#kba-global-header [data-nav-key].active span,
#kba-global-header [data-nav-group].active>button span,
#kba-global-header [data-nav-group].active>.m-dd-btn span {
    color: #C9A84C !important;
}

#kba-global-header .dd-panel [data-nav-key].active,
#kba-global-header .m-dd-panel [data-nav-key].active {
    color: #C9A84C !important;
    background: rgba(201, 168, 76, 0.10) !important;
}

/* =========================================================
   KBA SINGLE POST FEATURED IMAGE — Keep image, hide caption
   ========================================================= */
.single-post .post-thumbnail,
.single-post .article-featured-image,
.single-post .featured-image {
    max-width: 920px;
    margin: 32px auto 56px !important;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
}

.single-post .post-thumbnail img,
.single-post .article-featured-image img,
.single-post .featured-image img,
.single-post img.wp-post-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 22px;
}

/* Featured image caption gizle */
.single-post .post-thumbnail figcaption,
.single-post .article-featured-image figcaption,
.single-post .featured-image figcaption,
.single-post .wp-post-image+figcaption {
    display: none !important;
}

@media (max-width: 768px) {

    .single-post .post-thumbnail,
    .single-post .article-featured-image,
    .single-post .featured-image {
        margin: 24px auto 44px !important;
        border-radius: 18px;
    }

    .single-post .post-thumbnail img,
    .single-post .article-featured-image img,
    .single-post .featured-image img,
    .single-post img.wp-post-image {
        border-radius: 18px;
    }
}

/* =========================================================
   KBA SINGLE POST FEATURED IMAGE CAPTION — Force hide
   ========================================================= */
.single-post .article-image-caption,
.single-post .post-thumbnail .article-image-caption,
.single-post .featured-image .article-image-caption,
.single-post .post-thumbnail-caption,
.single-post .featured-caption,
.single-post .wp-caption-text,
.single-post .post-thumbnail figcaption,
.single-post .featured-image figcaption,
.single-post .wp-post-image+figcaption {
    display: none !important;
}

#kba-blog-archive .bento-card-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

#kba-blog-archive .bento-card-link:hover {
    color: inherit;
    text-decoration: none;
}

#kba-blog-archive .read-more-text {
    display: inline-block;
    margin-top: 14px;
    color: var(--kba-gold, #d6b75a);
    font-weight: 700;
    font-size: 14px;
}

#kba-blog-archive a.filter-chip {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ==================================================
   KBA DÖVME DANIŞMANLIK CF7 FORM
   TR + EN Ana Form CSS
   Sayfa: /dovme-danismanligi/
   CF7: 661 TR / 676 EN
================================================== */

.page-id-21 .kba-form-card {
    --kba-form-border: rgba(255, 255, 255, 0.12);
    --kba-form-cream: #F2E8D9;
    --kba-form-muted: rgba(242, 232, 217, 0.55);
    --kba-form-gold: #C9A84C;
    --kba-form-gold-2: #E8C870;
}

.page-id-21 .kba-form-card .wpcf7 {
    width: 100%;
}

.page-id-21 .kba-form-card .kba-tattoo-form {
    color: var(--kba-form-cream);
    max-width: 800px;
    margin: 0 auto 28px;
}

.page-id-21 .kba-form-card .kba-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.page-id-21 .kba-form-card .kba-form-group {
    display: flex;
    flex-direction: column;
}

.page-id-21 .kba-form-card .kba-form-group.full-width,
.page-id-21 .kba-form-card .full-width {
    grid-column: 1 / -1;
}

.page-id-21 .kba-form-card label {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--kba-form-gold) !important;
    letter-spacing: 0.03em;
}

.page-id-21 .kba-form-card label span {
    color: var(--kba-form-gold) !important;
    font-weight: 900;
}

.page-id-21 .kba-form-card input[type="text"],
.page-id-21 .kba-form-card input[type="tel"],
.page-id-21 .kba-form-card input[type="email"],
.page-id-21 .kba-form-card input[type="file"],
.page-id-21 .kba-form-card select,
.page-id-21 .kba-form-card textarea {
    width: 100% !important;
    padding: 14px 16px !important;
    background: rgba(255, 255, 255, 0.025) !important;
    border: 1px solid var(--kba-form-border) !important;
    border-radius: 12px !important;
    color: var(--kba-form-cream) !important;
    font-size: 15px !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
    outline: none !important;
    transition: all 0.25s ease !important;
}

.page-id-21 .kba-form-card textarea {
    min-height: 120px;
    resize: vertical;
}

.page-id-21 .kba-form-card input::placeholder,
.page-id-21 .kba-form-card textarea::placeholder {
    color: rgba(242, 232, 217, 0.38) !important;
}

.page-id-21 .kba-form-card input:focus,
.page-id-21 .kba-form-card select:focus,
.page-id-21 .kba-form-card textarea:focus {
    border-color: var(--kba-form-gold) !important;
    background: rgba(201, 168, 76, 0.06) !important;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12) !important;
}

.page-id-21 .kba-form-card select option {
    background: #111 !important;
    color: var(--kba-form-cream) !important;
}

.page-id-21 .kba-form-card input[type="file"] {
    border: 1px dashed rgba(201, 168, 76, 0.45) !important;
    cursor: pointer;
}

.page-id-21 .kba-form-card .kba-form-note {
    font-size: 12px;
    color: var(--kba-form-muted) !important;
    margin: 6px 0 0;
    line-height: 1.4;
    font-style: italic;
}

/* Autofill beyaz arka plan düzeltme */
.page-id-21 .kba-form-card input:-webkit-autofill,
.page-id-21 .kba-form-card input:-webkit-autofill:hover,
.page-id-21 .kba-form-card input:-webkit-autofill:focus,
.page-id-21 .kba-form-card input:-webkit-autofill:active {
    -webkit-text-fill-color: #F2E8D9 !important;
    caret-color: #F2E8D9 !important;
    -webkit-box-shadow: 0 0 0 1000px rgba(18, 18, 18, 0.96) inset !important;
    box-shadow: 0 0 0 1000px rgba(18, 18, 18, 0.96) inset !important;
    border: 1px solid rgba(201, 168, 76, 0.55) !important;
    transition: background-color 9999s ease-in-out 0s !important;
}

/* Submit buton */
.page-id-21 .kba-form-card input[type="submit"],
.page-id-21 .kba-form-card .wpcf7-submit,
.page-id-21 .kba-form-card .kba-form-submit {
    display: block !important;
    width: 100% !important;
    min-height: 64px !important;
    padding: 18px 32px !important;
    background-color: #C9A84C !important;
    background-image: linear-gradient(135deg, #C9A84C 0%, #E8C870 100%) !important;
    color: #080808 !important;
    border: 1px solid #E8C870 !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    letter-spacing: 0.03em !important;
    text-align: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: 0 10px 28px rgba(201, 168, 76, 0.30) !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.page-id-21 .kba-form-card input[type="submit"]:hover,
.page-id-21 .kba-form-card .wpcf7-submit:hover,
.page-id-21 .kba-form-card .kba-form-submit:hover {
    background-color: #E8C870 !important;
    background-image: linear-gradient(135deg, #E8C870 0%, #F5D77D 100%) !important;
    color: #000 !important;
    border-color: #F5D77D !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 38px rgba(201, 168, 76, 0.42) !important;
}

.page-id-21 .kba-form-card input[type="submit"]:active,
.page-id-21 .kba-form-card .wpcf7-submit:active {
    transform: translateY(0) !important;
}

.page-id-21 .kba-form-card .wpcf7-not-valid {
    border-color: #ff5555 !important;
}

.page-id-21 .kba-form-card .wpcf7-not-valid-tip {
    color: #ff7777 !important;
    font-size: 12px !important;
    margin-top: 5px !important;
}

.page-id-21 .kba-form-card .wpcf7-response-output {
    background: rgba(201, 168, 76, 0.10) !important;
    border: 1px solid rgba(201, 168, 76, 0.55) !important;
    color: #F2E8D9 !important;
    border-radius: 14px !important;
    padding: 16px 18px !important;
    margin: 20px 0 0 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

@media (max-width: 768px) {
    .page-id-21 .kba-form-card .kba-form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .page-id-21 .kba-form-card label {
        font-size: 13px;
    }
}

/* ==================================================
   KBA DÖVME DANIŞMANLIK CF7 FORM - BİTİŞ
================================================== */