/* == Distributor Sayfası Stilleri == */

.distributor-products-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.distributor-product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 30px;
    justify-content: left;
}

.distributor-product-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 16px;
    background: #fff;
    width: 280px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-top: 10px;
}

.product-price {
    font-size: 20px;
    font-weight: bold;
    color: #256532;
    margin: 10px 0;
}

.distributor-buy-button {
    display: inline-block;
    background-color: #256532;
    color: white;
    padding: 8px 14px;
    text-decoration: none;
    border-radius: 4px;
}
.section-title {
    font-size: 24px;
    margin-top: 60px; /* Bu satır boşluğu artırır */
    margin-bottom: 20px;
    text-align: left;
}
/* === 6. Kategori Başlıkları ve Gruplar === */
.section-title {
  font-size: 24px;
  margin-top: 60px; /* önceki kategoriden boşluk */
  margin-bottom: 20px;
  font-weight: bold;
  color: #2d3436;
  text-align: left; /* başlığı sola yasla */
}

/* Her kategoriye ait ürün grubu */
.distributor-category-group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  justify-content: flex-start; /* sola hizalama */
}

/* Her ürün kartı zaten burada tanımlı, gerekirse tekrar edelim */
.distributor-product-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 16px;
  background: #fff;
  width: 280px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
}