.fpm-22981-container {
    position: relative;
    display: flex;
    width: 100%;
}

/* Desktop Styles (min-width: 1025px) */
@media (min-width: 1025px) {
    .fpm-22981-toggle,
    .fpm-22981-overlay {
        display: none !important;
    }

    .fpm-22981-desktop-nav {
        display: block;
    }

    .fpm-22981-desktop-menu {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 20px;
    }

    .fpm-22981-desktop-menu a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s;
    }

    .fpm-22981-desktop-menu a:hover {
        color: #0073aa;
    }
}

/* Mobile/Tablet Styles (max-width: 1024px) */
@media (max-width: 1024px) {
    .fpm-22981-desktop-nav {
        display: none !important;
    }

    .fpm-22981-toggle {
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #333;
    }

    .fpm-22981-toggle svg {
        width: 24px;
        height: 24px;
        fill: currentColor;
    }

    .fpm-22981-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.95);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.4s ease-in-out, visibility 0.4s ease-in-out;
    }

    .fpm-22981-overlay.is-active {
        transform: translateX(0);
        visibility: visible;
    }

    .fpm-22981-close {
        position: absolute;
        top: 30px;
        right: 30px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        color: #333;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .fpm-22981-close svg {
        width: 32px;
        height: 32px;
        fill: currentColor;
    }

    .fpm-22981-mobile-menu {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .fpm-22981-mobile-menu li {
        margin-bottom: 20px;
    }

    .fpm-22981-mobile-menu a {
        text-decoration: none;
        color: #333;
        font-size: 2rem;
        font-weight: bold;
        transition: color 0.2s ease;
    }

    .fpm-22981-mobile-menu a:hover {
        color: #0073aa;
    }
}