* {
    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: 85;
}

.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;
}

/*-------------------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;
}

/*-------------------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: rgb(255, 255, 255);
    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: 1;
}

.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: 100%;   /* 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: 50%;
    left: 4%;
    right: 4%;
    height: 5px;
    border-radius: 20px;
    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: 22%;
    left: 0;
    width: 35px;
    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: absolute;
    top: 65px;
    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;
    position: relative;
    top: 4.2%;
    flex-grow: 1; 
    overflow-y: auto;
    box-shadow: inset 0px 5px 20px rgba(0, 0, 0, 0.25);
    max-height: calc(76.8vh - 70px);
}

.sepet-urunleri li {
    display: flex;
    align-items: flex-start;
    padding: 10px;
    border-bottom: 2px solid #eee;
}

.sepet-urunleri li:last-child {
    margin-bottom: 20px; /* Son öğenin alt kenarlığını kaldır */
}

.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: relative; /* Sepet-urunleri'nin bitiminde görünmesi için relative yapıldı */
    margin-top: -12px; /* Sepet-urunleri'nin bitiminden boşluk bırak */
    left: 0;
    width: 100%;
    height: 6vh;
    line-height: 6vh;
    color: white;
    border-radius: 3%;
    background: #000913;
    box-shadow: 0px -10px 20px rgba(0, 0, 0, 0.25);
}

.tamamla-btn {
    position: relative;
    top: 10.5vh;
    left: 5%;
    display: block;
    width: 90%;
    max-height: 10%;
    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;
}

/*-------------------Arama Butonu-------------------*/

.search-bar {
    position: absolute;
    margin-top: 210px;
    margin-left: 4.8%;
    display: flex;
    align-items: center;
    justify-content: center; /* İkonu kutunun ortasında yerleştir */
    width: 40px; /* Başlangıçta sadece buton genişliği */
    transition: width 1.4s ease;
}

.search-bar input {
    border: none;
    border-bottom: 2.9px solid #000913; /* İnce çizgi */
    padding: 2px 0.2%;
    font-size: 18px;
    outline: none;
    width: 0;
    opacity: 0;
    color: #000913bd;
    text-transform: none;
    transition: width 1s ease, opacity 1.3s ease;
}

.search-bar i {
    font-size: 30px;
    cursor: pointer;
    color: #000913;
    position: absolute;
    left: 40%;
    transform: translateX(-50%); /* Başlangıçta ortada */
    transition: transform 1.1s ease;
}

.search-bar.active {
    width: 330px; /* Arama kutusunun tam genişliği */
}

.search-bar.active input {
    width: 100%;
    opacity: 1;
}

.search-bar.active i {
    transform: translateX(200px); /* Buton sağa kayacak (arama kutusunun genişliğine göre ayarlanabilir) */
}

.arama-sonuclari {
    position: absolute;
    top: 100%;
    left: 0;
    max-height: 500px;
    overflow-y: auto;
    width: 100%;
    background-color: #fff;
    border: 1px solid #cccccc63;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.5);
    opacity: 0; /* Başlangıçta görünmez */
    visibility: hidden; /* Başlangıçta gizli */
    transition: opacity .4s ease-in-out, visibility .4s ease-in-out; /* Geçiş efektleri */
    z-index: 10;
}

.arama-sonuclari.goster {
    opacity: 1; /* Görünür yap */
    visibility: visible; /* Görünür yap */
}

.arama-sonuclari a {
    display: flex;
    align-items: center;
    padding: 1px;
    text-decoration: none;
    color: #333;
}

.arama-sonuclari a img {
    width: 100px;
    height: 100px;
    margin-right: 10px;
}

.arama-sonuclari a .urun-bilgileri {
    font-size: 16px;
    flex-grow: 1;
}

.arama-sonuclari a .urun-fiyat {
    font-weight: 350;
}

.arama-sonuclari a:hover {
    background-color: #f0f0f0;
}

/*-------------------Filtre Kısmı-------------------*/

.dropdown {
    position: relative;
    left: 80vw;
    top: 210px;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    z-index: 9;
}

.dropdown-toggle {
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 12px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 14px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0%;
    background: rgb(255, 255, 255);
    border-radius: 8px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
    display: none;
    width: 220px;
    list-style: none;
    padding: 5px 0;
}

.dropdown-menu li {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    transition: background 0.2s;
}

.dropdown-menu li:hover {
    background: #f5f5f5;
}

.dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-menu .aktif {
    font-weight: bold;
}

/*-------------------Ürünler-------------------*/

.urunlertamamistand-container {
    position: relative;
    top: 180px;
    display: flex;
    justify-content: center;
    gap: 3.7rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.urunlertamami {
    position: relative;
    top: 152px;
    left: 50%; /* Sol kenarı ekranın ortasına hizalar */
    transform: translateX(-50%); /* Ortalamayı tam yapmak için sola kaydırır */
    color: black;
    border-bottom: 3px solid black; /* Alt çizgi ekler */
    padding: 0 90px;
    padding-bottom: 8px; /* Çizgi ve yazı arasına boşluk ekler */
    width: fit-content; /* İçeriğe göre genişlik */
    text-align: center; /* Yazıyı ortalar */
}

.urunlertamami h2 {
    text-transform: none;
    font-size: 30px;
    font-weight: 450;
}

.urunlertamamistand {
    width: 400px;
    height: auto;
    text-align: center;
    padding: 20px; /* İçeriği düzgün hale getirmek için padding */
    margin-top: 20px;
    position: relative;
    background: white;
    border-radius: 10px; /* Köşeleri yuvarlatır */
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.9s ease-in-out, visibility 0.5s ease-in-out;
    display: flex;
    flex-direction: column; /* İçeriği dikey hizalar */
    justify-content: space-between; /* İçeriği dengelemek için */
    align-items: center; /* Ortalar */
    overflow: hidden; /* Taşmayı engeller */
    position: relative; /* Favori butonunun konumlandırılabilmesi için */
    opacity: 1;
}

.urunlertamamistand.gizle {
    opacity: 0
}

.urunlertamamistand h3 {
    font-weight: 400;
    font-size: 20px;
}

.urunlertamamistand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.urunlertamamistand:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.116); /* Gölgeyi ekler */
}

.ucret {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 100%; /* Fiyat kısmının tam genişlikte olması */
    margin-top: 10px; /* H3 ile arasına boşluk */
}

.ucret h4 {
    font-weight: 380;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.712);
}

.ucret h5 {
    font-weight: 300;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.61);
    text-decoration: line-through;
}

.urunlertamamistand .renk-secenekleri {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.urunlertamamistand .renk-degistirme-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid rgba(216, 216, 216, 0.671);
    transition: transform 0.3s ease;
}

.urunlertamamistand .renk-degistirme-dot:hover {
    transform: scale(1.2);
}

.renk-secili {
    outline: 1.5px solid black; 
    transition: opacity 2s ease;
}

#urun-resmi {
    transition: opacity 0.5s ease-out;
}

#favori1 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori1:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli {
    color: rgba(184, 19, 19, 0.95);
}

#favori1.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori2 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori2:hover {
    color: rgba(255, 0, 0, 1);
}

#favori2.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori3 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori3:hover {
    color: rgba(255, 0, 0, 1);
}

#favori3.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori4 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori4:hover {
    color: rgba(255, 0, 0, 1);
}

#favori4.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori5 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori5:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli5 {
    color: rgba(184, 19, 19, 0.95);
}

#favori5.favori-ekli5:hover {
    color: rgba(255, 0, 0, 1);
}

#favori6 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori6:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli6 {
    color: rgba(184, 19, 19, 0.95);
}

#favori6.favori-ekli6:hover {
    color: rgba(255, 0, 0, 1);
}

#favori7 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori7:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli7 {
    color: rgba(184, 19, 19, 0.95);
}

#favori7.favori-ekli7:hover {
    color: rgba(255, 0, 0, 1);
}

#favori8 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori8:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli8 {
    color: rgba(184, 19, 19, 0.95);
}

#favori8.favori-ekli8:hover {
    color: rgba(255, 0, 0, 1);
}

#favori9 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori9:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli9 {
    color: rgba(184, 19, 19, 0.95);
}

#favori9.favori-ekli9:hover {
    color: rgba(255, 0, 0, 1);
}

#favori10 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori10:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli10 {
    color: rgba(184, 19, 19, 0.95);
}

#favori10.favori-ekli10:hover {
    color: rgba(255, 0, 0, 1);
}

#favori11 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori11:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli11 {
    color: rgba(184, 19, 19, 0.95);
}

#favori11.favori-ekli11:hover {
    color: rgba(255, 0, 0, 1);
}

#favori12 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori12:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli12 {
    color: rgba(184, 19, 19, 0.95);
}

#favori12.favori-ekli12:hover {
    color: rgba(255, 0, 0, 1);
}

#favori13 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori13:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli13 {
    color: rgba(184, 19, 19, 0.95);
}

#favori13.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori14 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori14:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli14 {
    color: rgba(184, 19, 19, 0.95);
}

#favori14.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori15 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori15:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli15 {
    color: rgba(184, 19, 19, 0.95);
}

#favori15.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori16 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori16:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli16 {
    color: rgba(184, 19, 19, 0.95);
}

#favori16.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori17 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori17:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli17 {
    color: rgba(184, 19, 19, 0.95);
}

#favori17.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori18 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori18:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli18 {
    color: rgba(184, 19, 19, 0.95);
}

#favori18.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori19 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori19:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli19 {
    color: rgba(184, 19, 19, 0.95);
}

#favori19.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori20 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori20:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli20 {
    color: rgba(184, 19, 19, 0.95);
}

#favori20.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori21 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori21:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli21 {
    color: rgba(184, 19, 19, 0.95);
}

#favori21.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori22 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori22:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli22 {
    color: rgba(184, 19, 19, 0.95);
}

#favori22.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori23 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori23:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli23 {
    color: rgba(184, 19, 19, 0.95);
}

#favori23.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori24 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori24:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli24 {
    color: rgba(184, 19, 19, 0.95);
}

#favori24.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori25 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori25:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli25 {
    color: rgba(184, 19, 19, 0.95);
}

#favori25.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori26 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori26:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli26 {
    color: rgba(184, 19, 19, 0.95);
}

#favori26.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori27 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori27:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli27 {
    color: rgba(184, 19, 19, 0.95);
}

#favori27.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori28 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori28:hover {
    color: rgba(255, 0, 0, 1);
}

#favori28.favori-ekli28:hover {
    color: rgba(255, 0, 0, 1);
}

#favori29 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori29:hover {
    color: rgba(255, 0, 0, 1);
}

#favori29.favori-ekli29:hover {
    color: rgba(255, 0, 0, 1);
}

#favori30 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori30:hover {
    color: rgba(255, 0, 0, 1);
}

#favori30.favori-ekli30:hover {
    color: rgba(255, 0, 0, 1);
}

#favori31 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori31:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli31 {
    color: rgba(184, 19, 19, 0.95);
}

#favori31.favori-ekli31:hover {
    color: rgba(255, 0, 0, 1);
}

#favori32 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favor32:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli32 {
    color: rgba(184, 19, 19, 0.95);
}

#favori32.favori-ekli32:hover {
    color: rgba(255, 0, 0, 1);
}

#favori33 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori33:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli33 {
    color: rgba(184, 19, 19, 0.95);
}

#favori33.favori-ekli33:hover {
    color: rgba(255, 0, 0, 1);
}

#favori34 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori34:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli34 {
    color: rgba(184, 19, 19, 0.95);
}

#favori34.favori-ekli34:hover {
    color: rgba(255, 0, 0, 1);
}

#favori35 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori35:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli35 {
    color: rgba(184, 19, 19, 0.95);
}

#favori35.favori-ekli35:hover {
    color: rgba(255, 0, 0, 1);
}

#favori36 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori36:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli36 {
    color: rgba(184, 19, 19, 0.95);
}

#favori36.favori-ekli36:hover {
    color: rgba(255, 0, 0, 1);
}

#favori37 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori37:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli37 {
    color: rgba(184, 19, 19, 0.95);
}

#favori37.favori-ekli37:hover {
    color: rgba(255, 0, 0, 1);
}

#favori38 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori38:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli38 {
    color: rgba(184, 19, 19, 0.95);
}

#favori38.favori-ekli38:hover {
    color: rgba(255, 0, 0, 1);
}

#favori39 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori39:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli39 {
    color: rgba(184, 19, 19, 0.95);
}

#favori39.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori40 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori40:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli40 {
    color: rgba(184, 19, 19, 0.95);
}

#favori40.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori41 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori41:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli41 {
    color: rgba(184, 19, 19, 0.95);
}

#favori41.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori42 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori42:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli42 {
    color: rgba(184, 19, 19, 0.95);
}

#favori42.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori43 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori43:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli43 {
    color: rgba(184, 19, 19, 0.95);
}

#favori43.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori44 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori44:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli44 {
    color: rgba(184, 19, 19, 0.95);
}

#favori44.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori45 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori45:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli45 {
    color: rgba(184, 19, 19, 0.95);
}

#favori45.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori46 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori46:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli46 {
    color: rgba(184, 19, 19, 0.95);
}

#favori46.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori47 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori47:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli47 {
    color: rgba(184, 19, 19, 0.95);
}

#favori47.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori48 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori48:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli48 {
    color: rgba(184, 19, 19, 0.95);
}

#favori48.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori49 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori49:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli49 {
    color: rgba(184, 19, 19, 0.95);
}

#favori49.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori50 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori50:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli50 {
    color: rgba(184, 19, 19, 0.95);
}

#favori50.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori51 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori51:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli51 {
    color: rgba(184, 19, 19, 0.95);
}

#favori51.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

#favori52 {
    position: absolute;
    top: 5%;
    left: 90%;
    transform: translateX(-50%);
    font-size: 30px;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

#favori52:hover {
    color: rgba(255, 0, 0, 1);
}

.favori-ekli52 {
    color: rgba(184, 19, 19, 0.95);
}

#favori52.favori-ekli:hover {
    color: rgba(255, 0, 0, 1);
}

/*-------------------Footer-------------------*/
.footer {
    display: flex;
    position: relative;
    top: 170px;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #000913;
    padding: 40px 20px;
    box-shadow: 0px -20px 50px #000913;
}

/* 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: 170px; /* .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 */
    }
    
    /*-------------------Arama kısmı-------------------*/
    .search-bar {
        position: absolute;
        margin-top: 130px;
        left: 5%;
        margin-left: 1.8%;
        display: flex;
        align-items: center;
        justify-content: center; /* İkonu kutunun ortasında yerleştir */
        width: 40px; /* Başlangıçta sadece buton genişliği */
        transition: width 1.4s ease;
    }
    
    .search-bar input {
        border: none;
        border-bottom: 2.9px solid #000913; /* İnce çizgi */
        padding: 2px 0.2%;
        font-size: 18px;
        outline: none;
        width: 0;
        opacity: 0;
        color: #000913bd;
        text-transform: none;
        transition: width 1s ease, opacity 1.3s ease;
    }
    
    .search-bar i {
        font-size: 30px;
        cursor: pointer;
        color: #000913;
        position: absolute;
        left: 40%;
        transform: translateX(-50%); /* Başlangıçta ortada */
        transition: transform 1.1s ease;
    }
    
    .search-bar.active {
        width: 80%; /* Arama kutusunun tam genişliği */
    }
    
    .search-bar.active input {
        width: 100%;
        opacity: 1;
    }
    
    .search-bar.active i {
        transform: translateX(50vw);
    }
    
    .arama-sonuclari {
        position: absolute;
        top: 100%;
        left: 0;
        max-height: 500px;
        overflow-y: auto;
        width: 100%;
        background-color: #fff;
        border: 1px solid #cccccc63;
        box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.5);
        opacity: 0; /* Başlangıçta görünmez */
        visibility: hidden; /* Başlangıçta gizli */
        transition: opacity .4s ease-in-out, visibility .4s ease-in-out; /* Geçiş efektleri */
        z-index: 10;
    }
    
    .arama-sonuclari.goster {
        opacity: 1; /* Görünür yap */
        visibility: visible; /* Görünür yap */
    }
    
    .arama-sonuclari a {
        display: flex;
        align-items: center;
        padding: 1px;
        text-decoration: none;
        color: #333;
    }
    
    .arama-sonuclari a img {
        width: 100px;
        height: 100px;
        margin-right: 10px;
    }
    
    .arama-sonuclari a .urun-bilgileri {
        font-size: 16px;
        flex-grow: 1;
    }
    
    .arama-sonuclari a .urun-fiyat {
        font-weight: 350;
    }
    
    .arama-sonuclari a:hover {
        background-color: #f0f0f0;
    }
    
    /*-------------------Trend Ürünler-------------------*/
    
    .urunlertamamistand-container {
        position: relative;
        top: 150px;
        display: flex;
        justify-content: center;
        gap: 5px;
        flex-wrap: wrap;
        margin-top: 4rem;
    }
    
    .urunlertamami {
        position: relative;
        top: 130px; /* Yukarıdan boşluk */
        margin: 0 auto; /* Yatayda ortalamak için */
        font-weight: 600;
        color: black;
        border-bottom: 3px solid black; /* Alt çizgi ekler */
        padding: 0 20px; /* İçerik için yatay boşluk */
        width: fit-content; /* İçeriğe göre genişlik */
        text-align: center; /* Metni yatayda ortalar */
        left: 0px; /* Sol konumlandırmayı sıfırla */
        transform: translateX(0); /* Gereksiz kaydırmayı kaldır */
    }
    
    .urunlertamami h2 {
        text-align: center; /* Metni yatayda ortalar */
        margin: 0 auto; /* Yatayda ortalamak için */
        position: relative; /* Konumlandırmayı kontrol etmek için */
        font-size: 26px; /* Yazı boyutu */
        font-weight: 450; /* Yazı kalınlığı */
        transform: translateX(0); /* Gereksiz kaydırmayı kaldır */
        left: 0; /* Sol konumlandırmayı sıfırla */
    }
    
    .urunlertamamistand {
        width: 49%;
        height: auto;
        text-align: center;
        padding: 20px; /* İçeriği düzgün hale getirmek için padding */
        margin-top: 0px;
        background: white;
        border-radius: 10px; /* Köşeleri yuvarlatır */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column; /* İçeriği dikey hizalar */
        justify-content: space-between; /* İçeriği dengelemek için */
        align-items: center; /* Ortalar */
        overflow: hidden; /* Taşmayı engeller */
        position: relative; /* Favori butonunun konumlandırılabilmesi için */
        left: 0%;
    }
    
    .urunlertamamistand:hover {
        transform: scale(1.05) translateY(-5px);
        box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.116); /* Gölgeyi ekler */
        z-index: 5;
    }
    
    .beden-secimi-urun {
        position: absolute;
        top: 91%; /* Aşağıdan 10px boşluk */
        left: 45%; /* Soldan 10px boşluk */
    }
    
    .urunlertamamistand h3 {
        font-weight: 400;
        font-size: 16px;
    }
    
    .ucret h4 {
        font-weight: 380;
        font-size: 14px;
        color: rgba(0, 0, 0, 0.712);
    }
    
    .ucret h5 {
        font-weight: 300;
        font-size: 12px;
        color: rgba(0, 0, 0, 0.61);
        text-decoration: line-through;
    }


    /*-------------------Filtre Kısmı-------------------*/

    .dropdown {
        position: relative;
        left: 51%; /* Sol kenarı ekranın ortasına hizalar */
        transform: translateX(-50%); /* Ortalamayı tam yapmak için sola kaydırır */
        top: 200px;
        display: inline-block;
        font-size: 18px;
        font-weight: 500;
    }

.dropdown-toggle {
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 12px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 14px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
    display: none;
    width: 200px;
    list-style: none;
    padding: 5px 0;
}

.dropdown-menu li {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: background 0.2s;
}

.dropdown-menu li:hover {
    background: #f5f5f5;
}

.dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-menu .aktif {
    font-weight: bold;
}
    
/*-------------------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;
    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 */
}

    
/*-------------------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: 22px; /* İsteğe bağlı yazı boyutu */
    font-weight: 600; /* İsteğe bağlı yazı kalınlığı */
    height: 60px;
    line-height: 25px;
}

.sepet-bolumu {
    position: fixed;
    top: 100px;
    right: -105%;
    width: 100%;
    height: 93vh;
    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 */
    z-index: 40000;
}

.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: 12px;
    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: 1;
}

.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: 45px;  /* Yükseklik */
    width: 100%;   /* 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: 50%;
    left: 4%;
    right: 4%;
    height: 5px;
    border-radius: 20px;
    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: 21%;
    left: 0;
    width: 25px;
    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: absolute;
    top: 60px;
    text-transform: none;
    text-align: left;
    text-decoration: 1.5px underline;
    text-underline-offset: 2px;
    align-items: center;
    height: 30px;
    font-size: 15px;
    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: 30vh;
}

.bos-sepet-yazi {
    font-size: 22px;
    font-weight: 300;
    max-width: 200px;
    display: block;
    position: relative; /* Konumlandırmayı kontrol etmek için */
    left: 50%; /* X ekseninde ortalamak için */
    transform: translateX(-50%); /* Ortalamayı tam yapmak için sola kaydır */
    text-align: center; /* Metni yatayda ortalar */
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-color: rgba(0, 0, 0, 0.40);
    color: rgba(83, 83, 83, 1);
}

.bos-sepet-icon {
    font-size: 100px;
    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;
    position: relative;
    top: 4.2%;
    flex-grow: 1; 
    overflow-y: auto;
    box-shadow: inset 0px 5px 20px rgba(0, 0, 0, 0.25);
    max-height: calc(65.8vh - 90px);
}

.sepet-urunleri li {
    display: flex;
    align-items: flex-start;
    padding: 10px;
    border-bottom: 2px solid #eee;
}

.sepet-urunleri li:last-child {
    margin-bottom: 20px; /* Son öğenin alt kenarlığını kaldır */
}

.sepet-urunleri li img {
    width: 120px;
    height: 120px;
    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: 16px;
    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: 13px;
    font-weight: 250;
    display: block;
}

.beden-secimi {
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.beden-select-urun {
    font-size: 16px;
    font-weight: 500;
}

.beden-secimi-urun {
    position: absolute;
    top: 86.5%; /* Aşağıdan 10px boşluk */
    left: 43%; /* 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: 5px;
    align-items: center;
    border: 1px solid #ccc; /* Kenarlık */
    border-radius: 5px; /* Köşe yuvarlama */
    overflow: hidden; /* Taşmayı engelle */
    max-width: 82px;
}

.adet-kontrol button {
    border: none; /* Kenarlığı kaldır */
    padding: 8px 10px; /* İç boşluk */
    cursor: pointer; /* Fare imleci */
    font-size: .5em; /* 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: 12px;
    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: 90px;
    font-size: 20px;
    color: #000913;
    transition: color .1s;
}

.sepet-urunleri li .urun-sil:hover {
    color: #03346d;
}

/* Toplam Fiyat */
.toplam-fiyat {
    padding: 0px;
    text-align: center;
    font-size: 18px;
    font-weight: 450;
    position: relative; /* Sepet-urunleri'nin bitiminde görünmesi için relative yapıldı */
    margin-top: -40px; /* Sepet-urunleri'nin bitiminden boşluk bırak */
    left: 0;
    width: 100%;
    height: 6vh;
    line-height: 6vh;
    color: white;
    border-radius: 3%;
    background: #000913;
    box-shadow: 0px -10px 20px rgba(0, 0, 0, 0.25);
}

.tamamla-btn {
    position: relative;
    top: 9vh;
    left: 5%;
    display: block;
    width: 90%;
    max-height: 10%;
    padding: 5vw 5vh;
    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;
}
    
}