/* Hamenagen music chat - צבעי אתר (#20215a, #cb1e53) - כפייה מול theme */

.hmc-root {
	--hmc-edge: 16px;
	--hmc-bottom-offset: 0px;
	--hmc-panel-width-desktop: 380px;
	--hmc-brand: #cb1e53;
	--hmc-brand-hover: #a91845;
	--hmc-navy: #20215a;
	--hmc-navy-soft: #2a2b6e;
	--hmc-page: #f4f5f8;
	--hmc-surface: #ffffff;
	--hmc-surface-soft: #f7f6ff;
	--hmc-border: rgba(32, 33, 90, 0.14);
	--hmc-text: #333333;
	--hmc-heading: #20215a;
	--hmc-muted: #666666;
	--hmc-on-navy: #ffffff;
	--hmc-focus: #cb1e53;
	--hmc-shadow: 0 12px 40px rgba(32, 33, 90, 0.18);
	--hmc-play: #fa8504;

	position: fixed;
	left: max(var(--hmc-edge), env(safe-area-inset-left, 0px));
	right: auto;
	bottom: max(calc(var(--hmc-edge) + var(--hmc-bottom-offset)), env(safe-area-inset-bottom, 0px));
	/* מעל UserWay (99970) ומפות/FAB נמוכים יותר */
	z-index: 100050;
	direction: rtl;
	overflow: visible;
	font-family: "פולין", "Polin", sans-serif !important;
	font-size: 15px;
	line-height: 1.45;
	color: var(--hmc-text);
}

.hmc-launcher {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 56px !important;
	height: 56px !important;
	border-radius: 50% !important;
	border: 1px solid rgba(255, 255, 255, 0.18) !important;
	cursor: pointer;
	color: #fff !important;
	background: linear-gradient(145deg, var(--hmc-brand) 0%, #9f1542 100%) !important;
	box-shadow: var(--hmc-shadow) !important;
	transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
	padding: 0 !important;
	position: relative;
	z-index: 2;
}

.hmc-launcher:hover {
	filter: brightness(1.08);
	transform: translateY(-2px);
	box-shadow: 0 14px 36px rgba(203, 30, 83, 0.35) !important;
}

.hmc-launcher:focus-visible {
	outline: 2px solid var(--hmc-focus) !important;
	outline-offset: 3px;
}

.hmc-launcher svg {
	width: 26px;
	height: 26px;
	display: block;
	fill: #fff !important;
	color: #fff !important;
}

/* תווית קופצת מהכפתור */
.hmc-teaser {
	position: absolute;
	left: calc(100% + 10px);
	bottom: 6px;
	z-index: 3;
	display: flex;
	align-items: flex-start;
	gap: 4px;
	max-width: min(240px, calc(100vw - 96px));
	opacity: 0;
	transform: translateX(-12px) scale(0.92);
	pointer-events: none;
	transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hmc-teaser[hidden] {
	display: none !important;
}

.hmc-teaser.hmc-teaser--visible {
	opacity: 1;
	transform: translateX(0) scale(1);
	pointer-events: auto;
	animation: hmc-teaser-nudge 2.8s ease-in-out 1.2s infinite;
}

.hmc-teaser__bubble {
	position: relative;
	margin: 0 !important;
	padding: 10px 14px !important;
	border: 1px solid rgba(32, 33, 90, 0.12) !important;
	border-radius: 14px 14px 14px 4px !important;
	background: #ffffff !important;
	background-color: #ffffff !important;
	color: var(--hmc-navy) !important;
	font-family: inherit !important;
	font-size: 0.875rem !important;
	font-weight: 700 !important;
	line-height: 1.35 !important;
	text-align: right !important;
	cursor: pointer;
	box-shadow: 0 10px 28px rgba(32, 33, 90, 0.18) !important;
	white-space: normal;
}

.hmc-teaser__bubble::before {
	content: "";
	position: absolute;
	right: auto;
	left: -6px;
	bottom: 14px;
	width: 12px;
	height: 12px;
	background: #fff;
	border-left: 1px solid rgba(32, 33, 90, 0.12);
	border-bottom: 1px solid rgba(32, 33, 90, 0.12);
	transform: rotate(45deg);
}

.hmc-teaser__bubble:hover {
	filter: brightness(1.02);
}

.hmc-teaser__text {
	display: block;
	position: relative;
	z-index: 1;
}

.hmc-teaser__dismiss {
	flex-shrink: 0;
	width: 22px !important;
	height: 22px !important;
	min-width: 22px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	border-radius: 50% !important;
	background: rgba(32, 33, 90, 0.08) !important;
	color: var(--hmc-navy) !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	cursor: pointer;
	box-shadow: none !important;
}

.hmc-teaser__dismiss:hover {
	background: rgba(32, 33, 90, 0.16) !important;
}

@keyframes hmc-teaser-nudge {

	0%,
	100% {
		transform: translateX(0) scale(1);
	}

	50% {
		transform: translateX(4px) scale(1.02);
	}
}

.hmc-root.hmc-root--expanded .hmc-teaser {
	display: none !important;
}

.hmc-panel {
	position: absolute;
	left: 0;
	right: auto;
	bottom: calc(100% + 12px);
	width: var(--hmc-panel-width-desktop);
	max-width: calc(100vw - max(var(--hmc-edge), env(safe-area-inset-left, 0px)) - max(var(--hmc-edge), env(safe-area-inset-right, 0px)));
	max-height: min(70vh, 520px);
	display: flex;
	flex-direction: column;
	background: var(--hmc-surface) !important;
	border: 1px solid var(--hmc-border) !important;
	border-radius: 14px;
	box-shadow: var(--hmc-shadow) !important;
	overflow: hidden;
	color: var(--hmc-text) !important;
}

.hmc-panel[hidden] {
	display: none !important;
}

/* מסך פתיחה - מנגי מחזיק דף */
.hmc-welcome {
	display: none;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
	overflow: hidden;
	background: #20215a !important;
}

.hmc-panel--welcome .hmc-welcome {
	display: flex !important;
}

.hmc-welcome[hidden] {
	display: none !important;
}

.hmc-panel--welcome .hmc-messages {
	display: none !important;
}

.hmc-panel--welcome .hmc-header {
	position: absolute !important;
	top: 0;
	left: 0;
	right: 0;
	z-index: 5;
	padding: 8px 10px !important;
	border-bottom: none !important;
	background: transparent !important;
	background-color: transparent !important;
	pointer-events: none;
}

.hmc-panel--welcome .hmc-title {
	visibility: hidden !important;
	width: 0 !important;
	overflow: hidden !important;
}

.hmc-panel--welcome .hmc-header-actions {
	pointer-events: auto;
	margin-inline-start: auto;
}

.hmc-panel--welcome {
	background: #f4f5f8 !important;
	max-height: min(78vh, 640px);
}

.hmc-welcome__hero {
	display: block;
	width: 100%;
	line-height: 0;
	flex-shrink: 0;
	isolation: isolate;
	background-color: #20215a;
	background-image:
		radial-gradient(ellipse 58% 70% at 50% 36%, #7a7de0 0%, #4a4db8 32%, rgba(42, 43, 110, 0.35) 58%, transparent 72%),
		linear-gradient(168deg, #2f3180 0%, #20215a 52%, #16173f 100%);
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.hmc-welcome__img {
	display: block !important;
	width: 100% !important;
	height: auto !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	vertical-align: bottom;
	/* שחור בתמונה הופך לשקוף → נשאר הרקע הכחול */
	/* mix-blend-mode: lighten; */
}

.hmc-welcome__paper {
	flex: 1 1 auto;
	margin-top: -2px;
	padding: 8px 22px 18px;
	background: #ffffff !important;
	background-color: #ffffff !important;
	color: var(--hmc-navy) !important;
	text-align: center;
}

@media (min-width: 481px) {
	.hmc-welcome__paper {
		padding-top: 22px;
	}
}

.hmc-welcome__hello {
	margin: 0 0 6px !important;
	font-size: 1.55rem !important;
	font-weight: 800 !important;
	line-height: 1.25 !important;
	color: var(--hmc-navy) !important;
}

.hmc-welcome__intro {
	margin: 0 0 14px !important;
	font-size: 1.02rem !important;
	font-weight: 600 !important;
	line-height: 1.4 !important;
	color: var(--hmc-navy) !important;
}

.hmc-welcome__name {
	color: var(--hmc-brand) !important;
	font-weight: 800 !important;
}

.hmc-welcome__prompt {
	margin: 0 !important;
	font-size: 0.95rem !important;
	font-weight: 500 !important;
	line-height: 1.5 !important;
	color: var(--hmc-navy-soft) !important;
}

.hmc-panel--welcome .hmc-compose {
	border-top: none !important;
	box-shadow: 0 -8px 24px rgba(32, 33, 90, 0.06);
}

.hmc-header {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 8px;
	padding: 12px 14px !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
	background: var(--hmc-navy) !important;
	background-color: var(--hmc-navy) !important;
}

.hmc-header-actions {
	display: flex !important;
	align-items: center !important;
	flex-direction: row !important;
	direction: ltr;
	gap: 2px;
	flex-shrink: 0;
}

.hmc-root .hmc-title,
.hmc-root h2.hmc-title,
#hmc-root .hmc-title,
#hmc-root h2.hmc-title {
	margin: 0 !important;
	font-size: 1rem !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
	color: #ffffff !important;
	background: transparent !important;
}

.hmc-root button.hmc-close,
.hmc-root button.hmc-expand {
	padding: 6px !important;
	margin: 0 !important;
	border: none !important;
	background: transparent !important;
	background-color: transparent !important;
	color: rgba(255, 255, 255, 0.85) !important;
	cursor: pointer;
	border-radius: 8px !important;
	line-height: 0 !important;
	box-shadow: none !important;
	transition: color 0.15s ease, background 0.15s ease;
}

.hmc-root button.hmc-close:hover,
.hmc-root button.hmc-expand:hover {
	background: rgba(255, 255, 255, 0.12) !important;
	color: #ffffff !important;
}

.hmc-root button.hmc-close:focus-visible,
.hmc-root button.hmc-expand:focus-visible {
	outline: 2px solid #fff !important;
	outline-offset: 2px;
}

.hmc-root button.hmc-close svg,
.hmc-root button.hmc-close path,
.hmc-root button.hmc-expand svg,
.hmc-root button.hmc-expand path {
	fill: currentColor !important;
	color: inherit !important;
}

.hmc-root button.hmc-expand .hmc-expand__icon[hidden] {
	display: none !important;
}

/* מצב מורחב - תצוגה גדולה ונוחה לקריאה */
.hmc-root.hmc-root--expanded {
	left: 50% !important;
	right: auto !important;
	bottom: max(16px, env(safe-area-inset-bottom, 0px)) !important;
	transform: translateX(-50%);
	width: min(720px, calc(100vw - 24px));
	z-index: 100100;
}

.hmc-root.hmc-root--expanded .hmc-launcher {
	display: none !important;
}

.hmc-panel.hmc-panel--expanded,
.hmc-root.hmc-root--expanded .hmc-panel {
	position: relative !important;
	left: auto !important;
	right: auto !important;
	bottom: auto !important;
	width: 100% !important;
	max-width: 100% !important;
	max-height: min(88vh, 820px) !important;
	height: min(88vh, 820px) !important;
	border-radius: 16px !important;
	box-shadow: 0 20px 60px rgba(32, 33, 90, 0.28) !important;
}

.hmc-root.hmc-root--expanded .hmc-messages {
	min-height: 0 !important;
	max-height: none !important;
	flex: 1 1 auto !important;
	font-size: 1.02rem;
	padding: 16px !important;
	gap: 12px;
}

.hmc-root.hmc-root--expanded .hmc-msg {
	padding: 12px 14px;
	font-size: 1.02rem;
	line-height: 1.55;
}

.hmc-root.hmc-root--expanded .hmc-result-card__title {
	font-size: 1.05rem;
}

.hmc-root.hmc-root--expanded .hmc-title,
.hmc-root.hmc-root--expanded h2.hmc-title {
	font-size: 1.15rem !important;
}

.hmc-messages {
	flex: 1;
	min-height: 180px;
	max-height: 340px;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	background: var(--hmc-page) !important;
}

.hmc-msg {
	max-width: 100%;
	padding: 10px 12px;
	border-radius: 12px;
	white-space: pre-wrap;
	word-break: break-word;
}

.hmc-msg--user {
	align-self: flex-end;
	background: #fff !important;
	color: var(--hmc-text) !important;
	border: 1px solid rgba(203, 30, 83, 0.35) !important;
	box-shadow: 0 1px 3px rgba(32, 33, 90, 0.06);
}

.hmc-msg--bot {
	align-self: stretch;
	background: #fff !important;
	color: var(--hmc-text) !important;
	border: 1px solid var(--hmc-border) !important;
	box-shadow: 0 1px 3px rgba(32, 33, 90, 0.05);
}

.hmc-msg--bot.hmc-msg--loading {
	color: var(--hmc-muted) !important;
	font-style: italic;
	background: var(--hmc-surface-soft) !important;
}

.hmc-results-intro {
	margin: 0 0 4px;
	font-size: 0.9rem;
	color: var(--hmc-text) !important;
}

.hmc-results-intro strong {
	font-weight: 700;
	color: var(--hmc-heading) !important;
}

.hmc-results-section {
	margin: 10px 0 4px;
	padding: 0;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--hmc-navy) !important;
}

.hmc-results-section:first-of-type {
	margin-top: 2px;
}

.hmc-results {
	list-style: none;
	margin: 0 0 6px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hmc-result-card__badge {
	display: inline-block;
	align-self: flex-start;
	margin: 0 0 2px;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 0.68rem;
	font-weight: 700;
	line-height: 1.4;
	color: #fff !important;
	background: var(--hmc-navy) !important;
}

.hmc-result-card__badge--artist {
	background: var(--hmc-navy) !important;
}

.hmc-result-card__badge--event {
	background: var(--hmc-brand) !important;
}

.hmc-result-card__badge--post {
	background: #5a5c8a !important;
}

.hmc-result-card--artist {
	border-color: rgba(32, 33, 90, 0.28) !important;
}

.hmc-result-card--event {
	border-color: rgba(203, 30, 83, 0.28) !important;
}

.hmc-root a.hmc-result-card__tickets {
	flex-shrink: 0 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin: 0 10px 0 0 !important;
	padding: 8px 12px !important;
	border-radius: 999px !important;
	background: var(--hmc-brand) !important;
	color: #fff !important;
	font-size: 0.75rem !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	text-decoration: none !important;
	white-space: nowrap !important;
	box-shadow: none !important;
	transition: filter 0.15s ease, transform 0.15s ease;
}

.hmc-root a.hmc-result-card__tickets:hover {
	filter: brightness(1.06);
	transform: translateY(-1px);
	color: #fff !important;
}

.hmc-result-card {
	margin: 0;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--hmc-border) !important;
	background: var(--hmc-surface) !important;
	box-shadow: 0 2px 8px rgba(32, 33, 90, 0.06);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.hmc-result-card:hover {
	border-color: rgba(203, 30, 83, 0.45) !important;
	box-shadow: 0 4px 14px rgba(203, 30, 83, 0.12);
}

.hmc-result-card__link {
	display: flex;
	flex: 1;
	min-width: 0;
	flex-direction: row;
	align-items: stretch;
	gap: 12px;
	padding: 10px 0 10px 12px;
	text-decoration: none !important;
	color: inherit !important;
	min-height: 72px;
}

.hmc-result-card__play,
.hmc-root button.hmc-result-card__play[type="button"] {
	-webkit-appearance: none !important;
	appearance: none !important;
	box-sizing: border-box !important;
	flex-shrink: 0 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 36px !important;
	min-width: 36px !important;
	max-width: 36px !important;
	height: 36px !important;
	min-height: 36px !important;
	max-height: 36px !important;
	margin: 0 10px 0 0 !important;
	padding: 0 !important;
	border: none !important;
	border-radius: 50% !important;
	background: var(--hmc-play) !important;
	background-color: var(--hmc-play) !important;
	background-image: none !important;
	color: #1a1a1a !important;
	font: inherit !important;
	font-size: 0 !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	text-decoration: none !important;
	box-shadow: none !important;
	cursor: pointer !important;
	transition: filter 0.15s ease, transform 0.15s ease !important;
}

.hmc-result-card__play:hover,
.hmc-root button.hmc-result-card__play[type="button"]:hover,
.hmc-result-card__play:focus,
.hmc-root button.hmc-result-card__play[type="button"]:focus {
	background: var(--hmc-play) !important;
	background-color: var(--hmc-play) !important;
	background-image: none !important;
	color: #1a1a1a !important;
	border: none !important;
	box-shadow: none !important;
	filter: brightness(1.08);
	transform: translateY(-1px);
}

.hmc-result-card__play:active,
.hmc-root button.hmc-result-card__play[type="button"]:active {
	background: var(--hmc-play) !important;
	background-color: var(--hmc-play) !important;
	transform: translateY(0) !important;
}

.hmc-result-card__play:focus-visible,
.hmc-root button.hmc-result-card__play[type="button"]:focus-visible {
	outline: 2px solid var(--hmc-focus) !important;
	outline-offset: 2px !important;
}

.hmc-result-card__play svg,
.hmc-root button.hmc-result-card__play[type="button"] svg,
.hmc-result-card__play polygon,
.hmc-root button.hmc-result-card__play[type="button"] polygon {
	display: block !important;
	width: 14px !important;
	height: 14px !important;
	fill: #1a1a1a !important;
	stroke: none !important;
	pointer-events: none !important;
}

.hmc-result-card__thumb {
	flex: 0 0 auto;
	width: 72px;
	height: 72px;
	border-radius: 6px;
	overflow: hidden;
	background: var(--hmc-navy-soft) !important;
	align-self: center;
}

.hmc-result-card__thumb--placeholder {
	background: linear-gradient(145deg, #2a2b6e, #20215a) !important;
	border: 1px solid var(--hmc-border);
}

.hmc-result-card__img {
	display: block;
	width: 72px;
	height: 72px;
	object-fit: cover;
}

.hmc-result-card__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	text-align: right;
}

.hmc-result-card__title {
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--hmc-brand) !important;
	transition: color 0.15s ease;
}

.hmc-result-card:hover .hmc-result-card__title {
	color: var(--hmc-brand-hover) !important;
}

.hmc-result-excerpt {
	display: block;
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.45;
	color: var(--hmc-muted) !important;
}

.hmc-compose {
	display: flex !important;
	gap: 8px;
	padding: 10px 12px !important;
	border-top: 1px solid var(--hmc-border) !important;
	background: var(--hmc-surface) !important;
	background-color: var(--hmc-surface) !important;
	align-items: flex-end;
}

.hmc-root .hmc-input,
.hmc-root textarea.hmc-input,
#hmc-root .hmc-input,
#hmc-root textarea.hmc-input {
	flex: 1 !important;
	min-height: 44px !important;
	max-height: 120px;
	padding: 10px 12px !important;
	border: 1px solid var(--hmc-border) !important;
	border-radius: 10px !important;
	font: inherit !important;
	font-family: "פולין", "Polin", sans-serif !important;
	resize: vertical;
	color: var(--hmc-text) !important;
	background: var(--hmc-surface-soft) !important;
	background-color: var(--hmc-surface-soft) !important;
	box-shadow: none !important;
	-webkit-appearance: none !important;
	appearance: none !important;
}

.hmc-root .hmc-input::placeholder,
#hmc-root .hmc-input::placeholder {
	color: var(--hmc-muted) !important;
	opacity: 0.9;
}

.hmc-root .hmc-input:focus,
#hmc-root .hmc-input:focus {
	outline: none !important;
	border-color: var(--hmc-brand) !important;
	box-shadow: 0 0 0 2px rgba(203, 30, 83, 0.22) !important;
}

.hmc-root button.hmc-send,
.hmc-root button.hmc-send[type="submit"],
#hmc-root button.hmc-send {
	flex-shrink: 0 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-width: 44px !important;
	min-height: 44px !important;
	width: 44px !important;
	height: 44px !important;
	padding: 0 !important;
	margin: 0 !important;
	border: none !important;
	border-radius: 10px !important;
	background: var(--hmc-brand) !important;
	background-color: var(--hmc-brand) !important;
	background-image: none !important;
	color: #fff !important;
	cursor: pointer;
	box-shadow: none !important;
	transition: background 0.15s ease, filter 0.15s ease;
}

.hmc-root button.hmc-send svg,
#hmc-root button.hmc-send svg {
	display: block;
	flex-shrink: 0;
	transform: scaleX(-1);
	fill: #fff !important;
	color: #fff !important;
}

.hmc-root button.hmc-send:hover:not(:disabled),
#hmc-root button.hmc-send:hover:not(:disabled) {
	background: var(--hmc-brand-hover) !important;
	background-color: var(--hmc-brand-hover) !important;
	filter: brightness(1.05);
	color: #fff !important;
}

.hmc-root button.hmc-send:focus-visible,
#hmc-root button.hmc-send:focus-visible {
	outline: 2px solid var(--hmc-navy) !important;
	outline-offset: 2px;
}

.hmc-root button.hmc-send:disabled,
#hmc-root button.hmc-send:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

/* כהה - אם האתר במצב כהה */
html[data-hm-theme="dark"] .hmc-root {
	--hmc-page: #16162e;
	--hmc-surface: #1e1e32;
	--hmc-surface-soft: rgba(255, 255, 255, 0.05);
	--hmc-border: rgba(255, 255, 255, 0.12);
	--hmc-text: #f5f5f7;
	--hmc-heading: #f5f5f7;
	--hmc-muted: rgba(245, 245, 247, 0.65);
	--hmc-brand: #fa8504;
	--hmc-brand-hover: #e07804;
	--hmc-focus: #fa8504;
	--hmc-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

html[data-hm-theme="dark"] .hmc-root .hmc-header {
	background: #12122a !important;
	background-color: #12122a !important;
}

/* מסך פתיחה: כותרת שקופה גם בכהה - בלי פס שמסתיר את מנגי */
html[data-hm-theme="dark"] .hmc-root .hmc-panel--welcome .hmc-header {
	background: transparent !important;
	background-color: transparent !important;
	border-bottom: none !important;
}

html[data-hm-theme="dark"] .hmc-root .hmc-title,
html[data-hm-theme="dark"] .hmc-root h2.hmc-title {
	color: #ffffff !important;
}

html[data-hm-theme="dark"] .hmc-root button.hmc-send,
html[data-hm-theme="dark"] #hmc-root button.hmc-send {
	background: #fa8504 !important;
	background-color: #fa8504 !important;
	color: #1a1a1a !important;
}

/* בועות הודעות נשארות לבנות - טקסט כהה לקריאות */
html[data-hm-theme="dark"] .hmc-root .hmc-msg--user,
html[data-hm-theme="dark"] .hmc-root .hmc-msg--bot:not(.hmc-msg--loading) {
	color: #333333 !important;
}

html[data-hm-theme="dark"] .hmc-results-intro,
html[data-hm-theme="dark"] .hmc-results-intro strong {
	color: #20215a !important;
}

html[data-hm-theme="dark"] .hmc-results-section {
	color: #20215a !important;
}

html[data-hm-theme="dark"] .hmc-result-card__badge--post {
	background: #6b6d9a !important;
}

html[data-hm-theme="dark"] .hmc-root a.hmc-result-card__tickets {
	background: #fa8504 !important;
	color: #1a1a1a !important;
}

html[data-hm-theme="dark"] .hmc-panel--welcome {
	background: #f4f5f8 !important;
}

html[data-hm-theme="dark"] .hmc-welcome__paper {
	background: #ffffff !important;
	background-color: #ffffff !important;
}

html[data-hm-theme="dark"] .hmc-welcome__hello,
html[data-hm-theme="dark"] .hmc-welcome__intro,
html[data-hm-theme="dark"] .hmc-welcome__prompt {
	color: #20215a !important;
}

html[data-hm-theme="dark"] .hmc-welcome__name {
	color: #cb1e53 !important;
}

html[data-hm-theme="dark"] .hmc-panel--welcome .hmc-compose {
	background: #ffffff !important;
	background-color: #ffffff !important;
}

/* #hmc-root חייב - אחרת color מ־var(--hmc-text) הבהיר דורס */
html[data-hm-theme="dark"] #hmc-root .hmc-panel--welcome .hmc-input,
html[data-hm-theme="dark"] #hmc-root .hmc-panel--welcome textarea.hmc-input {
	background: #f7f6ff !important;
	background-color: #f7f6ff !important;
	color: #333333 !important;
	caret-color: #333333 !important;
	border-color: rgba(32, 33, 90, 0.14) !important;
	-webkit-text-fill-color: #333333 !important;
}

html[data-hm-theme="dark"] #hmc-root .hmc-panel--welcome .hmc-input::placeholder,
html[data-hm-theme="dark"] #hmc-root .hmc-panel--welcome textarea.hmc-input::placeholder {
	color: #666666 !important;
	-webkit-text-fill-color: #666666 !important;
	opacity: 0.9;
}

@media (max-width: 480px) {
	.hmc-root {
		--hmc-edge: 12px;
		--hmc-bottom-offset: 120px;
	}

	.hmc-panel {
		width: calc(100vw - max(var(--hmc-edge), env(safe-area-inset-left, 0px)) - max(var(--hmc-edge), env(safe-area-inset-right, 0px)));
		max-width: calc(100vw - max(var(--hmc-edge), env(safe-area-inset-left, 0px)) - max(var(--hmc-edge), env(safe-area-inset-right, 0px)));
	}

	.hmc-root.hmc-root--expanded {
		--hmc-bottom-offset: 0px;
		bottom: max(12px, env(safe-area-inset-bottom, 0px)) !important;
		width: calc(100vw - 16px);
	}

	.hmc-root.hmc-root--expanded .hmc-panel {
		height: min(90vh, 900px) !important;
		max-height: min(90vh, 900px) !important;
	}

	.hmc-result-card__link {
		padding: 8px 0 8px 10px;
		gap: 10px;
	}

	.hmc-result-card__play,
	.hmc-root button.hmc-result-card__play[type="button"] {
		width: 32px !important;
		min-width: 32px !important;
		max-width: 32px !important;
		height: 32px !important;
		min-height: 32px !important;
		max-height: 32px !important;
		margin-inline-end: 8px !important;
	}

	.hmc-result-card__play svg,
	.hmc-root button.hmc-result-card__play[type="button"] svg {
		width: 12px !important;
		height: 12px !important;
	}

	.hmc-result-card__thumb,
	.hmc-result-card__img {
		width: 64px;
		height: 64px;
	}
}