/* CSS Değişkenleri */
:root {
    --primary-color: #ff6b00; /* Koyu Mavi */
    --secondary-color: #0056b3; /* Turuncu */
    --dark-color: #333; /* Koyu Gri */
    --light-color: #f8f9fa; /* Açık Gri */
}

/* Genel Stil Ayarları */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif; /* Font Inter olarak güncellendi */
}

body {
    background-color: #f5f5f5;
    color: var(--dark-color);
    line-height: 1.6;
}

/* Header Stilleri */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000; /* Slider'ın üzerine çıkması için yüksek z-index */
}

.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-info {
    display: flex; /* Telefon ve e-postayı yan yana tutmak için */
    align-items: center;
    gap: 15px; /* İkonlar arası boşluk */
}

.contact-info a {
    color: white;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.main-header {
    position: relative; /* Mobil menünün absolute konumlandırılması için bağlam */
    padding-bottom: 0; /* Navigasyonun kendi padding'i olacak */
}

.header-top-row { /* Logo ve mobil menü butonunu içeren yeni üst sıra kapsayıcı */
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px; /* Üst sıra için dolgu */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    border-radius: 8px; /* Logo köşeleri yuvarlatıldı */
}

.logo-text {
    margin-left: 10px;
}

.logo-text h1 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 0;
}

.logo-text p {
    font-size: 12px;
    color: var(--dark-color);
    margin-top: -5px;
}

/* Navigasyon */
.main-nav { /* Navigasyonun kendisi */
    background-color: var(--primary-color);
    width: 100%;
}

.main-menu {
    display: flex; /* Varsayılan olarak masaüstünde görünür */
    list-style: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Menü öğeleri için dolgu */
}

.main-menu li {
    position: relative;
}

.main-menu li a {
    color: white;
    text-decoration: none;
    padding: 12px 15px;
    display: block;
    font-size: 15px;
    transition: all 0.3s;
}

.main-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Dropdown Menü Stilleri */
.main-menu li.has-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    display: block; /* Başlangıçta block, JS ile gizlenecek */
    opacity: 0; /* Başlangıçta gizli */
    visibility: hidden; /* Başlangıçta etkileşim dışı */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    width: 220px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Dropdown menünün diğer içeriğin üzerinde olması için */
    list-style: none;
    border-radius: 8px;
    overflow: hidden;
    transform: translateY(10px); /* Hafif aşağıda başla */
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.dropdown-menu li a {
    color: var(--dark-color);
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    white-space: nowrap; /* Metnin tek satırda kalmasını sağla */
    overflow: hidden;
    text-overflow: ellipsis; /* Taşarsa üç nokta göster */
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none; /* Varsayılan olarak masaüstünde gizli */
    background: none;
    border: none;
    color: var(--primary-color); /* Logo ile aynı hizada olduğu için ana renk */
    font-size: 28px; /* Buton boyutu */
    cursor: pointer;
    padding: 5px 10px; /* Buton dolgusu */
    border-radius: 5px; /* Hafif yuvarlama */
}

/* Hero Section (Banner Slider) */
.hero {
    position: relative;
    height: 650px; /* Daha büyük bir banner için yükseklik artırıldı */
    margin-bottom: 30px;
    border-radius: 12px; /* Köşeler yuvarlatıldı */
    overflow: hidden;
    display: flex; /* İçerik ortalaması için */
    align-items: center; /* Dikeyde ortala */
    justify-content: center; /* Yatayda ortala */
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover; /* Görselin kapsayıcıyı kaplamasını sağla */
    background-position: center; /* Görseli ortala */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    opacity: 0; /* Başlangıçta gizli */
    transition: opacity 1s ease-in-out; /* Geçiş efekti */
}

.hero-slide.active {
    opacity: 1; /* Aktif slaytı göster */
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Gölge daha belirgin ve koyu */
    z-index: 1; /* İçeriğin altında kalması için */
}

.hero-content {
    position: absolute; /* .hero-slide'a göre konumlandır */
    bottom: 0; /* Alta hizala */
    left: 0; /* Sola hizala */
    width: 50%; /* Genişlik ayarı */
    padding: 40px; /* İç dolgu artırıldı */
    background: linear-gradient(to right, rgba(0, 86, 179, 0.9), rgba(0, 86, 179, 0.6)); /* Modern gradient */
    color: white; /* Yazı rengi beyaz */
    text-align: left; /* Metni sola hizala */
    border-top-right-radius: 12px; /* Sağ üst köşeyi yuvarla */
    transition: all 0.4s ease; /* Geçiş efekti */
    box-shadow: 5px -5px 20px rgba(0, 0, 0, 0.4); /* Daha belirgin gölge */
    border-left: 8px solid var(--secondary-color); /* Modern sol kenar çizgisi */
    z-index: 2; /* Butonun tıklanabilmesi için overlay'in üzerinde olması */
}

.hero-content:hover {
    background: linear-gradient(to right, rgba(0, 86, 179, 1), rgba(0, 86, 179, 0.7)); /* Hover'da daha yoğun gradient */
    box-shadow: 8px -8px 30px rgba(0, 0, 0, 0.5); /* Hover'da daha belirgin gölge */
    transform: translateY(-5px); /* Hafif yukarı kayma */
}

.hero-content h1 {
    font-size: 42px; /* Başlık boyutu artırıldı */
    margin-bottom: 15px; /* Buton ile arasına boşluk */
    font-weight: 800; /* Daha kalın font */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Hafif metin gölgesi */
}

.hero-content p {
    font-size: 18px; /* Paragraf boyutu artırıldı */
    margin-bottom: 25px; /* Buton ile arasına boşluk */
    line-height: 1.5;
}

/* Buton Stilleri */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color); /* Düz mavi arka plan */
    color: white; /* Yazı rengi beyaz */
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease; /* Geçiş süresi ayarlandı */
    border: none;
    cursor: pointer;
    font-size: 17px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Hafif gölge */
}

.btn:hover {
    background-color: #004085; /* Hover'da daha koyu mavi */
    transform: translateY(-3px); /* Hafif yukarı kayma */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Gölge belirginleşti */
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white; /* Yazı rengi beyaz */
    margin-left: 15px;
    border-radius: 30px; /* Varsayılan büyük border-radius */
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 17px;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary-color); /* Hover'da yazı rengi mavi */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.btn-small { /* Yeni eklendi */
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 20px; /* Küçük butonlar için border-radius */
}

/* Masaüstü menüdeki teklif al butonu için düzeltme */
.btn-outline.btn-small {
    border-radius: 20px; /* Hem outline hem de small olduğunda bu radius'u kullan */
}

/* Slider Navigasyon Butonları ve Noktaları Kaldırıldı */
.slider-nav, .slider-dots {
    display: none;
}

/* Section Title (Başlık) Stilleri */
.section-title {
    text-align: center;
    margin-bottom: 50px; /* Başlık alt boşluğu artırıldı */
    position: relative;
}

.section-title h2 {
    display: inline-block;
    font-size: 32px; /* Başlık boyutu artırıldı */
    color: var(--primary-color);
    padding-bottom: 15px; /* Alt çizgi boşluğu artırıldı */
    border-bottom: 4px solid var(--secondary-color); /* Kalınlık artırıldı */
    font-weight: 600;
    letter-spacing: 1px; /* Minimalist dokunuş */
}

/* Hakkımızda Bölümü (Anasayfaya tekrar eklendi) */
.about-us-home {
    padding: 80px 0;
    background-color: var(--light-color); /* Açık gri arka plan */
}

.about-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-content-grid {
    display: flex;
    align-items: center;
    gap: 50px; /* Metin ve görsel arası boşluk */
    flex-wrap: wrap; /* Küçük ekranlarda alt alta geçiş */
}

.about-text-content {
    flex: 1;
    min-width: 300px; /* Minimum genişlik */
    text-align: left;
}

.about-text-content h3 {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.about-image-content {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); /* Hafif gölge */
}

/* Yeni Bölüm: Sayılarla Biz */
.numbers-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #004085 100%); /* Mavi gradient */
    color: white;
}

.numbers-section .section-title h2 {
    color: white;
    border-bottom-color: var(--secondary-color);
}

.numbers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.number-card {
    background-color: rgba(255, 255, 255, 0.1); /* Hafif şeffaf beyaz arka plan */
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.number-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.number-card i {
    font-size: 50px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.number-card h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
}

.number-card p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}


/* Neden Bizi Seçmelisiniz Bölümü */
.why-choose-us {
    padding: 80px 0;
    background-color: white;
}

.wcu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.wcu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.wcu-card {
    background-color: #f8f9fa;
    border-radius: 12px; /* Köşeler yuvarlatıldı */
    padding: 35px; /* Dolgu artırıldı */
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05); /* Daha hafif gölge */
    transition: all 0.3s;
    border: 1px solid #eee;
}

.wcu-card:hover {
    transform: translateY(-5px); /* Hover efekti azaltıldı */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Gölge belirginleştirildi */
}

.wcu-icon {
    font-size: 50px; /* İkon boyutu artırıldı */
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.wcu-card h3 {
    font-size: 22px; /* Başlık boyutu artırıldı */
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.wcu-card p {
    color: #666;
    font-size: 16px; /* Paragraf boyutu artırıldı */
    line-height: 1.7;
}

/* Kategoriler Bölümü */
.categories {
    padding: 50px 0;
    background-color: white;
}

.categories-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Kategori carousel'i için yeni stil */
.categories-carousel .carousel-wrapper {
    gap: 20px; /* Kategori kartları arası boşluk */
}

.category-card {
    flex: 0 0 auto; /* Kaydırma için önemli */
    width: calc(25% - 15px); /* Masaüstünde 4 sütun, boşluk ayarı */
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); /* Daha hafif gölge */
    transition: all 0.3s;
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    text-decoration: none; /* Link olduğu için alt çizgi kaldırıldı */
    color: inherit; /* Metin rengi miras alınsın */
    scroll-snap-align: start; /* Kaydırmada hizalama */
}

.category-card:hover {
    transform: translateY(-3px); /* Hover efekti azaltıldı */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Kategori Görsel Kapsayıcısı */
.category-image-wrapper {
    width: 100%;
    height: 120px; /* Görsel için sabit yükseklik */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 8px; /* Köşeleri yuvarla */
    background-color: #f0f4f8; /* Hafif bir arka plan */
}

.category-image-wrapper img {
    max-width: 100%; /* Kapsayıcı içinde maksimum genişlik */
    max-height: 100%; /* Kapsayıcı içinde maksimum yükseklik */
    width: auto; /* Genişliği otomatik ayarla */
    height: auto; /* Yüksekliği otomatik ayarla */
    object-fit: contain; /* Görselin oranını koruyarak sığdır */
    transition: transform 0.3s ease;
}

.category-card:hover .category-image-wrapper img {
    transform: scale(1.03); /* Hover'da hafif büyütme efekti */
}

.category-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color); /* Başlık rengi */
}

.category-card p {
    color: #666;
    font-size: 14px;
}

/* Markalar Bölümü (Mevcut Markalar) */
.brands {
    padding: 80px 0; /* Boşluk artırıldı */
    background: linear-gradient(135deg, #2a3a4a 0%, #1c2833 100%); /* Yeni arka plan */
}

.brands-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.brands .section-title h2 { /* Markalar bölümü başlık rengi */
    color: white;
}
.brands .section-title h2::after { /* Markalar bölümü başlık alt çizgi rengi */
    background-color: var(--secondary-color);
}

/* Markalar için carousel wrapper */
.brand-grid { /* Bu sınıf artık carousel-wrapper'a uygulanacak */
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 30px; /* Öğeler arası boşluk artırıldı */
    padding: 0 15px; /* İçerik başlangıç ve bitiş boşluğu */
    scroll-padding-left: 15px; 
    scroll-padding-right: 15px;
    margin-bottom: 40px; /* Buton için boşluk */
}

.brand-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari için kaydırma çubuğunu gizle */
}

.brand-item {
    flex: 0 0 auto; /* Otomatik genişlik, kaydırma için önemli */
    width: calc(16.666% - 25px); /* Masaüstünde 6 sütun, boşluk ayarı */
    text-align: center;
    opacity: 0.8; /* Hafif opaklık */
    transition: all 0.3s ease-in-out; /* Geçiş efekti */
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Daha hafif gölge */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    scroll-snap-align: start;
    border: 1px solid #e0e0e0;
    position: relative;
    z-index: 1;
    text-decoration: none; /* Link olduğu için alt çizgi kaldırıldı */
}

.brand-item:hover {
    opacity: 1;
    transform: translateY(-8px) scale(1.05); /* Hover efekti azaltıldı */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary-color);
    z-index: 10;
}

.brand-item img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease-in-out;
}

.brand-item:hover img {
    filter: grayscale(0%);
}

/* Yeni Bölüm: Lojistik ve Depolama */
.logistics-storage-section {
    padding: 80px 0;
    background-color: var(--light-color); /* Açık gri arka plan */
}

.logistics-storage-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.logistics-content-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.logistics-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logistics-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.logistics-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.logistics-text h3 {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.logistics-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}


/* Bayilikler Bölümü (Logolar olarak güncellendi) */
.distributors {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.distributors-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Bayilikler için carousel wrapper */
.distributor-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 20px;
    padding: 0 15px;
    scroll-padding-left: 15px; 
    scroll-padding-right: 15px;
    margin-bottom: 40px;
}

.distributor-grid::-webkit-scrollbar {
    display: none;
}

.distributor-logo-item {
    flex: 0 0 auto;
    width: calc(20% - 16px);
    text-align: center;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    scroll-snap-align: start;
    border: 1px solid #e0e0e0;
    position: relative;
    z-index: 1;
}

.distributor-logo-item:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.distributor-logo-item img {
    max-width: 90%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.distributor-logo-item:hover img {
    filter: grayscale(0%);
}

/* Özellikler Bölümü */
.features {
    padding: 50px 0;
    background-color: white;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-card p {
    color: #666;
    font-size: 14px;
}

/* Yeni Ürünler Bölümü */
.products-section {
    padding: 50px 0;
    background: linear-gradient(to right, #f0f4f8, #e0e7ed);
    text-align: center;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Ürünler için carousel wrapper */
.product-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 20px;
    padding: 0 15px;
    scroll-padding-left: 15px; 
    scroll-padding-right: 15px;
    margin-bottom: 40px;
}

.product-grid::-webkit-scrollbar {
    display: none;
}

.product-item {
    flex: 0 0 auto;
    width: calc(25% - 15px);
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* height: 200px; */
    text-align: center;
    scroll-snap-align: start;
    position: relative;
    z-index: 1;
    border: 1px solid #f0f0f0;
    text-decoration: none; /* Link olduğu için alt çizgi kaldırıldı */
    color: inherit; /* Metin rengi miras alınsın */
}

.product-item:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.product-item img {
    max-width: 90%;
    max-height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}

.product-item h3 {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

/* Yeni eklenen ürün markası stili */
.product-item .product-brand {
    font-size: 13px;
    color: #888;
    margin-top: 5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Yeni Bize Ulaşın (Call to Action) Bölümü */
.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.cta-section .btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta-section .btn:hover {
    background-color: #e05d00;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 30px;
}

.footer-about {
    grid-column: span 1;
}

.footer-about img {
    height: 60px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.6;
    color: #bbb;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: white;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-contact-info p {
    margin-bottom: 10px;
    color: #bbb;
    display: flex;
    align-items: flex-start;
}

.footer-contact-info i {
    margin-right: 10px;
    color: var(--secondary-color);
    margin-top: 3px;
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #222;
    padding: 20px 0;
    margin-top: 50px;
    text-align: center;
    font-size: 14px;
    color: #bbb;
}

.footer-bottom p {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Sabit Teklif Al Butonu */
.fixed-offer-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.fixed-offer-btn i {
    margin-right: 10px;
    font-size: 20px;
}

.fixed-offer-btn:hover {
    background-color: #e05d00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Genel Carousel Stilleri */
.carousel-container {
    position: relative;
    padding: 0 40px; /* Oklar için boşluk */
}

.carousel-prev-btn, .carousel-next-btn {
    position: absolute; 
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    transition: background-color 0.3s;
    /* Butonların her zaman görünür olmasını sağlamak için başlangıçta block yap */
    display: block; 
}

.carousel-prev-btn {
    left: 5px;
}

.carousel-next-btn {
    right: 5px;
}

.carousel-prev-btn:hover, .carousel-next-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Carousel Wrapper (Ortak stil) */
.carousel-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 20px; /* Varsayılan boşluk */
    padding: 0 15px; /* İçerik başlangıç ve bitiş boşluğu */
    scroll-padding-left: 15px; 
    scroll-padding-right: 15px;
    margin-bottom: 40px;
}

.carousel-wrapper::-webkit-scrollbar {
    display: none;
}

/* Ürünler için özel carousel wrapper boşluğu */
.products-section .carousel-wrapper {
    gap: 20px;
}

/* Markalar için özel carousel wrapper boşluğu */
.brands .carousel-wrapper {
    gap: 30px;
}

/* Bayiler için özel carousel wrapper boşluğu */
.distributors .carousel-wrapper {
    gap: 20px;
}

/* Ürünler Sayfası Stilleri */
.products-page-main {
    padding: 50px 0;
    min-height: 70vh;
}

.products-page-main .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.products-layout {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.sidebar {
    flex: 0 0 250px;
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    align-self: flex-start;
}

.sidebar h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.brand-filter-list {
    list-style: none;
}

.brand-filter-list li {
    margin-bottom: 10px;
}

.brand-filter-list li a {
    display: block;
    padding: 8px 12px;
    background-color: #f0f4f8;
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 15px;
}

.brand-filter-list li a:hover {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
}
.brand-filter-list li a.active {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
}

.products-listing {
    flex: 1;
    min-width: 300px;
}

.product-grid-full {
    /* Masaüstünde ürün kartlarının minimum genişliğini artırarak daha geniş olmalarını sağla */
    display: grid; /* Grid olarak ayarlandı */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Min genişlik 280px'e çıkarıldı */
    gap: 20px; /* Boşluk artırıldı */
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Ürün Listesi İyileştirmeleri */
.products-listing .product-card { /* Sınıf adı product-item'dan product-card'a döndürüldü */
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05); /* Daha hafif gölge */
    border: 1px solid #eee;
    display: flex; /* Flexbox eklendi */
    flex-direction: column; /* Dikey hizalama */
}

.products-listing .product-card:hover {
    transform: translateY(-3px); /* Hover efekti azaltıldı */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.products-listing .product-image-container { /* Sınıf adı product-image-wrapper'dan product-image-container'a döndürüldü */
    width: 100%;
    height: 200px; /* Masaüstü için uygun yükseklik */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.products-listing .product-image { /* Sınıf adı product-item img'den product-image'a döndürüldü */
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.products-listing .product-card:hover .product-image {
    transform: scale(1.03);
}

.products-listing .product-info { /* Yeni eklendi */
    padding: 15px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.products-listing .product-title { /* Sınıf adı product-item h3'den product-title'a döndürüldü */
    font-size: 16px;
    color: var(--primary-color);
    margin: 0 0 5px;
    font-weight: 600;
    line-height: 1.4;
    white-space: normal;
    text-overflow: initial;
    overflow: visible;
    text-align: center;
}

.products-listing .product-brand { /* Sınıf adı product-item .product-brand'den product-brand'a döndürüldü */
    font-size: 14px;
    color: #666;
    margin: 0 0 15px;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
}

.products-listing .btn-details { /* Sınıf adı btn-primary-outline'dan btn-details'e döndürüldü */
    display: block;
    width: calc(100% - 20px);
    margin: 0 auto 0; /* Altta boşluk bırakıldı */
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.products-listing .btn-details:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.no-products-message {
    text-align: center;
    font-size: 18px;
    color: #666;
    padding: 50px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Bayiler Sayfası Stilleri */
.distributors-page-main {
    padding: 50px 0;
    min-height: 70vh;
}

.distributors-page-main .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.distributor-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Masaüstünde 3 sütun, esnek genişlik */
    gap: 25px; /* Kartlar arası boşluk */
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.distributor-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #eee;
}

.distributor-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.distributor-logo-wrapper {
    width: 100%;
    height: 150px; /* Logo alanı için sabit yükseklik */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.distributor-logo-wrapper img {
    max-width: 90%;
    max-height: 100%;
    object-fit: contain; /* Logoyu oranını bozmadan sığdır */
}

.distributor-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.distributor-address,
.distributor-phone {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start; /* İkon ve metin hizalaması */
    text-align: left; /* Metin sola hizalı */
    width: 100%; /* Tam genişlik */
    justify-content: center; /* İçeriği ortala */
}

.distributor-address i,
.distributor-phone i {
    color: var(--secondary-color);
    margin-right: 8px;
    font-size: 16px;
    flex-shrink: 0; /* İkonun küçülmesini engelle */
    margin-top: 3px; /* İkonu metinle hizala */
}

.distributor-phone a {
    color: #555;
    text-decoration: none;
}

.distributor-phone a:hover {
    text-decoration: underline;
}

.distributor-website-btn {
    margin-top: 15px;
    width: auto; /* Genişliği içeriğe göre ayarla */
    padding: 8px 20px; /* Buton dolgusu */
    font-size: 14px; /* Buton yazı boyutu */
    border-radius: 20px;
}

.no-distributors-message {
    text-align: center;
    font-size: 18px;
    color: #666;
    padding: 50px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Kurumsal Sayfası Stilleri */
.corporate-page-main {
    padding: 50px 0;
    min-height: 70vh;
}

.corporate-page-main .container {
    max-width: 1000px; /* İçerik genişliği */
    margin: 0 auto;
    padding: 0 15px;
}

.corporate-page-main .slogan {
    font-size: 18px;
    color: #666;
    margin-top: -30px; /* Başlıkla slogan arasındaki boşluğu ayarla */
    margin-bottom: 50px;
}

.corporate-article {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.corporate-article h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.corporate-article p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: justify; /* Metin iki yana yaslı */
}

.article-image-left,
.article-image-right {
    width: 100%;
    max-width: 600px; /* Resimlerin maksimum genişliği */
    margin: 25px auto; /* Ortala */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.article-image-left img,
.article-image-right img {
    width: 100%;
    height: auto;
    display: block;
}

/* İletişim Bilgileri Bölümü */
.corporate-contact-info {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin-bottom: 40px; /* İletişim bilgileri ile harita arasına boşluk */
}

.corporate-contact-info h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Esnek ızgara */
    gap: 20px;
}

.contact-item {
    background-color: #f0f4f8;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e7ed;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-item:hover i,
.contact-item:hover h4,
.contact-item:hover p,
.contact-item:hover a {
    color: white; /* Hover'da tüm metin ve ikon beyaz olsun */
}

.contact-item i {
    font-size: 35px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-item h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.contact-item p a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item p a:hover {
    text-decoration: underline;
}

.contact-item.full-width {
    grid-column: 1 / -1; /* Tüm genişliği kapla */
}

/* İletişim Sayfası - Yeni Stiller */
.contact-page-main {
    padding: 50px 0;
    min-height: 70vh;
}

.contact-page-main .container {
    max-width: 900px; /* İçerik genişliği ayarlandı */
    margin: 0 auto;
    padding: 0 15px;
}

.contact-form-section,
.company-info-section,
.map-section {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px; /* Bölümler arası boşluk */
}

.contact-form-section h3,
.company-info-section h3,
.map-section h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 15px;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    color: var(--dark-color);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.2);
    outline: none;
}

.contact-form textarea {
    resize: vertical; /* Sadece dikeyde boyutlandırmaya izin ver */
}

.contact-form .btn-primary {
    display: block;
    width: 100%;
    max-width: 250px; /* Butonun maksimum genişliği */
    margin: 20px auto 0 auto; /* Ortala ve üst boşluk */
    padding: 12px 25px;
    font-size: 18px;
    border-radius: 30px;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: 15px;
}

.company-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Esnek ızgara */
    gap: 20px;
    text-align: center;
}

.company-info-grid .info-item {
    background-color: #f0f4f8;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e7ed;
    transition: all 0.3s ease;
}

.company-info-grid .info-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.company-info-grid .info-item:hover i,
.company-info-grid .info-item:hover h4,
.company-info-grid .info-item:hover p,
.company-info-grid .info-item:hover a {
    color: white; /* Hover'da tüm metin ve ikon beyaz olsun */
}

.company-info-grid .info-item i {
    font-size: 35px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.company-info-grid .info-item h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.company-info-grid .info-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.company-info-grid .info-item p a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.company-info-grid .info-item p a:hover {
    text-decoration: underline;
}

.company-info-grid .info-item.full-width {
    grid-column: 1 / -1; /* Tüm genişliği kapla */
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px; /* Harita yüksekliği */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Stiller */
@media (max-width: 992px) {
    /* Tablet için carousel öğe boyutları */
    .product-item {
        width: calc(50% - 15px);
    }
    .brand-item {
        width: calc(25% - 15px);
    }
    .distributor-logo-item {
        width: calc(33.333% - 13.333px);
    }
    /* Kategori kartları için tablet ayarı */
    .categories .category-card {
        width: calc(33.333% - 13.333px); /* Tablette 3 sütun */
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-about {
        grid-column: span 2;
        text-align: center;
    }
    .footer-about .social-links {
        justify-content: center;
    }

    /* Hakkımızda bölümü tablet responsive */
    .about-content-grid {
        flex-direction: column;
        gap: 30px;
    }
    .about-text-content, .about-image-content {
        min-width: unset;
        width: 100%;
        text-align: center;
    }
    .about-text-content .btn-primary-outline {
        margin-top: 20px;
    }

    /* Tablet ve mobil için hero-content düzenlemesi */
    .hero-content {
        width: 100%;
        padding: 25px;
        text-align: center;
        border-top-right-radius: 12px;
        border-top-left-radius: 12px;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
        border-left: none; /* Mobil'de sol kenar çizgisini kaldır */
    }

    .hero-content h1 {
        font-size: 30px;
    }

    /* Sayılarla Biz bölümü tablet responsive */
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .number-card {
        padding: 25px 15px;
    }
    .number-card h3 {
        font-size: 36px;
    }
    .number-card p {
        font-size: 16px;
    }

    /* Lojistik ve Depolama bölümü tablet responsive */
    .logistics-content-grid {
        flex-direction: column;
        gap: 30px;
    }
    .logistics-image, .logistics-text {
        min-width: unset;
        width: 100%;
        text-align: center;
    }
    .logistics-text .btn-primary-outline {
        margin-top: 20px;
    }

    .products-layout {
        flex-direction: column;
    }

    .sidebar {
        flex: none;
        width: 100%;
        margin-bottom: 20px;
    }

    .product-grid-full {
        /* Tablette her satırda 2 ürün olacak şekilde güncellendi */
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Ürün listesi tablet uyumu */
    .products-listing .product-image-container {
        height: 180px;
    }

    /* Bayiler sayfası tablet uyumu */
    .distributor-list-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablette 2 sütun */
        gap: 20px;
    }
    .distributor-card .distributor-logo-wrapper {
        height: 120px; /* Tablette logo yüksekliği */
    }

    /* Kurumsal sayfası tablet uyumu */
    .corporate-article {
        padding: 25px;
    }
    .corporate-article h3 {
        font-size: 24px;
    }
    .corporate-article p {
        font-size: 15px;
    }
    .article-image-left,
    .article-image-right {
        max-width: 500px;
        margin: 20px auto;
    }
    .corporate-contact-info {
        padding: 25px;
    }
    .corporate-contact-info h3 {
        font-size: 22px;
    }
    .contact-details-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    /* İletişim sayfası tablet uyumu */
    .contact-form-section,
    .company-info-section,
    .map-section {
        padding: 25px;
    }
    .contact-form-section h3,
    .company-info-section h3,
    .map-section h3 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    .contact-form input,
    .contact-form textarea {
        padding: 10px 12px;
        font-size: 15px;
    }
    .contact-form .btn-primary {
        padding: 10px 20px;
        font-size: 16px;
    }
    .company-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    .company-info-grid .info-item {
        padding: 15px;
    }
    .company-info-grid .info-item i {
        font-size: 30px;
    }
    .company-info-grid .info-item h4 {
        font-size: 16px;
    }
    .company-info-grid .info-item p {
        font-size: 14px;
    }
    .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .top-bar-container {
        flex-direction: row; /* Mobil'de yatay sırala */
        justify-content: center; /* Ortala */
        padding: 5px 15px; /* Daha ince bir şerit için dikey dolguyu azalt */
        font-size: 13px; /* Yazı boyutunu küçült */
    }
    
    .contact-info {
        margin-bottom: 0; /* Mobil'de boşluğu kaldır */
        gap: 10px; /* Telefon ve mail arası boşluğu azalt */
    }
    .contact-info a {
        padding: 2px 0; /* Linklerin kendi iç dolgusunu azalt */
    }
    .contact-info a i {
        margin-right: 5px; /* İkon ile metin arası boşluğu azalt */
    }

    .social-links {
        display: none; /* Sosyal medya ikonlarını mobil'de gizle */
    }
    
    .header-top-row { /* Logo ve mobil menü butonunu içeren yeni üst sıra */
        padding: 10px 15px; /* Mobil için dolgu */
    }

    .logo {
        margin-bottom: 0;
        justify-content: flex-start; /* Logoyu sola hizala */
        width: auto;
    }
    
    /* Mobil menü butonunu göster */
    .mobile-menu-btn {
        display: block; 
        color: var(--primary-color); /* Beyaz arka planda ana renk */
        font-size: 28px; 
    }

    /* Ana menüyü mobil görünümde gizle */
    .main-nav { /* Navigasyonun kendisi */
        position: absolute; /* .main-header'a göre konumlandır */
        top: 100%; /* .header-top-row'un hemen altına konumlandır */
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        max-height: 0; /* Başlangıçta gizli ve katlanmış */
        transition: max-height 0.3s ease-out; /* Yumuşak açılma/kapanma animasyonu */
        z-index: 999; /* Diğer içeriklerin üzerinde olmasını sağla */
    }

    /* JavaScript ile 'active' sınıfı eklendiğinde menüyü göster */
    .main-nav.active {
        max-height: 500px; /* Menünün açıldığında alacağı maksimum yükseklik */
    }
    
    .main-menu {
        flex-direction: column; /* Menü öğelerini dikey sırala */
        width: 100%;
        padding: 10px 0; /* İç dolgu ekle */
    }

    .main-menu li {
        width: 100%; /* Her bir menü öğesinin tam genişlikte olmasını sağla */
    }
    
    .main-menu li a {
        padding: 12px 20px; /* Mobil menü link dolgusu */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Ayırıcı çizgi */
        text-align: center; /* Metni ortala */
    }
    .main-menu li:last-child a {
        border-bottom: none;
    }
    
    /* Mobil menüde dropdown'ların başlangıçta kapalı olması için düzeltme */
    .dropdown-menu {
        position: static; /* Mobil menüde dropdown'lar sabit konumda olsun */
        width: 100%;
        box-shadow: none;
        display: none; /* Varsayılan olarak gizli */
        max-height: 0; /* JS ile kontrol edilecek */
        overflow: hidden; /* İçeriği gizle */
        background-color: rgba(255, 255, 255, 0.05); /* Alt menü arka planı */
        border-radius: 0;
        padding-left: 20px; /* Alt menü öğelerini içeri al */
        opacity: 0; /* JS ile kontrol edilecek */
        visibility: hidden; /* JS ile kontrol edilecek */
        transform: translateY(0); /* Transform efektini kaldır */
        transition: max-height 0.3s ease-out, opacity 0.3s ease, visibility 0.3s ease; /* Geçiş efektleri */
    }

    .dropdown-menu.active { /* JS tarafından eklenen 'active' sınıfı */
        display: block; /* Göster */
        max-height: 200px; /* Veya içeriğe göre ayarlanacak bir değer */
        opacity: 1;
        visibility: visible;
    }

    .main-menu li a.btn { /* Teklif Al butonu için mobil menüde farklı stil */
        background-color: var(--secondary-color);
        color: white;
        margin: 10px auto; /* Butonun kenar boşlukları ve ortalanması */
        text-align: center;
        border: none;
        padding: 10px 15px;
        border-radius: 25px;
    }
    .main-menu li a.btn:hover {
        background-color: #e05d00;
        transform: none; /* Hover efektini kaldır */
    }
    
    .hero {
        height: 500px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    /* Kategori kartları için telefon ayarı */
    .categories .category-card {
        width: 250px; /* Kaydırmayı sağlamak için sabit genişlik */
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fixed-offer-btn {
        padding: 12px 18px;
        font-size: 16px;
        bottom: 20px;
        right: 20px;
    }
    .fixed-offer-btn i {
        font-size: 18px;
        margin-right: 8px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-contact-info p {
        justify-content: center;
    }
    .footer-about {
        grid-column: span 1;
    }
    .wcu-grid {
        grid-template-columns: 1fr;
    }

    /* Mobil için carousel öğe boyutları */
    .product-item {
        flex: 0 0 280px; /* Kaydırmayı sağlamak için sabit genişlik */
    }
    .brand-item {
        flex: 0 0 260px; /* Kaydırmayı sağlamak için sabit genişlik artırıldı */
    }
    /* Bayiler için mobil kaydırma düzeltmesi */
    .distributor-logo-item {
        width: 210px; /* Kaydırmayı sağlamak için sabit genişlik artırıldı */
    }

    /* Mobil için hero-content düzenlemesi */
    .hero-content {
        width: 100%;
        padding: 20px;
        text-align: center;
        border-top-right-radius: 12px;
        border-top-left-radius: 12px;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
        border-left: none; /* Mobil'de sol kenar çizgisini kaldır */
    }

    .hero-content h1 {
        font-size: 26px;
    }

    /* Sayılarla Biz bölümü mobil responsive */
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .number-card {
        padding: 20px 10px;
    }
    .number-card h3 {
        font-size: 32px;
    }
    .number-card p {
        font-size: 15px;
    }

    /* Lojistik ve Depolama bölümü mobil responsive */
    .logistics-content-grid {
        flex-direction: column;
        gap: 20px;
    }
    .logistics-image, .logistics-text {
        min-width: unset;
        width: 100%;
        text-align: center;
    }
    .logistics-text .btn-primary-outline {
        margin-top: 15px;
    }

    .product-grid-full {
        grid-template-columns: repeat(2, 1fr); /* Mobile (768px ve altı) için her satırda 2 ürün */
        gap: 15px;
    }
    
    /* Ürün listesi mobil uyumu */
    .products-listing .product-image-container {
        height: 160px;
    }

    /* Bayiler sayfası telefon uyumu */
    .distributor-list-grid {
        grid-template-columns: repeat(2, 1fr); /* Telefonlarda 2 sütun */
        gap: 15px;
        padding: 15px;
    }
    .distributor-card {
        padding: 15px;
    }
    .distributor-card .distributor-logo-wrapper {
        height: 100px; /* Telefonlarda logo yüksekliği */
    }
    .distributor-card h3 {
        font-size: 18px;
    }
    .distributor-address,
    .distributor-phone {
        font-size: 14px;
    }
    .distributor-website-btn {
        padding: 6px 15px;
        font-size: 12px;
    }

    /* Kurumsal sayfası tablet uyumu */
    .corporate-article {
        padding: 25px;
    }
    .corporate-article h3 {
        font-size: 24px;
    }
    .corporate-article p {
        font-size: 15px;
    }
    .article-image-left,
    .article-image-right {
        max-width: 500px;
        margin: 20px auto;
    }
    .corporate-contact-info {
        padding: 25px;
    }
    .corporate-contact-info h3 {
        font-size: 22px;
    }
    .contact-details-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    /* İletişim sayfası tablet uyumu */
    .contact-form-section,
    .company-info-section,
    .map-section {
        padding: 25px;
    }
    .contact-form-section h3,
    .company-info-section h3,
    .map-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .contact-form label {
        font-size: 13px;
    }
    .contact-form input,
    .contact-form textarea {
        padding: 10px 12px;
        font-size: 15px;
    }
    .contact-form .btn-primary {
        padding: 10px 20px;
        font-size: 16px;
    }
    .company-info-grid .info-item {
        padding: 15px;
    }
    .company-info-grid .info-item i {
        font-size: 30px;
    }
    .company-info-grid .info-item h4 {
        font-size: 16px;
    }
    .company-info-grid .info-item p {
        font-size: 14px;
    }
    .map-container {
        height: 400px;
    }
}

@media (max-width: 576px) {
    /* Kategori kartları için küçük mobil ayarı */
    .categories .category-card {
        width: 220px; /* Kaydırmayı sağlamak için sabit genişlik */
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
    }
    
    .btn-outline {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .fixed-offer-btn {
        padding: 10px 15px;
        font-size: 14px;
        bottom: 15px;
        right: 15px;
    }
    .fixed-offer-btn i {
        font-size: 16px;
        margin-right: 5px;
    }

    /* Daha küçük mobil cihazlar için carousel öğe boyutları */
    .product-item {
        flex: 0 0 260px; /* Kaydırmayı sağlamak için sabit genişlik */
    }
    .brand-item {
        flex: 0 0 240px; /* Kaydırmayı sağlamak için sabit genişlik artırıldı */
    }
    /* Bayiler için küçük mobil kaydırma düzeltmesi */
    .distributor-logo-item {
        width: 190px; /* Kaydırmayı sağlamak için sabit genişlik artırıldı */
    }

    /* Mobil için hero-content düzenlemesi */
    .hero-content {
        width: 100%;
        padding: 20px;
        text-align: center;
        border-top-right-radius: 12px;
        border-top-left-radius: 12px;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .product-grid-full {
        grid-template-columns: 1fr; /* Küçük mobilde tek sütun */
        gap: 15px;
    }
    
    /* Ürün listesi küçük mobil uyumu */
    .products-listing .product-image-container {
        height: 140px;
    }
    .products-listing .product-card {
        padding: 10px;
    }
    .products-listing .product-title {
        font-size: 14px;
    }
    .products-listing .product-brand {
        font-size: 12px;
    }
    .products-listing .btn-details {
        padding: 6px 12px;
        font-size: 13px;
    }

    /* Bayiler sayfası küçük telefon uyumu */
    .distributor-list-grid {
        grid-template-columns: 1fr; /* Çok küçük ekranlarda tek sütun */
        gap: 10px;
        padding: 10px;
    }
    .distributor-card {
        padding: 10px;
    }
    .distributor-card .distributor-logo-wrapper {
        height: 80px; /* Çok küçük telefonlarda logo yüksekliği */
    }
    .distributor-card h3 {
        font-size: 16px;
    }
    .distributor-address,
    .distributor-phone {
        font-size: 13px;
    }
    .distributor-website-btn {
        padding: 5px 10px;
        font-size: 11px;
    }

    /* Kurumsal sayfası çok küçük telefon uyumu */
    .corporate-article {
        padding: 15px;
    }
    .corporate-article h3 {
        font-size: 20px;
    }
    .corporate-article p {
        font-size: 13px;
    }
    .article-image-left,
    .article-image-right {
        max-width: 300px;
        margin: 10px auto;
    }
    .corporate-contact-info {
        padding: 15px;
    }
    .corporate-contact-info h3 {
        font-size: 18px;
    }
    .contact-item {
        padding: 10px;
    }
    .contact-item i {
        font-size: 25px;
    }
    .contact-item h4 {
        font-size: 15px;
    }
    .contact-item p {
        font-size: 13px;
    }

    /* İletişim sayfası çok küçük telefon uyumu */
    .contact-form-section,
    .company-info-section,
    .map-section {
        padding: 15px;
    }
    .contact-form-section h3,
    .company-info-section h3,
    .map-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .contact-form label {
        font-size: 13px;
    }
    .contact-form input,
    .contact-form textarea {
        padding: 8px;
        font-size: 13px;
    }
    .contact-form .btn-primary {
        padding: 8px 15px;
        font-size: 14px;
        max-width: 180px;
    }
    .company-info-grid .info-item {
        padding: 10px;
    }
    .company-info-grid .info-item i {
        font-size: 25px;
    }
    .company-info-grid .info-item h4 {
        font-size: 14px;
    }
    .company-info-grid .info-item p {
        font-size: 12px;
    }
    .map-container {
        height: 300px;
    }
}

/* Ürün Detay Sayfası Stilleri */
.product-detail-page-main {
    padding: 50px 0;
    min-height: 70vh;
}

.product-detail-page-main .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.product-detail-card {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.product-detail-image-gallery {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

.main-product-image {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 15px;
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.thumbnail-gallery img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid #eee;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.thumbnail-gallery img:hover,
.thumbnail-gallery img.active {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.product-detail-info {
    flex: 2;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-detail-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.product-detail-brand,
.product-detail-category {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

.product-detail-brand span,
.product-detail-category span {
    font-weight: 600;
    color: var(--dark-color);
}

/* Fiyat kısmı kaldırıldığı için bu stil de kaldırılabilir veya yorum satırı yapılabilir */
/*
.product-detail-price {
    font-size: 30px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.product-detail-price span {
    font-size: 34px;
}
*/

.product-detail-stock {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 500;
}

.product-detail-stock .in-stock {
    color: #28a745; /* Yeşil */
    font-weight: 700;
}

.product-detail-stock .out-of-stock {
    color: #dc3545; /* Kırmızı */
    font-weight: 700;
}

.product-detail-description {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.product-detail-description h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.product-detail-description p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    text-align: justify;
}

.product-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.product-actions .btn {
    flex-grow: 1;
    text-align: center;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 25px;
}

.btn-outline-secondary {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.no-product-found {
    text-align: center;
    padding: 50px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-top: 50px;
}

.no-product-found h2 {
    font-size: 32px;
    color: #dc3545;
    margin-bottom: 20px;
}

.no-product-found p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.no-product-found .btn {
    padding: 12px 30px;
    font-size: 16px;
}

/* Benzer Ürünler Bölümü */
.related-products-section {
    padding: 50px 0;
    text-align: center;
}

.related-products-section .section-title {
    margin-bottom: 30px;
}

/* Benzer ürünler bölümündeki ürün kartları için özel stil */
.related-products-section .product-grid-full {
    /* Bu bölümdeki grid'in ana ürünler sayfasındaki grid'den bağımsız çalışmasını sağlar */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Daha küçük kareler için minmax ayarı */
    gap: 15px; /* Boşluk azaltıldı */
    padding: 15px; /* İç dolgu azaltıldı */
}

.related-products-section .product-card {
    padding: 10px; /* Kart içi dolgu azaltıldı */
    border-radius: 8px; /* Köşeler daha az yuvarlatıldı */
}

.related-products-section .product-image-container {
    height: 150px; /* Görsel kapsayıcısının yüksekliği ayarlandı */
    width: 100%; /* Genişliği kapsayıcıya göre ayarla */
    padding: 10px; /* İç dolgu azaltıldı */
}

.related-products-section .product-image {
    width: 100%; /* Görselin tam genişliği kaplamasını sağla */
    height: 100%; /* Görselin tam yüksekliği kaplamasını sağla */
    object-fit: contain; /* Görselin oranını bozmadan sığdır */
}

.related-products-section .product-title {
    font-size: 15px; /* Başlık fontu küçültüldü */
    margin-bottom: 3px;
}

.related-products-section .product-brand {
    font-size: 12px; /* Marka fontu küçültüldü */
    margin-bottom: 10px;
}

.related-products-section .btn-details {
    padding: 6px 10px; /* Buton dolgusu küçültüldü */
    font-size: 12px; /* Buton fontu küçültüldü */
}


/* Responsive Stiller - Ürün Detay Sayfası için Eklemeler */
@media (max-width: 768px) {
    .product-detail-card {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .product-detail-image-gallery {
        min-width: unset;
        max-width: 100%;
        padding: 15px;
    }

    .main-product-image {
        max-height: 250px;
    }

    .product-detail-info {
        min-width: unset;
        width: 100%;
        text-align: center;
    }

    .product-detail-title {
        font-size: 28px;
    }

    .product-detail-brand,
    .product-detail-category,
    .product-detail-stock {
        font-size: 16px;
    }

    .product-detail-description h3 {
        font-size: 20px;
    }

    .product-detail-description p {
        font-size: 15px;
    }

    .product-actions {
        flex-direction: column;
        gap: 10px;
    }

    .product-actions .btn {
        width: 100%;
    }

    /* Benzer ürünler bölümü tablet uyumu */
    .related-products-section .product-grid-full {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Tablette daha küçük minmax */
        gap: 10px;
        padding: 10px;
    }
    .related-products-section .product-image-container {
        height: 120px; /* Tablette görsel yüksekliği */
    }
}

@media (max-width: 576px) {
    .product-detail-page-main {
        padding: 30px 0;
    }

    .product-detail-card {
        padding: 15px;
    }

    .main-product-image {
        max-height: 200px;
    }

    .product-detail-title {
        font-size: 24px;
    }

    .product-detail-brand,
    .product-detail-category,
    .product-detail-stock {
        font-size: 14px;
    }

    .product-detail-description h3 {
        font-size: 18px;
    }

    .product-detail-description p {
        font-size: 14px;
    }

    .product-actions .btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .no-product-found h2 {
        font-size: 26px;
    }

    .no-product-found p {
        font-size: 16px;
    }

    .no-product-found .btn {
        font-size: 14px;
        padding: 10px 25px;
    }

    /* Benzer ürünler bölümü mobil uyumu */
    .related-products-section .product-grid-full {
        grid-template-columns: 1fr; /* Mobil cihazlarda tek sütun */
        gap: 10px;
        padding: 10px;
    }
    .related-products-section .product-image-container {
        height: 180px; /* Mobil cihazlarda görsel yüksekliği biraz artırıldı */
    }
    .related-products-section .product-card {
        max-width: 250px; /* Mobil cihazlarda kartın maksimum genişliği */
        margin: 0 auto; /* Ortala */
    }
}
