.moulfood-restaurant-info-popup {
	position: fixed;
	inset: 0;
	z-index: 100004;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.moulfood-restaurant-info-popup.is-open {
	display: flex;
}

.moulfood-restaurant-info-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.58);
	backdrop-filter: blur(2px);
}

.moulfood-restaurant-info-dialog {
	position: relative;
	width: min(620px, 100%);
	max-height: min(760px, calc(100vh - 48px));
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 28px;
	border-radius: 18px;
	background: #ffffff;
	color: #111827;
	box-shadow: 0 24px 80px rgba(15, 23, 42, 0.26);
}

.moulfood-restaurant-info-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #f3f4f6;
	color: #111827;
	cursor: pointer;
}

.moulfood-restaurant-info-close:hover {
	background: #e5e7eb;
}

.moulfood-restaurant-info-close:focus-visible {
	outline: 3px solid rgba(249, 115, 22, 0.34);
	outline-offset: 3px;
}

.moulfood-restaurant-info-header {
	padding-right: 54px;
	margin-bottom: 22px;
}

.moulfood-restaurant-info-header > span {
	display: block;
	margin-bottom: 6px;
	color: var(--color-primary, #f97316);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.moulfood-restaurant-info-header h2 {
	margin: 0;
	font-size: 1.75rem;
	line-height: 1.16;
	letter-spacing: 0;
}

.moulfood-restaurant-info-header p {
	margin: 10px 0 0;
	color: #64748b;
	font-size: 0.95rem;
	line-height: 1.55;
}

.moulfood-restaurant-info-details {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 18px;
}

.moulfood-restaurant-info-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	min-width: 0;
	padding: 14px;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	background: #ffffff;
}

.moulfood-restaurant-info-row:first-child {
	grid-column: 1 / -1;
}

.moulfood-restaurant-info-row-icon {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	border-radius: 50%;
	background: #fff7ed;
	color: var(--color-primary, #f97316);
}

.moulfood-restaurant-info-row > div {
	display: grid;
	min-width: 0;
	gap: 3px;
}

.moulfood-restaurant-info-row strong {
	font-size: 0.8rem;
	color: #64748b;
}

.moulfood-restaurant-info-row span,
.moulfood-restaurant-info-row a {
	color: #111827;
	font-size: 0.93rem;
	font-weight: 700;
	line-height: 1.4;
	overflow-wrap: anywhere;
}

.moulfood-restaurant-info-row a {
	text-decoration: none;
}

.moulfood-restaurant-info-row a:hover {
	color: var(--color-primary, #f97316);
}

.moulfood-restaurant-info-row small {
	color: #64748b;
	font-size: 0.76rem;
	line-height: 1.4;
}

.moulfood-restaurant-info-map {
	height: 220px;
	margin-bottom: 16px;
	overflow: hidden;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	background: #f8fafc;
}

.moulfood-restaurant-info-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

body.moulfood-restaurant-info-open {
	overflow: hidden;
}

html[dir="rtl"] .moulfood-restaurant-info-close {
	right: auto;
	left: 16px;
}

html[dir="rtl"] .moulfood-restaurant-info-header {
	padding-right: 0;
	padding-left: 54px;
}

@media (max-width: 640px) {
	.moulfood-restaurant-info-popup {
		align-items: flex-end;
		padding: 12px;
	}

	.moulfood-restaurant-info-dialog {
		width: 100%;
		max-height: calc(100dvh - 24px);
		padding: 24px 18px 20px;
		border-radius: 18px 18px 10px 10px;
	}

	.moulfood-restaurant-info-header h2 {
		font-size: 1.45rem;
	}

	.moulfood-restaurant-info-details {
		grid-template-columns: 1fr;
	}

	.moulfood-restaurant-info-row:first-child {
		grid-column: auto;
	}

	.moulfood-restaurant-info-map {
		height: 190px;
	}
}
