/* Renk paleti: beyazımsı ( #fdfdfd ), kahverengi tonları (#6b4f4f, #8c5c5c) */
* { box-sizing: border-box; margin:0; padding:0; }
body {
font-family:"Nunito Sans", Arial, sans-serif;
  background: #fdf6ec;
  color: #333;
}

/* Header */
header { background: #fff; }
.logo-container { text-align:center; padding:1rem; }
#logo { max-height:60px; }

/* Kategori butonları yatay kaydırılabilir */
.categories-container {
  display: flex;
  overflow-x: auto;
  background: #fdf6ec;
  padding: 0.5rem;
  -ms-overflow-style: none;  /* IE */
  scrollbar-width: none;     /* Firefox */
}
.categories-container::-webkit-scrollbar { display: none; }

/* Ana içerik ortalanmış ve maksimum genişlik */
.main-content {
  max-width:1200px;
  margin:0 auto;
}

/* Genel ürün bölümü */
.products-container {
  display: block;
  padding:1rem;
}
.category-title {
  text-align:center;
  margin:2rem 0 1rem;
  font-size:1.5rem;
  color:#996633;
}
.category-products {
  display:flex;
  flex-direction:column;
  gap:1rem;
}





/* Ürün kart */
.product-card {
  width:100%;
  background: #fdf4e8;
  border-radius:10px;
  padding:1rem;
  display:flex;
  flex-direction:row;
  align-items:flex-start;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.product-card img {
  flex-shrink:0;
  width:100px;
  border-radius:8px;
  margin-right:1rem;
}
.product-info {
  display:flex;
  flex-direction:column;
  flex:1;
}
.product-info h3 {
  margin:0 0 .5rem;
  font-size:1.1rem;
}
.product-info p {
  margin:0 0 .5rem;
  font-size:.9rem;
  color:#555;
}
.product-info .price {
  margin-top:auto;
  font-size:1.1rem;
  color:#8c5c5c;
}

/* Mobil görünüm */
@media (max-width:600px) {
  .product-card {
    flex-direction:column;
    align-items:flex-start;
    padding:.5rem;
  }
  .product-card img {
    width:80px;
    margin:0 0 .5rem;
  }
  .product-info h3 { font-size:1rem; }
  .product-info p { display:none; }
  .product-info .price { font-size:1rem; }
  
}



    
