
.category-item {
    border: 1px solid #E2E2E2;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    width: 126px;
    height: 159px;
    gap: 7px;
}

.category-item h3 {
    font-size: 18px;
    font-weight: bold;
    color: #000000 !important;
    margin: 0 !important;
}

.category-item span {
    font-size: 15px;
    font-weight: 400 ;
    color: #777070 !important;
}

.category-item img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 5px;
    object-fit: cover;
}

.category-item:hover h3,
.category-item:hover span {
    color: #4166D0 !important;
}


.title {
    font-size: 26px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

/* --- OK TASARIMI (ALTTAKİ OKLARLA AYNI) --- */
.category-nav {
    display: flex;
    gap: 12px;
}

.category-nav button {
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-nav button:active {
    transform: scale(0.95);
}





