/* Tüm kategori alanı (header stili ile uyumlu) */
.category-img-container {
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 6px;
    padding: 15px 20px;
    margin: 20px 0;
}

/* Kategori kartlarını yatayda hizalama */
.category-img-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* Her bir kategori kartı */
.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #212529;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover efekti */
.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Yuvarlak kategori görseli */
.category-thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f8f9fa;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 2px solid #fff;
    margin-bottom: 8px;
}

/* Kategori adı */
.category-title {
    font-size: 0.875rem;
    text-align: center;
}
