/**
 * תג שעות הפעילות [restaurant_hours].
 * עצמאי — עשוי להופיע בהאדר, בווידג'ט או בתוכן העמוד.
 */

.tanagi-hours {
	--hours-open: #1a8f4c;
	--hours-closed: #e03127;

	position: relative;
	display: inline-block;
	direction: rtl;
	font-size: 14px;
	line-height: 1.5;
}

.tanagi-hours__toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 1px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	font-family: inherit;
	font-size: inherit;
	font-weight: 600;
	cursor: pointer;
	color: inherit;
}

.tanagi-hours.is-open .tanagi-hours__toggle {
	color: var(--hours-open);
}

.tanagi-hours.is-closed .tanagi-hours__toggle {
	color: var(--hours-closed);
}

.tanagi-hours__toggle:hover {
	background: rgba(0, 0, 0, .05);
}

.tanagi-hours__icon,
.tanagi-hours__chevron {
	display: inline-flex;
}

.tanagi-hours__chevron {
	transition: transform .18s ease;
}

.tanagi-hours__toggle[aria-expanded="true"] .tanagi-hours__chevron {
	transform: rotate(180deg);
}

/* ── החלונית המרחפת ──────────────────────────────────── */

.tanagi-hours__panel {
	position: absolute;
	top: calc(100% + 6px);
	inset-inline-end: 0;
	z-index: 200;
	min-width: 230px;
	padding: 12px 14px;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 10px;
	box-shadow: 0 8px 28px rgba(0, 0, 0, .16);
	color: #1f1f1f;
	text-align: start;
}

.tanagi-hours__panel[hidden] {
	display: none;
}

.tanagi-hours__panel-title {
	margin: 0 0 8px;
	padding-bottom: 8px;
	border-bottom: 1px solid #e6e6e6;
	font-size: 15px;
	font-weight: 700;
}

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

.tanagi-hours__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 4px 0;
	font-size: 13px;
	white-space: nowrap;
}

.tanagi-hours__row.is-today {
	font-weight: 700;
}

.tanagi-hours__time {
	direction: ltr;
	unicode-bidi: isolate;
}

@media (prefers-reduced-motion: reduce) {

	.tanagi-hours__chevron {
		transition: none;
	}
}
