/* Blog Page Styles */
.blog-page-header {
    text-align: center;
    padding: 40px 0 30px;
    margin-bottom: 30px;
}

.blog-page-header .page-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px;
    font-family: 'Poppins', sans-serif;
}

.blog-page-header .page-description {
    font-size: 16px;
    color: #777;
    margin: 0;
}

/* Blog Posts List - Alt Alta */
.blog-posts-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Post Card - Yatay */
.blog-post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
}

.blog-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.blog-post-image {
    display: block;
    overflow: hidden;
    width: 300px;
    min-width: 300px;
    height: 200px;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 12px;
    color: #999;
}

.blog-post-meta i {
    margin-right: 4px;
    font-size: 11px;
}

.blog-post-category a {
    color: #ff4757;
    text-decoration: none;
    font-weight: 500;
}

.blog-post-category a:hover {
    text-decoration: underline;
}

.blog-post-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}

.blog-post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: #ff4757;
}

.blog-post-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px;
    flex: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ff4757;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    color: #e63946;
}

.blog-read-more:hover i {
    transform: translateX(4px);
}

/* Blog Pagination */
.blog-pagination {
    margin: 40px 0 60px;
    text-align: center;
}

.blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-pagination .page-numbers:hover {
    background: #ff4757;
    border-color: #ff4757;
    color: #fff;
}

.blog-pagination .page-numbers.current {
    background: #ff4757;
    border-color: #ff4757;
    color: #fff;
}

.blog-pagination .prev,
.blog-pagination .next {
    font-weight: 600;
}

/* No Posts Found */
.no-posts-found {
    text-align: center;
    padding: 80px 20px;
}

.no-posts-found i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-posts-found h2 {
    font-size: 24px;
    color: #333;
    margin: 0 0 10px;
}

.no-posts-found p {
    font-size: 16px;
    color: #777;
    margin: 0 0 30px;
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: #ff4757;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    background: #e63946;
    transform: translateY(-2px);
}

/* Single Post Styles */
.single-post .entry-header {
    margin-bottom: 30px;
}

.single-post .entry-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

.single-post .entry-meta {
    display: flex;
    gap: 15px;
    color: #999;
    font-size: 14px;
    margin-top: 10px;
}

.single-post .entry-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.single-post .entry-content p {
    margin-bottom: 20px;
}

.single-post .entry-content h2 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #333;
}

.single-post .entry-content h3 {
    font-size: 20px;
    margin: 25px 0 12px;
    color: #333;
}

.single-post .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.single-post .entry-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #777;
}

.single-post .entry-footer a {
    color: #ff4757;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-posts-list {
        max-width: 100%;
    }
    
    .blog-post-image {
        width: 250px;
        min-width: 250px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .blog-post-card {
        flex-direction: column;
    }
    
    .blog-post-image {
        width: 100%;
        min-width: 100%;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .blog-page-header .page-title {
        font-size: 28px;
    }

    .blog-post-title {
        font-size: 16px;
    }
    
    .blog-post-content {
        padding: 20px;
    }

    .single-post .entry-title {
        font-size: 24px;
    }
}

/* ========================================
   SINGLE POST STYLES - Tek Blog Yazısı
   ======================================== */

.single-post-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0 60px;
}

/* Breadcrumb */
.single-post-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 15px 0;
    margin-bottom: 20px;
    font-size: 13px;
    color: #999;
}

.single-post-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-post-breadcrumb a:hover {
    color: #ff4757;
}

.single-post-breadcrumb .separator {
    font-size: 10px;
    color: #ccc;
}

.single-post-breadcrumb .current {
    color: #333;
    font-weight: 500;
}

/* Post Header */
.single-post-header {
    text-align: center;
    margin-bottom: 30px;
}

.single-post-categories {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.category-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #ff4757 0%, #ff6b7a 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
}

.single-post-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin: 0 0 20px;
    font-family: 'Poppins', sans-serif;
}

.single-post-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #888;
    font-size: 14px;
}

.single-post-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.single-post-meta i {
    color: #ff4757;
    font-size: 13px;
}

/* Featured Image */
.single-post-thumbnail {
    margin-bottom: 35px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.single-post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* Post Content */
.single-post-content {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
}

.single-post-content p {
    margin-bottom: 24px;
}

.single-post-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.single-post-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin: 35px 0 15px;
}

.single-post-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #444;
    margin: 30px 0 12px;
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 25px 0;
}

.single-post-content ul,
.single-post-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.single-post-content li {
    margin-bottom: 10px;
}

.single-post-content blockquote {
    margin: 30px 0;
    padding: 25px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-left: 4px solid #ff4757;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 18px;
    color: #555;
}

.single-post-content a {
    color: #ff4757;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.single-post-content a:hover {
    border-bottom-color: #ff4757;
}

/* Tags */
.single-post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.tags-label {
    font-weight: 600;
    color: #333;
}

.tags-label i {
    color: #ff4757;
    margin-right: 5px;
}

.tag-link {
    display: inline-block;
    padding: 6px 14px;
    background: #f5f5f5;
    color: #666;
    font-size: 13px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: #ff4757;
    color: #fff;
}

/* Share Buttons */
.single-post-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 30px 0;
}

.share-label {
    font-weight: 600;
    color: #333;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.linkedin { background: #0a66c2; }

/* Author Box */
.single-post-author {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 40px 0;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 0 0 8px;
}

.author-bio {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Post Navigation */
.single-post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.single-post-navigation a {
    display: block;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.single-post-navigation a:hover {
    border-color: #ff4757;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.1);
}

.nav-prev { text-align: left; }
.nav-next { text-align: right; }
.nav-prev.empty { visibility: hidden; }

.nav-label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

/* Related Posts */
.related-posts {
    margin: 50px 0;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.related-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin: 0 0 25px;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.related-post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.related-post-image {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-content {
    padding: 15px;
}

.related-post-date {
    font-size: 12px;
    color: #999;
}

.related-post-title {
    font-size: 15px;
    font-weight: 600;
    margin: 8px 0 0;
    line-height: 1.4;
}

.related-post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-title a:hover {
    color: #ff4757;
}

/* Single Post Responsive */
@media (max-width: 768px) {
    .single-post-title {
        font-size: 28px;
    }
    
    .single-post-meta {
        gap: 12px;
        font-size: 13px;
    }
    
    .single-post-content {
        font-size: 16px;
    }
    
    .single-post-author {
        flex-direction: column;
        text-align: center;
    }
    
    .single-post-navigation {
        grid-template-columns: 1fr;
    }
    
    .nav-prev, .nav-next {
        text-align: left;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .single-post-title {
        font-size: 24px;
    }
    
    .single-post-header {
        text-align: left;
    }
    
    .single-post-categories {
        justify-content: flex-start;
    }
    
    .single-post-meta {
        justify-content: flex-start;
    }
}

/* ========================================
   COMMENTS SECTION - Yorumlar
   ======================================== */

.comments-area {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.comments-title {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin: 0 0 35px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.comments-title::before {
    content: '\f4ad';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, #ff4757 0%, #ff6b7a 100%);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 18px;
}

/* Comment List */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment {
    margin-bottom: 30px;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comment-body {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    position: relative;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.comment-body:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.comment .children {
    list-style: none;
    padding-left: 40px;
    margin-top: 25px;
    border-left: 3px solid #ff4757;
}

.comment .children .comment-body {
    background: linear-gradient(135deg, #fff9fa 0%, #fff 100%);
    border: 1px solid #ffe0e3;
}

.comment .children .comment-body::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 25px;
    width: 20px;
    height: 2px;
    background: #ff4757;
}

/* Comment Meta */
.comment-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 12px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.comment-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.comment-author .fn {
    font-weight: 700;
    color: #222;
    font-size: 16px;
}

.comment-author .fn a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.comment-author .fn a:hover {
    color: #ff4757;
}

.comment-author .says {
    display: none;
}

.comment-metadata {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-metadata::before {
    content: '\f017';
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    color: #bbb;
}

.comment-metadata a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.comment-metadata a:hover {
    color: #ff4757;
}

.comment-metadata .edit-link {
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid #ddd;
}

.comment-metadata .edit-link a {
    color: #ff4757;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Comment Content */
.comment-content {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    padding: 18px 0;
    border-top: 1px dashed #eee;
}

.comment-content p {
    margin: 0 0 12px;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

.comment-awaiting-moderation {
    background: #fff8e1;
    color: #f57c00;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-awaiting-moderation::before {
    content: '\f017';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

/* Reply Link */
.reply {
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.comment-reply-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 2px solid #e8e8e8;
    border-radius: 25px;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.comment-reply-link:hover {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b7a 100%);
    border-color: #ff4757;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3);
}

.comment-reply-link::before {
    content: '\f3e5';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 12px;
}

/* Comment Form */
.comment-respond {
    margin-top: 50px;
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.comment-reply-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-reply-title::before {
    content: '\f303';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #ff4757;
    font-size: 20px;
}

.comment-reply-title small {
    display: block;
    margin-top: 10px;
    width: 100%;
}

.comment-reply-title small a {
    font-size: 13px;
    color: #ff4757;
    text-decoration: none;
    font-weight: 500;
}

.comment-reply-title small a:hover {
    text-decoration: underline;
}

.logged-in-as {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    padding: 12px 18px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.logged-in-as::before {
    content: '\f007';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #28a745;
}

.logged-in-as a {
    color: #ff4757;
    text-decoration: none;
    font-weight: 600;
}

.logged-in-as a:hover {
    text-decoration: underline;
}

.comment-notes {
    font-size: 13px;
    color: #888;
    margin-bottom: 25px;
    padding: 12px 15px;
    background: #fff8e1;
    border-radius: 8px;
    border-left: 3px solid #ffc107;
}

.required {
    color: #ff4757;
    font-weight: 700;
}

.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 14px;
}

.comment-form-comment textarea,
.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 15px;
    color: #333;
    background: #fafafa;
    transition: all 0.3s ease;
    font-family: inherit;
}

.comment-form-comment textarea::placeholder,
.comment-form-author input::placeholder,
.comment-form-email input::placeholder,
.comment-form-url input::placeholder {
    color: #aaa;
}

.comment-form-comment textarea:focus,
.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus {
    outline: none;
    border-color: #ff4757;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 71, 87, 0.1);
}

.comment-form-comment textarea {
    min-height: 160px;
    resize: vertical;
}

.comment-form-comment {
    margin-bottom: 25px;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
    margin-bottom: 20px;
}

.comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 25px 0;
    font-size: 13px;
    color: #666;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.comment-form-cookies-consent input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    accent-color: #ff4757;
    cursor: pointer;
}

.form-submit {
    margin-top: 25px;
}

.submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: linear-gradient(135deg, #ff4757 0%, #ff6b7a 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
}

.submit:active {
    transform: translateY(-1px);
}

/* No Comments */
.no-comments {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 16px;
    color: #888;
    font-size: 15px;
    border: 2px dashed #e0e0e0;
}

.no-comments::before {
    content: '\f4ad';
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    font-size: 40px;
    color: #ddd;
    display: block;
    margin-bottom: 15px;
}

/* Comment Navigation */
.comment-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.comment-navigation a {
    color: #ff4757;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.comment-navigation a:hover {
    color: #e63946;
}

/* Comments Responsive */
@media (max-width: 768px) {
    .comments-area {
        padding: 25px;
        margin-top: 40px;
    }
    
    .comment-respond {
        padding: 25px;
    }
    
    .comment .children {
        padding-left: 20px;
    }
    
    .comment-author img {
        width: 45px;
        height: 45px;
    }
    
    .comments-title {
        font-size: 22px;
    }
    
    .comment-reply-title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .comments-area {
        padding: 20px;
    }
    
    .comment-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .comment-body {
        padding: 18px;
    }
    
    .comment-respond {
        padding: 20px;
    }
    
    .comment .children {
        padding-left: 15px;
    }
    
    .logged-in-as {
        font-size: 13px;
    }
    
    .submit {
        width: 100%;
        justify-content: center;
    }
}
