/* Tombol Hamburger */
.mobile-nav-toggle {
    display: none;
}
.mobile-nav-toggle button {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-nav-toggle button span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #FFF8DC;
    border-radius: 2px;
}
/* Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: var(--z-overlay);
}
.mobile-overlay.open {
    display: block;
}
/* Drawer — keluar dari kanan */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    left: auto;
    width: 280px;
    height: 100vh;
    background: #111111;
    z-index: var(--z-drawer);
    overflow-y: auto;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}
.mobile-drawer.open {
    right: 0;
}
/* Header Drawer */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    border-bottom: 1px solid #222;
    background: #1a1a1a;
    color: #FFF8DC;
}
.drawer-logo {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: #FFF8DC;
}
#drawerClose {
    font-size: 24px;
    color: #FFF8DC;
    background: none;
    border: none;
    line-height: 1;
    cursor: pointer;
}
/* Search Drawer */
.drawer-search {
    padding: var(--space-md);
    border-bottom: 1px solid #222;
}
.drawer-search form {
    display: flex;
    border: 1px solid #333;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.drawer-search input {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-size-sm);
    background: #1a1a1a;
    color: #FFF8DC;
}
.drawer-search input::placeholder {
    color: rgba(255,248,220,.4);
}
.drawer-search button {
    background: #E8002D;
    color: #fff;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-size-sm);
    font-weight: 600;
}
/* Menu Drawer */
.drawer-menu {
    flex: 1;
    padding: var(--space-sm) 0;
}
.drawer-menu li a {
    display: block;
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-size-base);
    color: rgba(255,248,220,.7);
    border-bottom: 1px solid #1e1e1e;
    font-weight: 500;
}
.drawer-menu li a.active {
    color: #FFF8DC;
    font-weight: 700;
    border-left: 3px solid #E8002D;
    padding-left: calc(var(--space-lg) - 3px);
}
/* Tampilkan hamburger hanya di mobile */
@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }
}