/* Restaurant Hours – Frontend Widget */

.rh-widget {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	background-color: #1a2332;
	padding: 14px 20px;
	border-radius: 8px;
	box-sizing: border-box;
	width: 100%;
}

.rh-left {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1;
	min-width: 0;
}

.rh-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #8899aa;
	font-size: 18px;
	flex-shrink: 0;
	line-height: 1;
}

.rh-icon svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.rh-hours-text {
	color: #ffffff;
	font-size: 15px;
	display: flex;
	gap: 5px;
	align-items: baseline;
	flex-wrap: wrap;
	line-height: 1.4;
}

.rh-prefix {
	font-weight: 700;
}

.rh-right {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.rh-badge {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 4px;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	white-space: nowrap;
	line-height: 1.4;
}

.rh-badge--open {
	background-color: #2d6a2d;
	color: #ffffff;
}

.rh-badge--closed {
	background-color: #8b1a1a;
	color: #ffffff;
}
