/* --- GENEL AYARLAR VE SIFIRLAMA --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    font-family: "Poppins", sans-serif;
}

.container {
    max-width: 1200px;
    /* Biraz daha geniş bir alan */
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 60px 0;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #343403;
}

/* --- HEADER --- */
.site-header {
    background-color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease-in-out;
}

.site-header.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.header-top {
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: height 0.4s ease-in-out, opacity 0.3s ease-in-out, padding 0.4s ease-in-out;
    height: 80px;
    overflow: hidden;
}

.header-top .header-container {
    justify-content: space-between;
    height: 100%;
}

.logo {
    width: 180px;
    height: auto;
}

.header-bottom {
    padding: 10px 0;
}

.header-bottom .header-container {
    justify-content: center;
}

.site-header.scrolled .header-top {
    height: 0;
    opacity: 0;
    padding: 0;
    border: none;
}

main {
    padding-top: 135px;
}

/* --- NAVİGASYON --- */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #5A5A5A;
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #e85a70;
    border-bottom-color: #e85a70;
}

.search-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-icon input {
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid #ccc;
    outline: none;
    transition: all 0.3s ease;
    width: 150px;
}

/* BU KISIM İKONU GÖRÜNÜR YAPAN KODDUR */
.search-icon svg {
    width: 22px;
    /* İkona genişlik verir */
    height: 22px;
    /* İkona yükseklik verir */
    fill: #474704;
    /* İkonun rengini belirler */
    cursor: pointer;
    /* Üzerine gelince el işareti çıkar */
}

/* --- HERO BÖLÜMÜ --- */
#hero {
    background-color: #F49A86;
    padding: 40px 20px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 30px;
}

.hero-content img {
    max-width: 855px;
    width: 100%;
    height: auto;
}

.cta-button {
    /* ID yerine class kullandığımız için nokta ile başlıyor */
    display: inline-block;
    background-color: #343403;
    color: #fff;
    /* White yerine #fff daha standart */
    padding: 14px 30px;
    /* Orijinal padding */
    border-radius: 30px;
    font-weight: 600;
    /* Bold yerine 600 daha iyi kontrol sağlar */
    text-decoration: none;
    transition: all 0.3s ease;
    /* Tüm dönüşümler için yumuşak geçiş */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Orijinal gölge */
}

.cta-button:hover {
    background-color: #5d5d05;
    transform: translateY(-3px);
    /* Kaydırma efekti geri geldi */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    /* Hover'daki gölge */
}

/* --- ÜRÜNLER BÖLÜMÜ - YENİ DÜZENLEME --- */
#urunler {
    padding-top: 60px;
    background-color: #fff;
}

.urunler-baslik h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #424204;
}

.urun-tanitim {
    width: 100%;
    padding: 80px 0;
    overflow: hidden;
}

.urun-icerik {
    display: flex;
    align-items: center;
    gap: 30px;
    /* Boşluk azaltıldı */
}

.urun-tanitim.ters .urun-icerik {
    flex-direction: row-reverse;
}

/* GÜNCELLEME: Görsel alanı metin alanına göre çok daha büyük */
.urun-gorsel {
    flex: 2;
    /* Görsel alanı */
    text-align: center;
}

.urun-bilgi {
    flex: 1;
    /* Metin alanı */
}

.urun-gorsel img {
    width: 100%;
    max-width: 750px;
    /* Maksimum genişlik artırıldı */
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 0 auto;
}

.urun-bilgi h3 {
    font-size: 2.5rem;
    /* Boyut biraz küçültülerek metin alanına sığdırıldı */
    color: #343403;
    margin-bottom: 15px;
}

.urun-bilgi p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* --- HAKKIMIZDA VE DİĞER BÖLÜMLER --- */
#hakkimizda {
    background-color: #343403;
    color: white;
    text-align: center;
}

#hakkimizda h2 {
    color: #fff;
}

#hakkimizda p {
    max-width: 800px;
    margin: 0 auto;
}

#iletisim {
    background-color: #fff;
    text-align: center;
}

footer {
    background: #f1f1f1;
    color: #333;
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #ddd;
}

/* ... (Diğer stiller aynı) ... */

@media (max-width: 768px) {

    .header-bottom,
    .search-icon,
    .hamburger-menu {
        display: none;
    }

    main {
        padding-top: 120px;
        /* Header'a çakışmasın */
    }

    .site-header {
        position: fixed;
        /* Yukarıda sabit kalsın */
        top: 0;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 999;
        transition: all 0.3s ease;
    }

    .logo {
        width: 100px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 15px;
    }

    /* --- SCROLL SONRASI HEADER GÖRÜNÜMÜ --- */
    .site-header.scrolled {
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 5px 0;
    }

    /* Ürün kısımları */
    .urun-tanitim {
        padding: 60px 0;
    }

    .urun-icerik,
    .urun-tanitim.ters .urun-icerik {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .urun-gorsel {
        flex: none;
        width: 100%;
    }

    .urun-gorsel img {
        width: 100%;
        border-radius: 0;
        box-shadow: none;
    }

    .urun-bilgi {
        flex: none;
        width: 100%;
        padding: 0 25px;
    }

    .urun-bilgi h3 {
        font-size: 2.2rem;
    }

    #hakkimizda p,
    #iletisim {
        padding: 20px;
    }
}