/* ========================================================
   SuziOnline CMS - Ana Stil Dosyası
   Modern, Responsive, Premium Blog Tasarımı
   ======================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ===== CSS Değişkenleri (Design Tokens) ===== */
:root {
    /* Renkler */
    --color-primary: hsl(220, 70%, 55%);
    --color-primary-dark: hsl(220, 70%, 42%);
    --color-primary-light: hsl(220, 70%, 92%);
    --color-accent: hsl(340, 80%, 55%);
    --color-accent-light: hsl(340, 80%, 92%);
    
    --color-bg: hsl(220, 20%, 97%);
    --color-surface: #ffffff;
    --color-surface-elevated: #ffffff;
    --color-text: hsl(220, 15%, 18%);
    --color-text-secondary: hsl(220, 10%, 45%);
    --color-text-muted: hsl(220, 10%, 62%);
    --color-border: hsl(220, 15%, 90%);
    --color-border-light: hsl(220, 15%, 95%);
    
    --color-success: hsl(150, 60%, 42%);
    --color-warning: hsl(40, 95%, 50%);
    --color-error: hsl(0, 75%, 55%);
    
    /* Gradientler */
    --gradient-primary: linear-gradient(135deg, hsl(220, 70%, 55%), hsl(260, 65%, 55%));
    --gradient-accent: linear-gradient(135deg, hsl(340, 80%, 55%), hsl(20, 85%, 55%));
    --gradient-hero: linear-gradient(135deg, hsl(220, 70%, 55%) 0%, hsl(280, 60%, 55%) 50%, hsl(340, 80%, 55%) 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 100%);
    
    /* Tipografi */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Outfit', 'Inter', sans-serif;
    
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    
    /* Aralıklar */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    
    /* Kenarlıklar */
    --radius-sm: 0.375rem;
    --radius-md: 0.625rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Gölgeler */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 6px 16px rgba(0,0,0,0.04);
    --shadow-card-hover: 0 4px 12px rgba(0,0,0,0.1), 0 12px 28px rgba(0,0,0,0.06);
    
    /* Geçişler */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    
    /* Layout */
    --container-max: 1200px;
    --sidebar-width: 320px;
    --header-height: 70px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-dark);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text);
}

/* ===== Container ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* ===== Header ===== */
.site-header {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.85);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: var(--text-2xl);
    color: var(--color-text);
    text-decoration: none;
    transition: transform var(--transition-base);
}

.site-logo:hover {
    transform: scale(1.02);
    color: var(--color-text);
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    box-shadow: 0 4px 12px hsla(220, 70%, 55%, 0.3);
}

/* Ana Navigasyon */
.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.main-nav a {
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

/* Mobil Menü Butonu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
    color: var(--color-text);
    font-size: 1.5rem;
}

/* Arama Formu (Header) */
.header-search {
    position: relative;
}

.header-search input {
    padding: var(--space-2) var(--space-4);
    padding-left: 2.5rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-family: var(--font-body);
    width: 200px;
    transition: all var(--transition-base);
    background: var(--color-bg);
    outline: none;
}

.header-search input:focus {
    border-color: var(--color-primary);
    width: 260px;
    background: white;
    box-shadow: 0 0 0 3px hsla(220, 70%, 55%, 0.1);
}

.header-search .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    font-size: 0.9rem;
    pointer-events: none;
}

/* ===== Ana İçerik Alanı ===== */
.main-content {
    display: grid;
    grid-template-columns: 1fr var(--sidebar-width);
    gap: var(--space-10);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-10) var(--space-6);
    min-height: calc(100vh - var(--header-height) - 200px);
}

.content-area {
    min-width: 0;
}

/* ===== Hero Bölümü ===== */
.hero-section {
    margin-bottom: var(--space-10);
}

.hero-card {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: var(--color-surface);
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.hero-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.hero-card-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.hero-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-10) var(--space-8) var(--space-8);
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    color: white;
}

.hero-card-content .category-badge {
    background: var(--gradient-accent);
    color: white;
}

.hero-card-content h2 {
    font-size: var(--text-3xl);
    color: white;
    margin: var(--space-3) 0;
    line-height: 1.2;
}

.hero-card-content h2 a {
    color: white;
    text-decoration: none;
}

.hero-card-content h2 a:hover {
    color: hsla(0, 0%, 100%, 0.9);
}

.hero-card-content .post-meta {
    color: hsla(0, 0%, 100%, 0.8);
}

/* ===== Yazı Kartları ===== */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}

.post-card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.post-card-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.post-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.post-card:hover .post-card-image {
    transform: scale(1.08);
}

.post-card-body {
    padding: var(--space-6);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-card-body h3 {
    font-size: var(--text-lg);
    margin: var(--space-2) 0 var(--space-3);
    line-height: 1.4;
}

.post-card-body h3 a {
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.post-card-body h3 a:hover {
    color: var(--color-primary);
}

.post-card-excerpt {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-4);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-border-light);
}

/* Kategori Badge */
.category-badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    transition: all var(--transition-fast);
}

.category-badge:hover {
    background: var(--color-primary);
    color: white;
}

/* Post Meta */
.post-meta {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.post-meta-item svg {
    width: 15px;
    height: 15px;
    opacity: 0.6;
}

/* ===== Tekil Yazı ===== */
.single-post {
    background: var(--color-surface);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.single-post-header {
    padding: var(--space-10) var(--space-10) var(--space-6);
}

.single-post-header .breadcrumb {
    margin-bottom: var(--space-2);
}

.single-post-header h1 {
    font-size: var(--text-4xl);
    line-height: 1.2;
    margin-bottom: var(--space-4);
    font-weight: 800;
}

.single-featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    margin-bottom: var(--space-2);
}

.single-post-content {
    padding: var(--space-8) var(--space-10) var(--space-10);
    font-size: var(--text-lg);
    line-height: 1.85;
}

.single-post-content h2 {
    font-size: var(--text-2xl);
    margin: var(--space-10) 0 var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--color-border-light);
}

.single-post-content h3 {
    font-size: var(--text-xl);
    margin: var(--space-8) 0 var(--space-3);
}

.single-post-content p {
    margin-bottom: var(--space-6);
}

.single-post-content img {
    border-radius: var(--radius-lg);
    margin: var(--space-6) 0;
    box-shadow: var(--shadow-md);
}

.single-post-content ul, .single-post-content ol {
    margin: var(--space-4) 0;
    padding-left: var(--space-8);
}

.single-post-content li {
    margin-bottom: var(--space-2);
}

.single-post-content blockquote {
    border-left: 4px solid var(--color-primary);
    background: var(--color-primary-light);
    padding: var(--space-6);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    margin: var(--space-6) 0;
    font-style: italic;
}

.single-post-content a {
    color: var(--color-primary);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-fast);
}

.single-post-content a:hover {
    border-bottom-color: var(--color-primary);
}

/* İçindekiler Tablosu */
.toc {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    margin-bottom: var(--space-8);
}

.toc-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    cursor: pointer;
}

.toc ol {
    list-style: none;
    counter-reset: toc-counter;
    padding: 0;
}

.toc ol li {
    counter-increment: toc-counter;
    margin-bottom: var(--space-2);
}

.toc ol li::before {
    content: counter(toc-counter) ".";
    font-weight: 600;
    color: var(--color-primary);
    margin-right: var(--space-2);
}

.toc ol li a {
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.toc ol li a:hover {
    color: var(--color-primary);
}

/* Etiketler */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    padding: var(--space-8) var(--space-10);
    border-top: 1px solid var(--color-border-light);
}

.post-tags .tag {
    display: inline-flex;
    align-items: center;
    padding: var(--space-2) var(--space-4);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.post-tags .tag:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* Sosyal Paylaşım */
.share-buttons {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-6) var(--space-10);
    border-top: 1px solid var(--color-border-light);
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: white;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.share-btn.twitter { background: #1DA1F2; }
.share-btn.facebook { background: #1877F2; }
.share-btn.whatsapp { background: #25D366; }

/* ===== Yorumlar ===== */
.comments-section {
    background: var(--color-surface);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    margin-top: var(--space-8);
    box-shadow: var(--shadow-lg);
}

.comments-section h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-8);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.comment-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 var(--space-3);
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: white;
    font-size: var(--text-sm);
    font-weight: 700;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-item {
    padding: var(--space-6);
    margin-bottom: var(--space-4);
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    transition: background var(--transition-fast);
}

.comment-item:hover {
    background: var(--color-primary-light);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.comment-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: var(--text-lg);
    flex-shrink: 0;
}

.comment-author-name {
    font-weight: 600;
    color: var(--color-text);
}

.comment-date {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.comment-body {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.comment-reply-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    margin-top: var(--space-3);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-primary);
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    transition: background var(--transition-fast);
}

.comment-reply-btn:hover {
    background: var(--color-primary-light);
}

.comment-children {
    margin-left: var(--space-8);
    margin-top: var(--space-4);
    padding-left: var(--space-6);
    border-left: 2px solid var(--color-border);
}

/* Yorum Formu */
.comment-form {
    margin-top: var(--space-8);
    padding-top: var(--space-8);
    border-top: 1px solid var(--color-border);
}

.comment-form h4 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-6);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.form-group {
    margin-bottom: var(--space-4);
}

.form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text);
    transition: all var(--transition-fast);
    background: var(--color-bg);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 3px hsla(220, 70%, 55%, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-8);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 12px hsla(220, 70%, 55%, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px hsla(220, 70%, 55%, 0.4);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
}

/* Honeypot (bot koruması - gizli alan) */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* ===== Sidebar ===== */
.sidebar {
    position: sticky;
    top: calc(var(--header-height) + var(--space-6));
    align-self: start;
}

.sidebar-widget {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-card);
}

.widget-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--color-border-light);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.widget-title .widget-icon {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: white;
}

/* Kategori Listesi */
.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: var(--space-1);
}

.category-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
}

.category-list li a:hover {
    background: var(--color-primary-light);
    color: var(--color-primary);
    padding-left: var(--space-5);
}

.category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 var(--space-2);
    border-radius: var(--radius-full);
    background: var(--color-bg);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-text-muted);
}

/* Popüler Yazılar */
.popular-post-item {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.popular-post-item:last-child {
    border-bottom: none;
}

.popular-post-thumb {
    width: 70px;
    height: 55px;
    border-radius: var(--radius-md);
    object-fit: cover;
    flex-shrink: 0;
}

.popular-post-info h4 {
    font-size: var(--text-sm);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: var(--space-1);
}

.popular-post-info h4 a {
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.popular-post-info h4 a:hover {
    color: var(--color-primary);
}

.popular-post-info .post-date {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

/* Etiket Bulutu */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.tag-cloud a {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.tag-cloud a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    transform: translateY(-1px);
}

/* ===== Breadcrumb ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    width: 100%;
}

.breadcrumb::-webkit-scrollbar {
    display: none;
}

.breadcrumb a,
.breadcrumb span {
    flex-shrink: 0;
}

.breadcrumb a {
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--color-primary);
}

.breadcrumb .separator {
    color: var(--color-border);
    font-size: var(--text-xs);
}

/* ===== Pagination ===== */
.pagination {
    margin-top: var(--space-10);
    display: flex;
    justify-content: center;
}

.pagination-list {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    list-style: none;
    padding: 0;
}

.pagination-list li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--space-3);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    transition: all var(--transition-fast);
}

.pagination-list li a:hover,
.pagination-list li.active a {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.pagination-dots {
    color: var(--color-text-muted);
    padding: 0 var(--space-2);
}

/* ===== İlgili Yazılar ===== */
.related-posts {
    margin-top: var(--space-10);
}

.related-posts h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-6);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

/* ===== Footer ===== */
.site-footer {
    background: hsl(220, 15%, 14%);
    color: hsl(220, 10%, 70%);
    padding: var(--space-16) 0 var(--space-8);
    margin-top: var(--space-16);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-10);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.footer-about h3 {
    color: white;
    margin-bottom: var(--space-4);
    font-size: var(--text-xl);
}

.footer-about p {
    font-size: var(--text-sm);
    line-height: 1.8;
}

.footer-links h4,
.footer-categories h4 {
    color: white;
    margin-bottom: var(--space-4);
    font-size: var(--text-base);
}

.footer-links ul,
.footer-categories ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li,
.footer-categories ul li {
    margin-bottom: var(--space-2);
}

.footer-links ul li a,
.footer-categories ul li a {
    color: hsl(220, 10%, 60%);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.footer-links ul li a:hover,
.footer-categories ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-8);
    margin-top: var(--space-8);
    border-top: 1px solid hsl(220, 10%, 22%);
    font-size: var(--text-sm);
    color: hsl(220, 10%, 50%);
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-6);
    padding-right: var(--space-6);
}

/* ===== Alertler ===== */
.alert {
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-6);
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    animation: slideDown 0.3s ease;
}

.alert-success {
    background: hsla(150, 60%, 42%, 0.1);
    color: var(--color-success);
    border: 1px solid hsla(150, 60%, 42%, 0.2);
}

.alert-error {
    background: hsla(0, 75%, 55%, 0.1);
    color: var(--color-error);
    border: 1px solid hsla(0, 75%, 55%, 0.2);
}

.alert-warning {
    background: hsla(40, 95%, 50%, 0.1);
    color: hsl(30, 80%, 40%);
    border: 1px solid hsla(40, 95%, 50%, 0.2);
}

.alert-icon {
    font-size: var(--text-lg);
    font-weight: 700;
}

/* ===== 404 Sayfası ===== */
.error-404 {
    text-align: center;
    padding: var(--space-16) var(--space-6);
}

.error-404 .error-code {
    font-size: 8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-4);
}

.error-404 h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
}

.error-404 p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-8);
    font-size: var(--text-lg);
}

/* ===== Arama Sayfası ===== */
.search-results-header {
    margin-bottom: var(--space-8);
}

.search-results-header h1 {
    font-size: var(--text-3xl);
}

.search-highlight {
    background: var(--color-accent-light);
    padding: 0 var(--space-1);
    border-radius: var(--radius-sm);
}

.search-page-form {
    max-width: 600px;
    margin-bottom: var(--space-8);
    position: relative;
}

.search-page-form input {
    width: 100%;
    padding: var(--space-4) var(--space-6);
    padding-right: 120px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: var(--text-lg);
    font-family: var(--font-body);
    outline: none;
    transition: border-color var(--transition-fast);
}

.search-page-form input:focus {
    border-color: var(--color-primary);
}

.search-page-form button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
}

/* Kategori arşiv başlığı */
.archive-header {
    margin-bottom: var(--space-8);
    padding: var(--space-8);
    background: var(--color-surface);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-card);
}

.archive-header h1 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-2);
}

.archive-header .archive-desc {
    color: var(--color-text-secondary);
}

.archive-header .archive-count {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-top: var(--space-2);
}

/* ===== Animasyonlar ===== */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease;
}

.slide-up {
    animation: slideUp 0.5s ease;
}

/* Placeholder görsel */
.no-image {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 2.5rem;
    width: 100%;
    height: 100%;
    min-height: 200px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .sidebar {
        position: static;
    }
    
    .posts-grid {
        gap: var(--space-6);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }
    
    .main-nav {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-surface);
        flex-direction: column;
        padding: var(--space-4);
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-xl);
        z-index: 999;
    }
    
    .main-nav.open {
        display: flex;
    }
    
    .main-nav a {
        padding: var(--space-3) var(--space-4);
        width: 100%;
        border-radius: var(--radius-md);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-search {
        display: none;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-card-image {
        height: 280px;
    }
    
    .hero-card-content h2 {
        font-size: var(--text-xl);
    }
    
    .single-post-header {
        padding: var(--space-6);
    }
    
    .single-post-header h1 {
        font-size: var(--text-2xl);
    }
    
    .single-post-content {
        padding: var(--space-6);
        font-size: var(--text-base);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .comment-children {
        margin-left: var(--space-4);
        padding-left: var(--space-4);
    }
    
    .comments-section {
        padding: var(--space-6);
    }
    
    .share-buttons {
        padding: var(--space-4) var(--space-6);
        flex-wrap: wrap;
    }
    
    .post-tags {
        padding: var(--space-4) var(--space-6);
    }
    
    .error-404 .error-code {
        font-size: 5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-4);
    }
    
    .main-content {
        padding: var(--space-6) var(--space-4);
    }
    
    .hero-card-image {
        height: 220px;
    }
    
    .single-post-header h1 {
        font-size: var(--text-xl);
    }
    
    .post-card-body {
        padding: var(--space-4);
    }
}

/* Mobil Sosyal Takip */
.nav-social-follow {
    display: none;
}

@media (max-width: 768px) {
    .main-nav.open .nav-social-follow {
        display: block !important;
        margin-top: 1.5rem;
        padding: 1.5rem 0.5rem;
        border-top: 1px solid var(--color-border);
        text-align: center;
        width: 100%;
    }
    
    .nav-social-links {
        display: flex !important;
        gap: 0.75rem !important;
        justify-content: center !important;
        align-items: center !important;
        margin-top: 0.5rem;
    }
}

.nav-social-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    color: white !important;
}

.nav-social-btn svg {
    color: white !important;
    stroke: white !important;
    fill: none;
    width: 20px !important;
    height: 20px !important;
}

.nav-social-btn.x-twitter svg {
    fill: white !important;
    stroke: none !important;
    width: 18px !important;
    height: 18px !important;
}

.nav-social-btn.instagram { background: #e1306c; }
.nav-social-btn.facebook { background: #1877f2; }
.nav-social-btn.youtube { background: #ff0000; }
.nav-social-btn.x-twitter { background: #000000; }

/* Yazı Detay Sosyal Takip Kutusu */
.post-follow-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
    padding: var(--space-6) var(--space-10);
    border-top: 1px solid var(--color-border-light);
    background: var(--color-bg);
}

.post-follow-box .follow-title {
    font-weight: 700;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: var(--text-base);
}

.post-follow-box .follow-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.follow-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-secondary);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.follow-btn svg {
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.follow-btn:hover svg {
    transform: scale(1.15);
}

.follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Sosyal Medya Renkleri */
.follow-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-color: transparent;
}
.follow-btn.facebook:hover {
    background: #1877F2;
    color: white;
    border-color: #1877F2;
}
.follow-btn.youtube:hover {
    background: #FF0000;
    color: white;
    border-color: #FF0000;
}
.follow-btn.x-twitter:hover {
    background: #000000;
    color: white;
    border-color: #000000;
}

@media (max-width: 768px) {
    .post-follow-box {
        padding: var(--space-4) var(--space-6);
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-3);
    }
    
    .post-follow-box .follow-links {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Yukarı Git Butonu */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 114, 255, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.back-to-top-arrow-wrapper {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #0072ff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 114, 255, 0.1);
    transition: all var(--transition-base);
}

.back-to-top svg {
    margin: 0;
    padding: 0;
    display: block;
}

.back-to-top .icon-paw {
    color: white !important;
    transition: transform var(--transition-base);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0, 114, 255, 0.4);
    color: white;
}

.back-to-top:hover .back-to-top-arrow-wrapper {
    transform: translateX(-50%) translateY(-3px);
    background: #0072ff;
    color: white;
}

.back-to-top:hover .icon-paw {
    transform: scale(1.1);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* Sürpriz Pati Sosyal Medya */
.paw-social-trigger {
    position: fixed;
    bottom: -60px;
    left: 30px;
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
}

.paw-social-trigger.show {
    bottom: 20px;
}

.paw-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: white;
    border: 2px solid white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-base), box-shadow 0.3s ease;
    padding: 0;
    overflow: hidden;
}

.paw-btn:hover {
    transform: scale(1.1) rotate(-8deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.paw-btn img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.paw-social-popup {
    display: flex;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateX(-10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.paw-social-popup.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateX(0);
}

.paw-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: white !important;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.paw-social-link svg {
    width: 18px !important;
    height: 18px !important;
    display: block;
}

.paw-social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-md);
}

.paw-social-link.instagram { background: #e1306c; }
.paw-social-link.facebook { background: #1877f2; }
.paw-social-link.youtube { background: #ff0000; }
.paw-social-link.x-twitter { background: #000000; }

@media (max-width: 768px) {
    .paw-social-trigger {
        left: 20px;
        bottom: -60px;
    }
    .paw-social-trigger.show {
        bottom: 20px;
    }
    .paw-btn {
        width: 50px;
        height: 50px;
    }
    .paw-social-link {
        width: 34px;
        height: 34px;
    }
}
