/* --- TEMEL AYARLAR, DEĞİŞKENLER VE GENEL STİLLER --- */
:root {
    --primary-color: #f8f5f0;
    --secondary-color: #6b705c;
    --text-color: #333333;
    --light-gray: #e0e0e0;
    --white-color: #ffffff;
    --border-color: #e8e3da;
    --error-color: #c94a4a;
    --success-color: #2a643b;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
}
html { scroll-behavior: smooth; box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
    font-family: var(--font-sans); margin: 0; background-color: var(--primary-color);
    color: var(--text-color); font-size: 16px; line-height: 1.6;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.homepage-section { padding: 4rem 0; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem; }
.section-title { font-family: var(--font-serif); text-align: left; font-size: 2.5rem; margin: 0; font-weight: 700; color: #4a4a4a; }
.see-all-link { text-decoration: none; color: var(--secondary-color); font-weight: 500; }
.btn { /* ... Önceki yanıttaki buton stilleri ... */ }

/* --- ANA SAYFA: YENİ BÖLÜMLER (HİKAYE, ATÖLYE, INSTAGRAM) --- */
.brand-story-section { display: flex; align-items: center; gap: 4rem; padding: 5rem 2rem; }
.story-image { flex: 1; }
.story-image img { width: 100%; height: auto; object-fit: cover; }
.story-content { flex: 1; }
.story-content .section-title { text-align: left; }
.story-content p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 2rem; }
/* ... Diğer ana sayfa bölüm stilleri ... */

/* --- ÜRÜN KARTI & KAYDIRICI (CAROUSEL) --- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.product-card { /* ... Önceki yanıttaki ürün kartı stilleri ... */ }

/* --- SEPET SAYFASI --- */
.cart-page .page-title { text-align: center; }
.cart-layout { /* ... Önceki yanıttaki sepet stilleri ... */ }

/* --- TOAST BİLDİRİMİ --- */
.toast { /* ... Önceki yanıttaki toast stilleri ... */ }

/* --- GENEL MOBİL UYUMLULUK --- */
@media (max-width: 768px) {
    /* ... Sadece genel mobil stiller burada kalır ... */
    .container, .section-header { padding: 0 1rem; }
    .homepage-section { padding: 2rem 0; }
    .product-carousel-wrapper { /* ... */ }
    .product-grid.is-carousel .product-card img { height: 240px; }
}