#middle-ban-agsy, .btn-with-text, h2, nav {display:none;}
hr {
	border: 0;
	height: 1px;
	background-image: linear-gradient(
		to right,
		rgba(255, 255, 255, 0),
		rgba(255, 255, 255, 0.75),
		rgba(255, 255, 255, 0)
	);
}
.hamburger-menu {
	width: 30px;
	height: 25px;
	position: relative;
	cursor: pointer;
	display: flex; /* Tampilkan hamburger di mobile */
	flex-direction: column;
	justify-content: space-around;
	padding: 5px; /* Area klik yang lebih besar */
	z-index: 1001; /* Pastikan di atas menu saat terbuka */
	background-color:white;
}
.hamburger-menu .bar {
	display: block;
	width: 100%;
	height: 3px;
	background-color: #333;
	border-radius: 2px;
	transition: all 0.3s ease; /* Transisi untuk animasi X */
}
#sort-menu {
	display: none; /* Default: Sembunyikan menu di mobile */
	flex-direction: column; /* Link vertikal di mobile */
	width: 100%; /* Ambil lebar penuh saat terbuka */
	padding-top: 10px; /* Jarak dari hamburger */
	box-sizing: border-box;
	overflow: hidden; /* Sembunyikan jika ada konten yang keluar */
	max-height: 0; /* Mulai dari 0 tinggi */
	transition: max-height 0.3s ease-out; /* Transisi untuk buka/tutup */
}
#sort-menu a {
	text-decoration: none;
	display: block; /* Setiap link mengambil baris penuh */
	border-bottom: 1px solid #eee;
}
#sort-menu a:last-child { border-bottom: none; }
@media (min-width: 768px) {
	.hamburger-menu { display: none;  }
	#sort-menu {
		display: flex; /* Tampilkan menu di desktop */
		flex-direction: row; /* Link horizontal di desktop */
		width: auto; /* Kembali ke lebar natural */
		padding-top: 0; /* Hapus padding atas */
		gap: 15px; /* Jarak antar link */
		max-height: none; /* Hapus batasan tinggi */
	}
	#sort-menu a {
		border-bottom: none; /* Hapus garis pemisah */
		display: inline-block; /* Kembali ke inline-block */
		margin-right: 0; /* Hapus margin kanan jika sebelumnya ada */
	}
}
.bottom-menu.menu-open #sort-menu {
	display: flex;
	max-height: 300px;
}
.bottom-menu.menu-open .hamburger-menu .bar:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.bottom-menu.menu-open .hamburger-menu .bar:nth-child(2) { opacity: 0; }
.bottom-menu.menu-open .hamburger-menu .bar:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
#hamburger-icon { position: absolute; }