* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
}

body {
    min-height: 50vh;
}

img {
    max-width: 100%;
    max-height: 100%;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    overflow-x: hidden;
}

.logo {
    position: absolute;
    left: 20px; /* Logoyu sol tarafa yerleştir */
    top: 50%;
    transform: translateY(-50%); /* Y ekseninde ortalar */
    z-index: 1000; /* Üstteki öğelerin altında olmasın */
}

.logo img {
    width: 230px; /* Logo boyutu */
    height: auto;
}

header {
    position: fixed; /* Navbar'ın kayan yazının altına yerleşmesi için relative yapıldı */
    top: 30px; /* Başlangıç konumu */
    left: 0;
    right: 0;
    padding: 2rem 20%;
    display: flex;
    align-items: center;
    justify-content: center; /* Navbar öğelerini sola hizalar */
    z-index: 1000;
    background-color: #000913;
    box-shadow: 0 .5rem 1rem rgba(0, 12, 36, 0.63);
}

/* Navbar düzenlemeleri */
.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px; /* Butonlar arasına boşluk ekler */
    flex-grow: 1; /* Navbar'ın geri kalan alanını doldurur */
    z-index: 1000;
}

.hamburger-menu {
    display: none; /* Varsayılan olarak gizli */
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    z-index: 1001;
}

.mobile-menu {
    display: none;
    z-index: -100;
}

.mobile-menu-overlay.acik {
    display: none;
}

.navbar a {
    color: rgb(255, 255, 255);
    font-size: 1.8rem;
    padding: 5px 5px; /* Düğmelere dolgu ekler */
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
    margin-left: 10px; /* Logo ile butonlar arasına 10px boşluk ekler */
    position: relative; /* Pseudo-element için pozisyonu referans alır */
}

/* Hover efekti ile alt çizgi */
.navbar a::after {
    content: ""; /* Boş bir içerik ekler */
    position: absolute;
    bottom: 0; /* Çizgiyi butonun altına yerleştirir */
    left: 0;
    width: 0; /* Başlangıçta çizgi yok */
    height: 2.5px; /* Çizginin kalınlığı */    
    background-color: rgb(255, 255, 255); /* Çizginin rengi */
    transition: width 0.5s ease-in-out; /* Çizginin genişlemesi için animasyon */
}

.navbar a:hover::after {
    width: 100%; /* Hover yapıldığında çizgi tam genişlikte görünür */
}

/* Sağdaki ikonlar için kapsayıcı */
.navbar .right-icons {
    position: absolute;
    right: 2%;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* İkonları sağa hizalar */
    gap: 30px; /* İkonlar arasına boşluk ekler */
}

/* İkon butonları */
.navbar .right-icons a {
    color: rgb(255, 255, 255);
    font-size: 2rem;
}

/* slide-text ve navbar arasındaki düzenlemeler */
.slide-text {
    background-color: black; /* Şerit rengi */
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.250);
    color: white; /* Yazı rengi */
    position: fixed;
    top: 0;
    left: 0;
    padding: 15px 0; /* Şerit üst ve alt dolgusu */
    width: 100%; /* Ekranın tamamına yayılır */
    overflow: hidden; /* Yazının dışarı taşmaması için */
    display: flex;
    align-items: center; /* Vertikal olarak ortalar */
    justify-content: center; /* Yatay olarak ortalar */
    height: 20px; /* Şeridin yüksekliği */
    z-index: 1000;
}

.text {
    white-space: nowrap; /* Yazının tek satırda kalmasını sağlar */
    position: absolute;
    animation: slideText 20s linear infinite; /* Sürekli kayma efekti */
    font-size: 1.5rem; /* Yazı boyutu */
    left: 100%; /* Başlangıçta sağdan dışarıda */
}

/* Aynı yazı ikinci kez ekranın dışından sağa doğru çıkması için */
.text:nth-child(2) {
    animation-delay: 10s; /* İkinci yazının 10 saniye sonra başlatılması */
}

/* Kayan yazının animasyonu */
@keyframes slideText {
    0% {
        left: 100%; /* Başlangıç pozisyonu (sağdan dışarıda) */
    }
    50% {
        left: 0%; /* Yarım yolda tam ortada */
    }
    100% {
        left: -100%; /* Son pozisyon (soldan kaybolur) */
    }
}

.navbar .dropdownn {
    position: relative;
    display: inline-block;
}

.navbar .dropdownn-content {
    display: none;
    position: absolute;
    top: 130%;
    left: 4%;
    background-color: rgba(0, 9, 27, 0.815);
    min-width: 145px;
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
    animation: dropdown-animation 0.3s ease-in-out;
}

.navbar .dropdownn-content a {
    color: rgb(255, 255, 255);
    padding: 10px 15px; /* Yatay padding kaldırıldı */
    margin: 0; /* Margin sıfırlandı */
    text-decoration: none;
    display: block;
    text-align: center; /* Metni sola hizala */
    text-transform: none; /* Metin dönüşümünü kaldır */
    width: 100%; /* Çizginin tam genişlikte olmasını sağlar */
}

.navbar .dropdownn-content a:hover {
    text-decoration: none;
}

.navbar .dropdownn:hover .dropdownn-content {
    display: block;
}

.navbar .dropdownn:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown animasyonu */
@keyframes dropdownn-animation {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

/*-------------------Sepet Kısımları-------------------*/

/* Sepet Başlığı */
.sepet-baslik {
    text-align: center;
    color: white;
    background: linear-gradient(to bottom, #000913 85%, #ffffff 100%);
    padding: 18px;
    font-size: 26px; /* İsteğe bağlı yazı boyutu */
    font-weight: 600; /* İsteğe bağlı yazı kalınlığı */
    height: 60px;
    line-height: 25px;
}

.sepet-bolumu {
    display: none;
    position: fixed;
    top: 0;
    right: -520px;
    width: 520px;
    height: 100%;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
    z-index: 1001;
    transition: right .4s ease-in-out;
    display: flex; /* Flexbox kullan */
    flex-direction: column; /* İçeriği dikey sırala */
}

.sepet-bolumu.acik {
    right: 0;
    display: flex; /* Flexbox kullan */
}
/* Sepet İçindeki Ürünlerin Sayısı */
.sepet-icon {
    position: relative;
    display: inline-block;
}

.sepet-sayac {
    position: absolute;
    top: 15px;
    right: -10px;
    background-color: #790101de;
    color: rgb(255, 255, 255);
    font-size: 12px;
    font-weight: bold;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    visibility: hidden; /* Başlangıçta gizli */
    z-index: 100;
    box-shadow: 0px 0px 10px black;
}

/* Sepet Kapat Butonu */
.sepet-kapat {
    position: absolute;
    top: 15px;
    left: 20px;
    cursor: pointer;
    font-size: 30px;
    color: white;
}

/* Sepet Overlay */
.sepet-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.sepet-overlay.acik {
    display: block;
}

.sepete-ekle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 26px;
    color: #000913;
    padding: 0;
    margin: 0;
    outline: none;
    margin-top: 20px;
    margin-left: 90%;
}

.sepete-ekle:hover {
    color: #054b9b;
}

/* Kamyon simgesi */
.kargo-arabasi {
    position: relative;
    top: 4.2%;
    height: 65px;  /* Yükseklik */
    width: 519px;   /* Genişlik */
    border-bottom: 3px solid rgba(0, 0, 0, 0.596);  /* Alt çizgi */
    box-shadow: inset 0px 2px 10px rgba(0, 0, 0, 0.25);
}

.kargo-arabasi::before {
    content: '';
    position: absolute;
    top: 22%;
    left: 2%;
    right: 2%;
    height: 5px;
    border-radius: 10%;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
    background-color: var(--cizgi-rengi, #0018333b); /* Varsayılan rengi de belirtiyoruz */
    transform: translateY(-50%);
    z-index: 0;
    filter: brightness(1.2);
    transition: background-color 0.2s; /* Renk geçişi ekliyoruz */
}

.kargo-arabasi img {
    position: relative;
    z-index: 1000;
    top: 20%;
    left: 0;
    width: 50px;
    transition: left 0.6s;  /* Yavaş geçiş animasyonu */
}

@keyframes shake {
    0% { transform: translateY(0); }
    25% { transform: translateY(-3px); }
    50% { transform: translateY(2px); }
    75% { transform: translateY(-3px); }
    100% { transform: translateY(0); }
}

.kargo-icon.shake {
    animation: shake 0.4s ease-in-out; /* Shake animasyonu 0.5 saniye sürecek */
}

/* Ücretsiz Kargo Info */
.ucretsiz-kargo-bilgi {
    position: relative;
    bottom: 6.5%;
    text-transform: none;
    text-align: left;
    text-decoration: 1.5px underline;
    text-underline-offset: 2px;
    align-items: center;
    height: 30px;
    font-size: 20px;
    font-weight: 450;
    font-style: italic;
    color: #000000;
    padding-left: 10px;
    display: flex; 
    justify-content: flex-start; 
    white-space: normal; 
    word-wrap: break-word;
}

/* Boş Sepet */ 
.bos-sepet {
    position: relative;
    text-align: center;
    margin-top: 70%;
}

.bos-sepet-yazi {
    font-size: 30px;
    font-weight: 300;
    max-width: 200px;
    display: block;
    position: relative;
    left: 31%;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-color: rgba(0, 0, 0, 0.60);
    color: rgba(83, 83, 83, 1);
}

.bos-sepet-icon {
    font-size: 150px;
    color: #5f5f5f;
    position: absolute;
    top: -230%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.15; /* Hafif şeffaflık vererek arka planda hissiyatını artır */
}

/* Sepet Ürün Listesi */
.sepet-urunleri {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 9px;
    flex-grow: 1; 
    overflow-y: auto;
    box-shadow: inset 0px 5px 20px rgba(0, 0, 0, 0.25);
    max-height: calc(82.8vh - 100px);
}

.sepet-urunleri li {
    display: flex;
    align-items: flex-start;
    padding: 10px;
    border-bottom: 2px solid #eee;
}

.sepet-urunleri li img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 5%;
    margin-right: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.sepet-urunleri li .urun-bilgileri {
    flex-grow: 1;
    display: flex;
    flex-direction: column; /* Alt alta sıralama */
}

.sepet-urunleri li .urun-bilgileri .urun-adi {
    margin-right: -55px;
    font-size: 22px;
    font-weight: 500;
    text-decoration: underline 2px rgba(0, 0, 0, 0.5);
    display: block;
}

.sepet-urunleri li .urun-bilgileri p {
    margin-top: 5px;
    font-size: 17px;
    font-weight: 250;
    display: block;
}

.beden-secimi {
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.beden-select-urun {
    font-size: 18px;
    font-weight: 500;
}

.beden-secimi-urun {
    position: absolute;
    top: 91%; /* Aşağıdan 10px boşluk */
    left: 45%; /* Soldan 10px boşluk */
}

/* Ürün Fiyatı */
.urun-fiyat {
    margin-top: 8px;
    font-size: 17px;
    font-weight: 250;
    display: block;
}

.urun-bilgileri span15 {
    font-size: 17px;
    font-weight: 450;
    text-decoration: underline 1px rgba(0, 0, 0, 0.75);
}

.adet-kontrol {
    display: flex;
    margin-top: 10px;
    align-items: center;
    border: 1px solid #ccc; /* Kenarlık */
    border-radius: 5px; /* Köşe yuvarlama */
    overflow: hidden; /* Taşmayı engelle */
    max-width: 96px;
}

.adet-kontrol button {
    border: none; /* Kenarlığı kaldır */
    padding: 8px 12px; /* İç boşluk */
    cursor: pointer; /* Fare imleci */
    font-size: 1em; /* Yazı boyutu */
    font-weight: 800;
    transition: background-color 0.3s ease; /* Geçiş efekti */
}

.adet-kontrol span {
    padding: 4px 6px; /* İç boşluk */
    min-width: 30px; /* Minimum genişlik */
    text-align: center; /* Metin hizalama */
    font-size: 15px;
    font-weight: 500;
}

.adet-kontrol button i {
    font-size: 1em; /* İkon boyutu */
    vertical-align: middle; /* İkon hizalama */
}

/* Ürün Silme Butonu */
.sepet-urunleri li .urun-sil {
    background: none;
    border: none;
    cursor: pointer;
    margin-right: 5%;
    margin-top: 24.5%;
    font-size: 24px;
    color: #000913;
    transition: color .1s;
}

.sepet-urunleri li .urun-sil:hover {
    color: #03346d;
}

/* Toplam Fiyat */
.toplam-fiyat {
    padding: 0px;
    text-align: center;
    font-size: 20px;
    font-weight: 450;
    position: absolute;
    bottom: 65px;
    left: 0;
    width: 100%;
    height: 50px;
    line-height: 50px;
    color: white;
    border-radius: 3%;
    background: #000913;
    box-shadow: 0px -10px 20px rgba(0, 0, 0, 0.25);
}

.tamamla-btn {
    position: relative;
    top: 4%;
    left: 5%;
    display: block;
    width: 90%;
    padding: 15px;
    background-color: #000000;
    color: white;
    font-size: 16px;
    text-align: center;
    border: none;
    border-radius: 6px;
    box-shadow: 0px 10px 20px black;
    cursor: pointer;
}

.tamamla-btn:hover {
    background-color: #111111;
}

/*--------------------Şifre Yenileme Kısmı-------------------*/

.sifre-yenileme-container {
    position: relative;
    top: 200px;
    max-width: 450px;
    margin: 0 auto;
    padding: 10px;
}

.form-title {
    text-align: center;
    text-decoration: underline 3px rgba(0, 0, 0, 0.5);
    text-underline-offset: 6px;
    margin-bottom: 60px;
    font-size: 28px;
    font-weight: 450;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    text-transform: none;
    width: 100%;
    padding: 13px;
    color: #303030;
    border: 2px solid #4d4d4d7c;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 420;
    margin-bottom: 20px;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus {
    outline: none;
    border: 2px solid rgb(78, 78, 78);
    box-shadow: 0 0 10px rgba(78, 78, 78, 0.25);
}

button.form-btn {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    background-color: #000913;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

button.form-btn:hover {
    background-color: #00244d;
}

.sifre-yenileme-container div {
    position: relative; /* Toggle butonlarının input alanına göre konumlanması için gerekli */
}

.toggle-password {
    position: absolute;
    right: 10px; /* Input alanının sağ kenarına yerleştir */
    top: 15%; /* Dikeyde ortala */
    background: none;
    font-size: 18px;
    color: #888;
    cursor: pointer;
    padding: 5px;
}

.toggle-password:hover {
    color: #555;
}

#parola-kriterleri {
    display: none; /* Başlangıçta gizli */
    margin-left: 5px;
    margin-top: -20px; /* Parola inputunun altına biraz boşluk bırakır */
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 300;
    color: #dc3545; /* Başlangıçta kırmızı (bootstrap kırmızısı) */
}

#parola-kriterleri .kriter {
    text-transform: none;
    margin: 5px 0;
    text-decoration: line-through;
}

#parola-kriterleri .kriter.gecerli {
    color: #28a745; 
    text-decoration: none;
}

/* Hata mesajı */
.error-message {
    margin-left: 5px;
    margin-top: -15px;
    margin-bottom: 15px;
    color: #dc3545;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
}

input.input-error {
    border: 2px solid #dc3545 !important;
    background-color: hsla(0, 78%, 53%, 0.01);
    box-sizing: border-box; 
}

/*-------------------Whatsapp Butonu-------------------*/

.phone-btn {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background-color: #3bec35ec;
    color: white;
    border: none;
    padding: 15px 16px;
    border-radius: 50%;
    font-size: 25px;
    cursor: pointer;
    transition: background-color .5s, transform .5s ease;
    z-index: 10;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    box-shadow: 0px 0px 20px rgba(55, 238, 10, 0.5);
}

.phone-btn:hover {
    background-color: #27ee20ad;
    transform: scale(1.1);
}

.phone-btn i {
    font-size: 20px;
}

/*-------------------Footer-------------------*/
.footer {
    display: flex;
    position: relative;
    top: 400px;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #000913;
    padding: 40px 20px;
    box-shadow: 0px -20px 50px #000913;
    z-index: 100;
}

/* Her kutu için genel stil */
.footer-box {
    flex: 1;
    text-align: center;
    padding: 20px;
    border-right: 4px solid #ffffff;
}

/* Son kutunun sağda çizgi olmaması */
.footer-box:last-child {
    border-right: none;
}

/* LOGO KUTUSU */
.logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.footer-logo {
    max-width: 350px;
    margin-right: 5%;
}

/* ORTA KUTULAR */
.iletisim-box,
.bilgiler-box,
.politikalar-box {
    text-align: left;
    padding-left: 30px;
    padding-top: 3%;
    height: 300px;
}

/* Başlıklar */
.footer-title {
    font-size: 28px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 15px;
    text-decoration: 3px underline;
    text-underline-offset: 6px;
}

/* Butonlar */
.footer-btn {
    display: block; /* Butonları alt alta dizmek için */
    background-color: #ce030300;
    color: #fff;
    border: none;
    margin-top: 18px;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    font-weight: 450;
    position: relative;
    width: fit-content; /* Buton içeriğe göre genişleyecek */
    white-space: nowrap; /* Buton içindeki metnin alt satıra geçmesini önler */
    text-transform: none;
}

/* Çizgi efekti */
.footer-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.767);
    transition: width 0.6s ease-in-out;
}

.footer-btn:hover {
    color: rgba(255, 255, 255, 0.767);
}

.footer-btn:hover::after {
    width: 100%;
}


/* SOSYAL MEDYA İKONLARI */
.footer-icons {
    display: flex;
    gap: 25px;
    margin-top: 15px;
}

.footer-icon {
    font-size: 24px;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-icon:hover {
    color: rgba(255, 255, 255, 0.767);
}

.footer-bottom-box {
    width: 100%;
    height: 80px;
    color: white;
    background-color: #000913;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-top: 3px solid #ffffff;
    margin-top: 400px; /* .footer'dan 10px aşağıda konumlanır */
    font-size: 20px;
    font-weight: 400;
    text-decoration: underline;
}

.footer-bottom-box .iyzico-logo {
    position: absolute;
    right: 80px; /* Sağ tarafa hizala */
    height: 30px; /* Logo boyutu */
}

/*--------------------Responsive Tasarım-------------------*/

/* Telefon Çözünürlüğü (480px ve altı) */
@media (max-width: 1300px) {
    body {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    header {
        position: fixed;
        top: 30;
        left: 0;
        width: 100%; /* Header tam ekran genişliğinde */
        height: 70px; /* Header yüksekliği */
        display: flex;
        align-items: center; /* Dikeyde ortalar */
        justify-content: center; /* Yatayda öğeleri ortalar */
        background-color: #000913; /* Arka plan rengi */
        z-index: 1000;
        padding: 0; /* İç boşlukları sıfırlar */
    }
    
    .hamburger-menu {
        position: absolute;
        left: 5%; /* Header'ın solundan 10px boşluk */
        font-size: 24px;
        color: white;
        cursor: pointer;
        z-index: 1001;
        display: block;
    }
    
    .logo {
        top: 10px;
        left: 50%; /* Sol kenarı ekranın ortasına hizalar */
        transform: translateX(-50%); /* Ortalamayı tam yapmak için sola kaydırır */
        z-index: 1;
        height: 70%; /* Yükseklik içeriğe göre ayarlanır */
        display: flex; /* İçeriği hizalamak için flexbox kullanılır */
    }
    
    .logo img {
        width: 100%; /* Kapsayıcının genişliğine göre boyutlandır */
        height: auto; /* Oranını koruyarak yüksekliği ayarla */
        object-fit:contain;
        display: flex;
        position: relative;
        right: 2%;
    }
    
    .sepet-icon {
        position: absolute;
        right: 5%; /* Header'ın sağından 10px boşluk */
        font-size: 24px;
        color: white;
        cursor: pointer;
        z-index: 1001;
    }
    
/* Mobile Menu Animasyonları */
.mobile-menu {
    position: fixed;
    top: 100px;
    left: -100%; /* Başlangıçta ekran dışında */
    width: 70%;
    height: 100%;
    background-color: #000913;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
    transition: left 0.3s ease; /* Soldan sağa geçiş efekti */
}

/* Mobile Menu Açık Durumu */
.mobile-menu.acik {
    left: 0; /* Menü ekranın solundan görünür */
}

.mobile-menu-overlay {
    display: none; /* Başlangıçta gizli */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Siyah yarı saydam arka plan */
    z-index: 999; /* Mobile menu'nun altında olacak */
    opacity: 0; /* Başlangıçta görünmez */
    transition: opacity 0.5s ease; /* Geçiş efekti */
}

/* Overlay Açık Durumu */
.mobile-menu-overlay.acik {
    display: block; /* Görünür yap */
    opacity: 1; /* Görünürlük artır */
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 300;
    display: block;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s ease;
}

.mobile-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Dropdown içeriği başlangıçta gizli */
.mobile-dropdownn .dropdownn-content {
    display: none;
    flex-direction: column;
    margin-left: 30px;
}

.mobile-dropdownn .dropdownn-content a {
    padding: 10px 0;
    text-decoration: none;
    color: #d3d3d3;
    text-align: start;
    font-size: 16px;
    font-weight: 400;
}

.mobile-dropdownn .dropdownn-content a:hover {
    text-decoration: underline;
}

/* Açık durumda dropdown içeriği görünür */
.mobile-dropdownn.open .dropdownn-content {
    display: flex;
}

/* Toggle ikonunun stili */
.dropdownn-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.toggle-icon {
    margin-left: 10px;
    font-weight: bold;
}
    
    .navbar a:not(.logo a):not(.right-icons a) {
        display: none;
    }
    
    .navbar .right-icons a:not(.sepet-icon) {
        display: none; /* Sepet ikonu dışındaki ikonları gizle */
    }
    
    .right-icons a{
        position: relative;
        right: 10px; /* Sağ tarafa yapışık */
        display: flex;
        align-items: center;
    }
    
    .navbar .right-icons a {
        font-size: 24px;
        color: white;
    }
    
    /* slide-text ve navbar arasındaki düzenlemeler */
    .slide-text {
        position: fixed;
        top: 0;
        width: 100%;
        max-width: 100%;
        height: 35px;
        overflow: hidden;
        z-index: 1000;
    }
    
    .text {
        animation: slideText 10s linear infinite; /* Sürekli kayma efekti */
        font-size: 1.8rem; /* Yazı boyutu */
        left: 100%; /* Başlangıçta sağdan dışarıda */
    }
    
/*-------------------En Alt Footer-------------------*/

.footer {
    display: flex;
    flex-direction: column; /* Öğeleri alt alta diz */
    align-items: center; /* Öğeleri yatayda ortala */
    justify-content: center; /* Öğeleri dikeyde ortala */
    background-color: #000913;
    padding: 20px 10px;
    box-shadow: 0px -20px 50px #000913;
    margin-top: -5vh;
    gap: 20px; /* Öğeler arasına boşluk ekle */
}

.footer-box {
    text-align: center;
    padding: 20px;
    border-bottom: 2px solid #ffffff;
    border-right: none;
    width: 100%; /* Her kutunun tam genişlikte olmasını sağlar */
}

/* Son kutunun sağda çizgi olmaması */
.footer-box:last-child {
    border-bottom: none;
}

/* LOGO KUTUSU */
.logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 350px;
}

.footer-logo {
    max-width: 300px;
    margin-right: 2%;
}

/* ORTA KUTULAR */
.iletisim-box,
.bilgiler-box,
.politikalar-box {
    text-align: center;
    padding-left: 30px;
    padding-top: 3%;
    height: 300px;
}

/* Başlıklar */
.footer-title {
    font-size: 26px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 10px;
    text-decoration: 3px underline;
    text-underline-offset: 6px;
}

.footer-btn-container {
    display: flex; /* Butonları yan yana dizmek için flexbox kullan */
    justify-content: center; /* Butonları yatayda ortala */
    align-items: center; /* Dikeyde ortala */
    gap: 10px; /* Butonlar arasına boşluk ekle */
    margin-top: 10px; /* Üstten boşluk ekle */
}

.footer-btn {
    display: inline-block; /* Butonları yan yana dizmek için */
    background-color: #ce030300;
    color: #fff;
    border: none;
    padding: 0px 10px; /* Buton içeriği için dolgu */
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 450;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-icons {
    display: flex; /* Flex düzeni */
    justify-content: center; /* İkonları yatayda ortala */
    align-items: center; /* İkonları dikeyde ortala */
    gap: 30px; /* İkonlar arasına boşluk ekle */
    margin-top: 15px; /* Üstten boşluk ekle */
}

.footer-icon {
    font-size: 20px;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-bottom-box {
    width: 100%;
    height: 80px;
    color: white;
    background-color: #000913;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    border-top: 3px solid #ffffff;
    text-decoration: underline;
    flex-direction: column;
}

.footer-bottom-box .iyzico-logo {
    position: static; /* Varsayılan konumlandırma */
    margin-top: 10px; /* Yazının üstüne boşluk ekle */
    height: 23px; /* Logo boyutu */
}
}