/* Mobile Fullscreen Slide Menu - 049ba988 */
/* MOBILE ONLY — max-width: 767px */

/* ===== Hamburger Button ===== */
.mfsm-hamburger-049ba988 {
    display: none !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;

    width: 46px !important;
    height: 42px !important;

    background: #ffffff !important;
    border: 2px solid #E30A17 !important;
    border-radius: 10px !important;

    cursor: pointer !important;
    padding: 0 !important;
    margin: 0 !important;

    position: relative !important;
    z-index: 10 !important;

    line-height: 0 !important;
    box-shadow: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

.mfsm-hamburger-049ba988:hover,
.mfsm-hamburger-049ba988:focus,
.mfsm-hamburger-049ba988:active {
    background: #ffffff !important;
    border-color: #E30A17 !important;
    outline: none !important;
    box-shadow: none !important;
}

.mfsm-hamburger-line-049ba988 {
    display: block !important;
    width: 22px !important;
    height: 3px !important;
    background: #E30A17 !important;
    background-color: #E30A17 !important;
    border-radius: 999px !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none !important;
}

@media (max-width: 767px) {
    .mfsm-hamburger-049ba988 {
        display: inline-flex !important;
    }
}

/* ===== Overlay ===== */
.mfsm-overlay-049ba988 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2147483647;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mfsm-overlay-049ba988.mfsm-open-049ba988 {
    display: block;
    opacity: 1;
}

/* ===== Panel ===== */
.mfsm-panel-049ba988 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff3f7;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 20px 16px 40px;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}

.mfsm-overlay-049ba988.mfsm-open-049ba988 .mfsm-panel-049ba988 {
    transform: translateX(0);
}

/* ===== Close Button ===== */
.mfsm-close-btn-049ba988 {
    display: block;
    width: 100%;
    height: 52px;
    background: #E30A17;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
    font-family: inherit;
}

.mfsm-close-btn-049ba988:hover,
.mfsm-close-btn-049ba988:focus {
    background: #E30A17;
    outline: none;
}

/* ===== Section Title ===== */
.mfsm-section-title-049ba988 {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #E30A17;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 12px;
    padding: 0;
}

/* ===== Category List ===== */
.mfsm-category-list-049ba988 {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.mfsm-category-list-049ba988 li {
    margin-bottom: 4px;
}

.mfsm-category-list-049ba988 li a {
    display: block;
    padding: 13px 16px;
    font-size: 21px;
    font-weight: 500;
    color: #111111;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
    line-height: 1.4;
}

.mfsm-category-list-049ba988 li a:hover,
.mfsm-category-list-049ba988 li a:focus {
    background: #fff3f7;
    color: #E30A17;
    outline: none;
}

/* ===== Divider ===== */
.mfsm-divider-049ba988 {
    width: 60%;
    height: 2px;
    background: #E30A17;
    margin: 20px auto;
    border-radius: 2px;
}

/* ===== Navigation Links ===== */
.mfsm-nav-list-049ba988 {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.mfsm-nav-list-049ba988 li {
    margin-bottom: 4px;
}

.mfsm-nav-list-049ba988 li a {
    display: block;
    padding: 12px 16px;
    font-size: 19px;
    font-weight: 500;
    color: #E30A17;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
    line-height: 1.4;
}

.mfsm-nav-list-049ba988 li a:hover,
.mfsm-nav-list-049ba988 li a:focus {
    background: #fff3f7;
    color: #E30A17;
    outline: none;
}

/* ===== GTranslate Area ===== */
.mfsm-gtranslate-049ba988 {
    text-align: center;
    padding: 10px 0 20px;
}

/* ===== Desktop: hide everything ===== */
@media (min-width: 768px) {
    .mfsm-overlay-049ba988,
    .mfsm-hamburger-049ba988 {
        display: none !important;
    }
}

/* ===== Body scroll lock ===== */
body.mfsm-body-locked-049ba988 {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}