/* Ana sayfa ürünlerde "Sepete Ekle" görünür kalsın */
body #PM_anasayfa #PM_anasayfa_urunler .btn-success {
  opacity: 1;
}

/* Kategori alanı (sınıf adını olduğu gibi bıraktım) */
.categoriess {
  background-color: #fff;
  max-width: 1155px;
  margin: 0 auto; /* ortala */
}

/* Mobilde "YENİ" rozeti – tek medya sorgusu */
@media (max-width: 768px) {
  .urun_liste .yeni_urun_ikon:before,
  .urun .yeni_urun_ikon:before {
    content: 'YENİ';
    display: block;
    color: #fff;
    font-size: 8px;
    line-height: 1.25;
  }
}

@media only screen and (max-width: 768px) {
  .categoriess ul .owl-stage .owl-item li a span {
    color: #000000;
    font-weight: 900;
    font-size: 12px; /* mobilde biraz daha okunabilir boyut */
    transition: all .2s ease-in-out 0s;
  }
}

.categoriess ul .owl-stage .owl-item li a {
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding: 0px;
    line-height: 1rem
}

@media only screen and (min-width: 769px) {
  .categoriess ul .owl-stage .owl-item li a span {
    color: #222;
    font-weight: 900;
    font-size: 1rem;
    transition: all .2s ease-in-out 0s;
  }
}

@media (min-width: 992px) {
  .categoriess #category_title {
      font-family: 'Segoe UI', Arial, sans-serif;
      font-weight: 700;
      font-size: 1.8rem;
      text-transform: uppercase;
      text-align: center;
      letter-spacing: 1px;
      color: #2b2b2b;
      border-bottom: 2px solid #bfa153;
      padding-bottom: 0.6rem;
      margin: 1.5rem auto 0.8rem;
      width: fit-content;
  }
}

@media (max-width: 991px) {
  .categoriess #category_title {
      font-family: 'Segoe UI', Arial, sans-serif;
      font-weight: 700;
      font-size: 1.2rem;
      text-transform: uppercase;
      text-align: center;
      letter-spacing: 0.5px;
      color: #2b2b2b;
      border-bottom: 1px solid #c6a857;
      padding-bottom: 0.4rem;
      margin-top: 0rem;
      /* width: fit-content; */
      text-align: center;
  }
}


