/* 1. Ürün ve Kategori Kutularını Eşitle */
.woocommerce ul.products li.product {
    display: flex !important;
    flex-direction: column !important;
    background: #f9f9f9; /* Hafif gri arka plan */
    padding: 0 !important; /* İç boşluğu sıfırla ki gri bant tam otursun */
    margin-bottom: 30px !important;
    text-align: center;
    border: 1px solid #eee;
}

/* 2. Resimleri Aynı Boyuta Zorla (Kırpmadan Sığdır) */
.woocommerce ul.products li.product img {
    width: 90% !important;
    height: 300px !important; /* Sabit yükseklik */
    object-fit: contain !important; /* Resmi bozmadan kutuya sığdırır */
    padding: 20px;
    background: #fff;
    /*margin: 0 !important;*/
		margin: 0 auto 15px auto !important;
}

/* 3. Başlık Alanını Sabitle (Uzun isimler hizayı bozmasın) */
.woocommerce-loop-category__title, 
.woocommerce-loop-product__title {
    padding: 15px 10px !important;
    font-size: 15px !important;
    min-height: 90px; /* Başlıkları aynı hizada tutar */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    background: #fff;
    font-weight: 500 !important;
    color: #333 !important;
}

/* Ürün sayısını gizle */
.woocommerce mark.count {
    display: none !important;
}

/* 4. DETAY Alanını Gri Bant Yap (Resimdeki gibi) */
.blue-message {
    background-color: #f2f2f2 !important; /* Resimdeki açık gri */
    color: #333 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 12px 0 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: 1px solid #e5e5e5;
}

/* 5. MOBİL: Tek Satır (Yan yana 1 tane) */
@media (max-width: 768px) {
    .woocommerce ul.products[class*="columns-"] li.product,
    .woocommerce-page ul.products[class*="columns-"] li.product {
        width: 100% !important;
        float: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
		    .woocommerce ul.products li.product a img {
        width: 70% !important; /* Mobilde resim çok devasa olmasın */
    }
}