:root {
    --primary: #4A5D4E;
    --accent: #A64433;
    --text-light: #F9F7F2;
    --transition: all 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { font-family: 'Inter', sans-serif; overflow-x: hidden; background: #fff; }

/* HEADER & NAVBAR */
.main-header {
    position: absolute;
    width: 100%;
    z-index: 1000;
    padding: 30px 5%;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo { 
    max-width: 280px; 
    height: auto; 
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.nav-links {
    position: absolute;
    right: 0;
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* HERO SECTION */
.hero {
    height: 100vh;
    background: url('bg.png') no-repeat center center/cover;
    position: relative;
    z-index: 1;
}

.hero-overlay {
    background: rgba(0,0,0,0.3);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    margin-top: 150px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-content p { color: white; margin-bottom: 30px; font-size: 1.2rem; }

/* BUTTONS */
.btn { padding: 15px 35px; border-radius: 50px; text-decoration: none; font-weight: 600; display: inline-block; transition: var(--transition); }
.btn-primary { background: var(--primary); color: white; margin-right: 15px; }
.btn-secondary { border: 1px solid white; color: white; background: rgba(255,255,255,0.1); }

/* ÜRÜNLER BÖLÜMÜ GÜNCELLEME */
 .products-section {
    padding: 100px 5%;
    background-color: #fdfbf7; /* Hafif kremsi, organik bir doku */
    position: relative;
}

/* Başlık alanını sadeleştirelim */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 40px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    font-style: italic;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ÜRÜNLERİ CANLANDIRAN ÖZEL DOKUNUŞ */
.product-card {
    background: #ffffff;
    border-radius: 30px; /* Köşeleri daha çok yumuşatıyoruz */
    padding: 30px;
    border: 1px solid rgba(74, 93, 78, 0.05); /* Çok hafif yeşilimsi bir çerçeve */
    box-shadow: 0 10px 40px rgba(0,0,0,0.03); /* Çok hafif, doğal bir gölge */
    transition: all 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08); /* Hover yapınca çok hafif yakınlaşır, şık durur */
}

.product-image {
    width: 100%;
    height: 380px; /* Sabit yükseklik tüm kartları eşitler */
    border-radius: 12px;
    overflow: hidden;
    background: #f4f1ea;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fotoğrafı sünnetmeden alanı doldurur */
}

/* Kartların içindeki metin alanını rahatlatalım */
/* Kartların içindeki metin alanını rahatlatalım */
.product-info {
    padding: 10px 5px;
    text-align: left; /* Yazıları sola yaslamak butik havayı artırır */
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    min-height: 3.2rem; /* Başlıklar farklı uzunlukta olsa da butonlar hizalı kalır */
}

/* Buton ve durum yazısını hizalayalım */
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

/* Butonu Canlandır */
.btn-detail {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(74, 93, 78, 0.3);
    transition: 0.3s;
}

.btn-detail:hover {
    background: var(--accent);
    box-shadow: 0 6px 20px rgba(166, 68, 51, 0.4);
}
/* MODAL */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 2000; align-items: center; justify-content: center; }
.modal-card { background: white; padding: 40px; border-radius: 20px; max-width: 500px; position: relative; }
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr; /* Mobilde kartlar tek sıra olur */
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}