.category-section {
    padding: 20px;
    margin-bottom: 30px;
 
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-weight: bold;
    font-size: 18px;
}

.see-all {
    color: red;
    text-decoration: none;
    font-size: 14px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.category-item {
    text-align: center;
}

.category-item img {
    width: 100%;
    max-width: 120px;
    height: auto;
    margin-bottom: 10px;
}

.category-name {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.item-count {
    font-size: 12px;
    color: #666;
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
