.rm-menu-wrap {
	--rm-accent: #d3a471;
	--rm-accent-hover: #a9835a; /* stejný odstín, cca o 20 % tmavší */
	--rm-accent-text: #fff;
}

.rm-menu-tabs {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 10px;
	margin-bottom: 24px;
}

/* Vysoká specificita + !important, aby styl tabů nepřebíjelo obecné
   pravidlo šablony pro <button> (to je důvod, proč byly tlačítka
   viditelná jen při najetí myší). white-space/flex-shrink zajišťují, že
   se text nezalomí na dva řádky (to dělalo tlačítka různě vysoká). */
.rm-menu-tabs button.rm-menu-tab {
	display: inline-flex !important;
	align-items: center !important;
	flex: 0 0 auto !important;
	box-sizing: border-box !important;
	white-space: nowrap !important;
	margin: 0 !important;
	background-color: var(--rm-accent) !important;
	color: var(--rm-accent-text) !important;
	border: none !important;
	border-radius: 4px !important;
	cursor: pointer !important;
	padding: 10px 20px !important;
	font-size: 1.1em !important;
	font-weight: 600 !important;
	opacity: 1 !important;
	line-height: 1.2 !important;
	transition: background-color .15s ease-in-out;
}

.rm-menu-tabs button.rm-menu-tab:hover,
.rm-menu-tabs button.rm-menu-tab.rm-is-active {
	background-color: var(--rm-accent-hover) !important;
}

.rm-menu-panel {
	display: none;
}

.rm-menu-panel.rm-is-active {
	display: block;
}

.rm-daily-menu-date {
	margin: 0 0 20px;
	font-size: 1.2em;
	font-weight: 600;
}

.rm-menu {
	column-count: 2;
	column-gap: 50px;
}

.rm-menu-category {
	display: table; /* forces the browser to treat it as an unbreakable block inside CSS columns */
	width: 100%;
	break-inside: avoid;
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	margin: 0 0 32px;
}

.rm-menu-category-title {
	margin: 0 0 4px;
	padding-bottom: 8px;
	border-bottom: 2px solid currentColor;
	font-size: 1.3em;
	letter-spacing: .02em;
	text-transform: uppercase;
}

.rm-menu-category-desc {
	margin: 0 0 12px;
	font-style: italic;
	opacity: .8;
}

.rm-menu-items {
	list-style: none;
	margin: 0;
	padding: 0;
}

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

.rm-menu-item-row {
	display: flex;
	align-items: baseline;
	gap: 6px;
}

.rm-menu-item-name {
	font-weight: 600;
}

.rm-menu-item-leader {
	flex: 1 1 auto;
	border-bottom: 1px dotted currentColor;
	opacity: .5;
	margin-bottom: 4px;
}

.rm-menu-item-price {
	white-space: nowrap;
	font-weight: 600;
}

.rm-menu-item-desc {
	margin: 4px 0 0;
	font-size: .9em;
	opacity: .75;
}

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

@media (max-width: 700px) {
	.rm-menu {
		column-count: 1;
	}
}
