/* Kategori Sayfası Ürün Kutusu Düzeltmesi */
#PM_orta div.urun {
    height: auto !important; /* Sabit yüksekliği kaldırıp içeriğe göre esnetir */
    min-height: 380px; /* Kutuların hizalı durması için bir alt sınır belirler */
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding-bottom: 15px !important;
}

/* Ürün Resim Alanı */
#PM_orta .urun_resim {
    height: 200px !important; /* Resim alanını sabitleyerek isimleri yukarı çeker */
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 15px !important;
}

#PM_orta .urun_resim img {
    max-height: 100% !important;
    width: auto !important;
    object-fit: contain; /* Resmi bozmadan kutuya sığdırır */
}

/* Ürün İsim Alanı (Başlık) */
#PM_orta .urun_baslik {
    height: auto !important;
    min-height: 45px; /* İsimlerin (2 satır bile olsa) hizalı durmasını sağlar */
    margin-top: 10px !important;
    padding: 0 5px !important;
    overflow: visible !important; /* İsmin kesilmesini engeller */
    text-align: center;
}

#PM_orta .urun_baslik a {
    font-size: 14px !important;
    line-height: 1.3 !important;
    color: #333 !important;
    display: block !important;
}

/* Fiyat Alanı */
#PM_orta .urun_fiyat {
    margin-top: auto !important; /* Fiyatı her zaman en alta iter */
    padding-top: 10px;
    text-align: center;
}