/* Add custom CSS styles below */ 
.subcategory-slider {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
    background: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.subcategory-container {
    display: flex;
    gap: 10px;
    padding: 10px;
}

.subcategory-item {
    display: inline-block;
    padding: 8px 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.subcategory-item:hover {
    background: #ddd;
}