/* ==========================================
   GLOBAL POFFINS FONT TANIMLAMASI
   ========================================== */
html, body, input, textarea, button, select {
    font-family: 'Poppins', sans-serif !important;
}



/* Dallısoft Ana Stil Dosyası */

/* 1. SIFIRLAMA VE TEMEL AYARLAR */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    /* Tek sayfa menüye tıklandığında aşağıya yumuşak bir şekilde kaymasını sağlar */
    scroll-behavior: smooth; 
}

body {
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

/* Sitenin içeriğini ortalayan ve genişliğini sınırlayan ana kapsayıcı */
.dallisoft-kapsayici {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 2. ÜST MENÜ (HEADER) TASARIMI */
.dallisoft-ust-menu {
    position: fixed; /* Menüyü yukarıya sabitler */
    top: 0;
    width: 100%;
    z-index: 1000; /* Diğer her şeyin üstünde görünmesini sağlar */
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.dallisoft-ust-menu .dallisoft-kapsayici {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dallisoft-logo h2 {
    margin: 0;
    font-size: 26px;
    letter-spacing: 1px;
    color: #ffffff;
}

.dallisoft-navigasyon ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.dallisoft-navigasyon a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: opacity 0.3s;
}

.dallisoft-navigasyon a:hover {
    opacity: 0.7;
}

/* 3. DİNAMİK BÖLÜMLER (MAIN CONTENT) */
.dallisoft-ana-icerik {
    /* Sabit menünün altında kalmaması için üstten boşluk bırakıyoruz */
    
    padding-bottom: 50px; 
}

.dallisoft-bolum {
    padding: 50px 0;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

/* Her ikinci bölümün arka planını hafif gri yaparak renk ayrımı sağlıyoruz */
.dallisoft-bolum:nth-child(even) {
    background: #f9f9f9;
}

.dallisoft-bolum h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 38px;
    position: relative;
}

.dallisoft-metin-alani {
    font-size: 18px;
    color: #555;
    text-align: justify;
}

 

/* SABİT WHATSAPP BUTONU */
.dallisoft-whatsapp-buton {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; /* WhatsApp Yeşili */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s, box-shadow 0.3s;
}

.dallisoft-whatsapp-buton:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Mobilde biraz daha küçük ve kenara yakın olsun */
@media (max-width: 768px) {
    .dallisoft-whatsapp-buton {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .dallisoft-whatsapp-buton svg {
        width: 28px;
        height: 28px;
    }
}



/* SSS AKORDİYON STİLLERİ */
.dallisoft-sss-alani { max-width: 800px; margin: 0 auto; }
.dallisoft-sss-kutu { margin-bottom: 15px; border: 1px solid #ddd; border-radius: 8px; overflow: hidden; background: #fff; }
.dallisoft-sss-soru { padding: 18px 20px; font-size: 18px; font-weight: bold; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.3s; }
.dallisoft-sss-soru:hover { background: #f9f9f9; }
.dallisoft-sss-ikon { font-size: 14px; transition: transform 0.3s; }
.dallisoft-sss-kutu.aktif .dallisoft-sss-ikon { transform: rotate(45deg); }
.dallisoft-sss-cevap { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.dallisoft-sss-cevap-icerik { padding: 0 20px 20px 20px; color: #555; line-height: 1.6; }










/* ==========================================
   YENİ ÜST BİLGİ (HEADER) TASARIMI
   ========================================== */
.dallisoft-ust-bilgi {
    padding: 15px 0;
    background-color: #ffffff;
    width: 100%;
}

.dallisoft-ust-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px; /* Kutular arası boşluk */
}

/* Sol Başlık (Görseldeki Kalın ve Koyu Yazı) */
.dallisoft-logo-alani a {
    font-size: 34px;
    font-weight: 900; /* Çok kalın font */
    color: #333333;
    text-decoration: none;
    letter-spacing: -0.5px; /* Harfleri hafif birbirine yaklaştırır */
    white-space: nowrap;
    font-family: 'Poppins', sans-serif !important;
}

.dallisoft-logo-alani img {
    max-height: 50px;
    display: block;
}

/* Ortadaki Dinamik İnce Çizgi */
.dallisoft-aradaki-cizgi {
    flex-grow: 1; /* Boşluğu tamamen doldurur */
    height: 1px;
    background-color: #e0e0e0;
}

/* Sağ Konum Yazısı ve İkonu */
.dallisoft-konum-alani {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444444;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

/* Mobil Cihazlar İçin Uyumluluk (Telefonlarda alt alta geçsin) */
@media (max-width: 768px) {
    .dallisoft-ust-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .dallisoft-aradaki-cizgi {
        display: none; /* Mobilde çizgiyi gizle, kötü durur */
    }
    .dallisoft-logo-alani a {
        font-size: 26px;
        white-space: normal;
    }
    .dallisoft-ust-bilgi{
        padding: 10px;
    }
}



.dallisoft-sag-bilgiler {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dallisoft-bilgi-kutu {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #444444;
    font-size: 15px;
    font-weight: 600; /* Biraz daha tok dursun */
    white-space: nowrap; /* Yazıların alt satıra kırılmasını engeller */
}

/* Mobil Ekranlar İçin (768px ve altı) */
@media (max-width: 768px) {
    .dallisoft-sag-bilgiler {
        flex-direction: column; /* Mobilde yan yana değil, alt alta diz! */
        gap: 10px;
        align-items: center; /* Ortala */
    }
}














/* FULLSCREEN SLIDER YAPISI */
.dallisoft-hero-slider {
    width: 100%;
    height: 100vh; /* Tam ekran yüksekliği */
    position: relative;
    background-color: #111;
}

/* Medya (Görsel/Video) Tam Ekran Kaplama */
.dallisoft-slide-medya,
.dallisoft-slide-medya img,
.dallisoft-slide-medya video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Görüntüyü bozmadan ekrana yayar */
    z-index: 1;
}

/* Overlay (Üzerine Siyah Transparan Perde) */
.dallisoft-slide-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2;
}

/* İçerik Hizalama (Sağ tarafa dayalı tasarım) */
.dallisoft-slide-icerik {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* İçeriği sağa yaslar */
}

/* Görseldeki Çizgi ve Sarı Nokta Kombinasyonu */
.dallisoft-gorsel-tasarim {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    transform: translateY(-50px); /* Hafif yukarı kaldırır */
}

.tasarim-cizgisi {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tasarim-cizgisi .cizgi-dik {
    width: 2px;
    height: 120px; /* Üstten inen beyaz çizgi */
    background-color: #ffffff;
}

.tasarim-cizgisi .nokta-sari {
    width: 16px;
    height: 16px;
    background-color: #ffc107; /* Görseldeki sarı/turuncu ton */
    border-radius: 50%;
    margin-top: 5px;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.tasarim-metin {
    color: #fff;
    text-align: left;
}

.slide-baslik {
    font-size: 55px;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
}

.slide-altmetin {
    font-size: 20px;
    margin: 15px 0 25px 0;
    color: #f1f1f1;
}

.slide-buton {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ffc107;
    color: #111;
    font-weight: bold;
    text-decoration: none;
    border-radius: 3px;
    transition: 0.3s;
}

.slide-buton:hover {
    background-color: #fff;
    transform: translateY(-3px);
}

/* Mobilde Uyumlu Hale Getirme */
@media (max-width: 768px) {
    .dallisoft-hero-slider { height: 80vh; }
    .dallisoft-slide-icerik { justify-content: center; } /* Mobilde ortaya al */
    .slide-baslik { font-size: 35px; }
    .tasarim-cizgisi .cizgi-dik { height: 80px; }
}

/* CKEditor ile girilen metinlerin slider içinde düzgün durması için */
.dallisoft-ozgur-icerik {
    color: #fff;
    max-width: 800px;
    padding: 20px;
    text-align: center;
}
.dallisoft-ozgur-icerik h1, 
.dallisoft-ozgur-icerik h2 {
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
    text-align: center;
}
.dallisoft-ozgur-icerik p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}
@media (max-width: 768px) {
    .dallisoft-ozgur-icerik h1 { font-size: 2.2rem; text-align: center;}
    .dallisoft-ozgur-icerik p { font-size: 1rem; text-align: center;}
}

/* Aktif slayttaki görselin/videonun yavaşça büyüme efekti */
.swiper-slide-active .dallisoft-slide-medya img,
.swiper-slide-active .dallisoft-slide-medya video {
    animation: kenburns 8s ease-out forwards;
}

@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.swiper-button-next{
    color: #fff!important;
}
.swiper-button-prev{
    color: #fff!important;
}
.swiper-pagination-bullet-active{
    background-color: #fff!important;
}
.swiper-pagination-bullet{
    display: none!important;
}




/* ==========================================
   CKEDITOR OTOMATİK BUTON DÖNÜŞTÜRÜCÜ
   ========================================== */
 

.dallisoft-ozgur-icerik a {
    /* PANELRENGİNİ ÇEKELİM */
    background-color: var(--ana-renk) !important; 
    border: 2px solid var(--ana-renk) !important;
    
    /* Premium Buton Tasarımı */
    display: inline-block;
    padding: 5px 10px;
    margin-top: 20px;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    border-radius: 4px; /* Veya 0 yaparak keskin bırakabilirsin */
    text-align: center;
}

/* Üzerine gelince (Hover) rengi biraz açalım veya tersine çevirelim */
.dallisoft-ozgur-icerik a:hover {
    background-color: transparent !important;
    color: var(--ana-renk) !important;
    transform: translateY(-5px);
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}





























.dallisoft-hakkimizda-section {
    padding: 50px 0px 20px 0px ;
    background-color: #fff;
}

.hakkimizda-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px; /* Bloklar arası boşluk */
}

/* Zikzak Yapısı (Çapraz Çalışan Kısım) */
.hakkimizda-item.ters-dizilim {
    flex-direction: row-reverse;
}

.hakkimizda-gorsel {
    flex: 1;
}

.hakkimizda-gorsel img {
    width: 100%;
    height: auto;
    border-radius: 5px; /* Görseldeki gibi oval köşeler */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.039); /* Hafif derinlik */
}

.hakkimizda-metin {
    flex: 1;
    letter-spacing: -0.5px;
}

.hakkimizda-metin .ust-baslik {
    display: block;
    color: #666;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.hakkimizda-metin h2 {
    font-size: 35px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    position: relative;
}

/* Başlığın altına senin dinamik renginden ince bir çizgi (Opsiyonel) */
.hakkimizda-metin h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--ana-renk);
    margin-top: 15px;
}

.hakkimizda-metin .icerik-yazisi {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .hakkimizda-item, .hakkimizda-item.ters-dizilim {
        flex-direction: column; /* Mobilde her şey alt alta */
        gap: 40px;
        text-align: center;
    }
    .hakkimizda-metin h2::after { margin: 15px auto; }
}





















/* ==========================================
   HİZMETLER ALANI TASARIMI (Görseldeki Gibi)
   ========================================== */
.dallisoft-hizmetler-alani { padding: 50px 0px 60px 0px; background: #f9f9f9; }
.dallisoft-kapsayici { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Başlıklar */
.hizmetler-baslik-alani { text-align: center; margin-bottom: 60px; }
.hizmetler-baslik-alani h2 { font-size: 39px; font-weight: 600; margin-bottom: 15px; letter-spacing: -0.5px;}
.hizmetler-baslik-alani p { font-size: 18px; color: #555; letter-spacing: -0.5px;}

/* Hizmetler Grid - PANEL'DEN SÜTUN SAYISI VE BOŞLUK ÇEKER */
.hizmetler-grid {
    display: grid;
    grid-template-columns: repeat(var(--h-sutun), 1fr); 
    gap: var(--h-bosluk);
}

.hizmet-kart { 
    position: relative; 
    display: flex; 
    flex-direction: column; 
    background-color: var(--h-arkaplan); /* Kart arkaplanı panelden */
    border-radius: var(--h-oval);
}
.ust-etiket{
    color: #4444442b;
    font-size: 14px;
}

/* Görsel Alanı - PANEL'DEN KÖŞE VE ORAN ÇEKER */
.hizmet-gorsel-kutu {
    width: 100%;
    aspect-ratio: var(--h-oran); /* Kare, Dikey, Yatay - Panelden */
    border-radius: var(--h-oval);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    z-index: 2;
}

.hizmet-gorsel-kutu img {
    width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease;
}

.hizmet-kart:hover .hizmet-gorsel-kutu img { transform: scale(1.05); }

/* Çizgili İçerik - PANEL'DEN HİZALAMA, RENK VE KALINLIK ÇEKER */
.hizmet-icerik {
    position: relative;
    padding-left: 20px;
    margin-left: 25px; 
    padding-top: 15px; 
    border-left: var(--h-cizgi-kalinlik) solid var(--h-cizgi-renk); /* Panelden çizgi */
    text-align: var(--h-hiza); /* Panelden Hizalama */
    z-index: 1;
    transition: transform 0.4s ease;
}

.hizmet-kart:hover .hizmet-icerik { transform: translateY(-8px); }
.hizmet-icerik h3 {     font-size: 18px;
    letter-spacing: -0.5px;
    font-weight: 500; color: var(--h-baslik-renk); line-height: 1.3; }
.hizmet-icerik .aciklama { font-size: 14px; color: #66666691; margin-top: 10px; line-height: 1.6; }

/* Mobil için Grid'i Korumak Lazım (Mobilde değişkeni eziyoruz ki bozulmasın) */
@media (max-width: 992px) { .hizmetler-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .hizmetler-grid { grid-template-columns: 1fr; } .hizmet-icerik { margin-left: 15px; } }


/* Kartın Genel Yapısı */
.hizmet-kart { 
    position: relative; 
    display: flex; 
    flex-direction: column; 
    cursor: pointer;
}

/* Görsel Alanı (KARE VE BOŞLUKSUZ) */
.hizmet-gorsel-kutu {
    width: 100%;
    aspect-ratio: 1 / 1; /* SİHİRLİ KOD: Görselleri tam Kare yapar */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    z-index: 2;
}

.hizmet-gorsel-kutu img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block; /* Resmin altındaki o saçma HTML boşluğunu yokedip sıfırlar */
    transition: transform 0.5s ease;
}

.hizmet-kart:hover .hizmet-gorsel-kutu img { 
    transform: scale(1.05); 
}

/* Çizgili İçerik Kısmı (Aralıksız, temiz görünüm) */
.hizmet-icerik {
    position: relative;
    padding-left: 20px;
    margin-left: 25px; 
    padding-top: 15px; /* Resmi çizgiyle daha iyi bağlar */
    border-left: 2px solid #111; 
    z-index: 1;
    transition: transform 0.4s ease;
}

.hizmet-kart:hover .hizmet-icerik {
    transform: translateY(-8px); /* Hoverda hafif yukarı süzülme */
}

/* Resmin hafif büyüme efekti de korunsun */
.hizmet-kart:hover .hizmet-gorsel-kutu img { 
    transform: scale(1.03); 
}



























 

 



.ds-iletisim-widget { position: fixed !important; bottom: 25px !important; right: 25px !important; z-index: 99999 !important; display: flex !important; flex-direction: column !important; align-items: flex-end !important; gap: 12px !important; font-family: 'Poppins', sans-serif !important; }
    .ds-widget-liste { display: flex !important; flex-direction: column !important; gap: 10px !important; opacity: 0 !important; visibility: hidden !important; transform: translateY(20px) !important; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important; }
    .ds-iletisim-widget:hover .ds-widget-liste { opacity: 1 !important; visibility: visible !important; transform: translateY(0) !important; }
    
    /* İkon Kutuları */
    .ds-w-item { width: 45px !important; height: 45px !important; border-radius: 50% !important; display: flex !important; justify-content: center !important; align-items: center !important; color: white !important; text-decoration: none !important; position: relative !important; box-shadow: 0 4px 10px rgba(0,0,0,0.15) !important; transition: 0.2s !important; font-size: 20px !important; }
    .ds-w-item:hover { transform: scale(1.1) !important; color: white !important; }
    .ds-w-item i { color: white !important; font-style: normal !important; }
    
    /* İsim (Tooltip) Etiketi */
    .ds-w-item::after { content: attr(data-isim); position: absolute; right: 55px; background: #1e293b; color: white; padding: 5px 12px; border-radius: 6px; font-size: 13px; font-weight: 500; white-space: nowrap; opacity: 0; visibility: hidden; transition: 0.2s; pointer-events: none; }
    .ds-w-item:hover::after { opacity: 1 !important; visibility: visible !important; right: 60px !important; }

    /* Ana Menü Butonu */
    .ds-w-ana { width: 60px !important; height: 60px !important; border-radius: 50% !important; display: flex !important; justify-content: center !important; align-items: center !important; cursor: pointer !important; box-shadow: 0 5px 20px rgba(0,0,0,0.25) !important; transition: 0.3s !important; font-size: 24px !important; background: <?= isset($ayarlar->ana_renk) ? $ayarlar->ana_renk : '#3b82f6'; ?> !important; }
    .ds-w-ana i { color: #ffffff !important; transition: 0.3s !important; }
    .ds-iletisim-widget:hover .ds-w-ana i { transform: rotate(180deg) !important; } /* Fare gelince şık bir dönüş */




















 









    /* --- ULTRA MİNİMALİST ZARA KONSEPTİ (STABİL SÜRÜM) --- */
.dallisoft-premium-sss {
    font-family: "Poppins", Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    padding: 60px 0;
    width: 100%;
    box-sizing: border-box;
}

.sss-kapsayici-alani {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.sss-ana-izgara {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Sol Medya Alanı */
.sss-sol-medya {
    width: 45%;
    box-sizing: border-box;
}

.sss-oval-resim-kutusu {
    width: 100%;
    overflow: hidden;
}

.sss-oval-resim-kutusu img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0; /* Keskin köşeler */
}

/* Sağ Metin Alanı */
.sss-sag-metinler {
    width: 45%;
    box-sizing: border-box;
    padding-top: 20px;
}

/* Üst Bilgi Başlıkları */
.sss-ust-bilgi {
    margin-bottom: 50px;
}

.sss-ust-bilgi span.dallisoft-renkGuncelle {
    font-size: 11px;
    color: #666666;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sss-ust-bilgi h2 {
    font-size: 40px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    color: #000000;
}

/* Akordeon Listesi ve Çizgiler */
.sss-akordeon-listesi {
    border-top: 1px solid #000000;
}

.akordeon-eleman {
    border-bottom: 1px solid #000000;
}

/* Tıklanabilir Başlık Alanı */
.akordeon-baslik-tusu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    cursor: pointer;
    background-color: transparent;
    user-select: none;
}

.akordeon-baslik-tusu h4 {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #000000;
}

/* Kusursuz Artı / Eksi Animasyon İkonu (+) (-) */
.arti-eksi-ikonu {
    position: relative;
    width: 14px;
    height: 14px;
    display: block;
    /* HTML'deki noktayı gizlemek için transparan yapıyoruz */
    color: transparent; 
    font-size: 0;
}

/* Yatay Çizgi (-) */
.arti-eksi-ikonu::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000000;
    margin-top: -0.5px;
}

/* Dikey Çizgi (|) - Artı şeklini tamamlar */
.arti-eksi-ikonu::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background-color: #000000;
    margin-left: -0.5px;
    transition: transform 0.3s ease-in-out;
}

/* Açıldığında dikey çizgiyi sıfırlayarak Eksiye (-) çevirir */
.aktif-madde .arti-eksi-ikonu::after {
    transform: scaleY(0);
}

/* Açılır Gövde İçeriği */
.akordeon-acilir-govde {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

/* Aktif olunca yüksekliği aç */
.aktif-madde .akordeon-acilir-govde {
    max-height: 1500px; /* İçeriğin sığması için yüksek tutuldu */
}

.akordeon-metin-padding {
    padding: 0 0 25px 0;
    font-size: 13px;
    color: #828282;
    line-height: 1.6;
    font-weight: 300;
}

/* Tablet ve Mobil Uyumluluk */
@media (max-width: 900px) {
    .sss-ana-izgara {
        flex-direction: column;
    }
    .sss-sol-medya {
        width: 100%;
        margin-bottom: 40px;
    }
    .sss-sag-metinler {
        width: 100%;
        padding-top: 0;
    }
}






















































  /* =======================================================
       🔥 ZARA STİLİ ULTRA MİNİMAL İLETİŞİM BÖLÜMÜ CSS 🔥
       ======================================================= */
    #iletisim-minimal {
        padding: 0px 0;
        background-color: #ffffff;
        font-family: 'Poppins', Helvetica, Arial, sans-serif;
        overflow: hidden;
    }

    .minimal-kapsayici {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .minimal-grid {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0;
    }

    /* ================= SOL TARAF (METİN & FORM) ================= */
    .minimal-sol {
        flex: 1;
        min-width: 320px;
        padding-right: 80px;
        text-align: right;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .minimal-baslik {
        font-size: 5vw;
        font-weight: 300;
        color: #111;
        line-height: 0.9;
        margin: 0 0 30px 0;
        letter-spacing: -2px;
        text-transform: uppercase;
        font-family: 'Poppins', 'Bodoni MT', 'Times New Roman', serif;
    }

    .minimal-alt-baslik {
        font-size: 14px;
        color: #333;
        line-height: 1.8;
        font-weight: 400;
        letter-spacing: 0.5px;
        margin: 0 0 50px 0;
        text-transform: uppercase;
        max-width: 450px;
        margin-left: auto;
    }

    /* 🔥 İŞTE BURASI: SENİN ORİJİNAL FORM CLASS'INA GÖRE CSS YAZILDI 🔥 */
    .dallisoft-iletisim-formu {
        width: 100%;
        max-width: 450px;
        margin-left: auto;
    }

    .dallisoft-iletisim-formu input,
    .dallisoft-iletisim-formu textarea {
        width: 100%;
        background: transparent;
        border: none;
        border-bottom: 1px solid #111;
        padding: 15px 0;
        margin-bottom: 25px;
        font-size: 13px;
        color: #111;
        font-family: inherit;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: border-color 0.3s;
        box-sizing: border-box;
    }

    .dallisoft-iletisim-formu input:focus,
    .dallisoft-iletisim-formu textarea:focus {
        outline: none;
        border-bottom: 2px solid #111;
    }

    .dallisoft-iletisim-formu input::placeholder,
    .dallisoft-iletisim-formu textarea::placeholder {
        color: #999;
    }

    .dallisoft-iletisim-formu textarea {
        resize: none;
        height: 100px;
    }

    .minimal-buton {
        background: transparent;
        color: #111;
        border: none;
        border-bottom: 1px solid #111;
        padding: 5px 0;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        cursor: pointer;
        transition: 0.3s;
        display: inline-block;
        margin-top: 10px;
    }

    .minimal-buton:hover {
        color: #666;
        border-bottom-color: #666;
    }

    /* ================= SAĞ TARAF (DEV GÖRSEL) ================= */
    .minimal-sag {
        flex: 1;
        min-width: 320px;
        position: relative;
    }

    .minimal-gorsel {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        max-height: 800px;
    }

    /* ================= MOBİL UYUM ================= */
    @media (max-width: 991px) {
        .minimal-sol {
            padding-right: 0;
            text-align: left;
            margin-bottom: 50px;
        }
        .minimal-baslik { font-size: 45px; letter-spacing: -1px; }
        .minimal-alt-baslik, .dallisoft-iletisim-formu { margin-left: 0; max-width: 100%; }
    }












































     
        .dallisoft-renkGuncelle { color: var(--ana-renk) !important; }
        .dallisoft-arkaplanRenkGuncelle { background-color: var(--ana-renk) !important; color: #ffffff !important; }
         
        /* --- İLETİŞİM WİDGET CSS --- */
        .ds-iletisim-widget { position: fixed !important; bottom: 25px !important; right: 25px !important; z-index: 99999 !important; width: 60px !important; height: 60px !important; font-family: 'Poppins', sans-serif !important; }
        .ds-widget-liste { position: absolute !important; bottom: 72px !important; right: 7px !important; display: flex !important; flex-direction: column !important; gap: 10px !important; opacity: 0 !important; visibility: hidden !important; pointer-events: none !important; transform: translateY(20px) !important; transition: opacity 0.3s, transform 0.3s, visibility 0.3s !important; }
        .ds-iletisim-widget:hover .ds-widget-liste { opacity: 1 !important; visibility: visible !important; pointer-events: auto !important; transform: translateY(0) !important; }
        .ds-w-item { width: 45px !important; height: 45px !important; border-radius: 50% !important; display: flex !important; justify-content: center !important; align-items: center !important; color: white !important; text-decoration: none !important; position: relative !important; box-shadow: 0 4px 10px rgba(0,0,0,0.15) !important; transition: 0.2s !important; font-size: 20px !important; }
        .ds-w-item:hover { transform: scale(1.1) !important; color: white !important; }
        .ds-w-item::after { content: attr(data-isim); position: absolute; right: 55px; background: #1e293b; color: white; padding: 5px 12px; border-radius: 6px; font-size: 13px; font-weight: 500; white-space: nowrap; opacity: 0; visibility: hidden; transition: 0.2s; pointer-events: none; }
        .ds-w-item:hover::after { opacity: 1 !important; visibility: visible !important; right: 60px !important; }
        .ds-w-ana { width: 60px !important; height: 60px !important; border-radius: 50% !important; display: flex !important; justify-content: center !important; align-items: center !important; cursor: pointer !important; box-shadow: 0 5px 20px rgba(0,0,0,0.25) !important; transition: 0.3s !important; font-size: 24px !important; background: var(--ana-renk) !important; }
        .ds-w-ana i { color: #ffffff !important; transition: 0.3s !important; }
        .ds-iletisim-widget:hover .ds-w-ana i { transform: rotate(180deg) !important; }
        .ds-iletisim-widget i { color: white !important; font-style: normal !important; font-variant: normal !important; text-rendering: auto !important; line-height: 1 !important; transition: 0.3s !important; display: inline-block !important; }
        .ds-iletisim-widget .fa-brands { font-family: "Font Awesome 6 Brands" !important; font-weight: 400 !important; }
        .ds-iletisim-widget .fa-solid { font-family: "Font Awesome 6 Free" !important; font-weight: 900 !important; }
        .ds-iletisim-widget .fa-regular { font-family: "Font Awesome 6 Free" !important; font-weight: 400 !important; }
 

         






        /* Mobilde dili ve wp no'yu gizlemek istersen */
    @media (max-width: 991px) {
        .mobil-gizle { display: none !important; }
    }








    /* =======================================================
       🏢 PREMIUM KURUMSAL FOOTER CSS
       ======================================================= */
    .kurumsal-footer {
        background-color: #111827; /* Koyu, ağır kurumsal lacivert/siyah */
        color: #e2e8f0;
        padding: 70px 0 0 0;
        font-family: 'Poppins', sans-serif;
    }

    .kurumsal-f-kapsayici {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .kurumsal-f-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 40px;
        margin-bottom: 60px;
    }

    /* Başlıklar */
    .kurumsal-f-col h4 {
        color: #ffffff;
        font-size: 18px;
        font-weight: 600;
        margin-top: 0;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .kurumsal-f-col h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 3px;
        background-color: var(--ana-renk); /* Temanın ana rengini çeker */
        border-radius: 5px;
    }

    /* Logo ve Açıklama */
    .kurumsal-f-logo {
        max-height: 55px;
        filter: brightness(0) invert(1); /* Logoyu beyaz yapar */
        margin-bottom: 20px;
        display: block;
        object-fit: contain;
    }

    .kurumsal-f-desc {
        font-size: 14px;
        line-height: 1.8;
        color: #94a3b8;
        margin-bottom: 25px;
    }

    /* Sosyal Medya İkonları */
    .kurumsal-social {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .kurumsal-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, 0.05);
        color: #ffffff;
        border-radius: 50%;
        text-decoration: none;
        transition: 0.3s;
        font-size: 15px;
    }

    .kurumsal-social a:hover {
        background: var(--ana-renk);
        transform: translateY(-3px);
        color: #ffffff;
    }

    /* Liste Linkleri (Hızlı Menü vb.) */
    .kurumsal-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .kurumsal-links li {
        margin-bottom: 12px;
    }

    .kurumsal-links a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 14px;
        transition: 0.3s;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .kurumsal-links a i {
        font-size: 11px;
        color: var(--ana-renk);
        transition: 0.3s;
    }

    .kurumsal-links a:hover {
        color: #ffffff;
        padding-left: 6px;
    }

    /* İletişim Bilgileri Listesi */
    .kurumsal-iletisim {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .kurumsal-iletisim li {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
        font-size: 14px;
        color: #94a3b8;
        line-height: 1.6;
    }

    .kurumsal-iletisim i {
        color: var(--ana-renk);
        font-size: 18px;
        margin-top: 3px;
    }
    
    .kurumsal-iletisim a {
        color: inherit;
        text-decoration: none;
        transition: 0.3s;
    }
    
    .kurumsal-iletisim a:hover {
        color: #ffffff;
    }

    /* Alt Çubuk (Copyright) */
    .kurumsal-f-alt {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding: 25px 0;
        background-color: #0f172a; /* Bir ton daha koyu zemin */
    }

    .kurumsal-f-alt-flex {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        font-size: 13px;
        color: #64748b;
    }

    .kurumsal-f-alt-flex a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    /* Mobil Uyumluluk */
    @media (max-width: 768px) {
        .kurumsal-f-alt-flex {
            flex-direction: column;
            text-align: center;
        }
    }
    




    /* =======================================================
   🔥 PREMIUM CORE HEADER & TRANSLATE STİLLERİ
======================================================= */
/* --- İLETİŞİM WİDGET CSS --- */
.ds-iletisim-widget { position: fixed !important; bottom: 25px !important; right: 25px !important; z-index: 99999 !important; width: 60px !important; height: 60px !important; font-family: 'Poppins', sans-serif !important; }
.ds-widget-liste { position: absolute !important; bottom: 72px !important; right: 7px !important; display: flex !important; flex-direction: column !important; gap: 10px !important; opacity: 0 !important; visibility: hidden !important; pointer-events: none !important; transform: translateY(20px) !important; transition: opacity 0.3s, transform 0.3s, visibility 0.3s !important; }
.ds-iletisim-widget:hover .ds-widget-liste { opacity: 1 !important; visibility: visible !important; pointer-events: auto !important; transform: translateY(0) !important; }
.ds-w-item { width: 45px !important; height: 45px !important; border-radius: 50% !important; display: flex !important; justify-content: center !important; align-items: center !important; color: white !important; text-decoration: none !important; position: relative !important; box-shadow: 0 4px 10px rgba(0,0,0,0.15) !important; transition: 0.2s !important; font-size: 20px !important; }
.ds-w-item:hover { transform: scale(1.1) !important; color: white !important; }
.ds-w-item::after { content: attr(data-isim); position: absolute; right: 55px; background: #1e293b; color: white; padding: 5px 12px; border-radius: 6px; font-size: 13px; font-weight: 500; white-space: nowrap; opacity: 0; visibility: hidden; transition: 0.2s; pointer-events: none; }
.ds-w-item:hover::after { opacity: 1 !important; visibility: visible !important; right: 60px !important; }
.ds-w-ana { width: 60px !important; height: 60px !important; border-radius: 50% !important; display: flex !important; justify-content: center !important; align-items: center !important; cursor: pointer !important; box-shadow: 0 5px 20px rgba(0,0,0,0.25) !important; transition: 0.3s !important; font-size: 24px !important; background: var(--ana-renk) !important; }
.ds-w-ana i { color: #ffffff !important; transition: 0.3s !important; }
.ds-iletisim-widget:hover .ds-w-ana i { transform: rotate(180deg) !important; }
.ds-iletisim-widget i { color: white !important; font-style: normal !important; font-variant: normal !important; text-rendering: auto !important; line-height: 1 !important; transition: 0.3s !important; display: inline-block !important; }
.ds-iletisim-widget .fa-brands { font-family: "Font Awesome 6 Brands" !important; font-weight: 400 !important; }
.ds-iletisim-widget .fa-solid { font-family: "Font Awesome 6 Free" !important; font-weight: 900 !important; }
.ds-iletisim-widget .fa-regular { font-family: "Font Awesome 6 Free" !important; font-weight: 400 !important; }

/* --- DALLITRANSLATE BYPASS STİLLERİ --- */
.skiptranslate, #google_translate_element2 { display: none !important; }
font font { background-color: transparent !important; box-shadow: none !important; position: initial !important; }
.goog-te-banner-frame { display: none !important; }
.dalli-dil-secici { position: relative; display: inline-block; cursor: pointer; font-family: 'Poppins', sans-serif; }
.dalli-dil-aktif { display: flex; align-items: center; gap: 8px; padding: 8px 15px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 50px; font-size: 13px; font-weight: 600; color: #334155; transition: 0.3s; }
.dalli-dil-aktif:hover { background: #f1f5f9; border-color: #cbd5e1; }
.dalli-dil-liste { position: absolute; top: 120%; right: 0; background: #fff; min-width: 140px; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); border: 1px solid #f1f5f9; opacity: 0; visibility: hidden; transform: translateY(10px); transition: 0.3s; z-index: 9999; overflow: hidden; }
.dalli-dil-secici:hover .dalli-dil-liste { opacity: 1; visibility: visible; transform: translateY(0); }
.dalli-dil-item { display: flex; align-items: center; gap: 10px; padding: 10px 15px; font-size: 13px; font-weight: 500; color: #475569; transition: 0.2s; text-decoration: none; }
.dalli-dil-item:hover { background: #f8fafc; color: var(--ana-renk); }
.dalli-dil-item img { width: 22px; height: 16px; object-fit: cover; border-radius: 3px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }

/* --- 🔥 ZARA STİLİ MERKEZİ MENÜ STİLLERİ --- */
.ds-merkez-menu { flex-grow: 1; display: flex; justify-content: center; }
.ds-merkez-menu ul { display: flex; align-items: center;   list-style: none; margin: 0; padding: 0; }
.ds-merkez-menu > ul > li { position: relative; padding: 20px 0; }
.ds-merkez-menu > ul > li > a { color: #111; text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; transition: color 0.3s; position: relative; display: flex; align-items: center; gap: 5px; }
.ds-merkez-menu > ul > li > a:hover { color: var(--ana-renk); }
.ds-merkez-dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(15px); background: #fff; min-width: 220px; box-shadow: 0 15px 35px rgba(0,0,0,0.08); border: 1px solid #f1f5f9; border-radius: 12px; list-style: none; padding: 10px 0; margin: 0; opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 1000; }
.ds-merkez-menu > ul > li:hover .ds-merkez-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.ds-merkez-dropdown li a { display: block; padding: 12px 25px; color: #444; text-decoration: none; font-size: 13px; font-weight: 500; text-align: center; transition: background 0.2s, color 0.2s; }
.ds-merkez-dropdown li a:hover { background: #f8fafc; color: var(--ana-renk); }

/* --- 🔥 TAM EKRAN MOBİL MENÜ STİLLERİ --- */
.ds-mobil-buton { display: none; font-size: 24px; color: #111; cursor: pointer; background: none; border: none; padding: 5px; }
.ds-mobil-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: #fff; z-index: 999999; display: flex; flex-direction: column; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transform: translateY(-20px); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.ds-mobil-overlay.aktif { opacity: 1; visibility: visible; transform: translateY(0); }
.ds-mobil-kapat { position: absolute; top: 30px; right: 30px; font-size: 30px; color: #111; background: none; border: none; cursor: pointer; transition: transform 0.3s; }
.ds-mobil-kapat:hover { transform: rotate(90deg); }
.ds-mobil-liste { list-style: none; padding: 0; margin: 0; text-align: center; width: 100%; }
.ds-mobil-liste li { margin-bottom: 25px; }
.ds-mobil-liste a { font-size: 24px; font-weight: 700; color: #111; text-decoration: none; text-transform: uppercase; letter-spacing: 2px; display: block; }
.ds-mobil-alt { list-style: none; padding: 0; margin: 15px 0 0 0; display: none; }
.ds-mobil-alt li { margin-bottom: 15px; }
.ds-mobil-alt a { font-size: 16px; font-weight: 500; color: #666; letter-spacing: 1px; }

@media (max-width: 1024px) {
    .ds-merkez-menu { display: none; }
    .ds-mobil-buton { display: block; }
    .dallisoft-logo-alani img { max-height: 40px; }
}
@media (max-width: 991px) { .mobil-gizle { display: none !important; } }



/* =======================================================
   🍪 SAF ÇEREZ BİLEŞENİ (COOKIE BAR) STİLLERİ
======================================================= */
#dallisoft-cerez-alani {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.08);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: 'Poppins', sans-serif;
    transform: translateY(110%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid #f1f5f9;
    box-sizing: border-box;
}

#dallisoft-cerez-alani.goster {
    transform: translateY(0);
}

.cerez-metin-kismi {
    flex: 1;
    padding-right: 30px;
}

.cerez-metin-kismi p {
    margin: 0;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    font-weight: 500;
}

.cerez-metin-kismi a {
    color: var(--ana-renk);
    font-weight: 700;
    text-decoration: underline;
}

.cerez-butonlar-kismi {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-cerez {
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    box-sizing: border-box;
}

.btn-cerez-outline {
    background: transparent;
    color: #0f172a;
    border: 1px solid #cbd5e1;
}

.btn-cerez-outline:hover {
    background: #f8fafc;
    border-color: #94a3b8;
}

.btn-cerez-solid {
    background: var(--ana-renk);
    color: #ffffff;
    border: 1px solid var(--ana-renk);
}

.btn-cerez-solid:hover {
    opacity: 0.85;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

@media (max-width: 1024px) {
    #dallisoft-cerez-alani {
        flex-direction: column;
        padding: 25px 20px;
        gap: 20px;
        text-align: center;
    }
    .cerez-metin-kismi { padding-right: 0; }
    .cerez-butonlar-kismi { width: 100%; flex-direction: column; gap: 10px; }
    .btn-cerez { width: 100%; }
}




















/* =======================================================
   🛡️ GOOGLE TRANSLATE TEPE BOŞLUĞU (TOP BAR) KESİN ÇÖZÜM
======================================================= */
html {
    height: auto !important;
    margin-top: 0 !important;
}

body {
    top: 0 !important;
    position: static !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.skiptranslate, 
.goog-te-banner-frame, 
#goog-gt-tt, 
.goog-te-balloon-frame,
iframe.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
}

body > .skiptranslate {
    display: none !important;
}

/* Header'ı daima en tepede kilitli tutar */
.dallisoft-ust-bilgi {
    top: 0 !important;
    margin-top: 0 !important;
}









/* --- MOBİL DİL SEÇİCİ DOKUNMA (TOUCH) DESTEĞİ --- */
.dalli-dil-liste.goster-mobil {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}











/* =======================================================
   📱 MOBİL HEADER TEK SATIR KİLİDİ (KESİN ÇÖZÜM)
======================================================= */
@media (max-width: 1024px) {
    /* Ana taşıyıcıyı KESİNLİKLE tek satıra kilitler */
    .dallisoft-ust-flex {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important; /* ALT ALTA ATMAYI YASAKLAR */
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding: 10px;
    }

    /* Logo alanını sol tarafa sabitler ve genişliğini kontrol altına alır */
    .dallisoft-logo-alani {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        flex: 1 !important; /* Kalan boşluğu esnek kullanır */
        width: auto !important;
        text-align: left !important;
    }

    /* Logonun çok büyüyüp butonları aşağı ittirmesini engeller */
    .dallisoft-logo-alani img {
        max-height: 38px !important; 
        max-width: 160px !important; 
        width: auto !important;
        object-fit: contain !important;
    }

    /* Sağ tarafı (Dil ve Hamburger Buton) tek satırda tutup sağa yaslar */
    .dallisoft-sag-bilgiler {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important; /* ASLA ALT ALTA İNMEZ */
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 12px !important;
        flex-shrink: 0 !important; /* Sağ tarafın ezilmesini engeller */
        width: auto !important;
    }

    /* Mobil dil seçici butonunu zarifleştirir */
    .dalli-dil-aktif {
        padding: 6px 12px !important;
        height: 38px !important;
        box-sizing: border-box !important;
    }

    /* Hamburger menü butonu hizalaması */
    .ds-mobil-buton {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 5px !important;
        height: 38px !important;
    }
}


