:root {
    --max-width:1200px;
    --gap:24px;
    --primary:#2a8dfd;
    --primary-hover:#1666d8;
    --text:#222;
    --muted:#666;
    --bg:#ffffff;
    --bg-alt:#fdfdfd;
    --border:#e0e0e0;
    --radius:10px;
}

/* Global Reset */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Inter', sans-serif; background: var(--bg); color: var(--text); line-height:1.6; }
a { color: var(--primary); text-decoration:none; transition: color .2s ease; }

/* Site Wrap */
.site-wrap { max-width: var(--max-width); margin:10px auto 0; padding:0 20px; }

/* Header */
.site-header { border-top: 6px solid #000000; background: var(--bg); border-bottom:1px solid var(--border); padding:0px; }

/* Top Nav Arka Plan Siyah */
.top-nav { background:#000; padding:10px 0; border-radius:5px; margin-bottom:15px; }
.primary-menu { list-style:none; display:flex; gap:25px; margin:0; padding:0; position:relative; }
.primary-menu li { position:relative; }
.primary-menu li a { font-weight:600; font-size:15px; padding:6px 12px; display:block; color:#fff; }
.primary-menu li a:hover { color: var(--primary); }

/* Submenu */
.primary-menu li ul.sub-menu {
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background:#111;
    border:1px solid #333;
    border-radius:8px;
    box-shadow:0 6px 18px rgba(0,0,0,0.2);
    padding:10px 0;
    min-width:180px;
    z-index:999;
}
.primary-menu li:hover > ul.sub-menu { display:block; }
.primary-menu li ul.sub-menu li a { padding:8px 16px; font-size:14px; color:#fff; white-space:nowrap; }
.primary-menu li ul.sub-menu li a:hover { background:#222; color: var(--primary); }

/* Header Main (Logo + Arama) */
/* Header Main (Logo + Arama) */
.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px; /* Güncellendi */
    margin-bottom: 30px;
    background: var(--bg);
    padding: 0 0;
}

.logo img { width:240px; height:90px; object-fit:contain; }
.header-search { position:relative; max-width:300px; }
.header-search input {
    width:100%;
    padding:10px 40px 10px 12px;
    border-radius:25px;
    border:1px solid var(--border);
    font-size:14px;
    outline:none;
    transition: all .3s ease;
}
.header-search input:focus { border-color:var(--primary); box-shadow:0 0 8px rgba(42,141,253,0.2); }
.header-search button {
    position:absolute;
    right:5px;
    top:50%;
    transform:translateY(-50%);
    background: var(--primary);
    border:none;
    color:#fff;
    width:30px;
    height:30px;
    border-radius:50%;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    transition: background .2s ease;
}
.header-search button:hover { background:var(--primary-hover); }

/* Layout */
.main-grid { display:grid; grid-template-columns:3fr 1fr; gap:var(--gap); }
.content-area { display:flex; flex-direction:column; gap:var(--gap); }

/* Post Card */
.post-card { background: var(--bg-alt); border:1px solid var(--border); border-radius: var(--radius); padding:20px; box-shadow:0 4px 12px rgba(0,0,0,0.03); }
.post-card:hover { box-shadow:0 10px 25px rgba(0,0,0,0.05); }

.entry-title { font-size:22px; font-weight:600; margin-bottom:8px; }
.entry-title a { color: var(--text); }
.entry-title a:hover { color: var(--primary); }

.post-meta { font-size:13px; color: var(--muted); margin-bottom:10px; }

.entry-summary { font-size:15px; line-height:1.7; }

/* Devamını Oku Linki */
.read-more-wrap { margin-top:10px; text-align:right; }
.more-link {
    display:inline-block;
    background:none; 
    padding:0;
    color:#000; /* Siyah renk */
    font-weight:400; /* Bold kaldırıldı */
    text-decoration:none;
}
.more-link:hover { color: var(--primary); } /* Hover mavi */

/* Sidebar */
.sidebar { display:flex; flex-direction:column; gap:var(--gap); width:380px; }
.widget { background: var(--bg-alt); border:1px solid var(--border); border-radius: var(--radius); padding:20px; box-shadow:0 4px 12px rgba(0,0,0,0.03); }
.widget h3 { font-size:16px; font-weight:600; margin-bottom:15px; border-bottom:1px solid var(--border); padding-bottom:8px; }
.widget ul { list-style:none; margin:0; padding:0; }
.widget li { padding:8px 0; border-bottom:1px dashed var(--border); display:flex; align-items:center; gap:10px; flex-wrap:nowrap; overflow:hidden; }
.widget li:last-child { border-bottom:none; }
.widget a { color: var(--text); font-size:14px; text-overflow:ellipsis; white-space:nowrap; overflow:hidden; }
.widget a:hover { color: var(--primary-hover); }
.sidebar-thumb { width:50px; height:50px; object-fit:cover; border-radius:5px; }

/* Son Yorumlar Kullanıcı Adı ve Link Yan Yana */
.comment-author { font-weight:600; margin-right:5px; color:var(--muted); white-space:nowrap; }
.comment-text { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; flex:1; }

/* Comment Form */
.comments-section { background: var(--bg-alt); padding:20px; border:1px solid var(--border); border-radius: var(--radius); margin-top:30px; }
.comments-section h3 { font-size:18px; font-weight:600; margin-bottom:15px; }
.comments-section form { display:flex; flex-direction:column; gap:12px; }
.comments-section input, .comments-section textarea { width:100%; padding:10px; border:1px solid var(--border); border-radius: var(--radius); font-size:14px; }
.comments-section input[type="submit"] { width:auto; background: var(--primary); color:#fff; border:none; cursor:pointer; padding:8px 16px; transition: background .2s ease; }
.comments-section input[type="submit"]:hover { background: var(--primary-hover); }

/* Footer */
.site-footer { background: var(--bg); border-top:1px solid var(--border); padding:20px 0; text-align:center; color: var(--muted); margin-top:40px; }

/* Responsive */
@media (max-width:980px) { .main-grid { grid-template-columns:1fr 300px; } }
@media (max-width:760px) {
    .main-grid { grid-template-columns:1fr; gap:18px; }
    .primary-menu { flex-wrap:wrap; justify-content:flex-start; gap:12px; }
    .header-main { flex-direction:column; align-items:center; }
    .header-search { margin-top:15px; max-width:100%; }
}











/* Sidebar Widget */
.sidebar .widget {
    background: var(--bg-alt);
    border:1px solid var(--border);
    border-radius:10px; /* Border radius eklendi */
    padding:20px;
    box-shadow:0 4px 12px rgba(0,0,0,0.03);
}

/* Sidebar Widget List Items */
.sidebar .widget li {
    transition: background 0.3s ease;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    overflow: hidden;
    border-radius: 5px; /* Hover sırasında köşeler yuvarlatılır */
}

/* Hover ile arka plan değişimi */
.sidebar .widget li:hover {
    background: #f4f4f4; /* Hafif gri hover efekti */
}

/* Sidebar Link Hover */
.sidebar .widget li a {
    color: var(--text);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    transition: color 0.3s ease;
}

.sidebar .widget li a:hover {
    color: var(--primary); /* Hover mavi */
}

/* Popüler Yazılar Küçük Resim Hover */
.sidebar-thumb:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

















/* Top Nav Düzenleme */
.top-nav {
    background: var(--bg); /* Beyaz tema */
    border:none; /* Border kaldırıldı */
    border-radius:5px;
    padding:10px 0;
    margin-bottom:15px;
}

.primary-menu {
    list-style:none;
    display:flex;
    gap:25px;
    margin:0;
    padding:0;
    position:relative;
}

.primary-menu li {
    position:relative;
	list-style: none;
}

.primary-menu li a {
    font-weight:600;
    font-size:15px;
    padding:6px 12px;
    display:block;
    color:#000; /* Siyah link */
    transition: all .2s ease;
}

.primary-menu li a:hover {
    background: var(--primary); /* Hover mavi arka plan */
    color:#fff; /* Yazı beyaz */
    border-radius:5px;
}

/* Submenu */
.primary-menu li ul.sub-menu {
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    border:1px solid var(--border);
    border-radius:8px;
    box-shadow:0 6px 18px rgba(0,0,0,0.06);
    padding:10px 0;
    min-width:180px;
    z-index:999;
}

.primary-menu li:hover > ul.sub-menu {
    display:block;
}

.primary-menu li ul.sub-menu li a {
    padding:8px 16px;
    font-size:14px;
    color:#000;
    white-space:nowrap;
    transition: all .2s ease;
}

.primary-menu li ul.sub-menu li a:hover {
    background: var(--primary);
    color:#fff;
}






















/* Top Nav Wrap */
.top-nav-wrap {
    width: 100%; /* Tam sayfa */
    border-bottom: 1px solid var(--border); /* Alt border */
    background: var(--bg); /* Beyaz tema */
}

/* Top Nav */
.top-nav {
    max-width: var(--max-width);
    margin:0 auto;
    padding:10px 20px;
}

/* Menü Listesi */
.primary-menu {
    list-style:none;
    display:flex;
    gap:0px;
    margin:0;
    padding:0;
}

.primary-menu li a {
    font-weight:600;
    font-size:15px;
    padding:6px 12px;
    display:block;
    color:#000; /* Siyah link */
    transition: all .2s ease;
    border-radius:5px;
}

.primary-menu li a:hover {
    background: var(--primary); /* Hover mavi arka plan */
    color:#fff; /* Yazı beyaz */
}

/* Submenu */
.primary-menu li ul.sub-menu {
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    border:1px solid var(--border);
    border-radius:8px;
    box-shadow:0 6px 18px rgba(0,0,0,0.06);
    padding:10px 0;
    min-width:180px;
    z-index:999;
}

.primary-menu li:hover > ul.sub-menu {
    display:block;
}

.primary-menu li ul.sub-menu li a {
    padding:8px 16px;
    font-size:14px;
    color:#000;
    white-space:nowrap;
    transition: all .2s ease;
}

.primary-menu li ul.sub-menu li a:hover {
    background: var(--primary);
    color:#fff;
}















































/* Single Post İçerik */
.single-post .entry-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 30px;
}

/* Paragraflar */
.single-post .entry-content p {
    margin-bottom: 16px;
}

/* Başlıklar */
.single-post .entry-content h1,
.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4,
.single-post .entry-content h5,
.single-post .entry-content h6 {
    margin: 24px 0 12px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

/* Linkler */
.single-post .entry-content a {
    color: var(--primary);
    text-decoration: none;
}
.single-post .entry-content a:hover {
    color: var(--primary-hover);
}

/* Listeler */
.single-post .entry-content ul,
.single-post .entry-content ol {
    margin: 16px 0 16px 30px;
    padding: 0;
}

.single-post .entry-content ul li,
.single-post .entry-content ol li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Table */
.single-post .entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.single-post .entry-content table th,
.single-post .entry-content table td {
    border: 1px solid var(--border);
    padding: 10px 12px;
    text-align: left;
}

.single-post .entry-content table th {
    background: var(--bg);
    font-weight: 600;
    color: var(--text);
}

/* Table Hover */
.single-post .entry-content table tr:hover {
    background: #f4f4f4;
}

/* Blockquote */
.single-post .entry-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 10px 20px;
    margin: 20px 0;
    background: #fdfdfd;
    color: var(--muted);
    font-style: italic;
    border-radius: 5px;
}

/* Images */
.single-post .entry-content img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 8px;
}

/* Code */
.single-post .entry-content pre {
    background: #f5f5f5;
    padding: 12px;
    overflow-x: auto;
    border-radius: 6px;
    margin: 15px 0;
    font-size: 14px;
	max-height: 600px;
}

.single-post .entry-content code {
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
}

/* Responsive */
@media (max-width:760px) {
    .single-post .entry-content table {
        display: block;
        overflow-x: auto;
    }
}





































.category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-list li {
    display: flex;                 /* Yatay yerleşim */
    justify-content: space-between; /* Ad solda, sayı sağda */
    align-items: center;
    padding: 6px 12px;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.category-list li:hover {
    background: #f4f4f4;           /* Hover arka plan */
    color: #2a8dfd;                /* Hover mavi yazı */
}

.cat-name {
    flex: 1;                       /* Ad solda kalır */
    white-space: nowrap;            /* Tek satırda kalır */
    overflow: hidden;
    text-overflow: ellipsis;
}

.cat-count {
    flex: 0;                       /* Sayı sağda sabit */
    white-space: nowrap;            /* Alt satıra geçmez */
}





































.archive-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.archive-list li {
    display: flex;                    /* Flex ile yatay yerleşim */
    justify-content: space-between;   /* Tarih solda, sayı sağda */
    align-items: center;
    padding: 6px 12px;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.archive-list li:hover {
    background: #f4f4f4;
    color: #2a8dfd;
}

/* Tarih ve sayıyı ayırmak için span ekleyelim */
.archive-list li a {
    display: flex;
    justify-content: space-between;
    width: 100%;
    text-decoration: none;
    color: var(--text);
}

.archive-list li a .post-count {
    margin-left: 10px;
    flex: 0;
    white-space: nowrap;
    text-align: right;
}






























/* Footer */
.site-footer {
    background: var(--bg); /* Beyaz tema */
    border-top: 1px solid var(--border);
    padding: 20px 0;
    color: var(--muted);
    font-size: 14px;
}

.footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between; /* Sol ve sağ */
    align-items: center;
    flex-wrap: wrap;
}

.footer-left,
.footer-right {
    margin: 5px 0;
}

.footer-right a {
    color: var(--primary);
    text-decoration: none;
}

.footer-right a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 760px) {
    .footer-wrap {
        flex-direction: column;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        margin: 5px 0;
    }
}




































/* Header Main */
.header-main {
    margin-top: 30px;
    margin-bottom: 10px;
    width: 100%;
}

.header-main-wrap {
    display: flex;
    justify-content: space-between; /* Logo sola, arama sağa */
    align-items: center;            /* Aynı hizada durur */
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo */
.logo img {
    width: 360px;
    height: 90px;
    object-fit: none;
}

/* Arama Formu */
.header-search {
    max-width: 360px;
	height: 40px;
    width: 100%;
    position: relative;
}

/* Arama input ve buton */
.header-search input {
    width: 100%;
    padding: 10px 40px 10px 12px;
    border-radius: 25px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.header-search input:focus {
    border-color: #2a8dfd;
    box-shadow: 0 0 8px rgba(42, 141, 253, 0.2);
}

.header-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #2a8dfd;
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background 0.2s ease;
}

.header-search button:hover {
    background: #1666d8;
}

/* Responsive */
@media (max-width: 980px) {
    .header-main-wrap {
        flex-direction: column; /* Mobilde üst üste */
        align-items: center;
        gap: 15px;
    }
    .header-search {
        max-width: 100%;
    }
}











































/* Sayfalama */
.pagination,
.wp-pagenavi {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.pagination a,
.wp-pagenavi a,
.pagination span.current,
.wp-pagenavi span.current {
    padding: 6px 12px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    color: #222;
    transition: all 0.3s ease;
}

.pagination a:hover,
.wp-pagenavi a:hover {
    background: #2a8dfd;
    color: #fff;
    border-color: #2a8dfd;
}

.pagination span.current,
.wp-pagenavi span.current {
    background: #2a8dfd;
    color: #fff;
    border-color: #2a8dfd;
}






































/* Inline code */
code {
    background-color: #f5f5f5; /* Açık gri arka plan */
    color: #d6336c;           /* Minimal pembe/mor ton */
    font-family: 'Fira Code', monospace;
    font-size: 0.95em;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Kod blokları */
pre {
    background-color: #fdfdfd; /* Beyaz tema uyumlu */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    overflow-x: auto;
    font-family: 'Fira Code', monospace;
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Kod bloğu içinde <code> */
pre code {
    background: none; /* pre zaten arka plan veriyor */
    color: #000000;   /* Mavi ton */
    padding: 0;
    border-radius: 0;
}

/* Hover efektli kod blokları (isteğe bağlı) */
pre:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}










































































/* =========================
   Comments Container
========================= */
.comments-section,
.commentlist,
#respond {
    background: #fafafa;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
}

/* Başlık */
.comments-section h3,
#respond h3.comment-reply-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

/* =========================
   Comment List
========================= */
.commentlist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Tek Yorum */
.comment {
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #fff;
    border-left: 4px solid transparent;
}
.comment:hover {
    border-left: 4px solid #2a8dfd;
    background: #f7faff;
}

/* Avatar */
.comment-author img.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid #e0e0e0;
}

/* Yazar ve tarih */
.comment-body {
    flex: 1;
}
.comment-author .fn a {
    font-weight: 600;
    color: #222;
    text-decoration: none;
}
.comment-author .says {
    font-size: 13px;
    color: #666;
    margin-left: 5px;
}
.comment-meta a {
    font-size: 12px;
    color: #999;
    text-decoration: none;
}
.comment-meta a:hover {
    text-decoration: underline;
}

/* Yorum metni */
.comment p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin: 8px 0 0 0;
}

/* Yanıt linki */
.comment .reply a.comment-reply-link {
    font-size: 13px;
    color: #2a8dfd;
    text-decoration: none;
    transition: all 0.2s ease;
}
.comment .reply a.comment-reply-link:hover {
    text-decoration: underline;
}

/* Admin yorumu özel renk */
.comment.bypostauthor {
    border-left-color: #ff8c00;
}

/* Nested reply (alt yorumlar) */
.comment .children {
    margin-left: 50px;
    border-left: 2px solid #e0e0e0;
    padding-left: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .comment {
        flex-direction: column;
    }
    .comment .children {
        margin-left: 20px;
        padding-left: 10px;
    }
}










/* =========================
   Modern Comment List & Form
========================= */

/* Comment List Container */
ol.commentlist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Tek Yorum */
.comment {
    background: #fff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 12px !important;
    padding: 15px 20px !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03) !important;
    transition: all 0.3s ease !important;
}
.comment:hover {
    box-shadow: 0 6px 15px rgba(0,0,0,0.08) !important;
}

/* Avatar */
.comment .comment-author img.avatar {
    border-radius: 50% !important;
    margin-right: 12px !important;
    width: 40px !important;
    height: 40px !important;
}

/* Yazar ve Tarih */
.comment .comment-author,
.comment .comment-meta {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14px !important;
    color: #333 !important;
}

/* Yorum Metni */
.comment p {
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #222 !important;
    margin-top: 10px !important;
}

/* Yanıt Linki */
.comment .reply a.comment-reply-link {
    font-size: 13px !important;
    color: #2a8dfd !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}
.comment .reply a.comment-reply-link:hover {
    color: #1666d8 !important;
}

/* Nested Reply */
.comment .children {
    margin-left: 35px !important;
    border-left: 2px solid #e0e0e0 !important;
    padding-left: 15px !important;
}

/* =========================
   Comment Form Container
========================= */
#respond.comment-respond {
    background: #fff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 12px !important;
    padding: 25px 30px !important;
    box-shadow: 0 3px 12px rgba(0,0,0,0.03) !important;
    margin-top: 30px !important;
}

/* Form Başlığı */
#respond h3.comment-reply-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    color: #222 !important;
}
#respond h3.comment-reply-title a {
    color: #2a8dfd !important;
    text-decoration: none !important;
}
#respond h3.comment-reply-title a:hover {
    color: #1666d8 !important;
}

/* Cancel Reply Link */
#cancel-comment-reply-link {
    font-size: 13px !important;
    color: #666 !important;
    text-decoration: underline !important;
    margin-left: 10px !important;
}

/* Form Notları */
.comment-notes {
    font-size: 13px !important;
    color: #666 !important;
    margin-bottom: 15px !important;
}

/* Inputs & Textarea */
.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
    width: 100% !important;
    padding: 12px 15px !important;
    margin-bottom: 15px !important;
    border: 1px solid #ccc !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    outline: none !important;
    transition: all 0.2s ease !important;
}
.comment-respond input:focus,
.comment-respond textarea:focus {
    border-color: #2a8dfd !important;
    box-shadow: 0 0 8px rgba(42,141,253,0.25) !important;
}

/* Checkbox */
.comment-form-cookies-consent {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 13px !important;
    color: #666 !important;
    margin-bottom: 15px !important;
}

/* Submit Button */
.comment-respond input[type="submit"] {
    background: #2a8dfd !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer !important;
    padding: 10px 22px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.2s ease !important;
}
.comment-respond input[type="submit"]:hover {
    background: #1666d8 !important;
    transform: translateY(-2px) !important;
}

/* Responsive */
@media (max-width: 768px) {
    #respond.comment-respond,
    ol.commentlist {
        padding: 15px !important;
    }
    .comment-respond input[type="submit"] {
        width: 100% !important;
    }
    .comment .children {
        margin-left: 20px !important;
        padding-left: 10px !important;
    }
}


















































/* =========================
   Comment Form Container
========================= */
.comment-respond {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 3px 15px rgba(0,0,0,0.03);
    margin-top: 30px;
}

/* Form Başlığı */
.comment-respond h3.comment-reply-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}
.comment-respond h3.comment-reply-title a {
    color: #2a8dfd;
    text-decoration: none;
    transition: color 0.2s ease;
}
.comment-respond h3.comment-reply-title a:hover {
    color: #1666d8;
}

/* Cancel Reply Link */
#cancel-comment-reply-link {
    font-size: 13px;
    color: #666;
    text-decoration: underline;
    margin-left: 10px;
}

/* Form Notları */
.comment-notes {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

/* Input ve Textarea */
.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.comment-respond input:focus,
.comment-respond textarea:focus {
    border-color: #2a8dfd;
    box-shadow: 0 0 8px rgba(42,141,253,0.25);
}

/* Checkbox */
.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}
.comment-form-cookies-consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

/* Submit Button */
.comment-respond input[type="submit"] {
    background: #2a8dfd;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}
.comment-respond input[type="submit"]:hover {
    background: #1666d8;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .comment-respond {
        padding: 20px;
    }
    .comment-respond input[type="submit"] {
        width: 100%;
    }
}

