
 
     .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: opacity 0.3s ease, background-color 0.3s ease;
    }
    .swiper-button-prev:after,
    .swiper-button-next:after {
        display: none;
    }
    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        background-color: rgba(166, 30, 34, 0.8);
    }

    /* Breadcrumb Navigasyon */
    .blog-breadcrumb {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 20px;
        font-size: 14px;
    }
    
    .blog-breadcrumb a {
        color: #b0b0b0;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .blog-breadcrumb a:hover {
        color: #a61e22;
    }
    
    .blog-breadcrumb .separator {
        margin: 0 10px;
        color: #666;
    }
    
    .blog-breadcrumb .current {
        color: #fff;
        font-weight: 500;
    }
    
    /* Blog Başlık ve Meta Bilgileri */
    .blog-detail-title {
        font-size: 36px;
        font-weight: 700;
        color: white;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .blog-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
    }
    
    .author-info {
        display: flex;
        align-items: center;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-right: 15px;
        object-fit: cover;
    }
    
    .author-details {
        display: flex;
        flex-direction: column;
    }
    
    .author-name {
        font-size: 16px;
        font-weight: 600;
        color: white;
        margin-bottom: 5px;
    }
    
    .post-details {
        display: flex;
        align-items: center;
        color: #b0b0b0;
        font-size: 14px;
    }
    
    .post-details .separator {
        margin: 0 8px;
    }
    
    .blog-actions {
        display: flex;
        gap: 10px;
    }
    
    .btn-share, .btn-bookmark {
        display: flex;
        align-items: center;
        gap: 8px;
        background-color: #2a2a2a;
        border: none;
        color: #e0e0e0;
        padding: 8px 15px;
        border-radius: 4px;
        font-size: 14px;
        transition: background-color 0.3s;
    }
    
    .btn-share:hover, .btn-bookmark:hover {
        background-color: #3a3a3a;
        color: white;
    }
    
    /* Ana Görsel */
    .blog-main-image {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .blog-main-image img {
        width: 100%;
        border-radius: 8px;
    }
    
    .image-caption {
        font-size: 14px;
        color: #b0b0b0;
        text-align: center;
        margin-top: 10px;
        font-style: italic;
    }
    
    /* Blog İçeriği */
    .blog-content {
        font-size: 16px;
        line-height: 1.8;
        color: #e0e0e0;
    }
    
    .blog-intro {
        font-size: 18px;
        line-height: 1.7;
        color: #fff;
        margin-bottom: 30px;
        font-weight: 500;
    }
    
    .blog-content h2 {
        font-size: 28px;
        font-weight: 700;
        color: white;
        margin: 40px 0 20px;
    }
    
    .blog-content h3 {
        font-size: 22px;
        font-weight: 600;
        color: white;
        margin: 30px 0 15px;
    }
    
    .blog-content p {
        margin-bottom: 20px;
    }
    
    .image-gallery {
        margin: 30px 0;
    }
    
    .image-gallery img {
        border-radius: 8px;
        width: 100%;
    }
    
    /* Araç Karşılaştırma Bölümü */
    .car-specs-comparison {
        display: flex;
        background-color: #222;
        border-radius: 8px;
        padding: 25px;
        margin: 30px 0;
        position: relative;
    }
    
    .car-specs {
        flex: 1;
        padding: 0 15px;
    }
    
    .car-specs h3 {
        font-size: 20px;
        font-weight: 600;
        color: white;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .car-specs img {
        border-radius: 8px;
        margin-bottom: 15px;
    }
    
    .specs-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .specs-list li {
        margin-bottom: 8px;
        font-size: 14px;
        display: flex;
        justify-content: space-between;
    }
    
    .specs-list li strong {
        color: white;
        margin-right: 10px;
    }
    
    .vs-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 700;
        color: #a61e22;
        padding: 0 15px;
    }
    
    /* Alıntı Blokları */
    .quote-block {
        background-color: #2a2a2a;
        border-left: 4px solid #a61e22;
        padding: 20px 25px;
        margin: 30px 0;
        border-radius: 0 8px 8px 0;
    }
    
    .quote-block blockquote {
        font-size: 18px;
        font-style: italic;
        color: white;
        margin: 0;
    }
    
    /* Sonuç Kutusu */
    .verdict-box {
        background-color: #222;
        border-radius: 8px;
        padding: 25px;
        margin: 30px 0;
    }
    
    .verdict-box h3 {
        font-size: 22px;
        font-weight: 600;
        color: white;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .score-grid {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 15px;
        align-items: center;
    }
    
    .score-category {
        font-weight: 500;
        color: white;
    }
    
    .score-bars {
        position: relative;
        height: 30px;
    }
    
    .porsche-score, .mclaren-score {
        position: absolute;
        height: 12px;
        border-radius: 6px;
        color: white;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-right: 10px;
    }
    
    .porsche-score {
        background-color: #a61e22;
        top: 0;
    }
    
    .mclaren-score {
        background-color: #f58220;
        bottom: 0;
    }
    
    .score-legend {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-top: 20px;
        font-size: 14px;
    }
    
    .porsche-legend, .mclaren-legend {
        display: flex;
        align-items: center;
    }
    
    .porsche-legend:before, .mclaren-legend:before {
        content: "";
        display: inline-block;
        width: 12px;
        height: 12px;
        border-radius: 6px;
        margin-right: 8px;
    }
    
    .porsche-legend:before {
        background-color: #a61e22;
    }
    
    .mclaren-legend:before {
        background-color: #f58220;
    }
    
    .conclusion {
        font-size: 18px;
        font-weight: 500;
        color: white;
        margin-top: 30px;
    }
    
    /* Etiketler */
    .blog-tags {
        margin-top: 40px;
    }
    
    .blog-tags h4 {
        font-size: 18px;
        font-weight: 600;
        color: white;
        margin-bottom: 15px;
    }
    
    .tags-container {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .tag {
        background-color: #2a2a2a;
        color: #e0e0e0;
        padding: 6px 12px;
        border-radius: 4px;
        font-size: 14px;
        text-decoration: none;
        transition: background-color 0.3s;
    }
    
    .tag:hover {
        background-color: #3a3a3a;
        color: white;
        text-decoration: none;
    }
    
    .count {
        color: #888;
        font-size: 12px;
    }
    
    /* Yazar Hakkında */
    .author-bio {
        display: flex;
        background-color: #222;
        border-radius: 8px;
        padding: 25px;
        margin-top: 40px;
    }
    
    .author-avatar-large {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        margin-right: 20px;
        object-fit: cover;
    }
    
    .author-bio-content {
        flex: 1;
    }
    
    .author-bio-content h4 {
        font-size: 14px;
        color: #b0b0b0;
        margin-bottom: 5px;
    }
    
    .author-bio-content h3 {
        font-size: 20px;
        font-weight: 600;
        color: white;
        margin-bottom: 10px;
    }
    
    .author-bio-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .author-social {
        display: flex;
        gap: 15px;
    }
    
    .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #2a2a2a;
        border-radius: 50%;
        color: #e0e0e0;
        transition: background-color 0.3s;
    }
    
    .social-link:hover {
        background-color: #a61e22;
        color: white;
    }
    
    /* Yorumlar Bölümü */
    .comments-section {
        margin-top: 40px;
    }
    
    .comments-section h3 {
        font-size: 22px;
        font-weight: 600;
        color: white;
        margin-bottom: 20px;
    }
    
    .comment-form textarea,
    .comment-form input {
        background-color: #2a2a2a;
        border: 1px solid #333;
        color: white;
        border-radius: 4px;
        resize: none;
    }
    
    .comment-form .btn-primary {
        background-color: #a61e22;
        border: none;
    }
    
    .comment {
        display: flex;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #333;
    }
    
    .comment.reply {
        margin-left: 50px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #333;
        border-bottom: none;
    }
    
    .comment-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin-right: 15px;
        object-fit: cover;
    }
    
    .comment-content {
        flex: 1;
    }
    
    .comment-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
    }
    
    .comment-header h5 {
        font-size: 16px;
        font-weight: 600;
        color: white;
        margin: 0;
    }
    
    .comment-date {
        font-size: 12px;
        color: #888;
    }
    
    .comment-content p {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .comment-actions {
        display: flex;
        gap: 15px;
    }
    
    .comment-actions .btn-link {
        color: #b0b0b0;
        font-size: 12px;
        padding: 0;
    }
    
    .comment-actions .btn-link:hover {
        color: white;
        text-decoration: none;
    }
    
    .load-more-comments {
        text-align: center;
        margin-top: 20px;
    }
    
    .btn-outline-secondary {
        border-color: #444;
        color: #e0e0e0;
    }
    
    .btn-outline-secondary:hover {
        background-color: #444;
        color: white;
    }
    
    /* Yan Sütun */
    .sidebar-section {
        background-color: #222;
        border-radius: 8px;
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .sidebar-title {
        font-size: 20px;
        font-weight: 600;
        color: white;
        margin-bottom: 20px;
        border-bottom: 1px solid #333;
        padding-bottom: 10px;
    }
    
    /* İlgili Bloglar */
    .related-post {
        display: flex;
        margin-bottom: 20px;
    }
    
    .related-post:last-child {
        margin-bottom: 0;
    }
    
    .related-post-image {
        width: 80px;
        height: 80px;
        border-radius: 4px;
        margin-right: 15px;
        object-fit: cover;
    }
    
    .related-post-content {
        flex: 1;
    }
    
    .related-post-content h4 {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 8px;
        line-height: 1.4;
    }
    
    .related-post-content h4 a {
        color: white;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .related-post-content h4 a:hover {
        color: #a61e22;
    }
    
    .post-meta {
        display: flex;
        flex-direction: column;
        font-size: 12px;
        color: #888;
    }
    
    /* Yazarın Diğer Yazıları */
    .author-post {
        margin-bottom: 15px;
    }
    
    .author-post a {
        display: block;
        color: #e0e0e0;
        font-size: 15px;
        text-decoration: none;
        margin-bottom: 5px;
        transition: color 0.3s;
    }
    
    .author-post a:hover {
        color: #a61e22;
    }
    
    .post-date {
        font-size: 12px;
        color: #888;
    }
    
    .view-all-link {
        margin-top: 20px;
        text-align: right;
    }
    
    .view-all-link a {
        display: inline-flex;
        align-items: center;
        color: #a61e22;
        font-size: 14px;
        text-decoration: none;
    }
    
    .view-all-link a svg {
        margin-left: 5px;
    }
    
    /* Bülten Aboneliği */
    .newsletter-box p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .newsletter-form input {
        background-color: #2a2a2a;
        border: 1px solid #333;
        color: white;
        padding: 10px 15px;
    }
    
    .newsletter-form .btn-primary {
        background-color: #a61e22;
        border: none;
    }
    
    /* Önerilen Bloglar */
    .section-title {
        font-size: 28px;
        font-weight: 700;
        color: white;
        margin-bottom: 25px;
    }
    
    /* Blog Kartları */
    .blog-card {
        background-color: #222;
        border-radius: 8px;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease;
    }
    
    .blog-card:hover {
        transform: translateY(-5px);
    }
    
    .blog-card-image {
        position: relative;
        height: 220px;
    }
    
    .blog-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .blog-card-category {
        position: absolute;
        top: 15px;
        left: 15px;
        z-index: 10;
    }
    
    .blog-card-category span {
        background-color: rgba(166, 30, 34, 0.9);
        color: white;
        padding: 4px 12px;
        border-radius: 4px;
        font-size: 12px;
    }
    
    .blog-card-content {
        padding: 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .blog-card-title {
        font-size: 18px;
        font-weight: 600;
        color: white;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .blog-card-excerpt {
        font-size: 14px;
        color: #b0b0b0;
        margin-bottom: 15px;
        flex: 1;
        line-height: 1.5;
    }
    
    .blog-card-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 12px;
    }
    
    .author-date {
        display: flex;
        flex-direction: column;
    }
    
    .author {
        color: #b0b0b0;
        font-weight: 500;
    }
    
    .date {
        color: #888;
        margin-top: 3px;
    }
    
    .views {
        color: #888;
        font-size: 12px;
    }

    .rating-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.rating-label {
    color: #e0e0e0;
    margin-right: 15px;
    margin-bottom: 0;
}

.star-rating {
    display: flex;
}

.star {
    font-size: 24px;
    color: #ffffff; /* Beyaz yıldızlar */
    cursor: pointer;
    transition: color 0.2s ease;
    margin-right: 5px;
}

.star.active {
    color: #FFD700; /* Altın sarısı aktif yıldızlar */
}

.star:hover {
    color: #FFD700;
}

/* Hover efekti için */
.star:hover ~ .star {
    color: #ffffff;
}

.star-rating:hover .star {
    color: #FFD700;
}

.star-rating .star:hover ~ .star {
    color: #ffffff;
}

/* Form durumu mesajları */
#comment-status {
    padding: 10px;
    border-radius: 4px;
}

#comment-status.success {
    background-color: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

#comment-status.error {
    background-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

/* Form alanları için hata gösterimi */
.form-control.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
}
    
    /* Responsive Düzenlemeler */
    @media (max-width: 992px) {
        .blog-detail-title {
            font-size: 28px;
        }
        
        .blog-meta {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }
        
        .car-specs-comparison {
            flex-direction: column;
        }
        
        .car-specs {
            margin-bottom: 30px;
        }
        
        .vs-divider {
            margin: 20px 0;
        }
        
        .author-bio {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .author-avatar-large {
            margin-right: 0;
            margin-bottom: 20px;
        }
        
        .author-social {
            justify-content: center;
        }
    }
    
    @media (max-width: 768px) {
        .blog-detail-title {
            font-size: 24px;
        }
        
        .blog-content h2 {
            font-size: 22px;
        }
        
        .blog-content h3 {
            font-size: 18px;
        }
        
        .blog-intro {
            font-size: 16px;
        }
        
        .comment.reply {
            margin-left: 20px;
        }
    } 

    .contact-button{
        background-color: var(--red);
        color: var(--white);
    }
    .image img{
        object-fit: cover;
        width:100%;
        height: 500px;
    } 
    #body{
        padding: 110px 0 0;
        background: #181818;
        color:white;
    }
    #header{
        background-color:#181818 !important
    }
    .container{
        margin-top:40px
    }
    @media  only screen and (max-width: 768px) {
        #body{
            padding: 10px 0 0 !important;
        }
        .container{
            margin-top:20px
        }
        #header{
           position: relative; 
        }
    }