.category-section {
    padding: 15px;
}

.category-container {
    display: flex;
    align-items: top;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 5px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 125px;
    background: #fff;
    border-radius: 15px;
    padding: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

@media (max-width: 768px) {
    .category-container {
        gap: 10px;
    }
    .category-card {
        width: 150px;
    }
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.category-card img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 8px;
}

.category-card p {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0;
}
