/* ================================================= */
/* 1. GENEL SIFIRLAMA VE TEMEL AYARLAR */
/* ================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* KRİTİK DÜZELTME: Mobil menü açıldığında kaydırmayı kilitlemek için */
body.menu-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
}

/* KRİTİK KURAL: Menü açıkken hamburger ikonunu gizle */
body.menu-open .menu-toggle {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}


/* Kapsayıcı (Merkezleme) */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 0;
}

/* Renk Değişkenleri */
:root {
    --primary-color: #1a1a1a; /* Koyu Gri/Siyah */
    --secondary-color: #ff6600; /* Turuncu/Vurgu (Hakkımızda yazısını turuncu yapan renk) */
    --text-color: #ffffff; /* Beyaz */
    --border-color: #e0e0e0;
}

/* --- ORTAK BAŞLIK VE BÖLÜM STİLLERİ --- */
.why-us, .categories, .cta-form, .products-header {
    padding: 60px 0;
    text-align: center;
}

h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}


/* ================================================= */
/* 2. BUTON STİLLERİ */
/* ================================================= */
.btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-radius: 5px;
    padding: 12px 15px !important;
    color: var(--text-color) !important;
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    background-color: #cc5200;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
}

/* Küçük butonlar için stil */
.btn.small {
    padding: 8px 15px;
    font-size: 0.9rem;
}


/* ================================================= */
/* 3. HEADER ve MENÜ STİLLERİ */
/* ================================================= */
header {
    background-color: var(--primary-color);
    color: var(--text-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* LOGO STİLLERİ */
.logo {
    font-size: 0;
}
.logo a {
    text-decoration: none;
}
.logo img {
    height: 60px;
    width: auto;
    display: block;
    transition: transform 0.3s;
}
.logo img:hover {
    transform: scale(1.05);
}

/* MASAÜSTÜ MENÜSÜ (#desktop-menu) */
#desktop-menu ul {
    list-style: none;
    display: flex;
}

#desktop-menu ul li a {
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: color 0.3s;
}

/* KRİTİK: AKTİF MENÜ ÖĞESİ STİLİ (PHP ile 'active' sınıfı atandığında turuncu olur) */
#desktop-menu ul li a:hover, #desktop-menu ul li a.active {
    color: var(--secondary-color);
}

.btn-teklif {
    background-color: var(--secondary-color);
    border-radius: 5px;
    padding: 8px 15px !important;
    margin-left: 15px;
    color: var(--text-color) !important;
}

.btn-teklif:hover {
    background-color: #cc5200;
}

/* --- KRİTİK: FULL SCREEN MOBİL MENÜ STİLLERİ (#fullscreen-menu) --- */

#fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color); /* Koyu Arkaplan */
    z-index: 9999;
    
    /* Gizleme Mekanizması */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    
    /* İçeriği Ortala */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* KRİTİK: Menü Açık Durumu (JavaScript bu sınıfı ekleyecek) */
#fullscreen-menu.open {
    opacity: 1;
    visibility: visible;
}

/* Kapatma Butonu */
#fullscreen-menu .close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 3rem;
    color: var(--secondary-color);
    cursor: pointer;
    z-index: 10000;
}

/* Menü Navigasyonu */
#fullscreen-menu nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

#fullscreen-menu nav ul li {
    margin: 20px 0;
}

#fullscreen-menu nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.8rem;
    padding: 10px 20px;
    display: block;
    transition: color 0.3s;
    font-weight: 700;
}

#fullscreen-menu nav ul li a:hover, #fullscreen-menu nav ul li a.active {
    color: var(--secondary-color);
}


/* Hamburger Butonu (Sadece Mobilde Görünür) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--secondary-color);
    cursor: pointer;
    z-index: 1100;
    padding: 0;
    transition: transform 0.3s;
}
.menu-toggle:active {
    transform: scale(0.95);
}


/* ================================================= */
/* 4. ANA GÖRSEL VE VURGU BÖLÜMLERİ */
/* ================================================= */

/* --- ANA GÖRSEL (HERO SECTION) --- */
.hero {
    /* Burası sitenizin ana sayfa HERO alanı */
    background-repeat: no-repeat;
    background-size: cover; /* Görselin alanı tam kaplamasını sağlar */
    background-position: center;
    /* İstenen yükseklik ve boyut kontrolü */
    height: 450px; /* Sabit yükseklik, fazla zoom'u engellemek için önerilir */
    
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-color);
    position: relative;
    z-index: 1; /* Overlay'den daha aşağıda olmalı */
}

/* !!! YENİ BULANIKLIK VE KARARTMA KURALI !!! */
/* Hero görselinin üzerine yarı şeffaf ve bulanık bir katman ekler */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Karartma rengi */
    background-color: rgba(0, 0, 0, 0.4); /* Hafif karartma */
    /* Bulanıklık efekti */
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px); /* Webkit (Chrome/Safari) uyumluluğu */
    z-index: 2; /* Arkaplanın üstünde, yazıların altında kalır */
}

.hero .container {
    position: relative;
    z-index: 3; /* Yazıların overlay'in üstünde görünmesini sağlar */
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* --- TOPTAN VURGU BÖLÜMÜ --- */
.toptan-vurgu {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 50px 0;
    text-align: center;
}

.toptan-vurgu h2 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.toptan-vurgu .vurgu-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
}

.toptan-vurgu .vurgu-list li {
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid var(--secondary-color);
    padding: 10px 20px;
    border-radius: 5px;
    background-color: rgba(255, 102, 0, 0.15);
}


/* --- NEDEN BİZ? BÖLÜMÜ --- */
.why-us {
    background-color: #fff;
}

.features {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.feature-item {
    flex: 1;
    padding: 25px;
    border: 1px solid #ddd;
    border-top: 5px solid var(--secondary-color);
    border-radius: 8px;
    background-color: #fcfcfc;
}

.feature-item h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}


/* --- SEVKİYAT VURGU BÖLÜMÜ --- */
.shipping-vurgu {
    background-color: #fcfcfc;
    padding: 80px 0;
    
    /* GÖRSEL AYARLARI */
    background-image: url('sevkiyatkapi.jpeg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 50% auto;
    min-height: 450px;
}

.shipping-vurgu .container {
    padding: 0;
}

.shipping-text {
    /* Metin alanı sadece sol 45%'te kalır */
    width: 45%;
    padding: 20px 0;
    text-align: left;
    margin-left: 5%;
}

.shipping-text h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.shipping-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.shipping-text .highlight-text {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 30px;
    display: block;
}
/* --- SEVKİYAT VURGU BÖLÜMÜ SONU --- */


/* --- TEKLİF ÇAĞRISI (CTA) BÖLÜMÜ --- */
.cta-form {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 80px 0;
}

.cta-form h2 {
    color: var(--secondary-color);
}

.cta-form p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}


/* ================================================= */
/* 5. FOOTER (ALT BİLGİ) STİLLERİ */
/* ================================================= */
footer {
    background-color: #222;
    color: #ccc;
    padding-top: 40px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1px solid #333;
    padding-bottom: 30px;
}

/* Footer Sütunları */
footer .footer-col {
    width: 30%;
    margin-bottom: 20px;
}

footer .footer-col h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
}

footer .footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    background-color: var(--secondary-color);
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

footer .footer-col p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 10px;
}

footer .footer-col ul {
    list-style: none;
    padding: 0;
}

footer .footer-col ul li a {
    font-size: 1rem;
    text-decoration: none;
    color: #ccc;
    display: block;
    transition: all 0.3s ease;
}

footer .footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding: 15px 0;
    font-size: 0.85rem;
    color: #999;
}


/* ================================================= */
/* 6. ÜRÜN SLIDER STİLLERİ */
/* ================================================= */
.top-selling-slider {
    padding: 60px 0;
    background-color: #fff;
}

.slider-title {
    text-align: center;
    margin-bottom: 50px;
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.product-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 0;
    flex-grow: 1;
    scroll-padding-left: 10px;
    justify-content: flex-start;
}

/* Scrollbar'ı Gizle (Opsiyonel) */
.product-carousel::-webkit-scrollbar {
    display: none;
}
.product-carousel {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.product-slide {
    flex: 0 0 auto;
    width: calc(25% - 16px);
    scroll-snap-align: start;
    transition: all 0.3s ease;
}

.product-card-simple {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.3s;
}

.product-card-simple:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* FOTOĞRAF ALANI DÜZELTMESİ (Slider görselleri) */
.product-card-simple img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    margin: 0 auto 15px;
    border: 1px solid #f0f0f0;
    padding: 10px;
}

.product-name {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
}

.rating {
    color: gold;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Slider Okları */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #888;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
    padding: 5px;
}

.slider-arrow:hover {
    color: var(--secondary-color);
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}


/* ================================================= */
/* 7. ÜRÜNLER SAYFASI ÖZEL STİLLERİ (DÜZELTİLDİ) */
/* ================================================= */

.my-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Row ve Column Stilleri - Yan Yana Sıralama için Zorunlu */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

/* Tüm Column'lar için eşit boşluk */
.col-lg-3, .col-lg-4, .col-md-6, .col-sm-12 {
    padding: 0 10px;
}

/* MOBİL GÖRÜNÜM DÜZELTMESİ (Bootstrap'teki col-sm-6'yı desteklemek için) */
@media (max-width: 576px) {
    /* Mobil cihazlarda (sm) her sütunun %50 genişliğinde olmasını sağlar (yan yana 2 ürün) */
    .col-sm-6 {
        width: 50% !important; 
        max-width: 50% !important;
        flex: 0 0 50% !important; 
    }
    /* Eğer ürünler.php'deki eski col-sm-12 hala varsa onu da zorlayalım */
    .col-sm-12 {
        width: 50% !important;
        max-width: 50% !important;
        flex: 0 0 50% !important;
    }
}


/* Ürün Kartı Stilleri */
.product-card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background-color: #fff;
    margin-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-card .img-container {
    width: 100%;
    height: 280px;
    max-height: 280px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
}

.product-card .card-img-top {
    width: 90%;
    height: 90%;
    object-fit: contain !important;
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.5s;
    padding: 10px;
}

.product-card .card-body {
    padding: 20px;
    text-align: left;
    /* Fiyat ve Buton esnekliği için kart gövdesini esnek yapıyoruz */
    display: flex; 
    flex-direction: column;
    justify-content: space-between; /* İçeriğin dikeyde yayılmasını sağlar */
    min-height: 180px; /* İçerik boş kalmasın diye minimum yükseklik veririz */
}

/* KRİTİK DÜZELTME: Fiyat ve puanı alt alta atmak için flex yönünü değiştiriyoruz */
.fiyat-ve-puan-wrapper {
    display: flex;
    flex-direction: column; /* Yataydan dikeye çevrildi */
    justify-content: flex-start; /* İçeriği yukarı hizala */
    align-items: flex-start; /* İçeriği sola hizala */
    margin-top: 10px;
}

/* Fiyat Etiketi ve Puan Stilleri */
.product-card .card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.product-card .small-text {
    font-size: 0.9rem;
    line-height: 1.4;
    height: 3.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #666;
}

.product-card .yildiz-puani {
    color: gold;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px; /* Fiyat etiketi ile arasına boşluk ekledik */
}

.fiyat-etiketi {
    /* Fiyat etiketi alt satıra geçtiği için tekrar flex yapmasına gerek yok */
    display: block; 
    flex-shrink: 0; /* Artık sıkışmaya izin vermiyoruz */
    min-width: auto; /* Otomatik genişlik */
    margin-left: 0; /* Boşluk sıfırlandı */
}

.fiyat-etiketi .badge {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    /* Metnin artık tam genişlikte yer kaplamasına izin verilir */
    display: inline-block; 
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
}

/* Teklif Butonu Stilini Düzenle */
.product-card .btn-warning {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-color);
    padding: 10px;
    margin-top: 15px;
    width: 100%; /* Butonun tam genişlikte olmasını sağladık */
}

.product-card .btn-warning:hover {
    background-color: #cc5200;
    border-color: #cc5200;
}

/* MOBİL DÜZELTMELER - Urunler Sayfası */
@media (max-width: 768px) {
    .product-card .img-container {
        height: 200px;
    }
    
}


/* ================================================= */
/* 8. HAKKIMIZDA SAYFASI ÖZEL STİLLERİ VE DÜZELTMELER */
/* ================================================= */

/* Hero Alanı (Sayfa Başlığı) - ARTIK DÜZ GRİ (Primary Color) */
.page-hero {
    /* İstenen DÜZ GRİ/SİYAH arkaplan */
    background-color: var(--primary-color);
    
    height: 350px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-color);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    border-bottom: none;	
    display: inline-block;
    padding-bottom: 5px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);	
}

/* Genel Bölüm Başlık Stili (Mobil/Küçük Ekranlar İçin Solda Kalır) */
.about-story .section-title, .contact-info .section-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 30px;
    border-left: 5px solid var(--secondary-color);
    padding-left: 15px;
    text-align: left;
}
.about-features .section-title {
    /* Ortalanmış başlık için override */
    border-left: none;
    text-align: center;
}

/* KRİTİK OKUNURLUK DÜZELTMESİ: Beyaz arkaplan üzerindeki metinleri koyu yapar */
.about-story p {
    color: #333 !important;	
}
.mission-vision-box p {
    color: #333 !important;	
}
.about-features p {
    color: #555 !important;
}


/* Hikaye ve Vizyon/Misyon Bölümü */
.about-story .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #444;
    margin-bottom: 25px;
}

.mission-vision-box {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}
.mission-vision-box:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}
.mission-vision-box h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* Butonun Kapsayıcısı: Mobil/Küçük ekranlar için solda kalır */
.about-story-btn-wrapper {
    margin-top: 25px;	
    text-align: left;	
}


/* Değerler/Özellikler Bölümü İkonları */
.about-features .feature-item {
    text-align: center;
    margin-bottom: 20px;
}
.about-features .feature-item .icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: block;
    transition: transform 0.3s;
}
.about-features .feature-item:hover .icon {
    transform: scale(1.1);
}

/* İletişim ve Konum Bilgileri */
.contact-info .info-box {
    padding: 20px;
    text-align: left;
}
.contact-info .info-box h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info .info-box p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-info .info-box i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.contact-info iframe {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


/* --- YENİ BUTON STİLLERİ (Diğer sayfalar için korundu) --- */
.btn-incele {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.1rem;
    
    background-color: var(--secondary-color);
    color: var(--text-color);
    border: 3px solid var(--secondary-color);
    
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

.btn-incele:hover {
    background-color: #cc5200;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.6);
}

.btn-ozellik {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: none;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.7);
    opacity: 0.9;
}

.btn-incele:hover .btn-ozellik {
    opacity: 1;
    border-left-color: var(--text-color);
}


/* ================================================= */
/* 9. İLETİŞİM SAYFASI (iletisim.php) ÖZEL STİLLERİ */
/* ================================================= */

.contact-page-main {
    padding: 60px 0;
    background-color: #fcfcfc;
}

.contact-info-wrapper {
    padding: 20px;
    height: 100%;
    /* İçeriği ortalamak için kullanılır */
    text-align: center;	
}

/* Başlık Stili - Masaüstü ve Mobil için ortak merkezleme */
.contact-page-main .section-title {
    color: var(--primary-color);
    font-size: 2rem;
    /* Başlığı yatayda ortalar */
    margin: 0 auto 30px auto;	
    border-left: none; /* Sol çizgiyi kaldırır */
    padding-left: 0;
    text-align: center; /* Metni ortalar */
    border-bottom: 3px solid var(--secondary-color);
    display: inline-block; /* Çizginin başlık metni genişliğinde kalmasını sağlar */
    padding-bottom: 10px;
}

/* Bilgi Kutusu Stilleri - TAM MERKEZLEME */
.contact-info-wrapper .info-box {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--secondary-color); /* Üst çizgi ekliyoruz */
    /* KRİTİK: Kutunun kendisini ortalar ve genişliğini sınırlar */
    margin: 0 auto 20px auto;	
    max-width: 450px; /* Okunurluk için maksimum genişlik */
    text-align: center; /* Bilgi kutusu içindeki metni ortalar */
}

.contact-info-wrapper .info-box h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* İletişim bilgisi satırlarını merkezleme */
.contact-info-wrapper .info-box p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
    /* KRİTİK: Satır içeriğini tam ortalar */
    display: flex;	
    justify-content: center;	
    align-items: center;
}

.contact-info-wrapper .info-box i {
    color: var(--secondary-color);
    margin: 0 5px; /* İkonlar arası boşluğu ayarlıyoruz */
    width: auto;
    text-align: center;
}
/* Kaldırılan harita ve form stillerini temizledim. */


/* ================================================= */
/* 10. WHATSAPP SABİT BUTON STİLİ VE ANİMASYONU */
/* ================================================= */

/* Sabit Buton Konumu ve Görünüm Ayarları */
.whatsapp-btn {
    position: fixed;
    bottom: 25px; /* Alttan boşluk */
    right: 25px; /* Sağdan boşluk */
    z-index: 999999; /* Diğer her şeyin üstünde kalması için */
    width: 60px;
    height: 60px;
    background-color: #25D366; /* WhatsApp yeşili */
    color: white;
    border-radius: 50%; /* Yuvarlak şekil */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    /* Canlanma Animasyonunu Başlat */
    animation: pulse 1.5s infinite;	
}

/* Hover Efekti (Fare üzerine gelince) */
.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    animation: none; /* Hover sırasında canlanmayı durdur */
}

/* KRİTİK: Canlanma/Nefes Alma Animasyonu Tanımı */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


/* ================================================= */
/* 11. MOBİL UYUM (RESPONSIVE) */
/* ================================================= */

/* 1. MASAÜSTÜ > TABLET İNDİRİMİ (1024px) */
@media (max-width: 1024px) {
    .product-slide {
        width: calc(33.33% - 13.33px);
    }

    .shipping-vurgu {
        min-height: 400px;
        background-size: 60% auto;
    }
}

/* 2. TABLET > MOBİL İNDİRİMİ (992px) */
@media (max-width: 992px) {
    
    .container {
        width: 95%;
    }
    
    /* BAŞLIKLAR VE HERO */
    .hero {
        height: 400px;
    }
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    h2 {
        font-size: 1.5rem;
    }
    
    /* MENÜ */
    #desktop-menu {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    
    /* NEDEN BİZ (WHY US) VE FOOTER DÜZELTMESİ */
    .features, footer .container {
        flex-direction: column;
        gap: 30px;
    }
    
    .feature-item {
        flex: none;
        width: 100%;
        text-align: left;
    }

    /* FOOTER ORTALAMA */
    footer .footer-col {
        width: 100%;
        text-align: center;
    }
    footer .footer-col h4::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .toptan-vurgu .vurgu-list {
        flex-direction: column;
        gap: 10px;
    }

    /* SEVKİYAT VURGU BÖLÜMÜNÜN MOBİL UYUMU */
    .shipping-vurgu {
        background-image: none;
        min-height: auto;
        padding: 50px 0;
    }

    .shipping-text {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    .shipping-text h1 {
        font-size: 1.8rem;
    }

    /* SLIDER İÇİN MOBİL AYARLAR */
    .slider-arrow {
        font-size: 2rem;
    }
    .product-carousel {
        margin: 0 20px;
    }
    
    /* HAKKIMIZDA SAYFASI RESPONSIVE DÜZELTMELERİ */
    .about-story .col-lg-6 {
        margin-bottom: 30px;
    }
    .about-story .section-title {
        /* Mobil/Tablet görünümde sol çizgiyi korur */
        text-align: left;
        border-left: 5px solid var(--secondary-color);
        padding-left: 15px;
        border-bottom: none;
        padding-bottom: 0;
        display: block;
    }
    .story-visual {
        order: -1;	
    }
    .contact-info .info-box, .contact-info .map-box {
        width: 100%;
        text-align: center;
    }
    .btn-ozellik {
        display: none;
    }
    
    /* BUTONU MOBİLDE SOLDA BIRAK (YUKARIDAKİ `about-story-btn-wrapper` kuralı korunur) */
    .about-story-btn-wrapper {
        text-align: left;
    }
    
    /* İLETİŞİM SAYFASI MOBİL UYUMU */
    .contact-page-main .row {
        flex-direction: column;
    }
    /* Bilgi ve harita tek sütun olduğu için sadece kutu merkezlenir */
    .contact-info-wrapper {
        margin-bottom: 30px;
    }


    /* 3. MOBİL CİHAZ (768px ve altı) */
    @media (max-width: 768px) {
        .product-slide {
            /* ÜRÜN SLIDERI: Mobilde yan yana 2 ürün */
            width: calc(50% - 10px);
        }
        .hero {
            height: 350px;
        }
        .hero h1 {
            font-size: 1.5rem;
        }
        .hero p {
            font-size: 1rem;
        }
        .product-card .img-container {
            height: 200px;
        }
    }

    /* 4. ÇOK KÜÇÜK MOBİL CİHAZ (480px ve altı) */
    @media (max-width: 480px) {
        .product-slide {
            /* SLIDER: Çok küçük cihazlarda tekrar tam genişlik (yan yana 1 ürün) */
            width: 90%;
            margin: 0 auto;
        }
        .product-card-simple img {
            height: 200px;
        }
        .slider-arrow {
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        .product-carousel {
            margin: 0;
            justify-content: flex-start;
        }
        .slider-wrapper {
            padding: 0 10px;
        }
    }
}


/* ================================================= */
/* MASAÜSTÜ İÇİN ÖZEL DÜZELTMELER (HAKKIMIZDA SAYFASI) */
/* ================================================= */

@media (min-width: 993px) {
    
    /* İçerik Kapsayıcısını Ortalar */
    .about-content-wrapper {
        /* Başlığı, paragrafı ve butonu içeren bloğu sola hizalamadan korumak için */
        text-align: center;	
    }
    
    /* Başlığı Ortalar ve Alt Çizgi Ekler */
    .about-content-wrapper .section-title {
        text-align: center;
        border-left: none;
        padding-left: 0;
        border-bottom: 3px solid var(--secondary-color);
        display: inline-block; /* Çizginin başlık genişliğinde kalmasını sağlar */
        padding-bottom: 10px;
        margin-bottom: 30px;
    }
    
    /* Paragrafların Solda Kalmasını Sağlar (Okunabilirlik İçin) */
    .about-content-wrapper p, .about-content-wrapper .lead {
        text-align: left;
    }

    /* Butonun Ortada Kalmasını Sağlar */
    .about-story-btn-wrapper {
        text-align: center;
        width: 100%;
    }
}
/* ================================================= */
/* MONOKROM (RENKSİZ) LÜKS SOSYAL MEDYA İKONLARI STİLİ */
/* ================================================= */

.footer-col .social-links {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex; 
    gap: 15px;
}

.footer-col .social-links a {
    /* Temel Stil */
    text-decoration: none !important; /* Alt çizgiyi kaldırır */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; 
    height: 40px;
    border-radius: 5px; 
    font-size: 18px; 
    transition: all 0.3s ease-in-out;
    
    /* Monokrom Görünüm (Koyu Footer Varsayımı) */
    color: #f0f0f0; /* Açık İkon Rengi */
    background: transparent; 
    border: 1px solid rgba(255, 255, 255, 0.4); /* Hafif Açık Kenarlık */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

/* İkonun Üzerine Gelindiğinde (Hover Etkisi) */
.footer-col .social-links a:hover {
    /* Efekt 1: Ters Çevirme (Invert) */
    color: #1a1a1a; /* İkonu Koyu Yap */
    background-color: #f0f0f0; /* Arka Planı Açık Yap */
    
    /* Efekt 2: Gölge Derinliği (Daha Belirgin Kalkma Hissi) */
    box-shadow: 0 8px 17px rgba(0, 0, 0, 0.4), 0 6px 10px rgba(0, 0, 0, 0.2);
    
    /* Hafif yukarı kaydırma */
    transform: translateY(-3px);
    
    /* Kenarlığı Kaldırma */
    border-color: transparent; 
}

/* Not: Bu CSS, footer'ınızın arka plan renginin koyu (siyah, lacivert vb.) olduğunu varsayarak 
   ikonları açık renkli (beyaz/gri) yapar. Eğer footer arka planınız açıksa,
   'color' ve 'background-color' değerlerini tersine çevirmeniz gerekir. */
   /* ================================================= */
/* 13. PRELOADER (AÇILAN KAPI EFEKTİ) */
/* ================================================= */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    overflow: hidden;
    background: #1a1a1a;
    /* Animasyon bittikten sonra kaybolması için */
    transition: opacity 0.5s ease 1.2s, visibility 0s ease 1.7s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.door {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    /* Metalik görünüm için gradient */
    background: linear-gradient(to right, #4c4c4c 0%, #595959 15%, #666666 30%, #595959 85%, #4c4c4c 100%);
    box-shadow: inset 0 0 15px rgba(0,0,0,0.5);
    /* Kapı açılma animasyonu */
    transition: transform 1.2s cubic-bezier(0.86, 0, 0.07, 1);
}

#door-left {
    left: 0;
}

#door-right {
    right: 0;
}

/* Sayfa yüklendiğinde kapıların açılması */
#preloader.loaded #door-left {
    transform: translateX(-101%);
}
#preloader.loaded #door-right {
    transform: translateX(101%);
}

.loader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 80px;
    font-weight: 700;
    color: #ff6600; /* Sitenizin turuncu rengi */
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
    opacity: 1;
    /* Logo kaybolma animasyonu */
    transition: opacity 0.5s ease;
}

#preloader.loaded .loader-logo {
    opacity: 0;
}
/* --- Sayfa İçi Yumuşak Kaydırma --- */
html {
    scroll-behavior: smooth;
}