.eat-language-switcher {
	--eat-switcher-bg: #ffffff;
	--eat-switcher-text: #0f172a;
	--eat-switcher-border: #d0d7de;
	--eat-switcher-radius: 999px;
	--eat-switcher-flag-size: 22px;
	--eat-switcher-flag-radius: 999px;
	--eat-switcher-dropdown-gap: 10px;
	font-family: inherit;
	max-width: calc(100vw - 28px);
	position: relative;
	z-index: 9998;
}
.eat-language-switcher,
.eat-language-switcher * {
	box-sizing: border-box;
}
.eat-language-switcher summary,
.eat-language-switcher__inline-list a {
	align-items: center;
	background: var(--eat-switcher-bg);
	border: 1px solid var(--eat-switcher-border);
	border-radius: var(--eat-switcher-radius);
	box-shadow: var(--eat-switcher-shadow, 0 10px 30px rgba(15, 23, 42, 0.12));
	color: var(--eat-switcher-text);
	cursor: pointer;
	display: inline-flex;
	gap: 10px;
	list-style: none;
	line-height: 1.25;
	max-width: 100%;
	padding: 10px 14px;
	text-decoration: none;
}
.eat-language-switcher summary::-webkit-details-marker {
	display: none;
}
.eat-language-switcher__active-code,
.eat-language-switcher__code {
	color: inherit;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
}
.eat-language-switcher__active-label,
.eat-language-switcher__label {
	color: inherit;
	font-size: 14px;
	font-weight: 500;
}
.eat-language-switcher__flag {
	align-items: center;
	border-radius: var(--eat-switcher-flag-radius);
	box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.12);
	display: inline-flex;
	flex: 0 0 var(--eat-switcher-flag-size);
	height: var(--eat-switcher-flag-size);
	justify-content: center;
	line-height: 1;
	overflow: hidden;
	width: var(--eat-switcher-flag-size);
}
.eat-language-switcher__flag-svg {
	display: block;
	height: 100%;
	width: 100%;
}
.eat-language-switcher--flag-rectangular .eat-language-switcher__flag {
	border-radius: min(var(--eat-switcher-flag-radius), 6px);
}
.eat-language-switcher--flag-square .eat-language-switcher__flag {
	border-radius: 0;
}
.eat-language-switcher--flag-rectangular:not(.eat-language-switcher--elementor) .eat-language-switcher__flag {
	/* Rounded corners change the silhouette, never the selected dimensions. */
	border-radius: var(--eat-switcher-flag-radius);
}
.eat-language-switcher__toggle-icon {
	display: inline-flex;
	flex: 0 0 var(--eat-switcher-icon-size, 18px);
	width: var(--eat-switcher-icon-size, 18px);
	height: var(--eat-switcher-icon-size, 18px);
	transition: transform .2s ease;
}
.eat-language-switcher__toggle-icon[hidden] { display: none; }
.eat-language-switcher__toggle-icon svg { display: block; width: 100%; height: 100%; }
.eat-language-switcher[open] > summary .eat-language-switcher__toggle-icon { transform: rotate(180deg); }
.eat-language-switcher[open] > summary .eat-language-switcher__toggle-icon[data-eat-icon="plus"] { transform: rotate(45deg); }
.eat-language-switcher__list {
	background: var(--eat-switcher-bg);
	border: 1px solid var(--eat-switcher-border);
	border-radius: clamp(8px, var(--eat-switcher-radius), 18px);
	box-shadow: var(--eat-switcher-menu-shadow, 0 20px 40px rgba(15, 23, 42, 0.16));
	color: var(--eat-switcher-text);
	max-height: min(420px, 60vh);
	min-width: 220px;
	max-width: min(280px, calc(100vw - 28px));
	margin: 0;
	overflow: auto;
	padding: 8px;
	position: absolute;
	right: 0;
	top: calc(100% + var(--eat-switcher-dropdown-gap));
	width: max-content;
	z-index: 2;
}
.eat-language-switcher__item {
	list-style: none;
	margin: 0;
	padding: 0;
}
.eat-language-switcher__item a {
	align-items: center;
	border-radius: 12px;
	color: var(--eat-switcher-text);
	display: flex;
	gap: 10px;
	line-height: 1.35;
	padding: 10px 12px;
	text-decoration: none;
}
.eat-language-switcher__item a:hover,
.eat-language-switcher__item a.is-active {
	background: rgba(45, 146, 255, 0.12);
	background: color-mix(in srgb, var(--eat-switcher-text) 10%, transparent);
}
.eat-language-switcher__inline-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.eat-language-switcher__inline-list a:hover,
.eat-language-switcher__inline-list a.is-active {
	background: color-mix(in srgb, var(--eat-switcher-text) 10%, var(--eat-switcher-bg));
}
/* Global appearance applies to shortcodes and floating controls. Native
   Elementor controls keep their own normal/hover styles and specificity. */
.eat-language-switcher:not(.eat-language-switcher--elementor) > summary:hover,
.eat-language-switcher:not(.eat-language-switcher--elementor) > summary:focus-visible {
	background: var(--eat-switcher-hover-bg, var(--eat-switcher-bg));
	color: var(--eat-switcher-hover-text, var(--eat-switcher-text));
	border-color: var(--eat-switcher-hover-border, var(--eat-switcher-border));
}
.eat-language-switcher:not(.eat-language-switcher--elementor) .eat-language-switcher__item a:hover,
.eat-language-switcher:not(.eat-language-switcher--elementor) .eat-language-switcher__item a:focus-visible {
	background: var(--eat-switcher-item-hover-bg, color-mix(in srgb, var(--eat-switcher-text) 10%, transparent));
	color: var(--eat-switcher-hover-text, var(--eat-switcher-text));
}
.eat-language-switcher__inline-list a:hover,
.eat-language-switcher__inline-list a:focus-visible {
	background: var(--eat-switcher-hover-bg, color-mix(in srgb, var(--eat-switcher-text) 10%, var(--eat-switcher-bg)));
	color: var(--eat-switcher-hover-text, var(--eat-switcher-text));
	border-color: var(--eat-switcher-hover-border, var(--eat-switcher-border));
}
.eat-language-switcher--layout-popup .eat-language-switcher__list {
	border-radius: 22px;
	min-width: 260px;
	padding: 12px;
}
.eat-language-switcher--layout-popup .eat-language-switcher__item a {
	padding: 12px 14px;
}
/* Keep the highlighted language options apart, including flags-only menus.
   Native Elementor widgets retain their own spacing and padding controls. */
.eat-language-switcher:not(.eat-language-switcher--elementor) .eat-language-switcher__item + .eat-language-switcher__item {
	margin-top: var(--eat-switcher-item-gap, 8px);
}
.eat-language-switcher:not(.eat-language-switcher--elementor) .eat-language-switcher__inline-list {
	gap: var(--eat-switcher-item-gap, 8px);
}
.eat-language-switcher:not(.eat-language-switcher--elementor) .eat-language-switcher__item a,
.eat-language-switcher:not(.eat-language-switcher--elementor) .eat-language-switcher__inline-list a {
	position: relative;
}
.eat-language-switcher:not(.eat-language-switcher--elementor) .eat-language-switcher__item a {
	padding: var(--eat-switcher-item-padding, 10px);
}
.eat-language-switcher:not(.eat-language-switcher--elementor) .eat-language-switcher__item a:hover::after,
.eat-language-switcher:not(.eat-language-switcher--elementor) .eat-language-switcher__item a:focus-visible::after,
.eat-language-switcher:not(.eat-language-switcher--elementor) .eat-language-switcher__item a.is-active::after,
.eat-language-switcher:not(.eat-language-switcher--elementor) .eat-language-switcher__inline-list a:hover::after,
.eat-language-switcher:not(.eat-language-switcher--elementor) .eat-language-switcher__inline-list a:focus-visible::after,
.eat-language-switcher:not(.eat-language-switcher--elementor) .eat-language-switcher__inline-list a.is-active::after {
	content: "";
	position: absolute;
	inset: 0;
	border: var(--eat-switcher-hover-border-width, 0px) solid var(--eat-switcher-hover-border, var(--eat-switcher-border));
	border-radius: inherit;
	pointer-events: none;
}
.eat-language-switcher--floating {
	bottom: 20px;
	position: fixed;
}
.eat-language-switcher--bottom-right {
	right: 20px;
}
.eat-language-switcher--bottom-left {
	left: 20px;
}
.eat-language-switcher--top-right {
	bottom: auto;
	right: 20px;
	top: 20px;
}
.eat-language-switcher--top-left {
	bottom: auto;
	left: 20px;
	top: 20px;
}
.eat-language-switcher--bottom-right .eat-language-switcher__list,
.eat-language-switcher--bottom-left .eat-language-switcher__list {
	bottom: calc(100% + var(--eat-switcher-dropdown-gap));
	top: auto;
}
.eat-language-switcher--layout-dropdown[open]::after {
	content: "";
	height: var(--eat-switcher-dropdown-gap);
	position: absolute;
	right: 0;
	top: 100%;
	width: max(100%, 220px);
	z-index: 1;
}
.eat-language-switcher--layout-dropdown[open].eat-language-switcher--bottom-right::after,
.eat-language-switcher--layout-dropdown[open].eat-language-switcher--bottom-left::after {
	bottom: 100%;
	top: auto;
}
.eat-language-switcher--layout-dropdown[open].eat-language-switcher--bottom-left::after,
.eat-language-switcher--layout-dropdown[open].eat-language-switcher--top-left::after,
.eat-language-switcher--layout-dropdown[open].eat-language-switcher--inline::after {
	left: 0;
	right: auto;
}
.eat-language-switcher--bottom-left .eat-language-switcher__list,
.eat-language-switcher--top-left .eat-language-switcher__list {
	left: 0;
	right: auto;
}
.eat-language-switcher--inline .eat-language-switcher__list {
	left: 0;
	right: auto;
}
[data-eat-switcher-preview-component]:not(.eat-language-switcher--has-flags) .eat-language-switcher__flag,
[data-eat-switcher-preview-component].eat-language-switcher--hide-names .eat-language-switcher__active-label,
[data-eat-switcher-preview-component].eat-language-switcher--hide-names .eat-language-switcher__label,
[data-eat-switcher-preview-component].eat-language-switcher--label-short .eat-language-switcher__active-label,
[data-eat-switcher-preview-component].eat-language-switcher--label-short .eat-language-switcher__label,
[data-eat-switcher-preview-component].eat-language-switcher--hide-names.eat-language-switcher--has-flags .eat-language-switcher__active-code,
[data-eat-switcher-preview-component].eat-language-switcher--hide-names.eat-language-switcher--has-flags .eat-language-switcher__code {
	display: none !important;
}
.eat-language-switcher--layout-popup[open] {
	z-index: 99999;
}
.eat-language-switcher--layout-popup[open]::before {
	background: rgba(15, 23, 42, 0.22);
	content: "";
	inset: 0;
	position: fixed;
	z-index: 99998;
}
.eat-language-switcher--layout-popup[open] .eat-language-switcher__list {
	bottom: auto;
	left: 50%;
	max-height: min(420px, calc(100vh - 80px));
	max-width: min(320px, calc(100vw - 32px));
	position: fixed;
	right: auto;
	top: 50%;
	transform: translate(-50%, -50%);
	width: min(320px, calc(100vw - 32px));
	z-index: 99999;
}
/* Flag-only menus should size to their contents, not reserve a name column. */
.eat-language-switcher--hide-names.eat-language-switcher--has-flags:not(.eat-language-switcher--elementor) .eat-language-switcher__list {
	min-width: 0;
	width: max-content;
}
.eat-language-switcher--hide-names.eat-language-switcher--has-flags:not(.eat-language-switcher--elementor) .eat-language-switcher__item a {
	justify-content: center;
}
.eat-language-switcher--hide-names.eat-language-switcher--has-flags.eat-language-switcher--layout-dropdown[open]::after {
	width: 100%;
}
.eat-language-switcher-widget {
	display: grid;
	gap: 10px;
	justify-items: center;
	width: 100%;
}
.eat-language-switcher-widget__notice {
	background: #fff8e5;
	border: 1px solid #f0c36d;
	border-radius: 6px;
	color: #5f4500;
	font-size: 13px;
	line-height: 1.45;
	padding: 10px 12px;
}
.eat-language-switcher--elementor {
	max-width: 100%;
	z-index: 9998;
}
.eat-language-switcher--elementor > summary.eat-language-switcher__trigger {
	align-items: center;
	appearance: none;
	background: #706d67;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	color: #fff;
	display: flex;
	font: inherit;
	list-style: none;
	max-width: 100%;
	padding: 18px 24px;
	text-decoration: none;
	transition-property: background-color, background-image, border-color, box-shadow, color, fill, transform;
	transition-timing-function: ease;
	width: 100%;
}
.eat-language-switcher--elementor > summary.eat-language-switcher__trigger::marker,
.eat-language-switcher--elementor > summary.eat-language-switcher__trigger::-webkit-details-marker {
	content: "";
	display: none;
}
.eat-language-switcher--elementor > summary.eat-language-switcher__trigger:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}
.eat-language-switcher__trigger-content {
	align-items: center;
	display: flex;
	gap: 28px;
	min-width: 0;
	width: 100%;
}
.eat-language-switcher__trigger-icon,
.eat-language-switcher__dropdown-icon {
	align-items: center;
	color: inherit;
	display: inline-flex;
	flex: 0 0 auto;
	height: 1em;
	justify-content: center;
	line-height: 1;
	width: 1em;
}
.eat-language-switcher__trigger-icon {
	font-size: 48px;
}
.eat-language-switcher__dropdown-icon {
	font-size: 28px;
	transition: transform 0.2s ease;
}
.eat-language-switcher__trigger-icon i,
.eat-language-switcher__dropdown-icon i {
	color: inherit;
	font-size: inherit;
	line-height: 1;
}
.eat-language-switcher__trigger-icon svg,
.eat-language-switcher__dropdown-icon svg,
.eat-language-switcher__trigger-icon img,
.eat-language-switcher__dropdown-icon img {
	display: block;
	fill: currentColor;
	height: 100%;
	width: 100%;
}
.eat-language-switcher__trigger-label,
.eat-language-switcher__menu-label {
	color: inherit;
}
.eat-language-switcher__trigger-label {
	min-width: 0;
}
.eat-language-switcher--elementor[open] > summary .eat-language-switcher__dropdown-icon {
	transform: rotate(180deg);
}
.eat-language-switcher--elementor > .eat-language-switcher__list {
	margin: 0;
	max-width: calc(100vw - 28px);
	z-index: 9999;
}
.eat-language-switcher--elementor .eat-language-switcher__item > a {
	transition: background-color 0.18s ease, color 0.18s ease;
}
.eat-language-switcher--elementor .eat-language-switcher__item > a:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: -2px;
}
.elementor-align-justify .eat-language-switcher--elementor {
	width: 100%;
}
.eat-language-suggestion {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	animation: eat-language-suggestion-in 0.22s ease-out both;
	background: var(--eat-prompt-bg, rgba(255, 255, 255, 0.96));
	border: 1px solid var(--eat-prompt-border, rgba(15, 23, 42, 0.10));
	border-radius: var(--eat-prompt-radius, 22px);
	box-shadow: 0 22px 60px rgba(15, 23, 42, 0.20), 0 1px 0 rgba(255, 255, 255, 0.80) inset;
	box-sizing: border-box;
	color: var(--eat-prompt-text, #111827);
	display: grid;
	gap: 14px;
	max-width: calc(100vw - 28px);
	padding: var(--eat-prompt-padding, 18px);
	position: fixed;
	width: var(--eat-prompt-width, 374px);
	z-index: 9997;
}
.eat-language-suggestion--bottom-right {
	bottom: var(--eat-prompt-offset-y, 88px);
	right: var(--eat-prompt-offset-x, 20px);
}
.eat-language-suggestion--bottom-left {
	bottom: var(--eat-prompt-offset-y, 88px);
	left: var(--eat-prompt-offset-x, 20px);
}
.eat-language-suggestion--top-right {
	right: var(--eat-prompt-offset-x, 20px);
	top: var(--eat-prompt-offset-y, 88px);
}
.eat-language-suggestion--top-left {
	left: var(--eat-prompt-offset-x, 20px);
	top: var(--eat-prompt-offset-y, 88px);
}
.eat-language-suggestion button.eat-language-suggestion__close {
	align-items: center;
	appearance: none;
	background: var(--eat-prompt-secondary-bg, #f7f9fc) !important;
	border: 1px solid var(--eat-prompt-border, rgba(15, 23, 42, 0.10)) !important;
	border-radius: var(--eat-prompt-button-radius, 999px) !important;
	box-shadow: none !important;
	color: var(--eat-prompt-muted, #64748b) !important;
	cursor: pointer;
	display: block;
	font: inherit !important;
	font-size: 0 !important;
	font-weight: 700 !important;
	height: 34px !important;
	justify-content: center;
	line-height: 1 !important;
	min-height: 0 !important;
	padding: 0 !important;
	place-items: center;
	position: absolute;
	right: 12px;
	text-decoration: none !important;
	text-transform: none !important;
	top: 12px;
	width: 34px !important;
}
.eat-language-suggestion button.eat-language-suggestion__close::before,
.eat-language-suggestion button.eat-language-suggestion__close::after {
	background: currentColor;
	border-radius: 999px;
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
	top: 50%;
	width: 12px;
}
.eat-language-suggestion button.eat-language-suggestion__close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.eat-language-suggestion button.eat-language-suggestion__close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.eat-language-suggestion button.eat-language-suggestion__close:hover,
.eat-language-suggestion button.eat-language-suggestion__close:focus-visible {
	background: var(--eat-prompt-primary-bg, #111417) !important;
	border-color: var(--eat-prompt-primary-bg, #111417) !important;
	color: var(--eat-prompt-primary-text, #ffffff) !important;
	outline: none;
	box-shadow: none !important;
}
.eat-language-suggestion__copy {
	display: grid;
	gap: 5px;
	padding-right: 44px;
}
.eat-language-suggestion__copy strong,
.eat-language-suggestion__copy span {
	color: inherit;
	display: block;
	letter-spacing: 0;
	line-height: 1.35;
}
.eat-language-suggestion__copy strong {
	font-size: 15px;
	font-weight: 820;
}
.eat-language-suggestion__copy span {
	color: var(--eat-prompt-muted, #536071);
	font-size: 13.5px;
	font-weight: 560;
}
.eat-language-suggestion__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.eat-language-suggestion button.eat-language-suggestion__action,
.eat-language-suggestion button.eat-language-suggestion__secondary {
	align-items: center;
	appearance: none !important;
	border: 1px solid transparent !important;
	border-radius: var(--eat-prompt-button-radius, 999px) !important;
	box-shadow: none !important;
	cursor: pointer;
	display: inline-flex;
	font: inherit !important;
	font-size: 13.5px !important;
	font-weight: 760 !important;
	justify-content: center;
	letter-spacing: 0 !important;
	line-height: 1.2 !important;
	margin: 0 !important;
	min-height: 42px !important;
	padding: 10px 18px !important;
	text-decoration: none !important;
	text-transform: none !important;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
	white-space: nowrap;
}
.eat-language-suggestion button.eat-language-suggestion__action {
	background: var(--eat-prompt-primary-bg, #111417) !important;
	border-color: var(--eat-prompt-primary-bg, #111417) !important;
	color: var(--eat-prompt-primary-text, #ffffff) !important;
	box-shadow: none !important;
}
.eat-language-suggestion button.eat-language-suggestion__action:hover,
.eat-language-suggestion button.eat-language-suggestion__action:focus-visible {
	background: var(--eat-prompt-bg, #ffffff) !important;
	border-color: var(--eat-prompt-primary-bg, #111417) !important;
	color: var(--eat-prompt-primary-bg, #111417) !important;
	outline: none;
	box-shadow: none !important;
}
.eat-language-suggestion button.eat-language-suggestion__secondary {
	background: var(--eat-prompt-secondary-bg, #ffffff) !important;
	border-color: var(--eat-prompt-border, rgba(15, 23, 42, 0.12)) !important;
	color: var(--eat-prompt-secondary-text, #111827) !important;
}
.eat-language-suggestion button.eat-language-suggestion__secondary:hover,
.eat-language-suggestion button.eat-language-suggestion__secondary:focus-visible {
	background: var(--eat-prompt-primary-bg, #111417) !important;
	border-color: var(--eat-prompt-primary-bg, #111417) !important;
	color: var(--eat-prompt-primary-text, #ffffff) !important;
	outline: none;
	box-shadow: none !important;
}
.eat-live-translation {
	box-sizing: border-box;
	background: #151719;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 26px;
	box-shadow: 0 28px 70px rgba(0,0,0,0.34);
	color: #f7f7f4;
	display: grid;
	gap: 14px;
	justify-items: center;
	left: 50%;
	max-width: min(420px, calc(100vw - 32px));
	padding: 24px 22px 22px;
	position: fixed;
	text-align: center;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	z-index: 99999;
}
.eat-live-translation__logo {
	background: #17191c;
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 22px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 16px 34px rgba(0,0,0,0.34);
	display: grid;
	height: 68px;
	margin-bottom: 2px;
	place-items: center;
	position: relative;
	width: 68px;
}
.eat-live-translation__logo::before {
	animation: eat-live-spin 0.8s linear infinite;
	background: conic-gradient(from 0deg, #2d92ff 0deg, #6bb6ff 92deg, rgba(45,146,255,0.42) 154deg, rgba(255,255,255,0.18) 236deg, #2d92ff 360deg);
	border-radius: 28px;
	content: "";
	inset: -8px;
	-webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 5px));
	mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 5px));
	position: absolute;
}
.eat-live-translation__logo img {
	border-radius: 20px;
	display: block;
	height: 64px;
	object-fit: cover;
	position: relative;
	width: 64px;
	z-index: 1;
}
/* Keep the custom logo and spinner in separate rows, including in the wait page. */
.eat-live-translation__logo--custom { background:transparent; border:0; border-radius:0; box-shadow:none; width:180px; max-width:100%; height:auto; margin-bottom:0; grid-template-rows:64px 18px; row-gap:12px; }
.eat-live-translation__logo--custom img { grid-area:1 / 1; border-radius:0; width:100%; height:64px; object-fit:contain; }
.eat-live-translation__logo--custom::before { grid-area:2 / 1; position:static; width:18px; height:18px; inset:auto; border-radius:50%; -webkit-mask:radial-gradient(farthest-side,transparent calc(100% - 3px),#000 calc(100% - 2px)); mask:radial-gradient(farthest-side,transparent calc(100% - 3px),#000 calc(100% - 2px)); }
.eat-live-translation__copy {
	display: grid;
	gap: 6px;
	justify-items: center;
}
.eat-live-translation__copy strong,
.eat-live-translation__copy span,
.eat-live-translation__copy small {
	color: inherit;
	display: block;
	letter-spacing: 0;
	line-height: 1.35;
}
.eat-live-translation__copy strong {
	font-size: 21px;
	font-weight: 840;
}
.eat-live-translation__copy span {
	color: #c5cbcf;
	font-size: 13.5px;
	font-weight: 680;
}
.eat-live-translation__copy small {
	color: #8f969b;
	font-size: 12.5px;
	font-weight: 620;
	max-width: 34em;
}
.eat-live-translation.is-ready .eat-live-translation__logo::before {
	animation: none;
	background: conic-gradient(#22c55e, #86efac);
}
.eat-live-translation.is-slow .eat-live-translation__logo::before {
	animation: none;
	background: conic-gradient(#f59e0b, #fcd34d);
}
@keyframes eat-live-spin {
	to {
		transform: rotate(360deg);
	}
}
@keyframes eat-language-suggestion-in {
	from {
		opacity: 0;
		transform: translateY(8px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}
/* Scale shared switchers with the page without changing saved dimensions.
   Native Elementor widgets retain their per-device appearance controls. */
@media (max-width: 1440px) {
	.eat-language-switcher:not(.eat-language-switcher--elementor) {
		--eat-switcher-responsive-flag: min(var(--eat-switcher-flag-size), max(22px, calc(var(--eat-switcher-flag-size) * .8)));
		--eat-switcher-responsive-icon: min(var(--eat-switcher-icon-size, 18px), max(16px, calc(var(--eat-switcher-icon-size, 18px) * .9)));
		--eat-switcher-responsive-gap: 8px;
		--eat-switcher-responsive-padding: 8px 10px;
	}
	.eat-language-switcher:not(.eat-language-switcher--elementor) > summary,
	.eat-language-switcher:not(.eat-language-switcher--elementor) .eat-language-switcher__inline-list a {
		gap: var(--eat-switcher-responsive-gap);
		padding: var(--eat-switcher-responsive-padding);
	}
	.eat-language-switcher:not(.eat-language-switcher--elementor) .eat-language-switcher__flag {
		flex-basis: var(--eat-switcher-responsive-flag);
		width: var(--eat-switcher-responsive-flag);
		height: var(--eat-switcher-responsive-flag);
	}
	.eat-language-switcher:not(.eat-language-switcher--elementor) .eat-language-switcher__toggle-icon {
		flex-basis: var(--eat-switcher-responsive-icon);
		width: var(--eat-switcher-responsive-icon);
		height: var(--eat-switcher-responsive-icon);
	}
	.eat-language-switcher:not(.eat-language-switcher--elementor) .eat-language-switcher__item a {
		min-height: 44px;
	}
}
@media (max-width: 1024px) {
	.eat-language-switcher:not(.eat-language-switcher--elementor) {
		--eat-switcher-responsive-flag: min(var(--eat-switcher-flag-size), max(22px, calc(var(--eat-switcher-flag-size) * .72)));
		--eat-switcher-responsive-icon: min(var(--eat-switcher-icon-size, 18px), max(16px, calc(var(--eat-switcher-icon-size, 18px) * .8)));
		--eat-switcher-responsive-gap: 6px;
		--eat-switcher-responsive-padding: 7px 9px;
	}
}
@media (max-width: 782px) {
	.eat-language-switcher--floating {
		bottom: 14px;
	}
	.eat-language-switcher--top-right,
	.eat-language-switcher--top-left {
		bottom: auto;
		top: 14px;
	}
	.eat-language-switcher--bottom-right,
	.eat-language-switcher--top-right {
		right: 14px;
	}
	.eat-language-switcher--bottom-left,
	.eat-language-switcher--top-left {
		left: 14px;
	}
	.eat-language-switcher summary {
		padding: 9px 12px;
	}
	.eat-language-switcher__list {
		max-width: calc(100vw - 28px);
		min-width: 0;
		width: min(280px, calc(100vw - 28px));
	}
	.eat-language-suggestion {
		width: min(var(--eat-prompt-width, 360px), calc(100vw - 28px));
	}
	.eat-language-suggestion__actions {
		display: grid;
		grid-template-columns: 1fr;
	}
	.eat-language-suggestion button.eat-language-suggestion__action,
	.eat-language-suggestion button.eat-language-suggestion__secondary {
		width: 100% !important;
	}
	.eat-language-suggestion--bottom-right {
		bottom: min(var(--eat-prompt-offset-y, 88px), 78px);
		right: min(var(--eat-prompt-offset-x, 20px), 14px);
	}
	.eat-language-suggestion--bottom-left {
		bottom: min(var(--eat-prompt-offset-y, 88px), 78px);
		left: min(var(--eat-prompt-offset-x, 20px), 14px);
	}
	.eat-language-suggestion--top-right {
		right: min(var(--eat-prompt-offset-x, 20px), 14px);
		top: min(var(--eat-prompt-offset-y, 88px), 78px);
	}
	.eat-language-suggestion--top-left {
		left: min(var(--eat-prompt-offset-x, 20px), 14px);
		top: min(var(--eat-prompt-offset-y, 88px), 78px);
	}
	.eat-live-translation {
		max-width: calc(100vw - 28px);
		padding: 22px 18px;
	}
}

/* Keep floating-control metrics stable across themes and the admin preview. */
.eat-language-switcher--floating { font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif; font-size:16px; line-height:1.5; }
.eat-language-switcher--floating .eat-language-switcher__flag-svg { max-width:none; max-height:none; }
.eat-language-switcher--floating summary:focus-visible,
.eat-language-switcher--floating a:focus-visible { outline:2px solid var(--eat-switcher-text); outline-offset:3px; }
@media (prefers-reduced-motion:reduce) {
 .eat-language-switcher__toggle-icon { transition:none; }
}

/* Apply the chosen option padding after the responsive button defaults. */
.eat-language-switcher:not(.eat-language-switcher--elementor) .eat-language-switcher__inline-list a {
	padding: var(--eat-switcher-item-padding, 10px);
}
