/* Ισχύει σε όλες τις συσκευές */
.mobile-swipe-menu {
    display: block;
    width: 100%;
    background: transparent;
    padding: 4px 0;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 999;
}

.mobile-swipe-menu .menu-items {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 12px;
    margin: 0;
    list-style: none;
    gap: 12px;
    align-items: center;
    min-height: 48px;
    scroll-snap-type: x mandatory;
}

.mobile-swipe-menu .menu-items::-webkit-scrollbar {
    display: none;
}

.mobile-swipe-menu .menu-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.mobile-swipe-menu .menu-item a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: none;
    line-height: 1.2;
    min-height: 0;
    height: auto;
    box-sizing: border-box;
    gap: 6px;
}

.mobile-swipe-menu .menu-item .menu-icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
    color: #F5C542;
    transition: color 0.2s;
    flex-shrink: 0;
}

.mobile-swipe-menu .menu-item .menu-label {
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0.2px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 500;
    color: #ffffff;
}

.mobile-swipe-menu .menu-item.active a {
    background: #f5a623;
    color: #1a1a2e;
    border-color: #f5a623;
    box-shadow: 0 4px 10px rgba(245, 166, 35, 0.3);
}

.mobile-swipe-menu .menu-item.active .menu-icon {
    color: #1a1a2e;
}

.mobile-swipe-menu .menu-item a:active {
    transform: scale(0.95);
    opacity: 0.85;
}

/* ===== ΠΡΟΣΘΗΚΗ: Κεντράρισμα σε οθόνες μεγαλύτερες από 1024px (desktop) ===== */
@media (min-width: 1024px) {
    .mobile-swipe-menu {
        max-width: 1200px;      /* Όριο πλάτους – αλλάξτε αν θέλετε άλλη τιμή */
        margin: 0 auto;         /* Κεντράρει το μενού οριζόντια */
        padding-left: 20px;     /* Προαιρετικό: λίγο εσωτερικό περιθώριο */
        padding-right: 20px;
    }


    .mobile-swipe-menu .menu-items {
        justify-content: center;  /* Κεντράρει τα κουμπιά όταν χωρούν */
    }
}