/* FORCE BuyVerse slide menu to behave (wins over any older CSS) */
#bv-menu.bv-menu {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    height: 100vh !important;
    width: min(84vw, 360px) !important;
    max-width: 360px !important;

    transform: translateX(110%) !important;
    transition: transform 200ms ease !important;

    z-index: 9999 !important;
    overflow-y: auto !important;
    border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
}

#bv-menu.bv-menu.is-open {
    transform: translateX(0) !important;
}

#bv-menu-overlay.bv-menu-overlay {
    position: fixed !important;
    inset: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: 9998 !important;
}

#bv-menu-overlay.bv-menu-overlay.is-open {
    opacity: 1 !important;
    pointer-events: auto !important;
}

html.bv-menu-open,
html.bv-menu-open body {
    overflow: hidden;
}

.bv-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
    z-index: 9998;
}

.bv-menu-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* Slide-out menu (RIGHT) */
.bv-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    height: 100vh;

    width: min(84vw, 360px);
    padding: 18px 16px;

    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(10px);

    transform: translateX(110%);
    transition: transform 200ms ease;
    z-index: 9999;

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.bv-mobile-menu.is-open {
    transform: translateX(0);
}

.bv-mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.bv-menu-close {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-radius: 12px;
    padding: 8px 10px;
    cursor: pointer;
}

.bv-menu-sep {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    margin: 14px 0;
}

.bv-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bv-menu-list li {
    margin: 0 0 10px;
}

.bv-menu-list a {
    display: block;
    padding: 12px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bv-menu-list a:hover {
    background: rgba(255, 255, 255, 0.10);
}