.romipack-category-menu {
    display: flex;
    align-items: center;
    position: relative;
}
.romipack-items {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 10px;
}
.romipack-menu-item {
    padding: 10px 20px;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}
.romipack-menu-item.active {
    border-bottom: 2px solid black;
}
.romipack-arrow {
    background: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
}
@media(min-width: 768px) {
    .romipack-arrow {
        display: none;
    }
}
