.accessories-tabs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.accessories-tabs::-webkit-scrollbar {
    display: none;
}

.accessories-tabs {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.accessories-tab-item {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    padding: 0 8px;
    height: 36px;
    border-radius: 8px;
    background-color: #fff;
    color: #757575;
    cursor: pointer;
    font-size: 16px;
}

.accessories-tab-item.active {
    background-color: #FEDB1E;
    color: #1E1E1E;
}

@media screen and (max-width: 1440px) {
    .accessories-tab-item {
        height: 27px;
        font-size: 12px;
    }
}