@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800');

body {
    font-family: "Manrope", sans-serif;
}

.btn {
    font-weight: 500;
}

/* Menüye özel dropdown sınıfı */
.menu-dropdown {
    position: relative;
}

/* Menüye özel dropdown-content sınıfı */
.menu-dropdown-content {
    margin-top: 0 !important;
    /* DaisyUI'nin varsayılan margin'ini sıfırlıyoruz */
    transition: opacity 0.2s ease, visibility 0.2s ease;
    opacity: 0;
    visibility: hidden;
}

/* Hover sırasında alt menü görünürlüğünü koru */
.menu-dropdown-hover:hover .menu-dropdown-content {
    opacity: 1;
    visibility: visible;
}

/* Hover olmadığında kapanma gecikmesi */
.menu-dropdown-hover .menu-dropdown-content {
    transition-delay: 0.1s;
    /* Kapanma gecikmesi */
}

.hero {
    height: 650px;
    /* ya da tasarıma uygun yükseklik */
}

/* Menüye özel dropdown sınıfı */
.menu-dropdown {
    position: relative;
}

/* Menüye özel dropdown-content sınıfı */
.menu-dropdown-content {
    margin-top: 0 !important;
    /* DaisyUI'nin varsayılan margin'ini sıfırlıyoruz */
    transition: opacity 0.2s ease, visibility 0.2s ease;
    opacity: 0;
    visibility: hidden;
}

/* Hover sırasında alt menü görünürlüğünü koru */
.menu-dropdown-hover:hover .menu-dropdown-content {
    opacity: 1;
    visibility: visible;
}

/* Hover olmadığında kapanma gecikmesi */
.menu-dropdown-hover .menu-dropdown-content {
    transition-delay: 0.1s;
    /* Kapanma gecikmesi */
}

.hero .owl-carousel,
.hero .owl-carousel .owl-stage-outer,
.hero .owl-carousel .owl-stage,
.hero .owl-carousel .owl-item {
    height: 100% !important;
}

.hero .owl-carousel .item {
    height: 100% !important;
    position: relative;
}

.hero>div:first-child::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    /* Beyaz alanın genişliğini istediğiniz gibi ayarlayın */
    height: 100%;
    background-color: white;
    box-shadow: 8px 0px 12px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.hero {
    overflow: hidden;
    border-radius: 1.5rem;
    /* büyük rounded köşeler */
}

.hero .owl-carousel img {
    border-top-right-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
}

/* Hero Carousel Özel Stilleri */
.sct-hero .owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    /* Kenarlardan boşluk */
    pointer-events: none;
    /* Butonlar dışındaki alana tıklamayı engelle */
}

.sct-hero .owl-carousel .owl-nav button.owl-prev,
.sct-hero .owl-carousel .owl-nav button.owl-next {
    pointer-events: all;
    /* Butonlara tıklamayı etkinleştir */
    background-color: rgba(0, 0, 0, 0.4) !important;
    /* Yarı saydam siyah arka plan */
    color: white !important;
    border-radius: 50% !important;
    width: 40px !important;
    /* Genişlik */
    height: 40px !important;
    /* Yükseklik */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background-color 0.3s ease !important;
    font-size: 1.5rem;
    /* İkon boyutu */
    padding: 0 !important;
    margin: 0 10px;
    /* Butonlar arası boşluk */
}

.sct-hero .owl-carousel .owl-nav button.owl-prev:hover,
.sct-hero .owl-carousel .owl-nav button.owl-next:hover {
    background-color: rgba(0, 0, 0, 0.7) !important;
    /* Hover'da daha koyu arka plan */
}

.sct-hero .owl-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    /* Alttan boşluk */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    /* Noktalar arası boşluk */
}

.sct-hero .owl-theme .owl-dots .owl-dot span {
    width: 20px;
    /* Nokta genişliği */
    height: 20px;
    /* Nokta yüksekliği */
    border-radius: 50% !important;
    background-color: var(--color-white) !important;
    /* Pasif nokta rengi */
    transition: background-color 0.3s ease !important;
    padding: 0 !important;
    margin: 0 !important;
}

.sct-hero .owl-theme .owl-dots .owl-dot.active span,
.sct-hero .owl-theme .owl-dots .owl-dot:hover span {
    background-color: #5C238E !important;
}

.oto-card .card-body::after {
    background: rgb(43, 0, 80);
    background: linear-gradient(180deg, rgb(255 255 255) 39%, rgb(224 229 234) 100%);
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 60%;
    z-index: -1;
}

/* Hero Carousel Metin Animasyonu */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hero-text-animate {
    opacity: 0;
    /* Başlangıçta gizli */
}

.hero-carousel .owl-item.active .hero-text-animate {
    animation: fadeInUp 0.8s ease forwards;
}

/* Hero Carousel Mobil Düzenlemeleri */
@media (max-width: 767px) {

    /* md breakpoint altı */
    .sct-hero {}

    .sct-hero>div:first-child {
        /* Sol kısım (markalar) */
        width: 100% !important;
        padding: 1.5rem !important;
        /* p-6 */
    }

    .sct-hero>div:first-child::after {
        display: none;
        /* Ayırıcı çizgiyi kaldır */
    }

    .sct-hero>div:last-child {
        /* Sağ kısım (slider) */
        width: 100% !important;
        border-radius: 0 !important;
        /* Köşe yuvarlaklığını kaldır */
        border-left: none !important;
        /* Sol kenarlığı kaldır */
        height: auto;
        /* Yüksekliği otomatik yap */
    }

    .sct-hero .owl-carousel img {
        border-radius: 0 !important;
    }

    .sct-hero .hero-carousel .item>div {
        /* Metin kutusu */
        position: relative !important;
        top: auto !important;
        right: auto !important;
        max-width: 100% !important;
        background-color: transparent !important;
        /* Arka planı kaldır */
        padding: 1.5rem 1rem 0 1rem !important;
        /* Üst ve yan boşluklar */
        text-align: center;
        border-radius: 0 !important;
    }

    .sct-hero .hero-carousel .item>div h3 {
        font-size: 1.8rem !important;
        /* Başlık boyutu */
        margin-bottom: 0.5rem !important;
        color: #333 !important;
        /* Koyu renk */
    }

    .sct-hero .hero-carousel .item>div p {
        font-size: 1rem !important;
        /* Açıklama boyutu */
        margin-bottom: 1rem !important;
        color: #555 !important;
        /* Koyu renk */
    }

    .sct-hero .hero-carousel .item>div .btn {
        display: none;
        /* Butonu gizle */
    }

    .sct-hero .owl-carousel .owl-nav {
        display: none !important;
        /* Navigasyon oklarını gizle */
    }

    .sct-hero .owl-carousel .owl-dots {
        position: relative;
        /* Statik konuma getir */
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: -40px;
        /* Daha yukarı çekildi */
        padding-bottom: 10px;
        z-index: 5;
        /* Diğer öğelerin üzerinde kalsın */
        display: flex;
        /* Ortalamak için flex kullan */
        justify-content: center;
        /* Yatayda ortala */
    }

    .sct-hero .owl-carousel .owl-dots .owl-dot span {
        width: 10px;
        height: 10px;
    }

    /* Hero Section Mobil Ek Düzenlemeler */
    .sct-hero {
        border-radius: 0 !important;
        /* Köşe yuvarlaklığını kaldır */
    }

    .sct-hero .hero-carousel .item {
        display: flex;
        /* Flexbox kullan */
        flex-direction: column;
        /* Öğeleri dikey sırala */
    }

    .sct-hero .hero-carousel .item>img {
        order: 1;
        /* Resmi ilk sıraya al (görsel olarak) */
        height: auto;
        /* Yüksekliği otomatik ayarla */
        max-height: 300px;
        /* Maksimum yükseklik sınırı (isteğe bağlı) */
    }

    .sct-hero .hero-carousel .item>div {
        /* Metin kutusu */
        order: 2;
        /* Metin kutusunu ikinci sıraya al */
        position: relative !important;
        /* Absolute pozisyonu kaldır */
        top: auto !important;
        right: auto !important;
        width: 100%;
        /* Tam genişlik */
        max-width: 100% !important;
        background-color: #f3f4f6 !important;
        /* Açık gri arka plan (isteğe bağlı) */
        padding: 1rem !important;
        /* İç boşluk */
        margin-top: 0;
        /* Üst boşluğu sıfırla */
        border-radius: 0 !important;
        /* Köşe yuvarlaklığını kaldır */
        text-align: left;
        /* Metni sola hizala */
    }

    .sct-hero .hero-carousel .item>div h3 {
        font-size: 1.5rem !important;
        /* Başlık boyutu */
        margin-bottom: 0.5rem !important;
        color: #1f2937 !important;
        /* Koyu renk */
    }

    .sct-hero .hero-carousel .item>div p {
        font-size: 0.9rem !important;
        /* Açıklama boyutu */
        margin-bottom: 1rem !important;
        color: #4b5563 !important;
        /* Koyu renk */
    }

    .sct-hero .hero-carousel .item>div .btn {
        display: inline-block !important;
        /* Butonu tekrar göster */
        margin-top: 0.5rem;
    }

    /* Mevcut mobil dots stilini biraz yukarı alalım */
    .sct-hero .owl-carousel .owl-dots {
        margin-top: -40px;
        /* Daha yukarı çek */
        padding-bottom: 5px;
    }
}


.arac-carousel .owl-stage {
    display: flex;
}

.arac-carousel .owl-item {
    display: flex;
    flex: 1 0 auto;
    padding: 0 10px;
    /* Kartlar arası eşit boşluk */
}

.arac-carousel .item {
    transition: all 0.3s ease;
    width: 100%;
    /* Tam genişlik */
    height: 100%;
}

.arac-carousel .card {
    width: 100%;
    height: 100%;
    margin: 0;
}

/**
 * Blog sayfaları için özel CSS
 */

/* Genel Blog Stilleri */
.blog-header h1 {
    font-weight: 700;
    line-height: 1.2;
}

.blog-breadcrumbs {
    border-left: 4px solid #5c238e;
}

/* Manşet Slider Stilleri */
.blog-headline-slider {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.headline-carousel .owl-stage-outer {
    overflow: hidden;
    border-radius: 0.75rem;
}

.headline-item {
    position: relative;
    height: 500px;
}

.headline-nav {
    z-index: 10;
}

.headline-nav-dot {
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.headline-nav-dot:hover {
    transform: scale(1.1);
}

.headline-nav-dot.active {
    background-color: #5c238e;
    color: white;
    border-color: white;
}


/* İlk section'a üstten boşluk ekleme */
main section:first-child {
    /*padding-top: 0;*/
}

/* Son section'a alttan boşluk ekleme */
main section:last-child {
    padding-bottom: 0;
}

.spacer {
    padding: 60px 20px;
}

.sct-karsilastir {
    background-image: linear-gradient(to right, rgba(128, 0, 255, 0.85), rgba(75, 0, 130, 0.8)),
        url('/wp-content/uploads/2025/03/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    /* Ekstra stil önerileri */
    /* Opsiyonel: tam ekran yüksekliği */
    /* Yazı rengi kontrast için */
}

.section-title {
    margin-bottom: 40px
}

@media screen and (max-width: 992px) {
    .section-title {
        margin-bottom: 20px;
        font-size: 1.8rem
    }

    .spacer {
        padding: 40px 10px;
    }
}

.img-vert {
    -moz-transform: scaleY(-1);
    -o-transform: scaleY(-1);
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
    filter: FlipV;
    -ms-filter: "FlipV";
}

.img-hor {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}


/*araç detay*/
/* Araç Detay Sayfası CSS */

/* Renk Seçim Butonları */
.renk-secim {
    cursor: pointer;
    transition: all 0.2s ease;
}

.renk-secim.active {
    transform: scale(1.2);
    box-shadow: 0 0 0 2px white, 0 0 0 4px var(--primary-color);
}

/* Tab Stilleri */
.tabs {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
}

.tab-link {
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.tab-link.current {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 0.5rem 0.5rem;
}

.tab-content.current {
    display: block;
}

/* Versiyon Kartları */
.arac-versiyon {
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.arac-versiyon:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Kampanya Stilleri */
.kampanya-kutusu {
    border: 1px solid #e2e8f0;
}

/* SSS Accordion */
.sss-toggle {
    cursor: pointer;
}

.sss-toggle .sss-icon {
    transition: transform 0.2s ease;
}

.sss-toggle.active .sss-icon {
    transform: rotate(180deg);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .tabs {
        flex-wrap: wrap;
    }

    .tab-link {
        flex: 1 0 auto;
        text-align: center;
    }

    .galeri-item img {
        height: 120px;
    }
}

/* Sticky Form */
@media (min-width: 1024px) {
    .arac-detay-sayfasi .sticky {
        position: sticky;
        top: 2rem;
    }
}

/* Modal Stilleri 
.modal {
    display: none;
    position: fixed;
    z-index: 50;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-box {
    background-color: white;
    margin: 10% auto;
    padding: 1.5rem;
    border-radius: 0.5rem;
    max-width: 500px;
    position: relative;
}

.modal-box.wide {
    max-width: 800px;
}

.modal.active {
    display: block;
}

.modal-action {
    display: flex;
    justify-content: flex-end;
    padding-top: 1rem;
}*/

/* Fancybox Uyarlamaları */
.fancybox-bg {
    background: rgba(30, 30, 30, 0.9);
}

.fancybox-is-open .fancybox-bg {
    opacity: 1;
}

/* Form Stilleri */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control label {
    color: #7d7d7d
}

/* Yükleme Animasyonu */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/**
 * Marka Detay Sayfası Stilleri
 */

/* Hero bölümü stilleri */
.marka_detay_hero {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 20rem;
    overflow: hidden;
}


/* Overlay efekti */
.marka_detay_hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25 1 68 / 54%);
    /* Siyah overlay, opacity ayarlanabilir */
    backdrop-filter: blur(5px);
    /* Arkadaki içeriği blur yapar */
    -webkit-backdrop-filter: blur(5px);
    /* Safari uyumluluğu */
    transition: backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
    /* Pürüzsüz geçiş */
    z-index: 1;
}

/* Hover durumunda blur sıfırlanır */
.marka_detay_hero:hover::before {
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
}

.marka_detay_logo {
    background-color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marka_detay_logo img {
    height: 5rem;
    object-fit: contain;
}

/* Navigasyon bölümü stilleri */
.marka_detay_nav {
    background-color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 30;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.marka-nav-btn {
    transition: all 0.3s ease;
}

.marka-nav-btn.active {
    border-color: transparent;
}

/* İçerik bölümü stilleri */
.marka_detay_content {
    padding: 2rem 0;
}

/* Araç kartları stilleri */
.marka_detay_content .card {
    transition: all 0.3s ease;
    height: 100%;
}

.marka_detay_content .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.marka_detay_content .card-body {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.marka_detay_content .card figure {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
    flex-grow: 1;
}

.marka_detay_content .card figure img {
    max-height: 10rem;
    width: auto;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* Kampanya kartları stilleri */
.marka_detay_content .card .badge-warning {
    font-size: 0.875rem;
    font-weight: bold;
    padding: 0.5rem 0.75rem;
    background-color: #ffbb00;
    color: #333;
}

/* Fiyat listesi stilleri */
.marka_detay_fiyat_listesi .table {
    width: 100%;
    border-collapse: collapse;
}

.marka_detay_fiyat_listesi .table th {
    background-color: #f1f5f9;
    font-weight: 600;
    text-align: left;
    padding: 0.75rem 1rem;
}

.marka_detay_fiyat_listesi .table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e2e8f0;
}

/* Haber kartları stilleri */
.marka_detay_haberler .card {
    height: 100%;
    overflow: hidden;
}

.marka_detay_haberler .card figure {
    height: 12rem;
    overflow: hidden;
}

.marka_detay_haberler .card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.marka_detay_haberler .card:hover figure img {
    transform: scale(1.05);
}

.marka_detay_haberler .card-body {
    padding: 1rem;
}

.marka_detay_haberler .badge {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Sidebar stilleri */
.marka_detay_sidebar_form {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.marka_detay_sidebar_bayiler {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.bayi-card {
    background-color: white;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
}

.bayi-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.bayi-detay-container .breadcrumbs ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

img.flip {
    transform: scaleX(-1);
}

/* form_styles.css */

.wpcf7-form .wpcf7-spinner {
    display: none !important;
}

/* Opsiyonel: DaisyUI loading spinner'ı butonda ortalamak için ince ayar gerekebilir */
.wpcf7-form .wpcf7-submit.loading {
    /* DaisyUI genellikle bunu kendi halleder, ama gerekirse: */
    /* display: inline-flex; */
    /* align-items: center; */
}


/* Özel Karşılaştırma Drawer Stilleri */
.custom-drawer {
    position: fixed;
    top: 20px;
    right: 20px;
    height: 100%;
    max-height: 650px;
    width: 320px;
    overflow: hidden;
    /* Veya istenen genişlik, max-width de kullanılabilir */
    max-width: 80%;
    /* Mobil için */
    background-color: #fff;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    z-index: 1000;
    display: flex;
    /* İçeriği dikeyde yönetmek için */
    flex-direction: column;
    /* İçeriği dikeyde sırala */
    visibility: hidden;
    /* Başlangıçta tamamen gizli */
    opacity: 0;
    /* Başlangıçta tamamen gizli */
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.custom-drawer.is-open {
    transform: translateX(0);
    visibility: visible;
    /* Görünür yap */
    opacity: 1;
    /* Görünür yap */
}

.custom-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 999;
    /* Drawer'ın arkasında */
}

.custom-drawer-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* İçerik ve buton stilleri (Mevcut DaisyUI class'ları kullanıldığı için çoğu stil zaten uygulanmış olabilir) */
.custom-drawer #karsilastirma-sepeti {
    flex: 1;
    /* Alanın geri kalanını kapla */
    /* overflow-y: auto; - Ana .custom-drawer'da zaten var */
}

/* Kısayol butonu stilleri (Değişiklik yok) */
#karsilastirma-kisa-buton {
    position: fixed;
    bottom: 5rem;
    /* Go Top butonunun üstünde */
    right: 1rem;
    z-index: 50;
}

#karsilastirma-toggle-btn {
    background-color: #5c238e;
    /* Primary renk */
    color: #fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    border: none;
}

#karsilastirma-toggle-btn:hover {
    background-color: #441a6a;
}

#karsilastirma-toggle-btn i {
    font-size: 24px;
}

#karsilastirma-sayac {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #f00;
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
}

/* Body scroll kilidi için (JS ile eklenecek) */
body.drawer-open {
    overflow: hidden;
}


.single-container {
    position: relative;
}

.single-container::after {
    background: rgb(43, 0, 80);
    background: linear-gradient(180deg, rgba(43, 0, 80, 1) 39%, rgba(92, 35, 142, 1) 100%);
    content: "";
    border-radius: 0 0 10px 10px;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 7%;
    min-height: 300px;
    z-index: -1;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .single-container::after {
        height: 280px;
        border-radius: 0px;
        min-height: 280px;
    }

}

.marka-detay-pattern {
    background-image: url('/wp-content/themes/otokampanya/assets/img/pattern.png');
    opacity: 0.3;
    background-repeat: repeat;
    position: absolute;
    inset: 0;
}

.display-none {
    display: none;
}

.arac-listesi-pattern {
    background-image: url('/wp-content/themes/otokampanya/assets/img/pattern.png');
    opacity: 0.3;
    background-repeat: repeat;
    position: absolute;
    inset: 0;
}

.sayfa-404-arkaplan {
    background: url('/wp-content/themes/otokampanya/assets/img/404-bg.jpg') center/cover;
}

/* Custom Input Focus Glow */
.input:focus-visible,
.select:focus-visible,
.textarea:focus-visible,
input:focus-visible,
/* Genel inputları da kapsa */
select:focus-visible,
/* Genel selectleri de kapsa */
textarea:focus-visible {
    /* Genel textarea'ları da kapsa */
    outline: none;
    /* Varsayılan outline'ı kaldır */
    border-color: #5C238E !important;
    /* Kenarlık rengini primary yap (isteğe bağlı) */
    box-shadow: 0 0 0 3px rgba(92, 35, 142, 0.4);
    /* Primary rengi ile glow efekti */
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    /* Yumuşak geçiş */
}

/* Karşılaştırma Tablosu Yeni Stiller */
.karsilastirma-tablosu {
    border-collapse: separate !important;
    /* Hücreler arası boşluk için */
    border-spacing: 0 6px !important;
    /* Sadece dikey boşluk (0 yatay, 6px dikey) */
    border: none !important;
    /* Tablo kenarlığını kaldır */
    background-color: transparent !important;
    /* Tablo arka planını şeffaf yap */
}

/* Zebra efektini kaldır */
.karsilastirma-tablosu.table-zebra tbody tr:nth-child(even) td {
    --tw-bg-opacity: 0 !important;
    /* DaisyUI zebra arka planını kaldır */
    background-color: transparent !important;
}

.karsilastirma-tablosu tbody tr:hover td {
    background-color: transparent !important;
    /* Hover efektini kaldır */
}


.karsilastirma-tablosu th .bg-primary {
    /* Başlık hücreleri için */
    border-radius: 0.5rem;
    /* rounded-lg */
    padding: 0.75rem 1rem;
    /* p-3 */
}

.karsilastirma-tablosu td {
    padding: 2px !important;
    /* Hücreler arası boşluk için padding'i azalt */
    border: none !important;
    /* Hücre kenarlıklarını kaldır */
    background-color: transparent !important;
    /* TD arka planını kaldır */
    vertical-align: top;
    /* İçeriği üste hizala */
}

.karsilastirma-tablosu .cell-content {
    background-color: #ffffff;
    /* Açık mavi arka plan (sky-100 gibi) */
    border-radius: 0.5rem;
    /* rounded-lg */
    padding: 0.75rem 1rem;
    /* p-3 */
    min-height: 40px;
    /* Minimum yükseklik */
    display: flex;
    align-items: center;
    /* İçeriği dikeyde ortala */
    height: 100%;
    /* TD yüksekliğini doldur */
}

.karsilastirma-tablosu .cell-content.text-right {
    justify-content: flex-end;
    /* Sağa hizalı içerik için */
}

.karsilastirma-tablosu .cell-content.text-center {
    justify-content: center;
    /* Ortalanmış içerik için */
}

.karsilastirma-tablosu .cell-content.text-left {
    justify-content: flex-start;
    /* Sola hizalı içerik için */
}


/* 2'li karşılaştırmada ortadaki özellik hücresi */
.karsilastirma-tablosu .feature-cell-middle {
    background-color: #e7e7e7;
    /* Daha açık mavi (sky-50 gibi) */
    font-weight: 600;
    /* semibold */
}

/* 3+'lü karşılaştırmada soldaki özellik hücresi */
.karsilastirma-tablosu .feature-cell-left {
    background-color: #f0f9ff;
    /* Daha açık mavi (sky-50 gibi) */
    font-weight: 600;
    /* semibold */
}

/* Grup başlığı satırı */
.karsilastirma-tablosu tr.group-title td {
    background-color: transparent !important;
    padding-top: 1.5rem !important;
    /* Üst boşluğu artır */
    padding-bottom: 0.5rem !important;
    text-align: center;
}

/* Farklılık vurgulama */
.karsilastirma-tablosu .farkli-deger.vurgula {
    background-color: #dfbaff !important;
    /* Açık yeşil tonu (teal-100 gibi) */
    font-weight: 600 !important;
}

/* Sticky header için arka plan */
.karsilastirma-tablosu th.sticky {
    background-color: #f8fafc !important;
    /* Açık gri arka plan */
}

/* Sticky özellik sütunu için arka plan (3+ araç) */
.karsilastirma-tablosu td.sticky {
    background-color: #f8fafc !important;
    /* Açık gri arka plan */
    z-index: 1 !important;
    /* Diğer hücrelerin üzerinde kalması için */
}

.karsilastirma-tablosu td.sticky .cell-content {
    background-color: #f0f9ff !important;
    /* İç div'in arka planı */
}

/* Favori butonu stilleri */
.favorite-btn {
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}

.favorite-btn svg {
    transition: all 0.2s ease;
    pointer-events: none;
    /* SVG'nin tıklama olaylarını engelle */
}

/* Hover efekti */
.favorite-btn:hover svg {
    color: #ef4444 !important;
    /* Kırmızı renk */
    transform: scale(1.1);
}

/* Favoriye eklenmiş (aktif) durum */
.favorite-btn.active svg {
    color: #ef4444;
    fill: currentColor;
}

.favorite-btn:not(.active) svg {
    color: #999;
    fill: transparent;
}

/* Loading durumunda hover efekti olmasın */
.favorite-btn.loading:hover {
    transform: none;
}

.favorite-btn.loading:hover svg {
    color: inherit !important;
    /* Loading sırasında hover rengini iptal et */
}

/* Favori sayacı */
#favori-sayac {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Favori modalı */
#favori-modal {
    z-index: 1000;
}

/* Favori listesi öğeleri */
#favori-liste {
    max-height: 500px;
    overflow-y: auto;
}

/* Favori çıkar butonu */
.favori-cikar-btn {
    transition: all 0.2s ease;
}