.flex_spread {
	display:flex;
	display:-ms-flexbox;
	-ms-flex-pack:justify;
	justify-content:space-between;
	margin:0;
	padding:0;
}

.menu_spacer {
	margin-top:5vw;
}

.top_menu {
	position:fixed;
	top:0;
	width:100%;
	z-index:100;
}

.booking-dropdown-wrapper {
    display: inline-block;
	position:absolute;
	top: 1.8vw;
    right: 7vw;
	z-index: 900;
}

.booking-btn {
    padding: 10px 22px;
	font-family:'RobotoMono-Medium', monospace;
	font-weight: normal; /* la fonte est déjà "Medium" — éviter le synthetic bold qui rend baveux */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-transform: uppercase;
    background: #201B3F;
    border: 1px solid #201B3F;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}

.booking-btn:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.28);
}

.booking-dropdown-wrapper.active .booking-btn,
.booking-dropdown-wrapper.nav-open .booking-btn {
    color: #201B3F;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.28);
}

.booking-dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    border-radius: 12px;
    z-index: 20;
    margin-top: 6px;
    overflow: hidden;
}

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

.booking-menu li {
    border-bottom: 1px solid #eee;
	font-family:'RobotoMono-Light';
}

.booking-menu li:last-child {
    border-bottom: none;
}

.booking-menu a {
    display: block;
    padding: 12px 20px;
    color: #222;
    text-decoration: none;
    transition: background 0.18s;
}

.booking-menu a:hover {
    background: #f8f3ea;
}

.booking-menu .non-reservable > a {
    color: #4B4B4B;
    cursor: not-allowed;
    pointer-events: auto; /* On garde le clic pour la popup */
    position: relative;
}

.booking-menu .non-reservable > a:hover {
    background: #fff;
}

/* ---------- Bouton Commande / Order ---------- */

.order-dropdown-wrapper {
    display: inline-block;
    position: absolute;
    top: 1.8vw;
    right: 21vw; /* à gauche du bouton réservation (right:7vw) */
    z-index: 900;
}

.order-btn {
    padding: 10px 22px;
    font-family: 'RobotoMono-Medium', monospace;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid #201B3F;
    border-radius: 5px;
    color: #201B3F;
    cursor: pointer;
    transition: background 0.4s, color 0.2s, box-shadow 0.2s;
}

.order-btn:hover {
    border: 1px solid #201B3F;
	background-color: #201B3F;
	color: #FFF;
    box-shadow: 0 4px 14px rgba(0,0,0,0.28);
}

.order-dropdown-wrapper.active .order-btn {
    background: #201B3F;
    color: #fff;
    border-color: #201B3F;
    box-shadow: 0 4px 14px rgba(0,0,0,0.28);
}

.order-dropdown-wrapper.nav-open .order-btn {
	background: #fff;
    color: #201B3F;
    border-color: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.28);
}

.order-dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 240px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    border-radius: 12px;
    z-index: 20;
    margin-top: 6px;
    overflow: hidden;
}

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

.order-menu .order-section {
    border-bottom: 1px solid #eee;
    font-family: 'RobotoMono-Light';
}

.order-menu .order-section:last-child {
    border-bottom: none;
}

.order-section-header {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 20px;
    background: transparent;
    border: none;
    font-family: 'RobotoMono-Medium', monospace;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1em;
    text-transform: uppercase;
    color: #201B3F;
    cursor: pointer;
    transition: background 0.18s;
}

.order-section-header:hover,
.order-section.expanded .order-section-header {
    background: #f8f3ea;
}

.order-section-header::after {
    content: " ▾";
    float: right;
    transition: transform 0.18s;
}

.order-section.expanded .order-section-header::after {
    content: " ▴";
}

.order-section-list {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fafafa;
}

.order-section.expanded .order-section-list {
    display: block;
}

.order-section-list li {
    border-top: 1px solid #eee;
}

.order-section-list a {
    display: block;
    padding: 10px 28px;
    color: #222;
    text-decoration: none;
    transition: background 0.18s;
}

.order-section-list a:hover {
    background: #f0e9d8;
}

#reservation-info-popup {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(40,34,26,0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s;
}

#reservation-info-popup .popup-content {
    background: #201B3F;
	font-family:'RobotoMono-Light';
    color: #fff;
    border-radius: 18px;
    padding: 38px 36px 28px 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.09);
    min-width: 340px;
    max-width: 60vw;
    text-align: center;
    position: relative;
    font-size: 17px;
	line-height: 1.8em;
}

#reservation-info-popup .close-btn {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 1.5em;
    color: #fff;
    cursor: pointer;
    user-select: none;
}

.burger_icon {
	position:absolute;
	top:2.5vw;
	right:2vw;
	width:30px;
	cursor:pointer;
}

.top_menu .burger_icon .icon-bar {
	border-radius: 10px;
    display: block;
    height: 3px;
    width: 30px;
	background: #303030;
	margin-bottom: 5px;
}

.nav {
	display:none;
	position:fixed;
	top:0;
	width:100%;
	height:auto;
	padding:0 0 3vw;
	background-color:#201B3F;
	z-index:500;
}

.nav .burger_icon {
	top: 2vw;
	width:35px;
	height:35px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav .burger_icon .icon-bar {
	position: absolute;
    width: 30px;
    height: 3px;
    background: #fff2e0;
    border-radius: 10px;
    transition: background 0.2s;
}

.nav .burger_icon .icon-bar:first-child {
    transform: rotate(45deg);
}

.nav .burger_icon .icon-bar:last-child {
    transform: rotate(-45deg);
}

.menu_holder {
	list-style:none;
	width:100%;
	text-align:center;
	letter-spacing:.3vw;
}

.menu_holder li {
	margin:0;
	padding:0;
	width:16.66%;
	font-size:1.7vw;
	text-transform:uppercase;
}

.menu_holder li ul {
	display:none;
	list-style:none;
	margin:0;
	padding:0;
}

.menu_holder li ul li {
	display:block;
	width:100%;
	font-size:1vw;
	font-family:'RobotoMono-Medium';
	font-weight:400;
	font-style:normal;
	margin:.5vw 0;
	letter-spacing:normal;
	letter-spacing:.1vw;
}

.menu_holder li ul li ul {
	margin-bottom:1.5vw;
}

.menu_holder li ul li ul li {
	display:block;
	width:100%;
	font-size:1vw;
	font-family:'RobotoMono-LightItalic';
	font-weight:400;
	font-style:normal;
	margin:.5vw 0;
	letter-spacing:normal;
	text-transform:capitalize;
}

ul li.current-menu-parent a {
	color:#ebbdb3;
}

.menu_holder li a,.menu_holder ul li a,.menu_holder ul li ul li a {
	color:#fff2e0;
	transition:all 300ms;
}

.menu_holder li a:hover,.menu_holder ul li a:hover,.menu_holder ul li ul li a:hover {
	color:#ebbdb3;
}

.current_page_item a {
	color:#ebbdb3!important;
}

.menu_nav_holder ul {
	list-style:none;
	display:flex;
	display:-ms-flexbox;
	-ms-flex-pack:justify;
	justify-content:space-between;
	margin:0;
	padding:0;
	text-align:center;
	width:100%;
	font-size:1.1em;
}

.menu_nav_holder li a {
	color:#ea4f3c;
}

.menu_nav_holder li .current_menu {
	color:#201943;
	text-decoration:underline;
}

.location_select {
	display:block;
	cursor:pointer;
	color:#ea4f3c;
}

.location_select.setFr04, .location_select.setEn04, .location_select.setIt04 {
	line-height: 1.2em;
}
 

.location_select:hover {
	text-decoration:underline;
}

.location_select.active {
	text-decoration:underline;
}

.footer_menu {
	list-style:none;
	margin:0;
	padding:0;
}

.footer_menu li {
	display:inline-block;
}

.footer_menu li:after {
	content:'|';
	margin: 0 .5em;
}

.footer_menu li:last-child:after {
	content:'';
	margin-left:0;
}

.footer_menu li a {
	color:#fff;
}

.footer_menu li a:hover {
	color:#fff;
	text-decoration:underline;
}

.footer_menu .current_page_item a {
	color:#fff!important;
	text-decoration:underline;
}

.footer_menu_mob {
	position:absolute;
	top:20px;
	width:100%;
	list-style:none;
	margin:0;
	padding:0;
	text-align:center;
	font-size:.9em;
}

.footer_menu_mob li a {
	color:#fff;
}

.footer_menu_mob .current_page_item a {
	color:#fff!important;
	text-decoration:underline;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 1199px) {
	
}

@media (max-width: 991px) {
	
}

@media (max-width: 767px) {
	
	.burger_icon {
		position:absolute;
		top:5.5vw;
		right:4vw;
		cursor:pointer;
	}
	
	.nav {
		display:none;
		height:100%;
		overflow:hidden;
	}

	.nav .burger_icon {
		top: 3vw;
	}
	
	.flex_spread {
		display:block;
		margin:0;
		padding:0;
	}
	
	.menu_holder {
		position:absolute;
		width:100%;
		top:50%;
		-webkit-transform:translateY(-50%);
		-ms-transform:translateY(-50%);
		transform:translateY(-50%);
		letter-spacing:.3vw;
	}
	
	.menu_holder li {
		margin:0 0 6vw;
		font-size:8vw;
		width:100%;
	}
	
	.menu_holder li ul li {
		display:block;
		width:100%;
		font-size:4vw;
		margin:1vw 0;
		letter-spacing:normal;
	}
	
	.menu_holder li ul li ul li {
		font-size:4vw;
		margin:.5vw 0;
	}
}