/* Ürün Açıklama Alanı Başlık ve Liste Stilleri */
.urun_aciklama h2 { font-size: 20px !important; }
.urun_aciklama h3 { font-size: 18px !important; }
.urun_aciklama h4 { font-size: 16px !important; }
.urun_aciklama p  { font-size: 14px !important; }
.urun_aciklama ul,
.urun_aciklama li {
    font-size: 14px !important;
    list-style: inherit !important;
}
.table-bordered:nth-of-type(2) {
  display: none !important;
}
#sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 2px solid #ff9900;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
  padding: 12px 15px;
  display: none;
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
}

/* İç Yapı */
#sticky-bar .sticky-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

/* Ürün Adı */
#sticky-bar .sticky-name {
  font-size: 16px; /* mobilde daha dengeli */
  font-weight: 500;
  color: #000;
  flex: 2;
  white-space: normal;   /* ? bu satırı değiştiriyoruz */
  word-break: break-word; /* ? kelime kesmeyi aktif ediyoruz */
  line-height: 1.2;
}

/* Fiyat Grubu */
#sticky-bar .sticky-price-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 1;
}

#sticky-bar .sticky-price-old {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
  margin-right: 5px;
}

#sticky-bar .sticky-price {
  font-size: 18px;
  font-weight: bold;
  color: #ff6600;
}

#sticky-bar .sticky-discount {
  font-size: 13px;
  font-weight: 600;
  background: #28a745;
  color: #fff;
  padding: 4px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

/* Sepete Ekle Butonu */
#sticky-bar .sticky-btn {
  background-color: #ff9900;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  border: none;
  flex-shrink: 0;
}

/* ? Mobil Görünüm */
@media (max-width: 768px) {
  #sticky-bar .sticky-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  #sticky-bar .sticky-name {
    font-size: 17px;
    text-align: center;
  }

  #sticky-bar .sticky-price-group {
    align-items: flex-start;
  }

  #sticky-bar .sticky-btn {
    width: 100%;
    font-size: 16px;
  }

  #sticky-bar .sticky-price-old {
    font-size: 16px;
  }

  #sticky-bar .sticky-price {
    font-size: 23px;
  }

  #sticky-bar .sticky-discount {
    font-size: 14px;
    margin-top: 0px;
    padding: 10px 8px;
  }
}

@media (max-width: 768px) {
  .urun_taglari .icerik {
    display: none;
    transition: all 0.3s ease-in-out;
    padding-top: 10px;
  }

  .urun_taglari.acik .icerik {
    display: block;
  }

  .urun_taglari .baslik {
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
  }

  .urun_taglari .baslik::after {
    content: "+";
    position: absolute;
    right: 10px;
    font-size: 18px;
    transition: transform 0.3s;
  }

  .urun_taglari.acik .baslik::after {
    content: "-";
    transform: rotate(180deg);
  }
}
