﻿.products-grid .product-img {
    width: 100%;
    height: 250px; /* Sabit yükseklik */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
}

    .products-grid .product-img img {
        width: 100%;
        height: 100%;
        object-fit: fill; /* Çerçeveyi doldur, gerekirse resmi esnet */
    }


.product-categories {
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.category-btn {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #222; /* Koyu siyah */
    background-color: transparent;
    border: none;
    padding: 10px 24px;
    cursor: pointer;
    border-radius: 30px;
    transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-transform: capitalize;
    user-select: none;
}

    .category-btn:hover:not(.active) {
        color: #007BFF; /* Parlak mavi */
        box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    }

    .category-btn.active {
        background-color: #007BFF; /* Mavi dolgu */
        color: #fff; /* Beyaz yazı */
        box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
        font-weight: 600;
    }

    .category-btn:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
    }
