.category-list {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: start;
}

.category-card {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 0.8rem 1rem;
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    min-width: 140px;
}

    .category-card:hover {
        background: #eaeaea;
        transform: translateY(-2px);
    }

    .category-card img {
        width: 60px;
        height: 60px;
        object-fit: contain;
    }

    .category-card .category-title {
        font-size: 0.8rem;
        color: #111;
        font-weight: bold;
        white-space: nowrap;
    }

@media (max-width: 480px) {
    .category-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 12px;
    }

    .category-card {
        min-width: 160px;
        padding: 0.8rem 1rem;
    }

        .category-card img {
            width: 36px;
            height: 36px;
        }

        .category-card .category-title {
            font-size: 0.95rem;
        }
}
