/* MAIN CONTAINER */
.seiten-menu {
    padding:14px 10px;
    border-bottom:1px solid #1f2a36;
    overflow: visible;
}

/* ---------------- TABS ---------------- */
.seiten-menu .tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    list-style: none;

    position: sticky;
    top: 100px;
    z-index: 99;

    background: #0f1720;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 15px;

    overflow-x: auto; /* 🔥 enable scroll */
    justify-content: flex-start; /* 🔥 fix left hidden issue */

    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* prevent left cut / start from first tab */
.seiten-menu .tabs {
    scroll-padding-left: 10px;
}

/* TAB ITEM */
.seiten-menu .tabs li {
    flex: 0 0 auto; /* 🔥 prevents shrink */
    padding: 10px 16px;
    background: #1e293b;
    color: #ccc;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: 0.2s;
    white-space: nowrap;
}

.seiten-menu .tabs li.active {
    background: #ff8c00;
    color: #fff;
    font-weight: 600;
}

.seiten-menu .tabs li:hover {
    background: #ff8c00;
    color: #fff;
}

/* ---------------- MENU ITEM ---------------- */
.seiten-menu .item {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding:14px 0;
    border-bottom:1px solid #1f2a36;
}

/* IMAGE */
.seiten-menu .img img {
    width:60px;
    height:60px;
    border-radius:8px;
    object-fit:cover;
    background: #fff;
    padding: 5px;
}

/* TEXT */
.seiten-menu .info {
    flex:1;
}

.seiten-menu .info h4 {
    margin:0;
    font-size:15px;
    font-weight:700;
    color:#ff8c00;
}

.seiten-menu .info p {
    margin:4px 0 0;
    font-size:13px;
    color:#aaa;
}

/* PRICE */
.seiten-menu .price {
    font-weight:700;
    color:#ff8c00;
    font-size:15px;
    min-width:70px;
    text-align:right;
}

/* ---------------- TAB CONTENT ---------------- */
.seiten-menu .tab-content {
    display: none;
}

.seiten-menu .tab-content.active {
    display: block;
}

/* ---------------- MOBILE ---------------- */
@media (max-width:768px) {

    .seiten-menu {
        padding:15px;
    }

    .seiten-menu .item {
        flex-direction:column;
        align-items:flex-start;
    }

    .seiten-menu .price {
        text-align:left;
        margin-top:5px;
    }

    .seiten-menu .tabs {
        gap:8px;
        padding:10px;
    }

    .seiten-menu .tabs li {
        font-size:12px;
        padding:8px 12px;
    }
}

/* SCROLLBAR */
.seiten-menu .tabs::-webkit-scrollbar {
    height:5px;
}

.seiten-menu .tabs::-webkit-scrollbar-thumb {
    background:#ff8c00;
    border-radius:10px;
}

/* DESKTOP CENTER ONLY IF NO SCROLL */
@media (min-width:769px) {
    .seiten-menu .tabs {
        flex-wrap: wrap; /* 🔥 important */
        justify-content: center;
        overflow-x: visible;
    }
}