                                      /*Ürün Detay Sayfası */
/* Ana Ürün Görseli */
#main-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

#main-image:hover {
    transform: scale(1.02);
}

/* Thumbnail Görselleri */
.thumbnail-container {
    display: flex;
    gap: 10px;
}

.thumbnail-img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
    border: none;
}

.thumbnail-img:hover,
.active-thumbnail {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Fiyat Listesi */
.price-list {
    background: #f8f9fa;
    padding: 10px;
    border-left: 3px solid #6c757d;
    font-size: 1rem;
    border-radius: 8px;
}

/* WhatsApp Butonu */
.btn-dark {
    background: rgb(146, 232, 16);
    border: none;
    transition: all 0.3s ease-in-out;
}

.btn-dark:hover {
    background: green;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .thumbnail-img {
        width: 50px;
        height: 50px;
    }
}
                                       /* Bitiş */
                                       /* Kategori Başlangıç */

/* Genel Kart Tasarımı */
.product-card {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Ürün Görseli Konteyneri */
.image-container {
    width: 100%;
    height: 250px; /* Kartın içine tam oturacak */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

/* Ürün Görseli (Tamamen Görünsün) */
.product-img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain; /* Kırpma yapmadan tamamen görünmesini sağlar */
    transition: all 0.3s ease-in-out;
}

.product-card:hover .product-img {
    transform: scale(1.03);
}

/* Ürün Başlığı */
.card-title {
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: capitalize;
}

/* Fiyat Etiketi (Kartın Altında) */
.price-text {
    font-size: 1rem;
    font-weight: bold;
    color: #dc3545;
    margin-bottom: 10px;
}

/* Buton Tasarımı */
.btn-outline-dark {
    border-radius: 5px;
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: #212529;
    color: white;
}

/* Kartın içeriğini dikey olarak hizalama */
.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

                                                /* Kategori Bitiş */
                                                /* Header Başlangıç */

/* Üst Bilgi Alanı */
.top-bar {
    background: #dc3545; /* Kırmızı üst bar */
    font-size: 0.9rem;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-bar a:hover {
    text-decoration: underline;
}

/* Navbar Genel Ayarlar */
.navbar {
    border-bottom: 3px solid #dc3545;
}

/* Logo Çerçevesi */
.logo-container {
    width: 160px; /* Sabit çerçeve boyutu */
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(46, 46, 46);
    border-radius: 10px; /* Hafif yuvarlatılmış kenarlar */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
    padding: 10px;
}

/* Logo Stili */
.logo-img {
    max-width: 550%; /* Çerçevenin içine tam oturmasını sağlar */
    max-height: 550%;
    object-fit: contain; /* Logonun tamamen görünmesini sağlar */
    background: transparent; /* Arka plan şeffaf */
}

/* Navbar Başlık */
.navbar-brand {
    font-weight: bold;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
}

/* Menü Bağlantıları */
.navbar-nav .nav-link {
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #dc3545 !important;
}

/* Dropdown Menü */
.dropdown-menu {
    border-radius: 5px;
    border: none;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-menu .dropdown-item {
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
    background: #dc3545;
    color: white;
}

/* Sosyal Medya İkonları */
.social-icons a {
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}

/* Mobil Uyum */
@media (max-width: 992px) {
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-item {
        margin-bottom: 5px;
    }

    .logo-container {
        width: 140px;
        height: 70px;
    }
}


                        /* Footer Genel Başlangıç */
/* Footer Genel Stil */
.footer-custom {
    background-color: #212529;
    padding-bottom: 30px;
}

/* Footer Logo ve Marka */
.footer-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.footer-logo {
    width: 80px;
    height: auto;
    margin-right: 10px;
}

.footer-title {
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
}

.footer-slogan {
    font-size: 1rem;
    color: #bbb;
    margin-top: 8px;
}

/* Footer Başlıklar */
.footer-heading {
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
    margin-bottom: 15px;
}

/* Footer Linkler */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    display: flex;
    align-items: center;
    color: #bbb;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.footer-link i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

/* Sosyal Medya Linkleri */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    font-size: 1.8rem;
    color: #bbb;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    color: white;
    transform: scale(1.1);
}

/* Alt Bilgi */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #bbb;
}

.footer-highlight {
    font-weight: bold;
    color: white;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .footer-logo {
        width: 60px;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    .social-link {
        font-size: 1.5rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}

              /* Footer Genel Bitiş */


              /* Hakkimizda Baslangıc */

              /* Hakkımızda Genel Stil */
.hakkimizda-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hakkimizda-section:last-child {
    border-bottom: none;
}

/* Hakkımızda Başlık ve Açıklamalar */
h1.fw-bold.text-primary {
    font-size: 2.2rem;
    text-transform: uppercase;
}

.hakkimizda-section h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #343a40;
}

.hakkimizda-section p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Hakkımızda Resimler */
.hakkimizda-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hakkimizda-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.hakkimizda-img:hover {
    transform: scale(1.02);
}

/* Mobil Uyum */
@media (max-width: 768px) {
    h1.fw-bold.text-primary {
        font-size: 1.8rem;
    }

    .hakkimizda-section {
        flex-direction: column;
        text-align: center;
    }

    .hakkimizda-section h2 {
        font-size: 1.5rem;
    }

    .hakkimizda-img {
        max-height: 300px;
    }
}


              /* Hakkimizda Bitis */


