.category-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px;
    align-items: center;
    justify-content: flex-start;
}

.category-item {
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    white-space: nowrap;
    flex: 0 0 auto;
}

.category-item.active {
    background-color: #007bff;
    color: white;
    border-color: #0056b3;
}

.category-item:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.no-products {
    text-align: center;
    padding: 20px;
    color: #6c757d;
    font-size: 1.1em;
}

/* Make sure text inside buttons stays on one line */
.category-item p {
    margin: 0;
    display: inline-block;
}

/* Add scrolling for smaller screens */
@media (max-width: 768px) {
    .category-grid {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
    }
}