/* =========================
   MENU MOBILE OFFCANVAS
========================= */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform .25s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.mobile-logo {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: .18em;
}

.mobile-close {
    font-size: 2rem;
    background: none;
    border: none;
}

/* Search */
.mobile-search input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 18px;
}

/* Nav */
.mobile-nav a,
.mobile-sub-toggle {
    display: block;
    width: 100%;
    padding: 14px 4px;
    font-size: .95rem;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid #eee;
    background: none;
    border: none;
    text-align: left;
}

.mobile-submenu {
    display: none;
    padding-left: 12px;
}

.mobile-submenu a {
    font-size: .9rem;
    font-weight: 500;
    text-transform: none;
}

.mobile-submenu .promo {
    color: #d12c2c;
    font-weight: 800;
}

/* Desktop : menu mobile caché */
@media (min-width: 992px) {
    .mobile-menu {
        display: none;
    }
}
