/* Genel Sıfırlama ve Temel Ayarlar */
/* --- 🔹 Mobil uyum için temel kurallar (ekleme 1) --- */
img, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  html { font-size: 15px; }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4; /* Hafif bir gri arka plan */
}

/* Tekrar Kullanılabilir Bileşenler */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto; /* Sayfayı ortalar */
}

a {
    text-decoration: none;
    color: #007bff; /* Mavi link rengi */
}

a:hover {
    color: #0056b3;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
}

.btn-primary {
    background-color: #007bff; /* Ana renk: Mavi */
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* HEADER - Üst Kısım */
/* HEADER - Üst Kısım */
header {
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Yeni Kural: Menü ve Logo arasında bir miktar boşluk bırakalım. */
    /* Alt padding ekleyerek, logo ile navigasyon arasına boşluk bırakırız. */
    padding-bottom: 5px; 
}

#top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* ================================================= */
/* YENİ LOGO VE YAZI STİLLERİ                          */
/* ================================================= */

.logo a {
    display: flex; /* Logo resmini ve yazıyı yan yana getir */
    align-items: center; /* Dikey olarak ortala */
    color: #1a75bc; /* Varsayılan link rengini ayarla */
}

/* Resim Logo Stili */
.site-logo {
    height: 80px; /* Logonuzun yüksekliğini ayarlayın */
    width: auto;
    margin-right: 15px; /* Resim ile yazı arasına boşluk */
    
}
@media (max-width: 768px) {
  .site-logo { height: 48px; }
  .logo-text { font-size: 18px; border-left: none; padding-left:0; }
  .search-bar input[type="text"] { width: 100%; }
}

/* Metin Logo Stili (Dikey Çizginin Eklendiği Yer) */
.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #000000; /* Yazı rengini Medikal Mavi yap */
    
    /* Dikey Çizgi Kuralları (Sola Eklenir) */
    padding-left: 20px; /* Çizgi ile yazı arasına boşluk */
    margin-left: 0; 
    
    border-left: 2px solid #ccc; /* 2 piksel kalınlığında gri çizgi */
    
    /* display: block veya inline-block kullanmaya gerek kalmadı,
       çünkü üstteki .logo a kuralı flex olarak ayarlandı. */
}
/* Arama Çubuğu Stilleri */
.search-bar form {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 20px;
    overflow: hidden;
}

.search-bar input[type="text"] {
    padding: 8px 15px;
    border: none;
    outline: none;
    width: 300px;
}

.search-bar button {
    padding: 8px 15px;
    background-color: #f8f8f8;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.search-bar button:hover {
    background-color: #eaeaea;
}

/* NAVİGASYON - Kategori Menüsü */
/* NAVİGASYON - ANA MENÜ (Önceki #category-nav yerine #main-nav kullanıyoruz) */
#main-nav {
    background-color: #1a75bc; /* Koyu Mavi Navigasyon Arka Planı */
}

#main-nav .container ul {
    display: flex;
    justify-content: flex-start ; /* **SAĞA HİZALA** */
}
#main-nav .container {
    display: flex; /* İçindeki ul ve search-bar'ı yan yana getir */
    justify-content: space-between; /* Ul'u sola, Search Bar'ı sağa it */
    align-items: center; /* Dikeyde ortala */
    padding: 0 15px; /* Yan boşluk ekle (isteğe bağlı) */
}

/* NAVİGASYON - ANA MENÜ (Önceki #category-nav yerine #main-nav kullanıyoruz) */
#main-nav {
    background-color: #1a75bc; 
    padding: 0; /* İç padding'i sıfırlıyoruz, ul ve search-bar'da ayarlayacağız */
}   

#main-nav ul li {
    position: relative;
}

#main-nav ul li a {
    display: block;
    padding: 15px 30px; /* **YENİ BOŞLUK DEĞERİ (20px -> 30px)** */
    color: white;
    font-weight: bold;
    transition: background-color 0.3s;
}

#main-nav ul li a:hover {
    background-color: #0056b3;
}

/* Submenu (Açılır Menü) Stilleri - (Ürünler butonu için hala geçerli) */
/* Daha önce alt menü renkleri için yapılan düzeltmeler hala çalışacaktır. */

.submenu {
    display: none; 
    position: absolute;
    top: 100%; 
    left: 0;
    width: 250px;
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.has-submenu:hover .submenu {
    display: block; 
}

/* Mevcut .submenu-content ve altındaki 'a' kuralları yerinde kalsın,
   çünkü onlar alt menüdeki linklerin rengini düzeltmişti! */

/* Submenu (Açılır Menü) Stilleri */
.submenu {
    display: none; /* Varsayılan olarak gizli */
    position: absolute;
    top: 100%; 
    left: 0;
    width: 250px;
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.has-submenu:hover .submenu {
    display: block; /* Fare üzerine gelindiğinde göster */
}

.submenu-content {
    padding: 15px;
}

.submenu-content h4 {
    margin-bottom: 10px;
    color: #1a75bc;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

/* DÜZELTİLMİŞ KURAL: Alt menü linkleri (submenu-content içindeki 'a' etiketleri) */
.submenu-content a {
    display: block;
    color: #333; /* **BURASI DÜZELTİLDİ: Beyaz zeminde okunması için koyu renk** */
    padding: 5px 0;
}

.submenu-content a:hover {
    color: #1a75bc; 
    background-color: #f0f0f0; /* Hafif bir arka plan hover efekti */
}

/* --- 🔹 Mobil alt menü hizalama ve aç/kapa davranışı (güncel) --- */
@media (max-width: 768px) {
  /* Alt menü container */
  .has-submenu {
    position: relative;
  }

  /* Alt menü kutusu */
  .has-submenu .submenu {
    position: static; /* 🔹 sağa taşmasını engeller */
    display: none;    /* varsayılan kapalı */
    flex-direction: column;
    background: #f5f5f5;
    width: 100%;
    margin-top: 4px;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  /* Menü açıldığında */
  .has-submenu.open .submenu {
    display: flex; /* alt alta göster */
  }

  /* Ok simgesi dönüş efekti */
  .submenu-toggle {
    display: inline-block;
    font-size: 16px;
    margin-left: 6px;
    transition: transform 0.3s ease;
    cursor: pointer;
    color: #222;
  }

  .has-submenu.open .submenu-toggle {
    transform: rotate(180deg);
  }

  /* Alt menü bağlantı stilleri */
  .has-submenu .submenu a {
    padding: 10px 16px;
    display: block;
    color: #333;
  }

  .has-submenu .submenu a:hover {
    background: #e0e0e0;
  }
}

/* HERO - Ana Tanıtım Alanı (Şimdi Slider'ı Temsil Ediyor) */
#hero {
    /* Arka plan rengini koruyoruz: */
    background: #e9f2fa; /* Açık mavi/gri tonu */
    /* Slider'ın etrafındaki boşlukları düzenliyoruz: */
    padding: 30px 0 50px 0; /* Üstte 30px, altta 50px boşluk bırakalım */
    text-align: center; /* Ortalamayı koruyoruz */
}

/* Eski #hero h1 ve p etiketlerini silebilirsiniz, artık bu bölümde yoklar. */
#hero h1, #hero p {
    display: none; /* veya silin */
}

/* SERVICES - Uzmanlık Alanları */
#services {
    padding: 60px 0;
    background: white;
}

#services h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.service-list {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.service-card {
    flex: 1;
    padding: 30px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: #1a75bc;
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    background: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 30px;
}

.footer-links a {
    color: #aaa;
    margin: 0 10px;
}

.footer-links a:hover {
    color: white;
}

/* PHP uzantılı sayfa kullanıldığından, site mobil uyumluluğu için medyayı da ekleyelim */
@media (max-width: 768px) {
    #top-header {
        flex-direction: column;
        text-align: center;
    }
    .search-bar {
        margin-top: 10px;
    }
    .search-bar input[type="text"] {
        width: 100%; /* Mobil görünümde arama çubuğunu genişlet */
    }

    #category-nav .container ul {
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
    }
    
    #category-nav ul li a {
        padding: 10px 20px;
    }

    .has-submenu .submenu {
        position: static; /* Mobil'de açılır menüyü akışa al */
        width: 100%;
        border: none;
        box-shadow: none;
    }

    .service-list {
        flex-direction: column;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    /* Arama Çubuğu Stilleri (Navigasyon İçi) */
.search-bar.nav-search form {
    /* Genel search-bar kuralları ile karışmaması için daha spesifik bir ayar */
    width: 250px; /* Navigasyon içinde daha dar bir arama çubuğu */
    max-width: 100%;
    margin: 0;
    border: none;
    background-color: #0056b3; /* Koyu navigasyon rengine uyumlu bir arka plan */
}

.search-bar.nav-search input[type="text"] {
    padding: 8px 15px;
    background-color: #f8f8f8; /* Input arka planı beyaz/açık gri */
    color: #333;
    border-radius: 20px 0 0 20px;
    width: 100%;
}

.search-bar.nav-search button {
    padding: 8px 15px;
    background-color: #ffc107; /* Dikkat çekici buton rengi */
    color: #333;
    border-radius: 0 20px 20px 0;
    font-weight: bold;
}

.search-bar.nav-search button:hover {
    background-color: #e0a800;
}

/* NAVİGASYON UL LİNK HİZALAMASI */
#main-nav .container ul {
    /* flex-start zaten sizin tercihinizdi, tekrar belirtiyoruz */
    justify-content: flex-start; 
}
    
}/* ================================================= */
/* !!! ALT KATEGORİ LİNK RENGİ ZORLAMALI DÜZELTME !!! */
/* ================================================= */

/* 1. Alt Kategori Linklerinin Normal Rengi (Koyu Gri) */
#category-nav .submenu-content a {
    color: #333 !important; /* !important ile rengi zorla */
    background-color: transparent !important; /* Ana menü hover rengini sıfırla */
}

/* 2. Alt Kategori Linklerinin Hover Rengi */
#category-nav .submenu-content a:hover {
    color: #1a75bc !important; /* Hover rengini zorla (Medikal Mavi) */
    background-color: #f0f0f0 !important; /* Hafif bir arka plan hover efekti zorla */
}


.carousel-container {
    max-width: 1200px;
    position: relative;
    margin: auto;
    overflow: hidden; /* Taşmaları engeller */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-slide {
    display: none; /* Varsayılan olarak tüm slaytları gizle */
    position: relative;
    width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 450px; /* Slider yüksekliğini sınırlıyoruz */
    object-fit: cover; /* Resmi kutuya sığdırır */
}

/* Slayt Üzerindeki Yazılar (Caption) */
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6); /* Hafif şeffaf koyu arka plan */
    color: white;
    text-align: left;
}

.slide-caption h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: white;
}

.slide-caption p {
    font-size: 16px;
    margin-bottom: 15px;
}

.btn-slider {
    background-color: #007bff;
    color: white;
    padding: 8px 15px;
}

.btn-slider:hover {
    background-color: #1a75bc;
}

/* SLIDER/CAROUSEL STİLLERİ İÇİNDEN */

/* İleri/Geri Butonları */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.4);
    
    /* YENİ KURAL: OKLARI KENARA İTMEK İÇİN GEREKLİ BOŞLUK */
    padding: 16px 10px 16px 10px; /* Dikey padding aynı kalsın */
    width: 40px; /* Oklar için sabit genişlik */
}

/* ÖNCEKİ (SOL) OKUN KONUMU */
.prev {
    left: 0; /* Sol kenara sıfırla */
    border-radius: 0 3px 3px 0;
}

/* SONRAKİ (SAĞ) OKUN KONUMU */
.next {
    right: 0; /* Sağ kenara sıfırla */
    border-radius: 3px 0 0 3px;
}
/* Nokta Navigasyonu */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active-dot, .dot:hover {
    background-color: #1a75bc; /* Aktif nokta rengi */
}

/* Fade (Geçiş) Animasyonu */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .slide-caption h2 {
        font-size: 20px;
    }
    .slide-caption p {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .prev, .next {
        font-size: 14px;
        padding: 10px;
    }
}
/* ================================================= */
/* ÖNE ÇIKAN KATEGORİLER STİLLERİ                      */
/* ================================================= */
#featured-categories {
    padding: 60px 0;
    background-color: white; /* Arka plan rengi */
}

#featured-categories h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.category-grid {
    display: flex;
    gap: 20px; /* Kartlar arası boşluk */
    margin-bottom: 20px; /* Sıralar arası boşluk */
    /* İkinci sıra 3 elemanlı olduğu için özel ayarlama yapmaya gerek kalmadı. */
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px); /* Hafifçe yukarı kaydırma efekti */
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease, transform 0.5s ease;
}

.category-card:hover img {
    opacity: 0.8;
    transform: scale(1.05); /* Zoom efekti */
}

/* Kart Boyutları */
.large-card {
    flex: 1; /* İlk sıradaki 2 kart eşit genişlikte olur */
    height: 350px; /* Büyük kartlar için yükseklik */
}

.small-card {
    flex: 1; /* İkinci sıradaki 3 kart eşit genişlikte olur */
    height: 300px; /* Küçük kartlar için yükseklik */
}

/* Kart Üzerindeki Katman (Overlay) */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Göz görselindeki gibi mavi ve yarı saydam arka plan */
    background: linear-gradient(to top, rgba(26, 117, 188, 0.8) 0%, rgba(26, 117, 188, 0.1) 100%);
    
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* İçeriği alta hizala */
    align-items: center;
    padding: 20px;
    text-align: center;
}

.card-overlay h3 {
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* OUTLINE Buton Stili (Görseldeki Beyaz Çerçeveli Buton) */
.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: normal;
}

.btn-outline:hover {
    background-color: white;
    color: #1a75bc;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .category-grid {
        flex-direction: column; /* Mobil'de kartları alt alta sırala */
    }
    .large-card, .small-card {
        height: 250px; /* Mobil'de kart yüksekliğini azalt */
    }
    .card-overlay h3 {
        font-size: 18px;
    }
}
/* ================================================= */
/* FİYAT TEKLİFİ BANDI (QUOTE STRIP) STİLLERİ         */
/* ================================================= */

#quote-strip {
    background-color: #004a8b; /* Koyu Mavi Tonu */
    color: white;
    padding: 30px 0;
    text-align: center;
}

#quote-strip .container {
    display: flex;
    justify-content: center; /* Merkezi Hizalama */
    align-items: center;
    gap: 30px; /* Yazı ve buton arasına boşluk */
}

#quote-strip h2 {
    font-size: 24px;
    margin: 0;
    font-weight: 600;
}

/* Teklif Al Butonu Stili */
.btn-quote {
    background-color: #ffc107; /* Dikkat çekici Sarı/Turuncu */
    color: #333;
    font-size: 16px;
    padding: 10px 25px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-quote:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
    color: white;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    #quote-strip .container {
        flex-direction: column; /* Mobil'de alt alta sırala */
        gap: 15px;
    }
    #quote-strip h2 {
        font-size: 18px;
    }
}
/* ================================================= */
/* GENİŞLETİLMİŞ (ÇOK SÜTUNLU) SUBMENU STİLLERİ      */
/* ================================================= */

/* Geniş Açılır Menü Container'ı */
.submenu.wide-submenu {
    width: 750px; /* Menünün toplam genişliği (3x250px + boşluk) */
    left: -100px; /* Menüyü ortalamak için sola kaydırıyoruz (yaklaşık değer) */
}

/* Geniş Açılır Menü Container'ı */
/* Geniş Açılır Menü Container'ı */
.submenu.wide-submenu {
    width: 900px; /* Genişliği 750px'ten 900px'e çıkaralım (4 sütun için ideal) */
    left: -200px; /* Menüyü ortalamak için sola kaydırma miktarını artırın */
    max-height: 400px; 
    overflow-y: auto; 
}

/* Alt Sütunların Düzeni */
.submenu.wide-submenu .submenu-content {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    gap: 20px; /* Sütunlar arası boşluğu biraz azaltabiliriz */
}
/* Tekil Sütun Stili */
.submenu-column {
    flex: 1; 
    min-width: 200px; 
    /* YENİ KURAL: Daha fazla kategori sığdırmak için iç boşluğu azaltalım */
    padding: 0 10px;
}

.submenu-column h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #1a75bc; /* Ana kategori başlığı rengi */
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    text-transform: uppercase;
    font-weight: bold;
}

/* Linklerin stili (Önceki .submenu-content a kuralları geçerli) */
/* .submenu-column a {
    color: #333; 
    padding: 3px 0;
} */
/* ================================================= */
/* !!! GENİŞ MENÜ RENK DÜZELTMESİ (SON ÇARE) !!!     */
/* ================================================= */

/* Alt kategori linklerinin normal rengini koyu yapıyoruz */
.submenu.wide-submenu .submenu-column a {
    color: #333 !important; /* Koyu Gri rengi zorla */
    padding: 3px 0 !important; /* Boşluğu hafifçe azalt */
    background-color: transparent !important; /* Arka plan çakışmasını engelle */
    font-size: 14px; /* Yazı boyutunu hafifçe küçült */
}

/* Alt kategori linklerinin hover rengini düzeltiyoruz */
.submenu.wide-submenu .submenu-column a:hover {
    color: #1a75bc !important; /* Hover rengini mavi yap */
    background-color: #f0f0f0 !important; /* Hafif arka plan hover efekti */
}
/* ================================================= */
/* ÜRÜNLER SAYFASI (urunler.php) STİLLERİ             */
/* ================================================= */
#product-page {
    padding: 40px 0;
}

#product-page h1 {
    font-size: 32px;
    color: #1a75bc;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

/* Ana kapsayıcı (Sidebar ve Ürün Listesi) */
.product-content-wrapper {
    display: flex;
    gap: 30px; /* Sidebar ve Ürün Listesi Arasındaki Boşluk */
}

/* A. SOL BÖLÜM: SİDEBAR (FİLTRELEME) */
.sidebar {
    flex-basis: 250px; /* Sidebar genişliği */
    flex-shrink: 0; /* Küçülmesini engelle */
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.sidebar ul li.active-filter a {
    color: #1a75bc;
    font-weight: bold;
    border-left: 3px solid #1a75bc;
    padding-left: 10px;
}

.filter-box {
    margin-bottom: 25px;
}

.filter-box h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.filter-box ul li a {
    display: block;
    padding: 5px 0;
    color: #666;
}

.filter-box ul li a:hover {
    color: #1a75bc;
}

.filter-box label {
    display: block;
    margin-bottom: 5px;
    cursor: pointer;
    font-size: 14px;
}
.filter-box p {
    font-size: 14px;
    margin-bottom: 10px;
}


/* B. SAĞ BÖLÜM: ÜRÜN LİSTESİ */
.product-list-area {
    flex-grow: 1; /* Kalan tüm alanı kapla */
}

.sort-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
    background: white;
    border-radius: 5px;
}

.sort-options select {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* ================================================= */
/* YENİ NESİL ÜRÜN KARTI STİLLERİ                      */
/* ================================================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Daha duyarlı grid */
    gap: 30px; /* Kartlar arası boşluğu biraz artırdık */
    margin-top: 20px;
}

.product-card {
    background-color: #ffffff; /* Beyaz arka plan */
    border: 1px solid #e0e0e0; /* Hafif gri kenarlık */
    border-radius: 12px;       /* Daha belirgin yuvarlak köşeler */
    overflow: hidden;          /* İçerik taşmasını engeller */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Yumuşak ve belirgin bir gölge */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Hover için geçiş */
    text-align: center;        /* İçeriği ortala */
    display: flex;             /* Kart içeriğini esnek hale getir */
    flex-direction: column;    /* İçeriği dikey sırala */
    justify-content: space-between; /* İçeriği eşit aralıklarla dağıt (Buton alta) */
}

.product-card:hover {
    transform: translateY(-5px); /* Hover'da hafifçe yukarı kalkma */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* Gölgeyi belirginleştir */
}

.product-link {
    text-decoration: none; /* Link alt çizgisini kaldır */
    color: #333;           /* Metin rengini ayarla */
    display: block;        /* Tüm kart alanını tıklanabilir yap */
    padding: 10px;         /* Kartın iç paddingi */
    flex-grow: 1;          /* Linkin kart içinde tüm alanı kaplamasını sağlar */
}

.product-card img {
    max-width: 100%;
    height: 180px; /* Görsel yüksekliğini sabitleyelim */
    object-fit: contain; /* Görselin boyutuna sığdırılmasını sağla */
    border-radius: 8px; /* Görsel köşelerine yuvarlaklık */
    margin-bottom: 10px; /* Görsel altındaki boşluk */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); /* Görsel için hafif gölge */
    transition: transform 0.3s ease-in-out; /* Hover için geçiş */
}

.product-card:hover img {
    transform: scale(1.03); /* Hover'da görseli hafifçe büyüt */
}

.product-info {
    padding: 0 5px; /* Bilgi alanının iç boşluğu */
    margin-bottom: 10px; /* Bilgi alanı altındaki boşluk */
    flex-grow: 1; /* Bilgi alanının kalan dikey alanı kaplamasını sağlar */
}

.product-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
    line-height: 1.4;
}

.product-info p.product-code {
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
}

/* Teklif İste Butonu */
.product-card .btn-quick-quote {
    display: block; /* Tam genişlikte buton */
    width: calc(100% - 30px); /* Kart paddingi kadar boşluk bırak */
    margin: 0 15px 15px 15px; /* Yanlardan ve alttan boşluk */
    padding: 12px 20px;
    background-color: #1a75bc; /* Marka rengi */
    color: white;
    border: none;
    border-radius: 8px; /* Yuvarlak köşeler */
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(26, 117, 188, 0.2); /* Buton gölgesi */
}

.product-card .btn-quick-quote:hover {
    background-color: #155a90; /* Hover'da daha koyu mavi */
    transform: translateY(-2px); /* Hafif yukarı kalkma efekti */
    box-shadow: 0 6px 15px rgba(26, 117, 188, 0.3);
}
/* ================================================= */
/* YENİ NESİL SAYFALAMA (PAGINATION) STİLLERİ        */
/* ================================================= */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    padding: 0;
    list-style: none;
    font-family: 'Open Sans', sans-serif; /* Daha modern bir font */
}

.pagination a {
    display: block;
    padding: 10px 18px; /* Padding'i biraz artıralım */
    margin: 0 4px;      /* Düğmeler arası boşluğu biraz artıralım */
    border: 1px solid #dcdcdc; /* Daha yumuşak bir kenarlık */
    border-radius: 6px; /* Daha yuvarlak köşeler */
    text-decoration: none;
    color: #555;        /* Daha yumuşak metin rengi */
    font-size: 15px;
    font-weight: 600;   /* Hafif kalın font */
    line-height: 1;
    transition: all 0.3s ease; /* Tüm geçişlere yumuşaklık kat */
    background-color: #f8f8f8; /* Hafif gri arka plan */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Hafif gölge */
    white-space: nowrap; /* Önceki sorunu çözmek için kalsın */
}

/* Aktif sayfa stili - Marka rengimiz olan mavi tonları */
.pagination a.active,
.pagination a.active:hover { /* Aktif sayfa üzerine gelince de aynı kalsın */
    background-color: #1a75bc; /* Canlı mavi */
    color: white;
    border-color: #1a75bc;
    box-shadow: 0 4px 10px rgba(26, 117, 188, 0.3); /* Gölgeyi belirginleştir */
    transform: translateY(-1px); /* Hafif yukarı kalkma efekti */
}

/* Hover (Fare üstü) stili */
.pagination a:hover {
    background-color: #e6e6e6; /* Hover'da daha belirgin gri */
    border-color: #a0a0a0;
    color: #333;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1); /* Hafif artan gölge */
    transform: translateY(-1px); /* Hafif yukarı kalkma efekti */
}

/* "Önceki" ve "Sonraki" düğmeleri için ek stil */
.pagination a:first-child,
.pagination a:last-child {
    font-weight: 700; /* Daha kalın font */
    color: #1a75bc; /* Mavi metin rengi */
    border-color: #a7d9f7; /* Hafif mavi kenarlık */
    background-color: #f0f8ff; /* Çok açık mavi arka plan */
}

.pagination a:first-child:hover,
.pagination a:last-child:hover {
    background-color: #e0f0ff; /* Hover'da daha belirgin açık mavi */
    border-color: #1a75bc; /* Kenarlığı marka rengine çevir */
    color: #1a75bc;
}
/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .product-content-wrapper {
        flex-direction: column; /* Tablet ve mobil cihazlarda alt alta sırala */
    }
    .sidebar {
        flex-basis: auto; /* Genişliği serbest bırak */
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 sütunlu grid */
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr; /* Tek sütunlu grid */
    }
}
/* ================================================= */
/* !!! ÜRÜNLER SAYFASI DÜZENİ ZORLAMALI DÜZELTME !!! */
/* ================================================= */

/* Sidebar ve Ürün Listesini Yan Yana Getirir */
#product-page .product-content-wrapper {
    display: flex !important; /* Yan yana durmayı zorlar */
    flex-direction: row;      
    gap: 30px; 
    align-items: flex-start;  
}
#product-page .product-list-area { flex-grow: 1; min-width: 0; }
#product-page .sidebar { flex-basis: 250px; flex-shrink: 0; }

/* Ürün Gridini de zorla */
#product-page .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
/* ================================================= */
/* KURUMSAL SAYFASI (hakkimizda.php) STİLLERİ         */
/* ================================================= */
#corporate-page {
    padding: 40px 0;
}

.page-intro h1 {
    font-size: 38px;
    color: #1a75bc;
    margin-bottom: 10px;
    border-bottom: 3px solid #f0f0f0;
    padding-bottom: 15px;
}

.page-intro .lead-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    font-style: italic;
}

.content-section {
    padding: 30px 0;
    margin-bottom: 30px;
}

/* Misyon & Vizyon İçin İki Sütunlu Düzen */
.two-column-layout {
    display: flex;
    gap: 30px;
    padding: 40px 0;
    border-bottom: 1px dashed #ddd;
}

.two-column-layout .text-box {
    flex: 1;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
}

.two-column-layout h2 {
    color: #1a75bc;
    font-size: 24px;
    margin-bottom: 15px;
}

.two-column-layout p {
    margin-bottom: 15px;
}

/* Değerler Alanı İçin Grid Düzeni */
.section-title {
    text-align: center;
    color: #333;
    font-size: 30px;
    margin-bottom: 30px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.value-card {
    padding: 30px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.value-card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    color: #007bff;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Centered CTA */
.centered-cta {
    text-align: center;
    background-color: #e9f2fa;
    padding: 50px 0;
    border-radius: 8px;
}

.centered-cta h2 {
    color: #1a75bc;
    font-size: 28px;
    margin-bottom: 10px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .two-column-layout {
        flex-direction: column;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
}/* ================================================= */
/* PROFESYONEL KURUMSAL SAYFASI STİLLERİ             */
/* ================================================= */

/* 1. KURUMSAL BANNER */
#corporate-banner {
    background-image: url('assets/img/corporate_banner.jpg'); /* Kurumsal bir arka plan görseli kullanın */
    background-size: cover;
    background-position: center;
    min-height: 300px; /* Banner yüksekliği */
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    padding: 0 50px;
}
/* Banner üzerine hafif koyu katman */
#corporate-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Şeffaf siyah katman */
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content h1 {
    font-size: 44px;
    margin-bottom: 10px;
    font-weight: 900;
}

.banner-content p {
    font-size: 22px;
    font-weight: 300;
}


/* 2. HİKAYEMİZ VE MİSYON/VİZYON KARTLARI */
.intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* Ana metin daha geniş, kartlar eşit */
    gap: 30px;
    align-items: stretch; /* Kartların aynı yükseklikte olmasını sağlar */
    margin-top: 40px;
}

.intro-text h2 {
    font-size: 34px;
    color: #1a75bc;
    margin-bottom: 20px;
    font-weight: 800;
}

.intro-text .big-text {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
}

/* Misyon/Vizyon Yan Kartları */
.mission-vision-card {
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.mission {
    background-color: #e9f2fa; /* Açık mavi */
}
.vision {
    background-color: #f8f8f8; /* Açık gri */
}

.mission-vision-card h3 {
    color: #1a75bc;
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 10px;
}
.card-icon {
    font-size: 28px;
    display: block;
}


/* 3. TEMEL DEĞERLER (VALUES) */
.values-flex {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.value-item {
    flex: 1;
    text-align: center;
    padding: 15px;
}

.value-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
    color: #1a75bc;
}
.value-item h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

/* 4. CTA BÖLÜMÜ */
#team-cta {
    background-color: #1a75bc; /* CTA arka planını marka rengi yapalım */
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-top: 50px;
    border-radius: 12px;
}
#team-cta h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 10px;
}
#team-cta p {
    font-size: 20px;
    margin-bottom: 25px;
}
.btn-team {
    /* Genel CTA butonu stilini kullanalım (Sarı) */
    background-color: #ffc107; 
    color: #333;
    font-weight: 700;
    padding: 12px 35px;
    border-radius: 5px;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr; /* Mobil'de alt alta sıralama */
    }
    .values-flex {
        flex-direction: column;
    }
    .banner-content h1 {
        font-size: 30px;
    }
}
/* ================================================= */
/* ZİKZAK (CHECKERBOARD) DÜZEN STİLLERİ              */
/* ================================================= */

.text-only-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.text-only-intro h2 {
    font-size: 38px;
    color: #1a75bc;
    margin-bottom: 20px;
    border-bottom: 2px solid #e9f2fa;
    padding-bottom: 15px;
}

.text-only-intro .big-text {
    font-size: 20px;
    color: #444;
}

/* Zikzak Bölümlerin Genel Düzeni */
.checkerboard-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    padding: 30px;
    background-color: white; /* Her bir parçayı beyaz zeminde ayırır */
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); /* Her bir parçaya gölge */
}

.checkerboard-image {
    flex: 1;
}

.checkerboard-image .responsive-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.checkerboard-text {
    flex: 1;
    padding: 20px 0;
}

.checkerboard-text h2 {
    font-size: 30px;
    color: #1a75bc;
    margin-bottom: 15px;
}

.checkerboard-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Zikzak Efekti İçin Sıra Değiştirme */
.checkerboard-item.reverse {
    /* Görseli sağa itmek için: metin solda, görsel sağda olur */
    flex-direction: row-reverse; 
}

/* Ekstra: Liste İkonları */
.check-list .list-icon {
    margin-right: 10px;
    color: #007bff; /* Mavi ikon rengi */
    font-weight: bold;
}
.check-list li {
    font-size: 16px;
    padding: 5px 0;
    border-bottom: 1px dotted #f0f0f0;
}


/* Mobil Uyumlu Zikzak */
@media (max-width: 992px) {
    .checkerboard-item,
    .checkerboard-item.reverse {
        flex-direction: column; /* Mobil'de alt alta sırala */
        gap: 30px;
    }
    .checkerboard-image, .checkerboard-text {
        padding: 0;
    }
}
/* 1. KURUMSAL BANNER */
/* 1. KURUMSAL BANNER - GÜNCEL VE DOĞRU YOL */
#corporate-banner {
    /* Mavi Vurgu ve Görsel Efekti */
    background: #1a75bc; 
    
    /* GÜNCELLENEN KISIM: YOL DÜZELTİLDİ: ../img/corporate_banner.jpg */
    background-image: 
                      url('../img/dentalofis.jpg'); /* <<< BURASI DEĞİŞTİ! */
    
    background-size: cover;
    background-position: center 30%; 
    
    min-height: 350px; 
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    padding: 0 50px;
    border-radius: 12px; 
    margin-bottom: 40px; 
    overflow: hidden; 
}
/* Diğer banner-content kuralları aynı kalsın. */
/* ::before kuralına artık gerek kalmadı, çünkü degradeyi background-image içine ekledik. */

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-left: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6); /* Metin gölgesini güçlendirdik */
}

.banner-content h1 {
    font-size: 48px; /* Başlığı daha da büyüttük */
    margin-bottom: 15px;
    font-weight: 900;
}

.banner-content p {
    font-size: 24px;
    font-weight: 300;
}
/* ================================================= */
/* İLETİŞİM SAYFASI (Formsuz Düzen) STİLLERİ          */
/* ================================================= */

/* Content Flex'i Basitleştirme (Form artık yok) */
.content-flex {
    /* Form gittiği için Flexbox kullanıma gerek kalmadı */
    /* Eski kuralları kaldırıyoruz, sadece margin-bottom kalsın */
    margin-bottom: 50px; 
}

.intro-contact-text {
    font-size: 18px;
    color: #444;
    margin-bottom: 30px;
}

.full-width-info {
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.full-width-info h2 {
    color: #1a75bc;
    font-size: 28px;
    margin-bottom: 25px;
    border-bottom: 2px solid #e9f2fa;
    padding-bottom: 10px;
}


/* BİLGİ KARTLARI İÇİN 4 SÜTUNLU GRID DÜZENİ */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 3 veya 4 sütunlu esnek düzen */
    gap: 20px;
}

.info-card {
    padding: 20px; /* İç boşluğu artırdık */
    border-left: 5px solid #ffc107; 
    background: #f8f8f8;
    border-radius: 6px;
    transition: box-shadow 0.3s;
}
.info-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.info-card h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

/* HARİTA BÖLÜMÜ */
#map-location {
    margin-bottom: 50px;
}
#map-location h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}
.map-placeholder iframe {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Eski form kurallarını silebilirsiniz: .contact-form-area, .contact-form input, textarea vb. */

/* Mobil Uyumluluk (Grid Otomatik Uyar) */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr; /* Mobil'de alt alta sırala */
    }
}
/* ================================================= */
/* ÜRÜN DETAY SAYFASI (urun-detay.php) STİLLERİ      */
/* ================================================= */

#product-detail-page {
    padding: 40px 0;
}

/* ÜST BÖLÜM: GÖRSEL VE BİLGİLER (2 SÜTUN) */
#detail-top {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.product-gallery {
    flex: 1;
    max-width: 450px; /* Görselin maksimum genişliğini belirler */
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden; /* Görsel taşmasını önler */
}
.main-image {
    width: 100%; /* Kapsayıcının genişliğini kullanır */
    height: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 0; /* Boşlukları temizledik */
}

/* BİLGİ ALANI */
.product-summary {
    flex: 2; 
    padding-left: 20px;
}

.product-summary h1 {
    font-size: 32px;
    color: #1a75bc;
    margin-bottom: 10px;
}
.product-code-detail {
    font-size: 16px;
    color: #777;
    margin-bottom: 25px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
}

.short-description h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}
.short-description p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.key-features {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}
.key-features li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%231a75bc" d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
    background-size: 18px;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 16px;
}

/* CTA ALANI */
.cta-box {
    margin-top: 30px;
    padding: 20px;
    background: #e9f2fa;
    border-radius: 8px;
    text-align: center;
}
.cta-message {
    font-size: 18px;
    font-weight: bold;
    color: #1a75bc;
    margin-bottom: 15px;
}
.btn-lg {
    font-size: 18px;
    padding: 15px 40px;
    border-radius: 6px;
}
.small-note {
    font-size: 14px;
    color: #777;
    margin-top: 10px;
}

/* ORTA BÖLÜM: SEKME DÜZENİ */
#product-tabs {
    margin-bottom: 50px;
}

.tabs {
    display: flex;
    border-bottom: 2px solid #ddd;
}

.tab-button {
    background: none;
    border: none;
    padding: 15px 25px;
    font-size: 18px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    margin-bottom: -2px; 
    font-weight: 600;
    color: #555;
}

.tab-button.active {
    color: #1a75bc;
    border-bottom-color: #1a75bc;
}

.tab-content {
    padding: 30px;
    background: white;
    display: none; 
    border-radius: 0 0 8px 8px; /* Alt köşeleri yuvarla */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.tab-content.active {
    display: block; 
}

.tech-spec-table {
    width: 100%;
    border-collapse: collapse;
}
.tech-spec-table th, .tech-spec-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.tech-spec-table th {
    background-color: #f8f8f8;
    width: 30%;
    font-weight: bold;
    color: #333;
}


/* ALT BÖLÜM: İLGİLİ ÜRÜNLER */
#related-products h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    #detail-top {
        flex-direction: column;
    }
    .product-gallery {
        max-width: 100%;
        padding: 0;
        border: none;
    }
    .product-summary {
        padding: 0;
    }
}

/* ================================================= */
/* GERİ BUTONU STİLLERİ (Geri Dön)                   */
/* ================================================= */

.back-link-container {
    /* Ana main alanının içinde, içeriği sola itmesini engellemek için sadece margin-top verelim */
    margin-top: 20px; 
    margin-bottom: 20px; 
    padding-left: 20px; /* İçerikle hizalamak için */
    overflow: hidden; /* Eğer float kullansaydık gerekirdi */
}

.btn-back-to-list {
    /* Butonu sayfanın soluna yaslıyoruz */
    display: inline-block;
    background-color: #f8f8f8; 
    color: #555; 
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-back-to-list:hover {
    background-color: #e9f2fa; 
    color: #1a75bc; 
    border-color: #1a75bc;
}
/* ================================================= */
/* DETAYLI FOOTER STİLLERİ (Tüm Sayfalar)             */
/* ================================================= */

#main-footer {
    background-color: #7c7c7c; /* Koyu Gri/Siyah Arka Plan */
    color: #f0f0f0; /* Açık Metin Rengi */
    padding-top: 50px;
    font-size: 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 2.5fr; /* 3 Sütunlu düzen */
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #444; /* Sütunlar ve alt bant arasında ayırıcı */
}

.footer-col h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 25px;
    border-bottom: 2px solid #555;
    padding-bottom: 10px;
}

/* SÜTUN 1: LOGO VE KURUMSAL */
.footer-col.about-col p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ccc;
}
.footer-col .footer-site-logo {
    height: 40px; /* Üst menüyle aynı boyutta olabilir */
    width: auto;
    margin-right: 10px;
}
.footer-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 15px;
}
.footer-logo h4 {
    color: white;
    font-size: 20px;
}

/* Sosyal Medya */
.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border: 1px solid #777;
    border-radius: 50%;
    margin-right: 8px;
    color: #ccc;
    font-weight: bold;
    transition: all 0.3s;
}
.social-links a:hover {
    background-color: #1a75bc;
    border-color: #1a75bc;
    color: white;
}

/* SÜTUN 2: HIZLI ERİŞİM LİNKLERİ */
.links-col ul {
    padding: 0;
}
.links-col li a {
    color: #ccc;
    padding: 5px 0;
    display: block;
    transition: color 0.3s;
}
.links-col li a:hover {
    color: #1a75bc;
}

/* SÜTUN 3: İLETİŞİM DETAYLARI */
.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}
.contact-icon {
    font-size: 20px;
    color: #ffc107; /* Sarı/Turuncu vurgu */
    margin-right: 15px;
    margin-top: 2px;
}
.contact-detail p {
    line-height: 1.4;
}

/* FOOTER ALT BANT (COPYRIGHT) */
.footer-bottom {
    background-color: #222;
    padding: 15px 0;
    font-size: 14px;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom .bottom-links a {
    color: #ccc;
    margin-left: 15px;
}
.footer-bottom .bottom-links a:hover {
    color: white;
}


/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Mobil'de alt alta sırala */
        gap: 30px;
    }
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom .bottom-links {
        margin-top: 10px;
    }
}
@media (max-width: 768px) {
    /* GENEL DÜZEN DÜZELTMELERİ */
    .container {
        width: 95%; /* Yan boşlukları azalt */
    }

    /* HEADER ve NAVİGASYON DÜZELTMELERİ */
    #top-header {
        flex-direction: column; /* Logo ve arama çubuğunu alt alta yığ */
        text-align: center;
        padding: 10px 0;
    }
    
    .logo a {
        flex-direction: column; /* Logoyu (img + text) alt alta yığ */
        margin-bottom: 10px;
    }
    .logo-text {
        border-left: none; /* Dikey çizgiyi kaldır */
        padding-left: 0;
        margin-top: 5px;
        font-size: 20px;
    }

    /* Arama Çubuğunu Tam Genişlik Yapma */
    .search-bar {
        width: 100%;
        padding: 0 10px;
    }
    .search-bar input[type="text"] {
        width: 100%;
    }
    
    /* Ana Navigasyonu (Menü Linkleri) Alt Alta Yığma */
    #main-nav .container ul {
        flex-direction: column; 
        width: 100%;
        text-align: center;
    }
    #main-nav ul li a {
        padding: 10px 0;
        border-bottom: 1px solid #0d4b79; /* Ayırıcı çizgi ekle */
    }
    
    /* SUBMENU GİZLEME (veya mobil için düzenleme) */
    .has-submenu .submenu {
        display: none; /* Mobil'de açılır menüyü gizle */
        position: static; /* Statik hale getir */
    }
    
    /* MAİN İÇERİK ve FOOTER DÜZENLEMELERİ */
    
    /* Kategori Kartları */
    .category-grid, .advantages-grid {
        flex-direction: column; /* Alt alta sırala */
        gap: 20px;
    }
    .large-card, .small-card {
        height: 250px; /* Mobil'de yüksekliği ayarla */
    }

    /* Footer Sütunları */
    .footer-grid {
        grid-template-columns: 1fr; /* 3 sütunu tek sütun yap */
        text-align: center;
        gap: 20px;
    }
    .contact-detail {
        justify-content: center; /* İletişim ikonlarını ve metinleri ortala */
    }
    .footer-bottom .container {
        flex-direction: column;
    }
    .footer-bottom .bottom-links {
        margin-top: 10px;
    }
}
/* --- 🔹 Mobil menü stilleri (ekleme 2) --- */
#nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  margin: 10px;
}

@media (max-width: 768px) {
  #nav-toggle { display: block; }

  #main-nav .container ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
  }

  #main-nav.open .container ul {
    display: flex;
  }

  .has-submenu .submenu {
    display: none;
    position: static;
    background: #f5f5f5;
  }

  .has-submenu.open .submenu {
    display: block;
  }
}
/* --- 🔹 Ürün grid responsive düzen (ekleme 3) --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

@media (max-width: 992px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .product-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .product-card img { height: 140px; }
}
/* --- 🔹 Yükseklik optimizasyonu (ekleme 5) --- */
@media (max-width: 768px) {
  #corporate-banner {
    min-height: 220px;
    padding: 20px;
  }
  .carousel-slide img {
    max-height: 260px;
  }
  .large-card, .small-card {
    height: 220px;
  }
}
/* --- 🔹 Buton boyutları (ekleme 6) --- */
.btn, .btn-primary, .btn-quick-quote {
  min-height: 44px;
  padding: 12px 18px;
}
/* --- 🔹 Mobil menü renk düzeltmesi (ekleme 7) --- */
@media (max-width: 768px) {
  #main-nav .container ul {
    background: #f5f5f5; /* Açık gri arka plan */
  }

  #main-nav .container ul li a {
    color: #222 !important; /* Koyu gri yazı */
    padding: 12px 16px;
    display: block;
  }

  #main-nav .container ul li a:hover {
    background: #e0e0e0; /* Hafif hover rengi */
  }

  /* Alt menü için */
  .has-submenu .submenu {
    background: #ececec;
  }

  .has-submenu .submenu a {
    color: #333 !important;
  }
}
/* --- 🔹 Menü ok tasarımı ve davranışı --- */
.submenu-toggle {
  display: none;
  cursor: pointer;
  margin-left: 6px;
  font-size: 14px;
  transition: transform 0.3s ease;
  color: #222;
}

@media (max-width: 768px) {
  .submenu-toggle {
    display: inline-block;
  }

  .has-submenu .submenu {
    display: none;
    flex-direction: column;
    background: #f5f5f5;
  }

  .has-submenu.open .submenu {
    display: flex;
  }

  .has-submenu.open .submenu-toggle {
    transform: rotate(180deg);
  }
}
/* --- 🔹 Mobil alt menü konumlandırma düzeltmesi --- */
@media (max-width: 768px) {
  #main-nav .menu li ul {
    position: static !important; /* sağa taşmayı iptal eder */
    top: auto !important;
    left: 0 !important;
    width: 100% !important;
    background: #f5f5f5;
    box-shadow: none !important;
    margin-top: 4px;
    border-radius: 4px;
    overflow: hidden;
  }

  #main-nav .menu li ul li {
    width: 100%;
  }

  #main-nav .menu li ul li a {
    display: block;
    padding: 10px 16px;
    color: #333;
  }

  #main-nav .menu li ul li a:hover {
    background: #e0e0e0;
  }
}
/* ------------------------------------------------------------------
   MOBİL MENÜ - KESİN OVERRIDE
   (style.css dosyasının EN SONUNA yapıştır)
   ------------------------------------------------------------------ */
@media (max-width: 768px) {

  /* Tüm menü içindeki açılır listeleri mobilde akışa al (alt alta) */
  #main-nav, #main-nav .container {
    position: relative !important;
  }

  /* Her türlü ul (birinci seviye, iç içe ul'ler vs) mobilde statik ve tam genişlik olsun */
  #main-nav .menu li ul,
  #main-nav .menu li .submenu,
  #main-nav .menu li ul ul,
  #main-nav .menu li .submenu.wide-submenu,
  #main-nav .menu li .submenu .submenu-column,
  #main-nav .menu li .submenu .submenu-content {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    box-shadow: none !important;
    margin: 6px 0 0 0 !important;
    background: #f7f7f7 !important;
   
    overflow: hidden !important;
    white-space: normal !important; /* satır taşmasını engelle */
  }

  /* Eğer JS veya .open sınıfı ile açılırsa alt alta gözüksün */
  #main-nav .menu li.open > ul,
  #main-nav .menu li.open > .submenu,
  #main-nav .menu li.has-submenu.open > .submenu,
  #main-nav .menu li.has-submenu.open > ul {
    display: block !important;
    display: flex !important;
    flex-direction: column !important;
  }

  /* İçerideki li ve a'ları tam genişlikte göster */
  #main-nav .menu li ul li,
  #main-nav .menu li .submenu li {
    width: 100% !important;
    display: block !important;
  }

  #main-nav .menu li ul li a,
  #main-nav .menu li .submenu li a,
  #main-nav .menu li .submenu a {
    display: block !important;
    width: 100% !important;
    padding: 10px 16px !important;
    box-sizing: border-box !important;
    color: #333 !important;
    text-align: left !important;
  }

  /* Eğer geniş submenu (wide-submenu) varsa, mobile daralt */
  .submenu.wide-submenu {
    width: 100% !important;
    left: auto !important;
    right: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  /* Hover kaynaklı gösterimleri mobilde engelle (bazı tarayıcılarda touch hover tetikleyebilir) */
  #main-nav .menu li:hover > ul,
  #main-nav .menu li:hover > .submenu {
    display: none !important;
  }

  /* Menü toggle okları görünür ve üstte kalacak */
  .submenu-toggle {
    display: inline-block !important;
    z-index: 9999;
  }

  /* Bazı stiller transform ile taşıyor olabilir; tüm transform'ları sıfırla */
  #main-nav .menu li ul,
  #main-nav .menu li .submenu,
  #main-nav .menu li ul li,
  #main-nav .menu li .submenu li {
    transform: none !important;
  }

  /* Mobilde overflow-x engelle (sayfa yatay kaymasın) */
  html, body {
    overflow-x: hidden !important;
  }
}
/* --- 🔹 Mobil menüde alt menünün kesilmesini engelle --- */
@media (max-width: 768px) {
  #main-nav,
  #main-nav .container,
  #main-nav .menu,
  #main-nav .menu li,
  #main-nav .menu li .submenu {
    overflow: visible !important;
    max-height: none !important;
    height: auto !important;
  }

  /* Eğer üst kapsayıcıda pozisyon kısıtı varsa kaldır */
  #main-nav .container {
    position: static !important;
  }

  /* Alt menü tam içerik kadar açılsın */
  #main-nav .menu li.open > ul,
  #main-nav .menu li.has-submenu.open > .submenu {
    display: flex !important;
    flex-direction: column !important;
  }
}
@media (max-width: 768px) {
  #main-nav .submenu li,
  #main-nav .submenu .submenu-column {
    float: none !important;
    width: 100% !important;
    display: block !important;
  }
}
/* --- 🔹 Mobil menüde alt menünün kesilmemesi için tam görünüm düzeltmesi --- */
@media (max-width: 768px) {
  /* Ana nav ve kapsayıcılar taşan menüyü kırpmasın */
  #main-nav,
  #main-nav .container,
  #main-nav .menu,
  #main-nav .menu li,
  header,
  .header-container {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
  }

  /* Alt menü tam görünür olsun */
  #main-nav .menu li ul,
  #main-nav .menu li .submenu {
    position: static !important;
    display: none;
    background: #f5f5f5;
    width: 100% !important;
    margin-top: 4px;
    border-radius: 4px;
    flex-direction: column !important;
    overflow: visible !important; /* 🔹 kritik satır */
  }

  #main-nav .menu li.open > ul,
  #main-nav .menu li.has-submenu.open > .submenu {
    display: flex !important;
  }

  /* Eğer menü grid/2 sütunluysa alt alta diz */
  #main-nav .submenu li,
  #main-nav .submenu .submenu-column {
    float: none !important;
    width: 100% !important;
    display: block !important;
  }

  /* Menü altındaki diğer elemanlar sarkabilsin */
  body,
  html {
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }
}

/* --- 🔹 Mobilde mega menü (wide-submenu) tam görünür hale getirme --- */
@media (max-width: 768px) {
  /* Geniş menü yapısını alt alta diz */
  .submenu.wide-submenu {
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: visible !important;
    background: #f5f5f5 !important;
    padding: 10px 0 !important;
  }

  /* Sütunları alt alta sırala */
  .submenu.wide-submenu .submenu-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 10px !important;
  }

  .submenu.wide-submenu .submenu-column {
    width: 100% !important;
    min-width: 100% !important;
    float: none !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid #ddd;
  }

  .submenu.wide-submenu .submenu-column h4 {
    font-size: 16px !important;
    margin-bottom: 8px !important;
  }

  .submenu.wide-submenu .submenu-column a {
    display: block !important;
    width: 100% !important;
    color: #333 !important;
    padding: 6px 14px !important;
    box-sizing: border-box !important;
  }

  /* Alt menü kırpılmasın */
  #main-nav, #main-nav .container {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
  }
}
/* --- 🔹 Menü başlangıçta kapalı ve aç/kapa davranışı düzeltme --- */
@media (max-width: 768px) {
  /* Menü alt listeleri varsayılan olarak kapalı */
  #main-nav .menu li ul,
  #main-nav .menu li .submenu {
    display: none !important;
  }

  /* Sadece .open sınıfı varsa göster */
  #main-nav .menu li.open > ul,
  #main-nav .menu li.has-submenu.open > .submenu {
    display: flex !important;
    flex-direction: column !important;
  }
}
/* ======================================================
   MOBİL ÜRÜN SAYFASI DÜZELTME
   ====================================================== */
@media (max-width: 768px) {

  /* Genel yapı */
  .product-content-wrapper {
    display: flex;
    flex-direction: column !important;
    gap: 20px;
  }

  /* Sidebar mobilde alta insin */
  .sidebar {
    width: 100% !important;
    order: 2;
  }

  /* Ürün liste alanı tam genişlik */
  .product-list-area {
    width: 100% !important;
    order: 1;
  }

  /* Grid sistemi mobil uyumlu hale getir */
  .product-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    justify-items: center;
  }

  /* Daha dar telefonlarda tek sütun */
  @media (max-width: 480px) {
    .product-grid {
      grid-template-columns: 1fr !important;
    }
  }

  /* Ürün kartları */
  .product-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  }

  .product-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .product-info {
    padding: 10px;
  }

  .product-info h4 {
    font-size: 14px;
    color: #222;
    margin-bottom: 4px;
  }

  .product-info .product-code {
    font-size: 12px;
    color: #777;
  }

  .btn-quick-quote {
    width: 90%;
    margin: 10px auto;
  }
}
