/* Oska Gurme - Bayi Haritası
   Renkler sitenin genel paletinden alındı:
   kırmızı #e3000e, sarı #f7be27, kahve #6f5e4d, krem #fbf7e8 */

.bayi-harita-section {
  padding: 80px 0;
  background-color: #fbf7e8;
  position: relative;
  overflow: hidden;
}

.bayi-harita-section .section-title {
  margin-bottom: 40px;
  text-align: center;
}

.bayi-harita-section .section-title h2 {
  color: #e3000e;
  margin-bottom: 12px;
}

.bayi-harita-section .section-title p {
  color: #6f5e4d;
  max-width: 760px;
  /* Tema .section-title p için yüzdeli yan boşluk veriyor; burada metnin
     gereksiz daralmaması için sıfırlanıp genişlik max-width ile ayarlanıyor. */
  padding: 0 15px;
  margin: 0 auto;
}

/* --- Sayı kutuları --- */

.bayi-istatistik {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.bayi-istatistik-kutu {
  background: #fff;
  border-radius: 6px;
  padding: 22px 34px;
  min-width: 190px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(111, 94, 77, 0.12);
  border-bottom: 3px solid #e3000e;
}

.bayi-istatistik-kutu:nth-child(2) {
  border-bottom-color: #f7be27;
}

.bayi-istatistik-kutu:nth-child(3) {
  border-bottom-color: #6f5e4d;
}

.bayi-istatistik-sayi {
  font-family: "Oswald", sans-serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 600;
  color: #e3000e;
  display: block;
  margin-bottom: 6px;
}

.bayi-istatistik-kutu:nth-child(2) .bayi-istatistik-sayi {
  color: #d69f00;
}

.bayi-istatistik-kutu:nth-child(3) .bayi-istatistik-sayi {
  color: #6f5e4d;
}

.bayi-istatistik-etiket {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 14px;
  color: #6f5e4d;
}

/* --- Harita --- */

.bayi-harita-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.bayi-harita-durum {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 0 10px;
}

.bayi-harita-durum p {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #6f5e4d;
  text-align: center;
  transition: opacity 0.2s;
}

.bayi-harita-durum p strong {
  color: #e3000e;
  font-weight: 600;
}

.bayi-harita {
  position: relative;
  width: 100%;
  min-height: 180px;
}

.bayi-harita svg {
  display: block;
  width: 100%;
  height: auto;
}

.bayi-harita-yukleniyor {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  color: #a89d88;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.5px;
}

/* İl yolları: varsayılan pasif görünüm */
.bayi-harita svg path {
  fill: #ded7c8;
  stroke: #fbf7e8;
  stroke-width: 0.7;
  transition: fill 0.18s ease-in-out;
}

.bayi-harita svg g[data-bayi="1"] path {
  fill: #e3000e;
  cursor: pointer;
}

.bayi-harita svg g[data-bayi="1"]:hover path,
.bayi-harita svg g[data-bayi="1"].secili path {
  fill: #f7be27;
}

.bayi-harita svg g[data-bayi="0"]:hover path {
  fill: #c9c0ac;
}

/* İmleci takip eden ipucu (yalnızca fare destekli cihazlarda) */
.bayi-harita-ipucu {
  position: fixed;
  z-index: 60;
  pointer-events: none;
  background: #2f2a24;
  color: #fff;
  padding: 7px 13px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.35;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, -130%);
  transition: opacity 0.12s;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.bayi-harita-ipucu.acik {
  opacity: 1;
}

.bayi-harita-ipucu strong {
  color: #f7be27;
}

/* --- İl listesi (mobilde haritanın yerini tutar, ayrıca SEO için) --- */

.bayi-il-listesi {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  /* Esnek yerleşim: il sayısı az olduğunda kartlar ortalanır,
     çoğaldığında satırlara yayılır. */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.bayi-il-listesi li {
  flex: 0 1 232px;
  background: #fff;
  border-radius: 5px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: 0 2px 10px rgba(111, 94, 77, 0.1);
  border-left: 3px solid #e3000e;
}

.bayi-il-listesi .il-adi {
  font-family: "Oswald", sans-serif;
  font-size: 17px;
  color: #3c352c;
  margin: 0;
}

.bayi-il-listesi .il-bayi {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: #e3000e;
  border-radius: 20px;
  padding: 3px 12px;
  white-space: nowrap;
}

.bayi-harita-bos {
  text-align: center;
  color: #6f5e4d;
  margin: 24px 0 0;
}

/* --- Responsive --- */

@media (max-width: 991px) {
  .bayi-harita-section {
    padding: 60px 0;
  }

  .bayi-istatistik-kutu {
    min-width: 150px;
    padding: 18px 22px;
  }

  .bayi-istatistik-sayi {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .bayi-harita-section {
    padding: 46px 0;
  }

  .bayi-istatistik {
    gap: 12px;
    margin-bottom: 28px;
  }

  .bayi-istatistik-kutu {
    flex: 1 1 45%;
    min-width: 0;
    padding: 16px 12px;
  }

  .bayi-istatistik-sayi {
    font-size: 28px;
  }

  .bayi-istatistik-etiket {
    font-size: 12px;
  }

  .bayi-harita-durum {
    min-height: 40px;
  }

  .bayi-harita-durum p {
    font-size: 16px;
  }

  /* Küçük ekranda iller dokunmak için fazla küçük kalıyor;
     ipucu yerine alttaki liste yönlendirici oluyor. */
  .bayi-il-listesi {
    gap: 10px;
    margin-top: 26px;
  }

  .bayi-il-listesi li {
    flex: 1 1 44%;
  }

  .bayi-il-listesi li {
    padding: 11px 13px;
  }

  .bayi-il-listesi .il-adi {
    font-size: 15px;
  }

  .bayi-il-listesi .il-bayi {
    font-size: 13px;
    padding: 2px 9px;
  }
}

@media (max-width: 400px) {
  .bayi-il-listesi li {
    flex: 1 1 100%;
  }
}

/* Dokunmatik cihazlarda hover ipucu yerine tıklama mesajı kullanılıyor */
@media (hover: none) {
  .bayi-harita-ipucu {
    display: none;
  }
}
