/* ================================================================
   Kurumsal Sol Menü WordPress Teması — Ana Stil Dosyası
   ================================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --sidebar-width: 72px;
    --dark:        #0e0e0e;
    --darker:      #090909;
    --gold:        #c9a96e;
    --gold-light:  #e2c99a;
    --white:       #ffffff;
    --muted:       rgba(255,255,255,0.45);
    --menu-bg:     #111111;
    --page-bg:     #f5f3ef;
    --page-text:   #1a1a1a;
    --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--page-text);
    background: var(--page-bg);
    overflow-x: hidden;
}

body.home, body.front-page {
    overflow: hidden;
    background: var(--darker);
}

/* ── GENEL YARDIMCI ── */
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* ================================================================
   LAYOUT
================================================================ */
#app {
    display: flex;
    min-height: 100vh;
}

#ksm-main {
    flex: 1;
    position: relative;
    overflow: hidden;
}

/* ================================================================
   SOL SİDEBAR
================================================================ */
#ksm-sidebar {
    width: var(--sidebar-width);
    min-width: var(--sidebar-width);
    height: 100vh;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 200;
    border-right: 1px solid rgba(255,255,255,0.06);
}

/* Logo */
#ksm-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 4px;
    padding: 0 8px;
}
#ksm-logo .logo-icon {
    width: 36px; height: 36px;
    border: 1.5px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-weight: 600;
    color: var(--gold);
}
#ksm-logo .logo-text {
    font-size: 7px; font-weight: 500;
    letter-spacing: 2.5px;
    color: var(--muted);
    text-transform: uppercase;
}
#ksm-logo .custom-logo {
    width: 42px; height: 42px;
    object-fit: contain;
    border-radius: 2px;
}

/* Hamburger */
#ksm-menu-toggle {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; outline: none;
    padding: 10px;
    transition: opacity 0.2s;
}
#ksm-menu-toggle:hover { opacity: 0.65; }
#ksm-menu-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
#ksm-menu-toggle span {
    display: block; width: 22px; height: 1.5px;
    background: var(--white);
    transition: all var(--transition);
    transform-origin: center;
}
#ksm-menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#ksm-menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#ksm-menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Dikey sekmeler */
.ksm-sidebar-tabs {
    display: flex; flex-direction: column;
    align-items: center; gap: 2px;
}
.ksm-sidebar-tab {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 9px; font-weight: 500;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--muted);
    padding: 16px 10px;
    text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    border-left: 1.5px solid transparent;
    transition: color 0.25s, border-color 0.25s;
}
.ksm-sidebar-tab:hover { color: var(--gold); border-left-color: var(--gold); }
.ksm-sidebar-tab svg { width: 13px; height: 13px; flex-shrink: 0; }

/* Sosyal medya */
.ksm-social {
    display: flex; flex-direction: column;
    align-items: center; gap: 16px;
}
.ksm-social a {
    color: var(--muted);
    display: flex; align-items: center; justify-content: center;
    transition: color 0.2s;
}
.ksm-social a:hover { color: var(--gold); }
.ksm-social a:focus-visible { outline: 2px solid var(--gold); }

/* ================================================================
   MEGA MENU
================================================================ */
#ksm-mega-menu {
    position: fixed;
    top: 0; left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    height: 100vh;
    background: rgba(10,10,10,0.97);
    z-index: 199;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s cubic-bezier(0.4,0,0.2,1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
#ksm-mega-menu.open {
    opacity: 1;
    pointer-events: all;
}

.ksm-menu-inner {
    display: flex;
    width: 100%; height: 100%;
}

/* Nav paneli */
.ksm-menu-nav {
    width: 340px; flex-shrink: 0;
    padding: 60px 50px;
    display: flex; flex-direction: column; justify-content: center;
    border-right: 1px solid rgba(255,255,255,0.07);
    overflow-y: auto;
}

/* Ana menü öğeleri */
.ksm-nav-list { list-style: none; }
.ksm-nav-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ksm-nav-link,
.ksm-nav-trigger {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0;
    font-size: 13px; font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    transition: color 0.2s;
}
.ksm-nav-link { text-decoration: none; }
.ksm-nav-trigger { cursor: pointer; background: none; border: none; width: 100%; font-family: inherit; }
.ksm-nav-link:hover,
.ksm-nav-trigger:hover,
.ksm-nav-item.active > .ksm-nav-link,
.ksm-nav-item.active > .ksm-nav-trigger { color: var(--gold); }
.ksm-nav-trigger svg {
    width: 14px; height: 14px;
    stroke: currentColor; fill: none; stroke-width: 1.5;
    transition: transform 0.25s;
    flex-shrink: 0;
}
.ksm-nav-item.active > .ksm-nav-trigger svg { transform: rotate(90deg); }

/* Alt menü */
.ksm-menu-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.ksm-menu-sub.open { max-height: 400px; }
.ksm-sub-link {
    display: block;
    padding: 9px 0 9px 16px;
    font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--muted);
    border-left: 1.5px solid rgba(255,255,255,0.1);
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s;
}
.ksm-sub-link:hover { color: var(--gold); border-left-color: var(--gold); }

/* Görsel panel */
.ksm-menu-visual {
    flex: 1;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 60px;
    position: relative;
    overflow: hidden;
}
.ksm-menu-visual-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.05);
    transition: transform 0.8s ease;
}
#ksm-mega-menu.open .ksm-menu-visual-bg { transform: scale(1); }
.ksm-menu-visual::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}
.ksm-menu-visual-content {
    position: relative; z-index: 2;
}
.ksm-menu-visual-label {
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 16px;
}
.ksm-menu-visual-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px; font-weight: 300; line-height: 1.1;
    color: var(--white); margin-bottom: 24px;
}
.ksm-menu-cta {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
    transition: gap 0.25s;
}
.ksm-menu-cta:hover { gap: 16px; }
.ksm-menu-cta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ================================================================
   HERO SLIDER
================================================================ */
.ksm-slider {
    width: 100%; height: 100vh;
    position: relative;
    overflow: hidden;
}

.ksm-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1);
}
.ksm-slide.active { opacity: 1; }

.ksm-slide-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.06);
    transition: transform 7s ease-out;
}
.ksm-slide.active .ksm-slide-bg { transform: scale(1); }

.ksm-slide-default .ksm-slide-bg,
.ksm-slide-default { background: linear-gradient(135deg, #1a1a2e, #0f3460); }

.ksm-slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.35) 55%,
        transparent 100%
    );
}

/* Slide içeriği */
.ksm-slide-content {
    position: absolute;
    bottom: 100px; left: 60px;
    max-width: 520px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s 0.5s, transform 0.8s 0.5s;
}
.ksm-slide.active .ksm-slide-content {
    opacity: 1;
    transform: translateY(0);
}

.ksm-slide-tag {
    display: flex; align-items: center; gap: 10px;
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 16px;
}
.ksm-slide-tag::before {
    content: '';
    display: block; width: 30px; height: 1px;
    background: var(--gold);
}

.ksm-slide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px; font-weight: 300; line-height: 1.08;
    color: var(--white); margin-bottom: 18px;
}
.ksm-slide-title em { font-style: italic; color: var(--gold-light); }

.ksm-slide-desc {
    font-size: 13px; font-weight: 300; line-height: 1.85;
    color: rgba(255,255,255,0.62);
    margin-bottom: 36px; max-width: 380px;
}

.ksm-slide-actions {
    display: flex; gap: 16px; align-items: center;
    flex-wrap: wrap;
}

/* Butonlar */
.ksm-btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px;
    background: var(--gold); color: #0a0a0a;
    font-size: 10px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    transition: background 0.25s, gap 0.25s;
}
.ksm-btn-primary:hover { background: var(--gold-light); gap: 16px; }
.ksm-btn-primary svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

.ksm-btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 10px; font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    transition: color 0.25s, gap 0.25s;
}
.ksm-btn-secondary:hover { color: var(--white); gap: 14px; }
.ksm-btn-secondary svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* Slider kontrolleri */
.ksm-slider-controls {
    position: absolute;
    bottom: 40px; right: 50px;
    display: flex; align-items: center; gap: 20px;
    z-index: 10;
}
.ksm-slider-btn {
    width: 44px; height: 44px;
    border: 1px solid rgba(255,255,255,0.25);
    background: transparent; color: var(--white);
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.25s, background 0.25s;
}
.ksm-slider-btn:hover { border-color: var(--gold); background: rgba(201,169,110,0.1); }
.ksm-slider-btn:focus-visible { outline: 2px solid var(--gold); }
.ksm-slider-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* Dots */
.ksm-slider-dots {
    display: flex; gap: 8px; align-items: center;
}
.ksm-dot {
    width: 20px; height: 2px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}
.ksm-dot.active { width: 40px; background: var(--gold); }

/* Sayaç */
.ksm-slider-counter {
    position: absolute;
    bottom: 50px; left: 60px;
    font-size: 11px; letter-spacing: 2px;
    color: var(--muted); z-index: 10;
}
.ksm-slider-counter #ksm-current { color: var(--white); font-weight: 500; }

/* Sağ üst butonlar */
.ksm-top-right {
    position: absolute;
    top: 30px; right: 40px;
    display: flex; align-items: center; gap: 16px;
    z-index: 10;
}
.ksm-phone-btn {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 500; color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    transition: border-color 0.25s, color 0.25s;
}
.ksm-phone-btn:hover { border-color: var(--gold); color: var(--gold); }
.ksm-phone-btn svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.ksm-top-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.2); }

.ksm-lang-btn {
    font-size: 10px; font-weight: 600; letter-spacing: 2px;
    color: rgba(255,255,255,0.65);
    background: none; border: none; outline: none;
    display: flex; align-items: center; gap: 4px;
    transition: color 0.2s;
}
.ksm-lang-btn:hover { color: var(--gold); }
.ksm-lang-btn svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* Scroll göstergesi */
.ksm-scroll-hint {
    position: absolute;
    right: 30px; top: 50%;
    transform: translateY(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    z-index: 10;
}
.ksm-scroll-line {
    width: 1px; height: 60px;
    background: rgba(255,255,255,0.15);
    position: relative; overflow: hidden;
}
.ksm-scroll-line::after {
    content: '';
    position: absolute; top: -100%; left: 0;
    width: 100%; height: 100%;
    background: var(--gold);
    animation: ksm-scroll-anim 2s infinite ease-in-out;
}
@keyframes ksm-scroll-anim {
    0%   { top: -100%; }
    100% { top: 100%; }
}
.ksm-scroll-text {
    writing-mode: vertical-rl;
    font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--muted);
}

/* ================================================================
   İÇ SAYFA STİLLERİ
================================================================ */
.ksm-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    min-height: calc(100vh - 200px);
}

/* Archive başlığı */
.ksm-archive-header {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.ksm-archive-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px; font-weight: 300;
    color: var(--page-text); line-height: 1.1;
    margin-bottom: 12px;
}
.ksm-archive-description { color: #666; font-size: 15px; line-height: 1.7; }

/* Posts grid */
.ksm-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 36px;
}

/* Post kartı */
.ksm-card {
    background: var(--white);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ksm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.ksm-card-thumb {
    display: block; overflow: hidden;
    aspect-ratio: 4/3;
}
.ksm-card-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.ksm-card:hover .ksm-card-thumb img { transform: scale(1.05); }
.ksm-card-body { padding: 28px; }
.ksm-card-tag {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); display: block; margin-bottom: 10px;
}
.ksm-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 400; line-height: 1.2;
    color: var(--page-text); margin-bottom: 12px;
}
.ksm-card-title a { color: inherit; text-decoration: none; }
.ksm-card-title a:hover { color: var(--gold); }
.ksm-card-excerpt { font-size: 13px; color: #666; line-height: 1.7; margin-bottom: 20px; }
.ksm-card-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--page-text);
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    transition: color 0.2s, gap 0.2s;
}
.ksm-card-link:hover { color: var(--gold); gap: 14px; }
.ksm-card-link svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Sayfalama */
.page-numbers { display: flex; gap: 8px; margin-top: 60px; justify-content: center; }
.page-numbers li a, .page-numbers li span {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    font-size: 13px; font-weight: 500;
    border: 1px solid rgba(0,0,0,0.15);
    color: var(--page-text);
    transition: all 0.2s;
}
.page-numbers li a:hover { border-color: var(--gold); color: var(--gold); }
.page-numbers li .current { background: var(--gold); border-color: var(--gold); color: #fff; }

/* Sonuç bulunamadı */
.ksm-no-results { text-align: center; padding: 80px 20px; }
.ksm-no-results h2 { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; margin-bottom: 16px; }
.ksm-no-results p { color: #666; margin-bottom: 30px; }

/* ================================================================
   TEK SAYFA / PROJE DETAY
================================================================ */
.ksm-single-content {
    max-width: 900px; margin: 0 auto; padding: 80px 40px;
}
.ksm-single-hero {
    width: 100%; aspect-ratio: 16/7;
    overflow: hidden; margin-bottom: 60px;
}
.ksm-single-hero img { width: 100%; height: 100%; object-fit: cover; }
.ksm-single-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px; font-weight: 300; line-height: 1.1;
    color: var(--page-text); margin-bottom: 30px;
}
.ksm-single-body { font-size: 16px; line-height: 1.85; color: #333; }
.ksm-single-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 400; margin: 40px 0 16px; }
.ksm-single-body h3 { font-size: 20px; font-weight: 500; margin: 30px 0 12px; }
.ksm-single-body p  { margin-bottom: 20px; }
.ksm-single-body ul, .ksm-single-body ol { margin: 0 0 20px 24px; }
.ksm-single-body li { margin-bottom: 6px; }
.ksm-single-body blockquote {
    border-left: 3px solid var(--gold);
    padding: 16px 24px; margin: 30px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-style: italic; color: #555;
}

/* ================================================================
   FOOTER
================================================================ */
#ksm-footer {
    background: var(--dark); color: var(--white);
    padding: 0;
}
.ksm-footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px; margin: 0 auto;
    padding: 60px 40px;
}
.footer-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 300;
    color: var(--white); margin-bottom: 12px;
}
.footer-tagline { font-size: 12px; color: var(--muted); line-height: 1.7; }

.footer-nav-list { display: flex; flex-direction: column; gap: 12px; }
.footer-nav-list a {
    font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--muted); transition: color 0.2s;
}
.footer-nav-list a:hover { color: var(--gold); }

.footer-phone {
    display: flex; align-items: center; gap: 8px;
    font-size: 15px; font-weight: 500; color: var(--white);
    margin-bottom: 20px;
    transition: color 0.2s;
}
.footer-phone:hover { color: var(--gold); }
.footer-phone svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: var(--muted); transition: color 0.2s; }
.footer-social a:hover { color: var(--gold); }

.ksm-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 40px;
    max-width: 1200px; margin: 0 auto;
    font-size: 11px; color: var(--muted); letter-spacing: 0.5px;
}
.ksm-footer-bottom a { color: var(--muted); transition: color 0.2s; }
.ksm-footer-bottom a:hover { color: var(--gold); }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
    .ksm-menu-visual { display: none; }
    .ksm-menu-nav { width: 100%; border-right: none; }
}

@media (max-width: 768px) {
    :root { --sidebar-width: 56px; }

    .ksm-slide-title { font-size: 38px; }
    .ksm-slide-content { left: 30px; bottom: 80px; max-width: calc(100% - 60px); }
    .ksm-slider-controls { right: 20px; }
    .ksm-slider-counter { left: 30px; }
    .ksm-top-right { top: 16px; right: 16px; gap: 8px; }
    .ksm-phone-btn { display: none; }
    .ksm-scroll-hint { display: none; }

    .ksm-menu-nav { padding: 40px 30px; }
    .ksm-posts-grid { grid-template-columns: 1fr; }
    .ksm-footer-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px; }
    .ksm-footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 20px 24px; }
    .ksm-page-content { padding: 40px 20px; }
    .ksm-archive-title { font-size: 32px; }
    .ksm-single-content { padding: 40px 20px; }
    .ksm-single-title { font-size: 36px; }
}

@media (max-width: 480px) {
    .ksm-slide-title { font-size: 30px; }
    .ksm-slide-desc { display: none; }
    .ksm-nav-link, .ksm-nav-trigger { font-size: 11px; padding: 14px 0; }
}

/* ================================================================
   WP ADMIN BAR
================================================================ */
.admin-bar #ksm-sidebar {
    top: 32px;
    height: calc(100vh - 32px);
}
.admin-bar #ksm-mega-menu { top: 32px; }

@media screen and (max-width: 782px) {
    .admin-bar #ksm-sidebar { top: 46px; height: calc(100vh - 46px); }
    .admin-bar #ksm-mega-menu { top: 46px; }
}

/* ================================================================
   WP BLOCK EDITOR UYUMU
================================================================ */
.wp-block-image { margin: 30px 0; }
.wp-block-quote { margin: 30px 0; padding: 20px 30px; border-left: 3px solid var(--gold); }
.wp-block-separator { border-color: rgba(0,0,0,0.1); margin: 40px 0; }

/* ================================================================
   PROJE FİLTRE BARI
================================================================ */
.ksm-filter-bar {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 48px;
}
.ksm-filter-btn {
    padding: 9px 22px;
    font-size: 10px; font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--page-text);
    border: 1px solid rgba(0,0,0,0.18);
    text-decoration: none;
    transition: all 0.2s;
}
.ksm-filter-btn:hover,
.ksm-filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

/* ================================================================
   POST NAV (TEKİL SAYFA)
================================================================ */
.ksm-post-nav {
    display: flex; justify-content: space-between; align-items: stretch;
    gap: 20px; margin-top: 80px; padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.ksm-post-nav-link {
    display: flex; align-items: center; gap: 16px;
    font-size: 13px; color: var(--page-text);
    text-decoration: none; max-width: 45%;
    transition: color 0.2s;
}
.ksm-post-nav-link:hover { color: var(--gold); }
.ksm-post-nav-link svg { width: 20px; height: 20px; flex-shrink: 0; stroke: currentColor; fill: none; }
.ksm-post-nav-link small {
    display: block; font-size: 9px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
}
.ksm-post-nav-link.next { margin-left: auto; text-align: right; flex-direction: row-reverse; }

/* ================================================================
   TEKİL SAYFA META
================================================================ */
.ksm-single-header {
    margin-bottom: 40px; padding-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.ksm-single-meta {
    font-size: 11px; letter-spacing: 1px;
    text-transform: uppercase; color: #999; margin-top: 16px;
}

/* ================================================================
   404 SAYFASI
================================================================ */
.ksm-404 { display: flex; align-items: center; justify-content: center; min-height: 70vh; }
.ksm-404-inner { text-align: center; max-width: 500px; }
.ksm-404-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 160px; font-weight: 300; line-height: 1;
    color: rgba(0,0,0,0.06); display: block; margin-bottom: -20px;
}
.ksm-404-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px; font-weight: 300; margin-bottom: 16px;
}
.ksm-404-desc { color: #888; margin-bottom: 36px; font-size: 15px; }
.ksm-btn-dark {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 30px;
    background: var(--dark); color: #fff;
    font-size: 10px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s, gap 0.25s;
}
.ksm-btn-dark:hover { background: var(--gold); gap: 16px; }
.ksm-btn-dark svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
