@media (max-width:768px) {
   /* ============================================
   Hamburger Mobile Menu
   ============================================ */

/* Wrapper — sits where the old <select> was */
#marvell-hamburger-wrapper {
    display: flex;
    justify-content: flex-end;
    padding: 8px 15px;
}

/* When scrolled to top — sticks to viewport */
#marvell-hamburger-wrapper.is-sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 8px 15px;
    background: rgba(45, 45, 45, 0.95);
}

/* The button itself */
#marvell-hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 46px;
    height: 38px;
    padding: 7px 8px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    box-sizing: border-box;
}

#marvell-hamburger-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* The three bars */
#marvell-hamburger-btn span {
    display: block;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* Animate to X when open */
#marvell-hamburger-btn.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

#marvell-hamburger-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

#marvell-hamburger-btn.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Dim overlay behind the drawer */
#marvell-drawer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    cursor: pointer;
}

#marvell-drawer-overlay.open {
    display: block;
}

/* The drawer panel */
#marvell-mobile-drawer {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: #2d2d2d;
    z-index: 2000;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

#marvell-mobile-drawer.open {
    right: 0;
}

/* Prevent body scroll when drawer is open */
body.drawer-open {
    overflow: hidden;
}

/* Close button inside drawer */
#marvell-drawer-close {
    display: block;
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    padding: 4px 8px;
}

#marvell-drawer-close:hover {
    opacity: 1;
}

/* Nav list inside drawer */
#marvell-mobile-drawer ul {
    list-style: none;
    margin: 56px 0 0 0;
    padding: 0;
}

#marvell-mobile-drawer ul li a {
    display: block;
    padding: 15px 24px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease, padding-left 0.2s ease;
}

#marvell-mobile-drawer ul li a:hover {
    background: rgba(255, 255, 255, 0.08);
    padding-left: 30px;
}

/* Callout items (e.g. File a Claim) — highlighted */
#marvell-mobile-drawer ul li a.drawer-callout {
    color: #7ecfcf;
    font-weight: bold;
}

#marvell-mobile-drawer ul li a.drawer-callout:hover {
    color: #ffffff;
} 
}
