@charset "utf-8";
.container .navbar.navbar-expand-lg.navbar-light.bg-light #navbarSupportedContent1 {
    font-size: large;
    font-weight: normal;
    width: 0px;
    -webkit-box-shadow: 0px 0px 0px 0px;
    box-shadow: 0px 0px 0px 0px;
    opacity: 1;
    text-indent: 0;
    text-decoration: none;
    text-align: left;
    vertical-align: baseline;
    list-style-position: inside;
    text-shadow: 0px 0px;
}

.tab {
    display: inline-block;
    margin-left: 2em;
}


/* Alışveriş Sepeti Konteyneri */
.cart-container {
    position: fixed;
    top: 20px; /* Üstten mesafe */
    right: 20px; /* Sağdan mesafe */
    cursor: pointer;
	z-index: 1000; /* İkonu en üst katmanda göster */
}

/* Alışveriş İkonu */
.cart-icon {
    font-size: 24px; /* Alışveriş arabası ikon boyutu */
    position: relative;
}

/* Ürün Sayısı */
#cart-count {
    position: absolute;
    top: -10px; /* Üstten uzaklık */
    right: -10px; /* Sağdan uzaklık */
    background-color: red; /* Arkaplan rengi */
    color: white; /* Yazı rengi */
    border-radius: 50%; /* Çember şekli */
    width: 20px; /* Çember genişliği */
    height: 20px; /* Çember yüksekliği */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px; /* Yazı boyutu */
    font-weight: bold; /* Yazı kalınlığı */
}



/* Footer bölümü stili */

/* Footer genel ayarları */

/* Footer’da genişlik sınırlaması */
footer .container-fluid,
footer .footer-container {
    max-width: 1140px; /* Belirli bir genişlik belirlenebilir */
    margin: 0 auto; /* Ortalamak için */
}


    footer {
        background-color: #282828;
        color: #ffffff;
        padding: 20px 0;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
		margin-top: 40px; /* 40px boşluk bırakır */
    }

    .footer-container {
        display: flex;
        justify-content: space-between;
        width: 100%;
        flex-wrap: wrap;
        margin-bottom: 20px; /* Hakkımızda linkleriyle araya boşluk */
    }

    .footer-section {
        display: flex;
        flex-direction: column;
        justify-content:center;
        text-align: center;
        flex: 1;
    }

    .center-content {
        justify-content: center;
        align-items: center;
    }

    .footer-logo {
        max-width: 80px;
        margin-bottom: 10px;
    }

    .footer-slogan {
        font-size: 1.2em;
        color: #7FDBFF;
        margin-top: 10px;
    }

    .footer-links {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links li a {
        color: #ffffff;
        text-decoration: none;
        transition: transform 0.3s;
        display: inline-block;
        padding: 5px 0;
    }

    .footer-links li a:hover {
        color: #7FDBFF;
        transform: translateX(5px);
    }

    .hakkimizda-wrapper {
    position: relative;
    padding-top: 15px;
    width: 90%;
    text-align: center;
	}

.hakkimizda-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #7FDBFF; /* Çizgi rengi */
    margin-top: -15px; /* Çizgiyi üst kenara yapıştırmak için */
	}

    .footer-about-links {
        list-style-type: none;
        padding: 0;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-about-links li a {
        color: #ffffff;
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-about-links li a:hover {
        color: #7FDBFF;
    }



.hakkimizda-wrapper {
    position: relative; /* Pseudo element için pozisyon belirliyoruz */
    padding-top: 15px;
    margin-top: 10px;
    text-align: center;
}

.hakkimizda-wrapper::before {
    content: "";
    position: absolute;
    top: 0; /* Üstten başlayarak */
    left: 1%; /* Sayfanın her iki tarafında %5 boşluk bırak */
    right: 1%; /* Sayfanın her iki tarafında %5 boşluk bırak */
    height: 1px;
    background-color: #7FDBFF; /* Çizgi rengi */
}
    .footer-about-links {
        list-style-type: none;
        padding: 0;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    .footer-about-links li a {
        color: #ffffff;
        text-decoration: none;
        transition: color 0.3s;
    }
    .footer-about-links li a:hover {
        color: #7FDBFF; /* Açık mavi */
    }
    .copyright {
        background-color: #1e1e1e;
        color: #777777;
        text-align: center;
        padding: 10px 0;
    }
    .copyright p {
        margin: 0;
    }


/* menu ayarlamaları */




/* Navbar İçerik */
.navbar-nav {
    display: flex;
    align-items: center;
}

/* Navbar Marka (Logo) */
.navbar-brand img {
    max-height: 80px;
}

/* Menü Linkleri */
.navbar-nav .nav-link {
    color: #ffffff !important;
    padding: 12px 20px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s, background-color 0.3s;
    border-radius: 5px;
}

.navbar-nav .nav-link:hover {
    color: #FFD700 !important;
    background-color: #444444; 

}

.navbar-nav .nav-item.active .nav-link {
    color: #FFD700 !important;
    background-color: #333333;
}

.dropdown-menu {
    background-color: #282828;
    border-radius: 0;
    border: none;
}

.dropdown-item {
    color: #ffffff;
    padding: 8px 20px;
    transition: color 0.3s, background-color 0.3s;
}

.dropdown-item:hover {
    color: #FFD700;
    background-color: #444444;
}

.navbar-toggler {
    border-color: #FFD700;
}

.navbar-toggler-icon {
    background-color: #FFD700;
}

.navbar-collapse {
    background-color: #282828;
}


.navbar, .navbar-collapse {
    width: 100%;
    max-width: 100%;
}


/*  */
@media (max-width: 1920px){
}

body {
  margin: 0;
  padding: 0;
}


