/* ==========================================================
   Restaurant Menu Manager - Frontend Style
   Gaya gelap & elegan, disusun dalam kolom flexbox eksplisit
   (bukan CSS "columns", supaya stabil di dalam page builder
   seperti Elementor/Divi yang membungkus konten dalam
   beberapa lapis container/flex).
   ========================================================== */

.rm-menu-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 45px 55px;
	color: #ece9e3;
	padding: 55px 45px;
	font-family: Georgia, 'Times New Roman', Times, serif;
	width: 100%;
}

.rm-menu-wrap * {
	box-sizing: border-box;
}

@media (max-width: 767px) {
	.rm-menu-wrap {
		padding: 20px 20px;
	}
}

/* Setiap kolom mengambil porsi sama besar, dan otomatis
   pindah ke baris baru (menumpuk ke bawah) kalau lebar
   kontainer tidak cukup -- ini berlaku berdasarkan lebar
   kontainer sebenarnya, bukan lebar layar, jadi tetap rapi
   walau ditaruh di dalam kolom sempit page builder. */
.rm-menu-col {
	flex: 1 1 260px;
	min-width: 260px;
}

.rm-menu-category {
	margin: 0 0 42px;
}

.rm-menu-category:last-child {
	margin-bottom: 0;
}

.rm-category-title {
	position: relative;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: 400;
	font-size: 18px;
	margin: 0 0 26px;
}

.rm-category-title:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	border-top: 1px solid #4d4d4d;
	z-index: 0;
}

.rm-category-title span {
	position: relative;
	z-index: 1;
	background-color: #1c1c1c;
	padding: 0 16px;
}

.rm-menu-item {
	margin: 0 0 22px;
}

.rm-menu-item:last-child {
	margin-bottom: 0;
}

.rm-item-header {
	display: flex;
	align-items: baseline;
	font-size: 15px;
	line-height: 1.4;
}

.rm-item-name {
	white-space: nowrap;
}

.rm-item-dots {
	flex: 1 1 auto;
	margin: 0 8px;
	border-bottom: 1px dotted #555;
	transform: translateY(-4px);
	min-width: 10px;
}

.rm-item-price {
	color: #c9a45c;
	white-space: nowrap;
	font-weight: 600;
}

.rm-item-desc {
	color: #9a9791;
	font-size: 12.5px;
	font-style: italic;
	line-height: 1.5;
	margin-top: 4px;
}

.rm-item-desc p {
	margin: 0;
}
