.urun-bilgi-section {
  padding: 60px 20px;
  background: #fff8e1;
}

.urun-bilgi-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* GÖRSEL */
.urun-bilgi-gorsel img {
  width: 100%;
  max-width: 320px;   /* ✔ küçültüldü */
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}


@media (max-width: 768px) {

  .urun-bilgi-container {
    align-items: center !important;
  }

  .urun-bilgi-gorsel {
    width: 100%;
    text-align: center;
  }

  .urun-bilgi-gorsel img {
    display: inline-block;
    margin: 0 auto 30px auto;
  }

}

/* İÇERİK */
.urun-bilgi-icerik h2 {
  color: #b88a00;
  margin-bottom: 20px;
}

#urun-aciklama {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 24px;
  max-width: 520px;
}

/* === GRAMAJ ALANI === */
.urun-gramaj{
  margin-bottom: 16px;

}

.gramaj-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-bottom: 24px;
}

/* Gramaj butonları */
.gramaj-btn {
  padding: 9px 18px;
  border-radius: 20px;
  border: 1px solid #d6b86a;
  background: #fff;
  color: #6a4c00;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 12px;
}

/* Hover */
.gramaj-btn:hover {
  background: #fff3cd;
}

/* Aktif gramaj */
.gramaj-btn.active {
  background: #b88a00;
  color: #fff;
  border-color: #b88a00;
  box-shadow: 0 4px 10px rgba(184,138,0,0.35);
}

/* === FİYAT ALANI === */
.urun-fiyat {
  margin-top: 26px;
  margin-bottom: 18px;
  padding: 14px 20px;
  display: inline-block;
  background: #fffdf6;
  border-left: 4px solid #b88a00;
  border-radius: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #2d2d2d;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* TL / açıklama gibi küçük metin varsa */
.urun-fiyat span {
  display: block;
  margin-top: 4px;
  font-size: 0.85rem;
  font-weight: 400;
  color: #777;
}

@media (max-width: 768px) {
  .urun-fiyat {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}



/* Mobil uyum */
@media (max-width: 576px) {
  .gramaj-list {
    justify-content: center;
  }

  .gramaj-btn {
    font-size: 0.85rem;
    padding: 8px 16px;
    margin-bottom: 8px;
  }
}


#urun-ozellikler {
  list-style: none;
  padding: 0;
  margin-top: 16px;
  margin-bottom: 25px;
}

#urun-ozellikler li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

#urun-ozellikler li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #b88a00;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .urun-bilgi-container {
    flex-direction: column;
    text-align: center;
  }

  #urun-ozellikler {
    text-align: center;
  }

  #urun-ozellikler li {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
    gap: 8px;
    margin-bottom: 14px;
  }

  #urun-ozellikler li::before {
    position: static;
  }

}
/* === WHATSAPP BUTONU FIX === */
a.urun-whatsapp-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 14px 28px !important;
  background-color: #25D366 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 40px !important;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35) !important;
  transition: all 0.3s ease !important;
}

a.urun-whatsapp-btn i {
  font-size: 20px !important;
}

a.urun-whatsapp-btn:hover {
  background-color: #1ebe5d !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
}

/* BUTON GRUBU */
.urun-butonlar {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* GERİ DÖN BUTONU */
a.urun-devam-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border: 2px solid #b88a00;
  color: #b88a00;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 40px;
  transition: all 0.3s ease;
  background: transparent;
}

a.urun-devam-btn i {
  font-size: 14px;
}

a.urun-devam-btn:hover {
  background: #b88a00;
  color: #fff;
  transform: translateY(-2px);
}

/* MOBİL */
@media (max-width: 768px) {
  .urun-butonlar {
    flex-direction: column;
    align-items: stretch;
  }

  .urun-butonlar a {
    justify-content: center;
  }
}

.guven-bilgi-section {
  margin-top: 25px;
  padding: 50px 20px;
  background: #fff8ec; /* bal tonuna yakın */
}

.guven-bilgi-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.guven-item {
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.guven-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

.guven-item i {
  font-size: 34px;
  color: #b88a00;
  margin-bottom: 15px;
}

.guven-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.guven-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .guven-bilgi-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .guven-bilgi-container {
    grid-template-columns: 1fr;
  }
}


