.bm-tvc-shell {
	--bm-tvc-ink: #17233a;
	--bm-tvc-muted: #5f6f88;
	--bm-tvc-border: rgba(23, 35, 58, 0.1);
	--bm-tvc-accent: linear-gradient(135deg, #0ea5e9 0%, #6366f1 44%, #a855f7 72%, #f97316 100%);
	--bm-tvc-accent-soft: linear-gradient(135deg, rgba(14, 165, 233, 0.16) 0%, rgba(99, 102, 241, 0.16) 50%, rgba(249, 115, 22, 0.14) 100%);
	--bm-tvc-panel-bg:
		radial-gradient(circle at top right, rgba(14, 165, 233, 0.2), transparent 28%),
		radial-gradient(circle at left 16%, rgba(244, 63, 94, 0.14), transparent 22%),
		linear-gradient(180deg, rgba(251, 253, 255, 0.98) 0%, rgba(243, 247, 255, 0.96) 48%, rgba(250, 245, 255, 0.98) 100%);
	--bm-tvc-surface: rgba(255, 255, 255, 0.82);
	--bm-tvc-surface-strong: rgba(255, 255, 255, 0.92);
	--bm-tvc-button-bg: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #ec4899 100%);
	--bm-tvc-shadow: -34px 0 82px rgba(15, 23, 42, 0.22);
	position: fixed;
	inset: 0;
	z-index: 999999;
	pointer-events: none;
	font-family: "Poppins", "Trebuchet MS", sans-serif;
	color: var(--bm-tvc-ink);
}

html.bm-tvc-font-override body,
html.bm-tvc-font-override body *:not(pre):not(code):not(kbd):not(samp):not(.fa):not(.fas):not(.far):not(.fab):not(.fal):not(.fat):not(.fa-solid):not(.fa-regular):not(.fa-brands):not(.material-icons):not(.material-symbols-outlined):not(.material-symbols-rounded):not(.material-symbols-sharp):not(.dashicons):not([class^="icon-"]):not([class*=" icon-"]) {
	font-family: var(--bm-tvc-preview-font-family) !important;
}

.bm-tvc-font-dropdown__current-name,
.bm-tvc-font-option__sample {
	font-family: var(--bm-tvc-option-font-family, inherit);
}

html.bm-tvc-font-override .bm-tvc-font-dropdown__current-name,
html.bm-tvc-font-override .bm-tvc-font-option__sample {
	font-family: var(--bm-tvc-option-font-family, var(--bm-tvc-preview-font-family)) !important;
}

.bm-tvc-backdrop,
.bm-tvc-toggle,
.bm-tvc-panel {
	pointer-events: auto;
}

.bm-tvc-toggle,
.bm-tvc-action-button,
.bm-tvc-secondary-button,
.bm-tvc-logo-choice,
.bm-tvc-preset-button,
.bm-tvc-close {
	font: inherit;
	border: 0;
	cursor: pointer;
}

.bm-tvc-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(8, 16, 29, 0.28);
	backdrop-filter: blur(5px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.24s ease;
}

body.bm-tvc-panel-open .bm-tvc-backdrop {
	pointer-events: auto;
}

.bm-tvc-toggle {
	position: fixed;
	display: flex;
	flex-direction: row;
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background:
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 60%),
		linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.85) 100%);
	color: #ffffff;
	box-shadow:
		0 12px 32px rgba(15, 23, 42, 0.25),
		0 0 0 1px rgba(99, 102, 241, 0.1);
	backdrop-filter: blur(20px);
	transition:
		max-width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
		background 0.3s ease,
		box-shadow 0.3s ease,
		transform 0.3s ease;
	isolation: isolate;
	overflow: hidden;
}

.bm-tvc-toggle:hover {
	background:
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 60%),
		linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(37, 99, 235, 0.85) 50%, rgba(124, 58, 237, 0.8) 100%);
	box-shadow:
		0 16px 40px rgba(15, 23, 42, 0.35),
		0 0 0 1px rgba(249, 115, 22, 0.25);
}

/* 1. Side Right */
.bm-tvc-toggle--side-right {
	top: 50%;
	right: 24px;
	transform: translateY(-50%);
	gap: 12px;
	height: 48px;
	min-width: 48px;
	max-width: 48px;
	padding: 0 14px;
	border-radius: 999px;
}
.bm-tvc-toggle--side-right:hover {
	max-width: 200px;
	transform: translateY(-50%) translateX(-2px);
}
body.bm-tvc-panel-open .bm-tvc-toggle--side-right {
	opacity: 0;
	transform: translateY(-50%) translateX(20px);
	pointer-events: none;
}

/* 2. Side Left */
.bm-tvc-toggle--side-left {
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	gap: 12px;
	height: 48px;
	min-width: 48px;
	max-width: 48px;
	padding: 0 14px 0 16px;
	border-radius: 0 999px 999px 0;
	border-left: 0;
}
.bm-tvc-toggle--side-left:hover {
	max-width: 200px;
	transform: translateY(-50%) translateX(2px);
}
body.bm-tvc-panel-open .bm-tvc-toggle--side-left {
	opacity: 0;
	transform: translateY(-50%) translateX(-20px);
	pointer-events: none;
}

/* 3. FAB Bottom Right */
.bm-tvc-toggle--bottom-right-fab {
	bottom: 24px;
	right: 24px;
	gap: 0;
	height: 56px;
	width: 56px;
	min-width: 56px;
	max-width: 56px;
	padding: 0;
	justify-content: center;
	border-radius: 50%;
}
.bm-tvc-toggle--bottom-right-fab:hover {
	transform: translateY(-4px);
}
body.bm-tvc-panel-open .bm-tvc-toggle--bottom-right-fab {
	opacity: 0;
	transform: translateY(20px);
	pointer-events: none;
}

/* 4. FAB Bottom Left */
.bm-tvc-toggle--bottom-left-fab {
	bottom: 24px;
	left: 24px;
	gap: 0;
	height: 56px;
	width: 56px;
	min-width: 56px;
	max-width: 56px;
	padding: 0;
	justify-content: center;
	border-radius: 50%;
}
.bm-tvc-toggle--bottom-left-fab:hover {
	transform: translateY(-4px);
}
body.bm-tvc-panel-open .bm-tvc-toggle--bottom-left-fab {
	opacity: 0;
	transform: translateY(20px);
	pointer-events: none;
}

/* 5. Pill Bottom Right */
.bm-tvc-toggle--bottom-right-pill {
	bottom: 24px;
	right: 24px;
	gap: 12px;
	height: 48px;
	padding: 32px 30px;
	border-radius: 999px;
	max-width: 240px;
}
.bm-tvc-toggle--bottom-right-pill:hover {
	transform: translateY(-4px);
}
body.bm-tvc-panel-open .bm-tvc-toggle--bottom-right-pill {
	opacity: 0;
	transform: translateY(20px);
	pointer-events: none;
}

/* 6. Pill Bottom Left */
.bm-tvc-toggle--bottom-left-pill {
	bottom: 24px;
	left: 24px;
	gap: 12px;
	height: 48px;
	padding: 0 16px;
	border-radius: 999px;
	max-width: 240px;
}
.bm-tvc-toggle--bottom-left-pill:hover {
	transform: translateY(-4px);
}
body.bm-tvc-panel-open .bm-tvc-toggle--bottom-left-pill {
	opacity: 0;
	transform: translateY(20px);
	pointer-events: none;
}

/* Icon */
.bm-tvc-toggle__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 20px;
	color: rgba(255, 255, 255, 0.9);
	transition: transform 0.3s ease;
}

.bm-tvc-toggle:hover .bm-tvc-toggle__icon {
	transform: rotate(15deg);
	color: #fff;
}

/* Text Base */
.bm-tvc-toggle__text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	white-space: nowrap;
	transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Text state for Expanding Sides */
.bm-tvc-toggle--side-right .bm-tvc-toggle__text,
.bm-tvc-toggle--side-left .bm-tvc-toggle__text {
	opacity: 0;
	transform: translateX(-10px);
}

.bm-tvc-toggle--side-right:hover .bm-tvc-toggle__text,
.bm-tvc-toggle--side-left:hover .bm-tvc-toggle__text {
	opacity: 1;
	transform: translateX(0);
	transition-delay: 0.05s;
}

/* Text state for FABs */
.bm-tvc-toggle--bottom-right-fab .bm-tvc-toggle__text,
.bm-tvc-toggle--bottom-left-fab .bm-tvc-toggle__text {
	display: none;
}

/* Text state for Pills */
.bm-tvc-toggle--bottom-right-pill .bm-tvc-toggle__text,
.bm-tvc-toggle--bottom-left-pill .bm-tvc-toggle__text {
	opacity: 1;
	transform: translateX(0);
}

.bm-tvc-toggle__eyebrow {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1;
	margin-bottom: 2px;
}

.bm-tvc-toggle__label {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
}

.bm-tvc-panel {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(392px, calc(100vw - 10px));
	display: flex;
	flex-direction: column;
	border-left: 1px solid rgba(255, 255, 255, 0.68);
	border-radius: 28px 0 0 28px;
	background: var(--bm-tvc-panel-bg);
	box-shadow: var(--bm-tvc-shadow);
	backdrop-filter: blur(22px);
	overflow: hidden;
	transform: translateX(100%);
	transition: transform 0.34s cubic-bezier(0.2, 0.82, 0.2, 1);
	justify-content: space-between;
}

body.bm-tvc-panel-open .bm-tvc-panel {
	transform: translateX(0);
}

.bm-tvc-panel__header,
.bm-tvc-panel__footer {
	flex: 0 0 auto;
}

.bm-tvc-panel__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 18px 12px;
	border-bottom: 1px solid rgba(19, 32, 51, 0.08);
	background:
		radial-gradient(circle at top right, rgba(14, 165, 233, 0.14), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.76) 100%);
}

.bm-tvc-panel__header-copy {
	display: grid;
	gap: 3px;
	min-width: 0;
	max-width: 264px;
}

.bm-tvc-panel__kicker {
	display: inline-flex;
	align-items: center;
	margin-bottom: 2px;
	padding: 4px 8px;
	border-radius: 999px;
	background: rgba(99, 102, 241, 0.1);
	color: #4338ca;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.bm-tvc-panel__header-actions {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
}

.bm-tvc-panel__status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 9px;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(14, 165, 233, 0.12) 0%, rgba(124, 58, 237, 0.12) 100%);
	border: 1px solid rgba(99, 102, 241, 0.12);
	color: #1d4ed8;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	white-space: nowrap;
}

.bm-tvc-panel__header h2,
.bm-tvc-section h3 {
	margin: 0;
	color: var(--bm-tvc-ink);
	font-size: 18px!important;
	line-height: 1.15;
	font-weight: 700!important;
}

.bm-tvc-panel__header p,
.bm-tvc-help-text {
	margin: 4px 0 0;
	color: var(--bm-tvc-muted);
	font-size: 12px;
	line-height: 1.45;
}

.bm-tvc-panel__header p {
	margin-top: 0;
	max-width: 100%;
}

.bm-tvc-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	flex: 0 0 38px;
	border-radius: 12px;
	background: rgba(99, 102, 241, 0.08);
	color: var(--bm-tvc-ink);
	font-size: 24px;
	line-height: 1;
	transition: background 0.18s ease, transform 0.18s ease;
}

.bm-tvc-close:hover {
	background: linear-gradient(135deg, rgba(14, 165, 233, 0.14) 0%, rgba(124, 58, 237, 0.14) 100%);
	transform: translateY(-1px);
}

.bm-tvc-panel__body {
	flex-direction: column;
	gap: 14px;
	padding: 12px 18px 16px;
	min-height: 0;
	overflow-y: auto;
	overflow-x: hidden;
	overscroll-behavior: contain;
	scroll-behavior: smooth;
	flex: 1;
	scrollbar-color: rgba(99, 102, 241, 0.4) rgba(255, 255, 255, 0.45);
}

.bm-tvc-spotlight {
	position: relative;
	padding: 14px;
	border: 1px solid rgba(19, 32, 51, 0.08);
	border-radius: 22px;
	background:
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 32%),
		radial-gradient(circle at 10% 12%, rgba(249, 115, 22, 0.22), transparent 28%),
		linear-gradient(145deg, rgba(10, 22, 42, 0.96) 0%, rgba(37, 99, 235, 0.94) 42%, rgba(124, 58, 237, 0.94) 74%, rgba(244, 63, 94, 0.92) 100%);
	color: #ffffff;
	box-shadow:
		0 24px 46px rgba(37, 99, 235, 0.18),
		inset 0 0 0 1px rgba(255, 255, 255, 0.06);
	overflow: hidden;
}

.bm-tvc-spotlight::after {
	content: "";
	position: absolute;
	inset: auto -20% -35% auto;
	width: 180px;
	height: 180px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	filter: blur(2px);
	pointer-events: none;
}

.bm-tvc-spotlight__title {
	position: relative;
	z-index: 1;
	margin: 0;
	max-width: 300px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.45;
	text-wrap: pretty;
}

.bm-tvc-spotlight__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 12px;
}

.bm-tvc-spotlight__item {
	padding: 12px;
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(6px);
}

.bm-tvc-spotlight__item span {
	display: block;
	margin-bottom: 6px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.bm-tvc-spotlight__item strong {
	display: block;
	color: #ffffff;
	font-size: 13px;
	line-height: 1.35;
}

.bm-tvc-section {
	position: relative;
	padding: 16px;
	border: 1px solid var(--bm-tvc-border);
	border-radius: 20px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 251, 255, 0.88) 100%);
	box-shadow:
		0 16px 30px rgba(15, 23, 42, 0.07),
		inset 0 0 0 1px rgba(255, 255, 255, 0.45);
	backdrop-filter: blur(10px);
	opacity: 0;
	transform: translateY(18px);
	transition: transform 0.3s ease, opacity 0.3s ease;
	overflow: hidden;
	isolation: isolate;
}

.bm-tvc-section::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: var(--bm-tvc-section-accent, var(--bm-tvc-accent));
	opacity: 0.96;
}

#bm-tvc-theme-section {
	--bm-tvc-section-accent: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
	background:
		radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 247, 255, 0.9) 100%);
}

#bm-tvc-font-section {
	--bm-tvc-section-accent: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 48%, #10b981 100%);
	background:
		radial-gradient(circle at top right, rgba(16, 185, 129, 0.08), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(242, 252, 251, 0.92) 100%);
}

#bm-tvc-branding-section {
	--bm-tvc-section-accent: linear-gradient(135deg, #f97316 0%, #ef4444 46%, #ec4899 100%);
	background:
		radial-gradient(circle at top right, rgba(249, 115, 22, 0.08), transparent 32%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 246, 244, 0.92) 100%);
}

#bm-tvc-query-panel-section {
	--bm-tvc-section-accent: linear-gradient(135deg, #0f766e 0%, #2563eb 52%, #7c3aed 100%);
	background:
		radial-gradient(circle at top right, rgba(124, 58, 237, 0.08), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 247, 255, 0.92) 100%);
}

body.bm-tvc-panel-open .bm-tvc-section {
	opacity: 1;
	transform: translateY(0);
}

body.bm-tvc-panel-open .bm-tvc-section:nth-of-type(2) {
	transition-delay: 0.04s;
}

body.bm-tvc-panel-open .bm-tvc-section:nth-of-type(3) {
	transition-delay: 0.08s;
}

.bm-tvc-section__header {
	display: grid;
	gap: 4px;
	margin-bottom: 12px;
}

.bm-tvc-section h3 {
	font-size: 15px;
}

.bm-tvc-section__header p {
	margin-top: 2px;
	color: var(--bm-tvc-muted);
    font-size: 12px;
}

.bm-tvc-preset-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.bm-tvc-font-dropdown {
	margin: 0;
	border: 1px solid rgba(19, 32, 51, 0.08);
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 250, 252, 0.9) 100%);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
	overflow: hidden;
}

.bm-tvc-font-dropdown[open] {
	border-color: rgba(14, 165, 233, 0.22);
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.52),
		0 16px 28px rgba(14, 165, 233, 0.1);
}

.bm-tvc-font-dropdown__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	cursor: pointer;
	list-style: none;
}

.bm-tvc-font-dropdown__trigger::-webkit-details-marker {
	display: none;
}

.bm-tvc-font-dropdown__copy {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.bm-tvc-font-dropdown__label {
	color: var(--bm-tvc-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bm-tvc-font-dropdown__current-name {
	color: var(--bm-tvc-ink);
	font-size: 14px;
	line-height: 1.35;
	word-break: break-word;
}

.bm-tvc-font-dropdown__chevron {
	width: 12px;
	height: 12px;
	flex: 0 0 12px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	color: var(--bm-tvc-muted);
	transform: rotate(45deg);
	transition: transform 0.18s ease;
}

.bm-tvc-font-dropdown[open] .bm-tvc-font-dropdown__chevron {
	transform: rotate(-135deg);
}

.bm-tvc-font-dropdown__menu {
	padding: 0 10px 10px;
}

.bm-tvc-font-options {
	display: grid;
	gap: 8px;
	max-height: 260px;
	overflow-y: auto;
}

.bm-tvc-font-option {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	padding: 10px 12px;
	border-radius: 14px;
	border: 1px solid rgba(23, 35, 58, 0.08);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 255, 0.94) 100%);
	color: var(--bm-tvc-ink);
	text-align: left;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.bm-tvc-font-option:hover {
	transform: translateY(-1px);
	border-color: rgba(99, 102, 241, 0.16);
	box-shadow: 0 12px 22px rgba(99, 102, 241, 0.1);
}

.bm-tvc-font-option::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 12px;
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: transparent;
	box-shadow: 0 0 0 1px rgba(19, 32, 51, 0.12);
	transform: translateY(-50%);
}

.bm-tvc-font-option.is-active {
	border-color: rgba(14, 165, 233, 0.28);
	background: linear-gradient(135deg, rgba(14, 165, 233, 0.14) 0%, rgba(124, 58, 237, 0.1) 100%);
	box-shadow: 0 16px 26px rgba(99, 102, 241, 0.14);
}

.bm-tvc-font-option.is-active::after {
	background: linear-gradient(135deg, #0ea5e9 0%, #7c3aed 100%);
	box-shadow:
		0 0 0 1px rgba(99, 102, 241, 0.18),
		0 0 0 4px rgba(99, 102, 241, 0.08);
}

.bm-tvc-font-option__sample {
	display: block;
	max-width: calc(100% - 22px);
	font-size: 13px;
	line-height: 1.35;
	word-break: break-word;
}

.bm-tvc-frontend-ai {
	display: grid;
	margin-top: 12px;
	padding: 14px;
	border: 1px solid rgba(99, 102, 241, 0.12);
	border-radius: 18px;
	background:
		radial-gradient(circle at top right, rgba(14, 165, 233, 0.12), transparent 34%),
		linear-gradient(180deg, rgba(248, 249, 255, 0.96) 0%, rgba(243, 247, 255, 0.92) 100%);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.44);
}

.bm-tvc-frontend-ai__eyebrow {
	display: inline-flex;
	align-items: center;
	color: #4338ca;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.bm-tvc-frontend-ai__title {
	margin: 6px 0 0;
	color: var(--bm-tvc-ink);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}

.bm-tvc-frontend-ai__header .bm-tvc-help-text {
	margin-top: 6px;
}


.bm-tvc-frontend-ai__status {
	padding: 10px 12px;
	border-radius: 14px;
	font-size: 12px;
	line-height: 1.5;
}

.bm-tvc-frontend-ai__status.is-loading {
	background: rgba(14, 165, 233, 0.1);
	color: #0f5aa7;
	border: 1px solid rgba(14, 165, 233, 0.16);
}

.bm-tvc-frontend-ai__status.is-success {
	background: rgba(15, 118, 110, 0.12);
	color: #0f5c57;
	border: 1px solid rgba(15, 118, 110, 0.16);
}

.bm-tvc-frontend-ai__status.is-error {
	background: rgba(220, 38, 38, 0.1);
	color: #9f1239;
	border: 1px solid rgba(220, 38, 38, 0.16);
}

.bm-tvc-preset-button {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 14px;
	border: 1px solid rgba(99, 102, 241, 0.08);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 255, 0.94) 100%);
	color: var(--bm-tvc-ink);
	text-align: left;
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.72),
		0 10px 20px rgba(15, 23, 42, 0.04);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.bm-tvc-preset-button:hover,
.bm-tvc-logo-choice:hover,
.bm-tvc-action-button:hover,
.bm-tvc-secondary-button:hover {
	transform: translateY(-2px);
}

.bm-tvc-preset-button:hover {
	border-color: rgba(99, 102, 241, 0.18);
	box-shadow: 0 18px 30px rgba(99, 102, 241, 0.12);
}

.bm-tvc-preset-button__swatch {
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	border-radius: 10px;
	background: var(--bm-tvc-swatch, #0f172a);
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.5),
		0 8px 16px rgba(15, 23, 42, 0.12);
}

.bm-tvc-preset-button__content {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.bm-tvc-preset-button__title {
	font-size: 13px;
	font-weight: 700;
}

.bm-tvc-preset-button__meta {
	display: inline-flex;
	align-items: center;
	width: max-content;
	margin-top: 5px;
	padding: 3px 8px;
	border-radius: 999px;
	background: rgba(14, 165, 233, 0.1);
	color: #1d4ed8;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.03em;
}

.bm-tvc-preset-button.is-active,
.bm-tvc-logo-choice.is-active {
	border-color: rgba(99, 102, 241, 0.24);
	background: linear-gradient(135deg, rgba(14, 165, 233, 0.14) 0%, rgba(124, 58, 237, 0.1) 100%);
	box-shadow: 0 18px 30px rgba(99, 102, 241, 0.16);
}

.bm-tvc-custom-theme {
	display: grid;
	gap: 10px;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid rgba(19, 32, 51, 0.08);
}

.bm-tvc-custom-theme__intro {
	display: grid;
	gap: 8px;
	padding: 14px;
	border: 1px solid rgba(99, 102, 241, 0.12);
	border-radius: 18px;
	background:
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.34), transparent 32%),
		linear-gradient(135deg, rgba(14, 165, 233, 0.12) 0%, rgba(124, 58, 237, 0.12) 56%, rgba(249, 115, 22, 0.12) 100%);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.bm-tvc-custom-theme__intro h4 {
	margin: 0;
	color: var(--bm-tvc-ink);
	font-size: 14px;
	font-weight: 700;
}

.bm-tvc-inline-actions--stacked {
	flex-wrap: wrap;
	margin-top: 2px;
}

.bm-tvc-inline-actions--stacked .bm-tvc-action-button {
	flex: 1 1 160px;
}
@media (max-width: 1024px) {
  .bm-tvc-custom-theme .bm-tvc-inline-actions--stacked .bm-tvc-action-button {
    flex: 1 1 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .bm-tvc-inline-actions--stacked .bm-tvc-action-button {
    flex: 1 1 30px;
  }
}

.bm-tvc-custom-theme.is-active .bm-tvc-custom-theme-start {
	background: linear-gradient(135deg, #0ea5e9 0%, #7c3aed 100%);
}

.bm-tvc-custom-theme-fields[hidden],
.bm-tvc-css-builder__section[hidden],
.bm-tvc-css-builder__gradient-stop[hidden],
.bm-tvc-css-builder__stop-handle[hidden] {
	display: none !important;
}

.bm-tvc-custom-theme-grid {
	display: grid;
	gap: 8px;
}

.bm-tvc-custom-theme-item {
	margin: 0;
	border: 1px solid rgba(19, 32, 51, 0.08);
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 251, 255, 0.9) 100%);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
	overflow: hidden;
}

.bm-tvc-custom-theme-item[open] {
	border-color: rgba(99, 102, 241, 0.2);
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.5),
		0 12px 24px rgba(99, 102, 241, 0.12);
}

.bm-tvc-custom-theme-item__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	cursor: pointer;
	list-style: none;
}

.bm-tvc-custom-theme-item__summary::-webkit-details-marker {
	display: none;
}

.bm-tvc-custom-theme-item__summary::after {
	content: "+";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	border-radius: 999px;
	background: rgba(99, 102, 241, 0.08);
	color: var(--bm-tvc-ink);
	font-size: 18px;
	line-height: 1;
}

.bm-tvc-custom-theme-item[open] .bm-tvc-custom-theme-item__summary::after {
	content: "-";
}

.bm-tvc-custom-theme-item__copy {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.bm-tvc-custom-theme-item__actions {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
	margin-left: auto;
}

.bm-tvc-custom-theme-item__jump {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	border: 1px solid rgba(19, 32, 51, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	color: var(--bm-tvc-ink);
	box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.bm-tvc-custom-theme-item__jump:hover,
.bm-tvc-custom-theme-item__jump:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(46, 144, 250, 0.3);
	background: rgba(240, 247, 255, 0.98);
	box-shadow: 0 10px 18px rgba(46, 144, 250, 0.14);
	outline: none;
}

.bm-tvc-custom-theme-item__jump svg {
	width: 15px;
	height: 15px;
	stroke: currentColor;
	stroke-width: 2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.bm-tvc-custom-theme-item__title {
	color: var(--bm-tvc-ink);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
}

.bm-tvc-custom-theme-item__hint {
	color: var(--bm-tvc-muted);
	font-size: 11px;
	line-height: 1.35;
}

.bm-tvc-custom-theme-item__panel {
	padding: 0 10px 10px;
}

.bm-tvc-preview-target-active {
	outline: 3px solid rgba(46, 144, 250, 0.58);
	outline-offset: 6px;
	animation: bm-tvc-preview-target-pulse 1.5s ease;
}

@keyframes bm-tvc-preview-target-pulse {
	0% {
		outline-color: rgba(46, 144, 250, 0);
		outline-offset: 14px;
	}

	30% {
		outline-color: rgba(46, 144, 250, 0.68);
		outline-offset: 4px;
	}

	100% {
		outline-color: rgba(46, 144, 250, 0);
		outline-offset: 10px;
	}
}

.bm-tvc-media-field {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 8px;
}

.bm-tvc-media-field input[type="text"],
.bm-tvc-css-builder input[type="text"],
.bm-tvc-css-builder input[type="number"],
.bm-tvc-css-builder select {
	width: 100%;
	min-height: 40px;
	padding: 9px 11px;
	border: 1px solid rgba(19, 32, 51, 0.14);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.96);
	color: var(--bm-tvc-ink);
}

.bm-tvc-css-value-field {
	display: block;
}

.bm-tvc-css-builder {
	display: grid;
	gap: 10px;
	padding: 10px;
	border: 1px solid rgba(19, 32, 51, 0.06);
	border-radius: 14px;
	background: rgba(245, 249, 255, 0.72);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.bm-tvc-css-builder__top,
.bm-tvc-css-builder__angle-row,
.bm-tvc-css-builder__track-header,
.bm-tvc-css-builder__gradient-stop-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.bm-tvc-css-builder__mode,
.bm-tvc-css-builder__section,
.bm-tvc-css-builder__track-wrap,
.bm-tvc-css-builder__stop-row {
	display: grid;
	gap: 8px;
}

.bm-tvc-css-builder__mode {
	flex: 1;
	min-width: 0;
}

.bm-tvc-css-builder__preview {
	width: 52px;
	height: 52px;
	flex: 0 0 52px;
	border-radius: 14px;
	border: 1px solid rgba(19, 32, 51, 0.1);
	background: #0f766e;
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.52),
		0 8px 16px rgba(15, 23, 42, 0.06);
}

.bm-tvc-css-builder__section-label,
.bm-tvc-css-builder__stop-row label {
	color: var(--bm-tvc-ink);
	font-size: 12px;
	font-weight: 700;
}

.bm-tvc-css-builder__color-row {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 8px;
	align-items: center;
}

.bm-tvc-css-builder__color-picker {
	width: 48px;
	height: 40px;
	padding: 4px;
	border: 1px solid rgba(19, 32, 51, 0.14);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.96);
	cursor: pointer;
}

.bm-tvc-css-builder__color-picker::-webkit-color-swatch-wrapper {
	padding: 0;
}

.bm-tvc-css-builder__color-picker::-webkit-color-swatch {
	border: 0;
	border-radius: 10px;
}

.bm-tvc-css-builder__angle-controls,
.bm-tvc-css-builder__stop-controls {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 72px auto;
	gap: 8px;
	align-items: center;
}

.bm-tvc-css-builder__stop-controls {
	grid-template-columns: minmax(0, 1fr) auto;
}

.bm-tvc-css-builder__angle-controls input[type="range"] {
	width: 100%;
	margin: 0;
}

.bm-tvc-css-builder__angle-unit,
.bm-tvc-css-builder__track-help {
	color: var(--bm-tvc-muted);
	font-size: 12px;
	line-height: 1.5;
}

.bm-tvc-css-builder__track {
	position: relative;
	height: 42px;
	border-radius: 999px;
	border: 1px solid rgba(19, 32, 51, 0.12);
	background: linear-gradient(90deg, #0f766e 0%, #2e90fa 50%, #f59e0b 100%);
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.46),
		0 8px 16px rgba(15, 23, 42, 0.06);
	cursor: pointer;
}

.bm-tvc-css-builder__stop-handle {
	position: absolute;
	top: 50%;
	left: 0;
	width: 18px;
	height: 18px;
	padding: 0;
	border: 2px solid #ffffff;
	border-radius: 999px;
	background: var(--bm-tvc-stop-color, #0f766e);
	box-shadow:
		0 10px 18px rgba(15, 23, 42, 0.2),
		0 0 0 3px rgba(255, 255, 255, 0.35);
	transform: translate(-50%, -50%);
	cursor: grab;
}

.bm-tvc-css-builder__stop-handle:hover,
.bm-tvc-css-builder__stop-handle.is-dragging {
	transform: translate(-50%, -50%) scale(1.08);
}

.bm-tvc-css-builder__stop-handle.is-dragging {
	cursor: grabbing;
}

.bm-tvc-css-builder__stop-dot {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.bm-tvc-css-builder__gradient-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}

.bm-tvc-css-builder__gradient-stop {
	display: grid;
	gap: 8px;
	padding: 10px;
	border: 1px solid rgba(19, 32, 51, 0.08);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.82);
}

.bm-tvc-css-builder__stop-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 50px;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(15, 118, 110, 0.1);
	color: #0f5c57;
	font-size: 12px;
	font-weight: 700;
}

.bm-tvc-css-builder__value {
	display: block;
	padding: 10px 12px;
	border-radius: 14px;
	background: rgba(6, 12, 22, 0.88);
	color: #f8fbff;
	font-size: 12px;
	line-height: 1.55;
	word-break: break-word;
}

.bm-tvc-custom-theme-fields .description,
.bm-tvc-custom-theme-fields .bm-tvc-css-builder__footer {
	display: none;
}

.bm-tvc-upload-label {
	display: block;
	margin-top: 2px;
	margin-bottom: 6px;
	color: var(--bm-tvc-ink);
	font-size: 12px;
	font-weight: 700;
}

.bm-tvc-input,
.bm-tvc-file-input {
	width: 100%;
	border: 1px solid rgba(19, 32, 51, 0.14);
	border-radius: 5px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.94) 100%);
	color: var(--bm-tvc-ink);
}

.bm-tvc-file-input {
	padding: 8px 10px;
}
section.bm-tvc-section {
    margin-bottom: 15px;
}
.bm-tvc-file-input::file-selector-button {
	margin-right: 12px;
	padding: 8px;
	border: 0;
	border-radius: 12px;
	background: var(--bm-tvc-button-bg);
	color: #ffffff;
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}

.bm-tvc-input {
	padding: 11px 12px;
	font-size: 13px;
}

.bm-tvc-inline-actions {
	display: flex;
	gap: 8px;
	margin-top: 10px;
}

.bm-tvc-action-button,
.bm-tvc-secondary-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 8px;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 700;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.bm-tvc-action-button {
	flex: 1;
	background: var(--bm-tvc-button-bg);
	color: #ffffff;
	box-shadow: 0 18px 32px rgba(37, 99, 235, 0.22);
}

.bm-tvc-action-button--ghost,
.bm-tvc-secondary-button {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 248, 255, 0.92) 100%);
	color: var(--bm-tvc-ink);
	border: 1px solid rgba(99, 102, 241, 0.12);
	box-shadow: none;
}

.bm-tvc-action-button:hover {
	box-shadow: 0 22px 34px rgba(99, 102, 241, 0.24);
}

.bm-tvc-logo-choices {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}

.bm-tvc-logo-choice {
	padding: 8px 11px;
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 248, 255, 0.92) 100%);
	color: var(--bm-tvc-ink);
	border: 1px solid rgba(99, 102, 241, 0.1);
	font-size: 12px;
	font-weight: 700;
	transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.bm-tvc-gradient-logo-host {
	position: relative;
}

.bm-tvc-gradient-logo-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	display: block;
	pointer-events: none;
	z-index: 1;
}
.bm-tvc-form-field[hidden] {
	display: none !important;
}
.bm-tvc-selection-summary {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
	gap: 8px;
	margin-bottom: 12px;
}

.bm-tvc-selection-summary__item {
	padding: 10px 12px;
	border-radius: 14px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 248, 255, 0.94) 100%);
	border: 1px solid rgba(99, 102, 241, 0.08);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.44);
}

.bm-tvc-selection-summary__item:nth-child(1) {
	background: linear-gradient(135deg, rgba(14, 165, 233, 0.12) 0%, rgba(99, 102, 241, 0.08) 100%);
}

.bm-tvc-selection-summary__item:nth-child(2) {
	background: linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, rgba(244, 63, 94, 0.08) 100%);
}

.bm-tvc-selection-summary__item:nth-child(3) {
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(14, 165, 233, 0.08) 100%);
}

.bm-tvc-selection-summary__item span {
	display: block;
	margin-bottom: 4px;
	color: var(--bm-tvc-muted);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.bm-tvc-selection-summary__item strong {
	display: block;
	color: var(--bm-tvc-ink);
	font-size: 13px;
	line-height: 1.4;
}

.bm-tvc-query-form,
.bm-tvc-form-grid {
	display: grid;
	gap: 10px;
}

.bm-tvc-form-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bm-tvc-form-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.bm-tvc-form-field--full {
	grid-column: 1 / -1;
}

.bm-tvc-form-field label {
	color: var(--bm-tvc-ink);
	font-size: 12px;
	font-weight: 700;
}

.bm-tvc-textarea {
	resize: vertical;
}
.bm-tvc-frontend-ai.main {
    margin-top: 0;
}
.bm-tvc-form-status {
	padding: 10px 12px;
	border-radius: 14px;
	font-size: 12px;
	line-height: 1.5;
}

.bm-tvc-form-status.is-success {
	background: rgba(16, 185, 129, 0.12);
	color: #0f5c57;
	border: 1px solid rgba(16, 185, 129, 0.16);
}

.bm-tvc-form-status.is-error {
	background: rgba(220, 38, 38, 0.1);
	color: #9f1239;
	border: 1px solid rgba(220, 38, 38, 0.16);
}

.bm-tvc-query-submit {
	width: 100%;
	background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #ec4899 100%);
	box-shadow: 0 20px 34px rgba(124, 58, 237, 0.24);
}

.bm-tvc-panel__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 12px 18px 16px;
	border-top: 1px solid rgba(19, 32, 51, 0.08);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.66) 100%);
}

.bm-tvc-footer-note {
	display: inline-flex;
	align-items: center;
	padding: 5px 9px;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(14, 165, 233, 0.12) 0%, rgba(124, 58, 237, 0.12) 100%);
	border: 1px solid rgba(99, 102, 241, 0.12);
	color: #1d4ed8;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.bm-tvc-secondary-button {
	min-width: 132px;
}

.bm-tvc-toggle:focus-visible,
.bm-tvc-font-dropdown__trigger:focus-visible,
.bm-tvc-font-option:focus-visible,
.bm-tvc-action-button:focus-visible,
.bm-tvc-secondary-button:focus-visible,
.bm-tvc-logo-choice:focus-visible,
.bm-tvc-preset-button:focus-visible,
.bm-tvc-close:focus-visible,
.bm-tvc-file-input:focus-visible,
.bm-tvc-input:focus-visible,
.bm-tvc-textarea:focus-visible,
.bm-tvc-css-builder input:focus-visible,
.bm-tvc-css-builder select:focus-visible,
.bm-tvc-css-builder button:focus-visible {
	outline: 3px solid rgba(46, 144, 250, 0.28);
	outline-offset: 2px;
}

.bm-tvc-toggle:focus-visible {
	outline-color: rgba(255, 255, 255, 0.9);
	box-shadow:
		0 0 0 4px rgba(46, 144, 250, 0.24),
		0 28px 68px rgba(15, 23, 42, 0.34);
}

@media (max-width: 640px) {
	.bm-tvc-toggle {
		right: 16px;
		bottom: 16px;
		left: 16px;
		min-width: 0;
		max-width: none;
		padding: 16px 18px;
		border-radius: 22px;
	}

	.bm-tvc-toggle:hover {
		transform: translateY(-2px);
	}

	body.bm-tvc-panel-open .bm-tvc-toggle {
		transform: translateY(16px);
	}

	.bm-tvc-panel {
		width: 100vw;
		border-radius: 0;
	}

	.bm-tvc-panel__header,
	.bm-tvc-panel__body,
	.bm-tvc-panel__footer {
		padding-left: 14px;
		padding-right: 14px;
	}

	.bm-tvc-panel__header {
		flex-wrap: wrap;
		gap: 12px;
	}

	.bm-tvc-panel__header-actions {
		width: 100%;
		justify-content: space-between;
		align-items: center;
	}

	.bm-tvc-inline-actions,
	.bm-tvc-panel__footer {
		flex-direction: column;
		align-items: stretch;
	}

	.bm-tvc-css-builder__top,
	.bm-tvc-css-builder__angle-row,
	.bm-tvc-css-builder__track-header {
		flex-direction: column;
		align-items: stretch;
	}

	.bm-tvc-selection-summary,
	.bm-tvc-preset-list {
		grid-template-columns: 1fr;
	}

	.bm-tvc-spotlight__grid {
		grid-template-columns: 1fr;
	}

	.bm-tvc-css-builder__color-row,
	.bm-tvc-css-builder__angle-controls,
	.bm-tvc-css-builder__stop-controls {
		grid-template-columns: 1fr;
	}

	.bm-tvc-form-grid {
		grid-template-columns: 1fr;
	}

	.bm-tvc-secondary-button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bm-tvc-backdrop,
	.bm-tvc-toggle,
	.bm-tvc-panel,
	.bm-tvc-section,
	.bm-tvc-preset-button,
	.bm-tvc-logo-choice,
	.bm-tvc-action-button,
	.bm-tvc-secondary-button,
	.bm-tvc-close {
		transition: none;
	}
}

.bm-tvc-custom-theme__intro,.bm-tvc-frontend-ai,#bm-tvc-font-section,#bm-tvc-branding-section,#bm-tvc-query-panel-section{
	background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.34), transparent 32%), linear-gradient(135deg, rgba(14, 165, 233, 0.12) 0%, rgba(124, 58, 237, 0.12) 56%, rgba(249, 115, 22, 0.12) 100%);
}


.bm-tvc-toggle {

    border: none !important;

    background: linear-gradient(
        135deg,
        #2563eb 0%,
        #6366f1 40%,
        #7c3aed 70%,
        #ec4899 100%
    ) !important;

    color: #ffffff !important;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.25),
        0 6px 18px rgba(99,102,241,0.35) !important;

    backdrop-filter: none !important;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease !important;
}


/* Hover */

.bm-tvc-toggle:hover {

    background: linear-gradient(
        135deg,
        #1d4ed8 0%,
        #4f46e5 40%,
        #7c3aed 70%,
        #db2777 100%
    ) !important;

    box-shadow:
        0 18px 45px rgba(0,0,0,0.35),
        0 10px 28px rgba(99,102,241,0.45) !important;

    transform: translateY(-3px);
}


/* Icon */

.bm-tvc-toggle__icon {
    color: #ffffff !important;
}

.bm-tvc-toggle:hover .bm-tvc-toggle__icon {
    color: #ffffff !important;
}


/* Text */

.bm-tvc-toggle__eyebrow {
    color: rgba(255,255,255,0.75) !important;
}

.bm-tvc-toggle__label {
    color: #ffffff !important;
}
.bm-tvc-selection-summary{
	display:none;
}
