/* --- TEMEL AYARLAR --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fbf9f6; /* Kırık beyaz, çok hafif bej */
    font-family: 'Poppins', sans-serif;
    color: #4a3c31;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- ÜST BANT --- */
.top-bar {
    background-color: #e8dbce;
    color: #594a3a;
    text-align: center;
    padding: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* --- KAPSAYICI --- */
.container {
    max-width: 1000px; /* PC'de yayılmayı önler */
    margin: 0 auto;
    padding: 40px 20px;
    flex: 1;
    width: 100%;
}

/* --- HEADER & LOGO --- */
.header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e8dbce;
}
.logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #594a3a;
    letter-spacing: 2px;
}
.logo-title span {
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}
.subtitle {
    font-size: 1.1rem;
    color: #8c7b6c;
    margin-top: 5px;
}

/* --- ANA BAŞLIK --- */
.hero {
    text-align: center;
    margin-bottom: 40px;
}
.coming-soon {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #b08d57;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.desc {
    font-size: 1rem;
    color: #666;
}

/* --- ÖZELLİKLER (ZARİF) --- */
.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 500;
    color: #594a3a;
}
.icon-ring {
    font-size: 1.4rem;
}

/* --- ÜRÜN KARTLARI VE GÖRSELLER (KRİTİK KISIM) --- */
.products {
    display: grid;
    /* PC'de 4 sütun, tablette 2 sütun, mobilde 1 veya 2 sütun yapar */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.product-card {
    text-align: center;
}
.img-frame {
    width: 100%;
    aspect-ratio: 1 / 1; /* Görselleri tam kare bir çerçeveye oturtur */
    overflow: hidden; /* Dışa taşmayı engeller */
    border-radius: 12px; /* Zarif yuvarlak köşeler */
    box-shadow: 0 8px 20px rgba(0,0,0,0.04); /* Çok hafif, şık bir gölge */
    margin-bottom: 15px;
    background-color: #fff; /* Görsellerin arkası temiz dursun diye */
}
.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi ezmeden, çerçeveye mükemmel sığdırır */
    transition: transform 0.4s ease; /* Üzerine gelince yavaşça büyüsün */
}
.img-frame img:hover {
    transform: scale(1.05); /* Şık hover efekti */
}
.product-card p {
    font-size: 1.05rem;
    font-weight: 500;
    color: #4a3c31;
    font-family: 'Playfair Display', serif; /* İsimleri daha şık göstermek için */
}

/* --- BUTON --- */
.btn-container {
    text-align: center;
    margin-bottom: 20px;
}
.explore-btn {
    display: inline-block;
    padding: 14px 45px;
    border: 2px solid #b08d57;
    color: #b08d57;
    background-color: transparent;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.explore-btn:hover {
    background-color: #b08d57;
    color: white;
}

/* --- FOOTER --- */
.footer {
    background-color: #ebe2d8;
    padding: 20px;
}
.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #594a3a;
}
.socials a {
    color: #b08d57;
    text-decoration: none;
    font-weight: 600;
}

/* --- MOBİL UYUM (RESPONSIVE) --- */
@media (max-width: 768px) {
    .logo-title { font-size: 2.2rem; }
    .coming-soon { font-size: 2.3rem; }
    .features { flex-direction: column; gap: 15px; align-items: center; }
    .products { grid-template-columns: repeat(2, 1fr); gap: 15px; } /* Mobilde yanyana 2 kibar kutu */
    .footer-inner { flex-direction: column; gap: 10px; text-align: center; }
}