/* ===== MOBILE MENU ===== */
.mm-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    overflow: hidden;
}

.mm-overlay.is-open {
    pointer-events: all;
}

.mm-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mm-overlay.is-open::before {
    opacity: 1;
}

.mm-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    height: 100%;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mm-overlay.is-open .mm-panel {
    transform: translateX(0);
}

/* Header */
.mm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: none;
    flex-shrink: 0;
}

.mm-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
}

/* Body */
.mm-body {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.mm-root {
    height: 100%;
    overflow-y: auto;
}

/* Lists */
.mm-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}
.mm-list, .mm-submenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mm-item {
    border-bottom: none;
}

.mm-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    text-decoration: none;
    color: #1e1e1e;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.15s;
}

.mm-link:hover {
    background: rgba(246,84,33,0.04);
}

.mm-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mm-label {
    flex: 1;
}

.mm-arrow {
    flex-shrink: 0;
    opacity: 1;
}

/* Back button */
.mm-back {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #F65421;
    cursor: pointer;
    border-bottom: none;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* Submenus — slide από δεξιά */
.mm-submenu {
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 1;
}

.mm-submenu.is-active {
    transform: translateX(0);
}

/* Level 3 (τελευταίο) — δίστηλο */
.mm-submenu--level-3 > ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 12px 16px;
    gap: 4px;
}

.mm-submenu--level-3 .mm-item {
    border-bottom: none;
}

.mm-submenu--level-3 .mm-link {
    padding: 10px 8px;
    font-size: 14px;
    font-weight: 400;
}
/* Footer */
.mm-footer {
    padding: 16px 20px;
    border-top: 1px solid rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.mm-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #1e1e1e;
}

/* "ΟΛΟΙ ΟΙ ΠΡΟΟΡΙΣΜΟΙ" link */
.mm-all-link {
    display: block;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #1e1e1e;
    text-decoration: none;
    border-top: none;
    letter-spacing: 0.03em;
}