/**
 * Orchestra Pop Lite — admin UI (design tokens + patterns aligned with Orchestra Pop premium).
 */

/* ------------------------------------------------------------------------- */
/* Shell — same contract as premium: .wrap.orchestra-pop-admin.op-shell       */
/* ------------------------------------------------------------------------- */
.wrap.orchestra-pop-admin.op-shell {
	--op-accent: #6a2dce;
	--op-accent-deep: #4b188e;
	--op-accent-soft: #8b55d9;
	--op-accent-muted: #ede5f8;
	--op-accent-ghost: #f7f4fd;
	--op-text: #0f0a1e;
	--op-text-2: #5b5771;
	--op-text-3: #9a94b0;
	--op-bg: #fff;
	--op-bg-panel: #f9f8fc;
	--op-border: #ebebf0;
	--op-border-md: #d9d5e8;
	--op-green: #059669;
	--op-green-light: #ecfdf5;
	--op-amber: #d97706;
	--op-amber-light: #fffbeb;
	--op-red: #dc2626;
	--op-red-light: #fef2f2;
	--op-r-sm: 6px;
	--op-r: 8px;
	--op-r-md: 12px;
	--op-r-lg: 16px;
	--op-shadow-sm: 0 1px 3px rgba(74, 24, 142, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);

	box-sizing: border-box;
	max-width: 1100px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 13px;
	line-height: 1.5;
	color: var(--op-text);
}

.wrap.orchestra-pop-admin.op-shell *,
.wrap.orchestra-pop-admin.op-shell *::before,
.wrap.orchestra-pop-admin.op-shell *::after {
	box-sizing: border-box;
}

/* Primary buttons */
.wrap.orchestra-pop-admin.op-shell .button:not(.button-link),
.wrap.orchestra-pop-admin.op-shell input[type="submit"].button:not(.button-link),
.wrap.orchestra-pop-admin.op-shell input[type="button"].button:not(.button-link),
.wrap.orchestra-pop-admin.op-shell a.button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--op-accent) !important;
	color: #fff !important;
	border: 1px solid var(--op-accent) !important;
	border-radius: 30px;
	padding: 8px 20px !important;
	font-weight: 600;
	font-size: 13px;
	line-height: 1.35;
	height: auto !important;
	min-height: 0;
	box-shadow: none !important;
	text-decoration: none;
	text-shadow: none !important;
	vertical-align: middle;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}

.wrap.orchestra-pop-admin.op-shell .button:not(.button-link):hover,
.wrap.orchestra-pop-admin.op-shell input[type="submit"].button:not(.button-link):hover,
.wrap.orchestra-pop-admin.op-shell input[type="button"].button:not(.button-link):hover,
.wrap.orchestra-pop-admin.op-shell a.button:hover {
	background: var(--op-accent-deep) !important;
	border-color: var(--op-accent-deep) !important;
	color: #fff !important;
	box-shadow: none !important;
}

.wrap.orchestra-pop-admin.op-shell .button:not(.button-link):focus-visible,
.wrap.orchestra-pop-admin.op-shell input[type="submit"].button:not(.button-link):focus-visible,
.wrap.orchestra-pop-admin.op-shell input[type="button"].button:not(.button-link):focus-visible,
.wrap.orchestra-pop-admin.op-shell a.button:focus-visible {
	outline: none;
	box-shadow: 0 0 0 2px var(--op-bg), 0 0 0 4px var(--op-accent-soft) !important;
}

.wrap.orchestra-pop-admin.op-shell .button.button-secondary {
	background: var(--op-bg-panel) !important;
	color: var(--op-accent) !important;
	border: 1px solid var(--op-border-md) !important;
	box-shadow: none !important;
}

.wrap.orchestra-pop-admin.op-shell .button.button-secondary:hover {
	background: var(--op-accent-muted) !important;
	border-color: var(--op-accent-soft) !important;
	color: var(--op-accent-deep) !important;
}

/* Status strip (Lite — no portal / license) */
.op-connect-strip {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 14px;
	min-height: 40px;
	padding: 10px 16px;
	margin: 0 0 16px;
	background: var(--op-bg-panel);
	border: 1px solid var(--op-border);
	border-radius: var(--op-r-md);
	box-shadow: var(--op-shadow-sm);
}

.op-strip-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
	background: var(--op-text-3);
}

.op-strip-dot--ok {
	background: var(--op-green);
	box-shadow: 0 0 0 2px var(--op-green-light);
}

.op-connect-strip__msg {
	font-size: 13px;
	font-weight: 500;
	color: var(--op-text);
	flex: 1;
	min-width: 200px;
}

.op-connect-strip__sep {
	width: 1px;
	height: 18px;
	background: var(--op-border-md);
	flex-shrink: 0;
}

.op-connect-strip__link {
	font-size: 12px;
	font-weight: 600;
	color: var(--op-accent);
	text-decoration: none;
	white-space: nowrap;
}

.op-connect-strip__link:hover,
.op-connect-strip__link:focus {
	color: var(--op-accent-deep);
	text-decoration: underline;
}

/* No primary tabs on Lite — round shell body on all corners */
.wrap.orchestra-pop-admin.op-shell.opop-lite-admin .op-shell-body {
	border-radius: 18px;
}

.op-shell-body {
	background: #fff;
	padding: 5%;
	border: 1px solid var(--op-border);
	border-radius: 0 18px 18px 18px;
	box-shadow: var(--op-shadow-sm);
}

.op-panel-stack {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.op-panel {
	background: var(--op-bg-panel);
	border: 1px solid var(--op-border);
	border-radius: 16px;
	box-shadow: var(--op-shadow-sm);
	overflow: hidden;
}

.op-panel--pagehead {
	background: var(--op-bg);
}

.op-panel__hd {
	padding: 14px 20px;
	border-bottom: 1px solid var(--op-border);
	background: var(--op-bg);
}

.op-panel__title {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--op-text);
	display: flex;
	align-items: center;
	gap: 8px;
}

.op-panel__body {
	padding: 18px 20px;
	background: var(--op-bg);
}

.op-panel--pagehead .op-page-title {
	margin: 0 0 6px;
	font-size: 22px;
	font-weight: 700;
	color: var(--op-text);
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.op-panel--pagehead .op-page-sub {
	margin: 0;
	font-size: 13px;
	color: var(--op-text-3);
	max-width: 560px;
}

.op-page-title {
	margin: 0 0 4px;
	font-size: 22px;
	font-weight: 700;
	color: var(--op-text);
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.op-page-sub {
	margin: 0;
	font-size: 13px;
	color: var(--op-text-3);
	max-width: 520px;
}

/* Form table */
.opop-form-table {
	margin-top: 4px;
}

.opop-form-table th {
	width: 180px;
	padding-left: 0;
	vertical-align: top;
	padding-top: 10px;
	font-weight: 600;
	color: var(--op-text);
}

.opop-form-table td {
	padding-top: 8px;
	padding-bottom: 8px;
}

.opop-form-table .description {
	color: var(--op-text-2);
	font-size: 12px;
	margin-top: 6px;
}

.wrap.orchestra-pop-admin.op-shell .op-panel__body input[type="text"],
.wrap.orchestra-pop-admin.op-shell .op-panel__body input[type="number"],
.wrap.orchestra-pop-admin.op-shell .op-panel__body textarea,
.wrap.orchestra-pop-admin.op-shell .op-panel__body select {
	border-radius: var(--op-r);
	border-color: var(--op-border-md);
	color: var(--op-text);
}

.wrap.orchestra-pop-admin.op-shell .op-panel__body select[multiple] {
	min-height: 10rem;
	min-width: min(100%, 320px);
	padding: 8px;
	background: var(--op-bg);
}

.wrap.orchestra-pop-admin.op-shell .op-panel__body fieldset label {
	display: inline-block;
	margin: 4px 0;
	color: var(--op-text-2);
}

.opop-card__actions {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid var(--op-border);
}

.wrap.orchestra-pop-admin.op-shell .opop-card__actions .button-primary {
	margin-top: 0;
}

/* Two-column layout (main + upsell) */
.opop-lite-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
	gap: 28px;
	align-items: start;
}

@media screen and (max-width: 1100px) {
	.opop-lite-layout {
		grid-template-columns: 1fr;
	}
}

.opop-lite-layout__aside {
	min-width: 0;
}

/* Right column: Premium card + separate sticky summary below */
.opop-lite-layout__rail {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: stretch;
	min-width: 0;
	min-height: 100%;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-layout__summary-sticky {
	position: sticky;
	top: calc(var(--wp-admin--admin-bar--height, 32px) + 12px);
	z-index: 5;
	align-self: stretch;
}

@media screen and (max-width: 782px) {
	.wrap.orchestra-pop-admin.op-shell .opop-lite-layout__summary-sticky {
		top: calc(var(--wp-admin--admin-bar--height, 46px) + 12px);
	}
}

/* Live summary — compact card under Premium upsell (outside .opop-lite-upsell), sticky wrapper */
.wrap.orchestra-pop-admin.op-shell .opop-lite-layout__summary-sticky .op-panel--live-summary {
	margin: 0;
	border: 1px solid var(--op-border-md);
	border-radius: var(--op-r);
	background: var(--op-bg-panel);
	overflow: hidden;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-layout__summary-sticky .op-panel--live-summary .op-panel__hd {
	padding: 10px 14px 8px;
	border-bottom: 1px solid var(--op-border);
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-layout__summary-sticky .op-panel--live-summary .op-panel__title {
	margin: 0;
	font-size: 13px;
	line-height: 1.35;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-layout__summary-sticky .op-panel--live-summary .op-panel__body {
	padding: 12px 14px 14px;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-layout__summary-sticky .op-panel--live-summary .opop-lite-summary-list {
	font-size: 12px;
	line-height: 1.5;
	padding-left: 1rem;
}

/* Callouts — design system (purple / amber), not WP blue */
.opop-example {
	position: relative;
	background: var(--op-accent-ghost);
	border: 1px solid var(--op-border-md);
	border-radius: var(--op-r);
	padding: 10px 12px 10px 36px;
	margin: 0 0 16px;
	font-size: 13px;
	color: var(--op-text-2);
	line-height: 1.55;
}

.opop-example::before {
	content: "💬";
	position: absolute;
	left: 10px;
	top: 10px;
}

.opop-tip {
	position: relative;
	background: var(--op-amber-light);
	border: 1px solid #fde68a;
	border-radius: var(--op-r);
	padding: 10px 12px 10px 36px;
	margin: 0 0 16px;
	font-size: 13px;
	color: #713f12;
	line-height: 1.55;
}

.opop-tip::before {
	content: "💡";
	position: absolute;
	left: 10px;
	top: 10px;
}

/* Admin preview — mirrors storefront widget (accent) */
.opop-lite-preview-well {
	background: var(--op-accent-ghost);
	border: 1px solid var(--op-border-md);
	border-radius: var(--op-r-md);
	padding: 20px;
	max-width: 32rem;
}

.opop-lite-preview-well .opop-lite-box {
	margin: 0;
	max-width: none;
}

.opop-lite-preview-well .opop-lite-box__headline {
	font-weight: 700;
	font-size: 16px;
	margin: 0 0 0.35rem;
	color: #222222;
	line-height: 1.35;
	letter-spacing: -0.02em;
}

.opop-lite-preview-well .opop-lite-box__code {
	margin-left: auto;
	margin-right: auto;
	max-width: 300px;
	padding: 10px 5px;
	border: 1px solid #683da0;
	border-radius: 8px;
	background: #fff;
	text-align: center;
	color: #222222;
}

.opop-lite-preview-well .opop-lite-box__btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 0.55rem 1.25rem !important;
	border: 1px solid var(--op-accent) !important;
	border-radius: 999px !important;
	background: var(--op-accent) !important;
	color: #fff !important;
	font-size: 0.9rem !important;
	font-weight: 600 !important;
	cursor: not-allowed !important;
	line-height: 1.2 !important;
	box-shadow: none !important;
	text-decoration: none !important;
	transition: background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
	opacity: 0.85;
}

/* Option toggles (same pattern as Orchestra Pop premium) */
.opop-lite-toggle-stack {
	display: flex;
	flex-direction: column;
	gap: 18px;
	max-width: 42rem;
}

.opop-lite-toggle-row {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	flex-wrap: wrap;
}

.opop-lite-toggle-row__control {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.opop-lite-toggle-row__text {
	flex: 1;
	min-width: 200px;
}

.opop-lite-toggle-row__title {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--op-text);
}

.opop-lite-toggle-row__hint {
	margin: 4px 0 0 !important;
}

/* Option checkboxes (lighter than switch + Enabled/Disabled for dense lists) */
.opop-lite-checkbox-stack {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 42rem;
}

.opop-lite-checkbox-row__label {
	display: inline-flex;
	align-items: flex-start;
	gap: 8px;
	margin: 0;
	cursor: pointer;
	font-weight: 600;
	font-size: 13px;
	color: var(--op-text);
	line-height: 1.45;
}

.opop-lite-checkbox-row__label input[type="checkbox"] {
	margin: 2px 0 0;
	flex-shrink: 0;
}

.opop-lite-checkbox-row__title {
	font-weight: inherit;
	color: inherit;
}

.opop-lite-checkbox-row__hint {
	margin: 4px 0 0 !important;
	padding-left: 26px;
	max-width: 42rem;
}

.wrap.orchestra-pop-admin.op-shell .opop-toggle-switch {
	border: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	vertical-align: middle;
}

.wrap.orchestra-pop-admin.op-shell .opop-toggle-switch:focus-visible {
	outline: 2px solid var(--op-accent);
	outline-offset: 2px;
}

.wrap.orchestra-pop-admin.op-shell .opop-toggle-switch__track {
	display: block;
	width: 44px;
	height: 24px;
	border-radius: 12px;
	background: var(--op-border-md);
	position: relative;
	transition: background 0.2s ease;
}

.wrap.orchestra-pop-admin.op-shell .opop-toggle-switch.is-on .opop-toggle-switch__track {
	background: var(--op-accent);
}

.wrap.orchestra-pop-admin.op-shell .opop-toggle-switch__thumb {
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	top: 2px;
	left: 2px;
	transition: transform 0.2s ease;
	box-shadow: 0 1px 3px rgb(15 10 30 / 0.18);
}

.wrap.orchestra-pop-admin.op-shell .opop-toggle-switch.is-on .opop-toggle-switch__thumb {
	transform: translateX(20px);
}

.wrap.orchestra-pop-admin.op-shell .opop-toggle-switch__state {
	font-size: 13px;
	font-weight: 600;
	color: var(--op-text-2);
	min-width: 2rem;
}

.wrap.orchestra-pop-admin.op-shell .opop-toggle-switch.is-on + .opop-toggle-switch__state {
	color: var(--op-accent-deep);
}

/* Upsell card — sidebar banner below lead */

/* Coupon picker */
.opop-lite-coupon-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 12px 0;
}

.opop-lite-coupon-scroll {
	max-height: 320px;
	overflow: auto;
	border: 1px solid var(--op-border);
	border-radius: var(--op-r);
	background: var(--op-bg);
}

.opop-lite-coupon-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	padding: 10px 12px;
	border-bottom: 1px solid var(--op-border);
	cursor: pointer;
}

.opop-lite-coupon-row:last-child {
	border-bottom: none;
}

.opop-lite-coupon-row:hover {
	background: var(--op-accent-ghost);
}

.opop-lite-coupon-row__main {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
	flex: 1;
}

.opop-lite-coupon-row__title {
	font-weight: 600;
	color: var(--op-text);
	font-size: 13px;
}

.opop-lite-coupon-row__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: var(--op-text-2);
}

.opop-lite-coupon-row__meta code {
	font-size: 11px;
	background: var(--op-bg-panel);
	padding: 2px 6px;
	border-radius: 4px;
	border: 1px solid var(--op-border);
}

.opop-lite-coupon-row__sum {
	color: var(--op-accent-deep);
	font-weight: 600;
}

/* Page header + logo */
.op-panel__hd--pagehead-brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.opop-lite-version-line {
	margin: 0;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--op-accent-deep);
	line-height: 1.3;
}

.opop-lite-page-logo {
	display: block;
	height: auto;
	max-width: 180px;
	flex-shrink: 0;
}

.op-panel__hd-text {
	flex: 1;
	min-width: 200px;
}

/* Admin UI language (pagehead) */
.opop-lite-ui-locale {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 4px;
	padding: 20px 0;
}

.opop-lite-ui-locale__globe {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--op-text-2);
	flex-shrink: 0;
}

.opop-lite-ui-locale__globe-svg {
	display: block;
}

.opop-lite-ui-locale__form {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
}

.opop-lite-ui-locale__select {
	min-width: 200px;
	max-width: 100%;
	font-size: 13px;
	line-height: 1.4;
	color: var(--op-text);
	border: 1px solid var(--op-border-md);
	border-radius: var(--op-r, 6px);
	background: #fff;
	padding: 4px 8px;
}

.wrap.orchestra-pop-admin.op-shell #opop_lite_ui_locale {
	border-radius: 10px;
	border: 1px solid var(--op-border-md);
}

.opop-lite-ui-locale__select:focus {
	border-color: var(--op-accent-soft);
	box-shadow: 0 0 0 1px var(--op-accent-muted);
	outline: none;
}

.opop-lite-ui-locale__hint {
	margin: 0 0 0 30px;
	max-width: 36em;
	color: var(--op-text-2);
	font-size: 12px;
}

/* Section title + contextual help */
.op-panel__hd--with-help {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.op-panel__hd--with-help .op-panel__title {
	margin: 0;
	flex: 1;
	min-width: 0;
}

.opop-lite-guide-jump {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 1px solid var(--op-border-md);
	border-radius: var(--op-r);
	background: var(--op-bg-panel);
	color: var(--op-accent);
	cursor: pointer;
	flex-shrink: 0;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.opop-lite-guide-jump:hover {
	background: var(--op-accent-muted);
	border-color: var(--op-accent-soft);
	color: var(--op-accent-deep);
}

.opop-lite-guide-jump:focus-visible {
	outline: none;
	box-shadow: 0 0 0 2px var(--op-bg), 0 0 0 4px var(--op-accent-soft);
}

/* Quick guide panel (two columns) */
.opop-lite-guide-layout {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	flex-wrap: wrap;
}

.opop-lite-guide-toc {
	flex: 0 0 200px;
	max-width: 100%;
	border: 1px solid var(--op-border);
	border-radius: var(--op-r);
	background: #fff;
	padding: 12px;
	position: sticky;
	top: 0;
	align-self: flex-start;
	z-index: 2;
}

.opop-lite-guide-toc__title {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--op-text-3);
	margin: 0 0 8px;
}

.opop-lite-guide-toc__list {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.opop-lite-guide-link {
	display: block;
	width: 100%;
	text-align: left;
	padding: 6px 8px;
	margin: 0;
	border: none;
	border-radius: var(--op-r-sm);
	background: transparent;
	color: var(--op-accent);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.35;
	cursor: pointer;
	transition: background 0.15s ease;
}

.opop-lite-guide-link:hover {
	background: var(--op-accent-muted);
	color: var(--op-accent-deep);
}

.opop-lite-guide-link:focus-visible {
	outline: none;
	box-shadow: 0 0 0 2px var(--op-accent-soft);
}

.opop-lite-guide-content {
	flex: 1;
	min-width: 260px;
	max-height: 420px;
	overflow-y: auto;
	padding-right: 4px;
}

.opop-lite-guide-item {
	margin: 0 0 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--op-border);
	scroll-margin-top: 12px;
	transition: background 0.3s ease;
}

.opop-lite-guide-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.opop-lite-guide-item--flash {
	background: var(--op-accent-muted);
	border-radius: var(--op-r);
	padding: 8px 10px;
	margin-left: -10px;
	margin-right: -10px;
}

.opop-lite-guide-item h4 {
	margin: 0 0 8px;
	font-size: 13px;
	font-weight: 700;
	color: var(--op-text);
}

.opop-lite-guide-item p {
	margin: 0 0 8px;
	font-size: 12px;
	line-height: 1.55;
	color: var(--op-text-2);
}

.opop-lite-guide-item p:last-child {
	margin-bottom: 0;
}

@media (max-width: 782px) {
	.opop-lite-guide-layout {
		flex-direction: column;
	}

	.opop-lite-guide-toc {
		flex: 1 1 auto;
		width: 100%;
	}

	.opop-lite-guide-layout--drawer .opop-lite-guide-toc {
		border-right: none;
		border-bottom: 1px solid #ebebf0;
		margin-right: 0;
		margin-bottom: 16px;
		padding-right: 12px;
		padding-bottom: 14px;
	}
}

/* Form panels: same vertical rhythm as .op-panel-stack */
.opop-lite-admin form.opop-lite-campaign-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Page header: logo replaces visible title */
.op-panel__hd-text .opop-lite-page-logo {
	margin-bottom: 10px;
}

/* Live summary */
.opop-lite-summary-list {
	margin: 0;
	padding-left: 1.1rem;
	color: var(--op-text-2);
	font-size: 13px;
	line-height: 1.55;
}

.opop-lite-summary-list strong {
	color: var(--op-text);
}

.opop-lite-summary-list__note {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	list-style: none;
	margin-left: 0;
	padding-left: 0;
	color: var(--op-text-2);
	font-size: 13px;
	line-height: 1.55;
}

.opop-lite-summary-list__note-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	margin-top: 1px;
	color: var(--op-accent-deep);
}

.opop-lite-summary-list__note-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.opop-lite-summary-list__note-text {
	flex: 1;
	min-width: 0;
}

/* Coupon overlap alert */
.opop-lite-alert--overlap {
	margin: 0 0 14px;
	padding: 12px 14px;
	border-radius: var(--op-r);
	border: 1px solid var(--op-border-md);
	background: var(--op-accent-ghost);
}

.opop-lite-alert--overlap .opop-lite-alert__row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.opop-lite-alert--overlap .opop-lite-alert__icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	margin-top: 2px;
	color: var(--op-accent-deep);
}

.opop-lite-alert--overlap .opop-lite-alert__icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.opop-lite-alert--overlap .opop-lite-alert__body {
	flex: 1;
	min-width: 0;
}

.opop-lite-alert--overlap p {
	margin: 0 0 8px;
	font-size: 13px;
	color: var(--op-text);
}

.opop-lite-alert--overlap p:last-child {
	margin-bottom: 0;
}

.opop-lite-toggle-stack--spaced {
	margin-bottom: 12px;
}

/* Shortcode row */
.opop-lite-shortcode-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin: 0 0 8px;
}

.opop-lite-shortcode-row .large-text {
	flex: 1 1 240px;
	min-width: 0;
	font-family: ui-monospace, monospace;
	font-size: 12px;
}

/* Floating guide (Premium-style) — FAB is outside .wrap; local shadow token */
.opop-lite-guide-fab {
	--op-shadow-sm: 0 1px 3px rgba(74, 24, 142, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
	--op-accent-soft: #8b55d9;

	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 52px;
	height: 52px;
	padding: 0;
	border-radius: 999px;
	border: 1px solid #5a24b8;
	background: #6a2dce;
	box-shadow: var(--op-shadow-sm);
	cursor: pointer;
	z-index: 9999998;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	color: #fff;
}

.opop-lite-guide-fab:hover {
	border-color: #4b188e;
	background: #5f29c4;
	color: #fff;
	box-shadow: 0 4px 14px rgba(106, 45, 206, 0.35);
}

.opop-lite-guide-fab:focus-visible {
	outline: none;
	box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--op-accent-soft);
}

.opop-lite-guide-fab__icon {
	display: block;
	flex-shrink: 0;
	stroke: currentColor;
}

.opop-lite-guide-panel {
	/* Panel is rendered outside .wrap — local tokens so drawer + FAB resolve variables. */
	--op-accent: #6a2dce;
	--op-accent-deep: #4b188e;
	--op-accent-soft: #8b55d9;
	--op-accent-muted: #ede5f8;
	--op-bg-panel: #f9f8fc;
	--op-text: #0f0a1e;
	--op-text-2: #5b5771;
	--op-border: #ebebf0;
	--op-r-sm: 6px;
	--op-r: 8px;
	--op-shadow-sm: 0 1px 3px rgba(74, 24, 142, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);

	position: fixed;
	top: 0;
	right: -560px;
	width: 560px;
	max-width: 94vw;
	height: 100vh;
	background: #fff;
	border-left: 1px solid var(--op-border);
	box-shadow: -6px 0 24px rgba(0, 0, 0, 0.08);
	transition: right 0.25s ease;
	z-index: 9999999;
	display: flex;
	flex-direction: column;
}

.opop-lite-guide-panel.is-open {
	right: 0;
}

.opop-lite-guide-panel__hd {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	border-bottom: 1px solid var(--op-border);
	background: #fff;
}

.opop-lite-guide-panel__hd h3 {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	color: var(--op-text);
}

.opop-lite-guide-panel__close {
	border: none;
	background: transparent;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	color: var(--op-text-2);
	padding: 4px 8px;
	border-radius: var(--op-r-sm);
}

.opop-lite-guide-panel__close:hover {
	color: var(--op-text);
	background: var(--op-accent-muted);
}

body.admin-bar .opop-lite-guide-panel {
	top: 32px;
	height: calc(100vh - 32px);
}

@media screen and (max-width: 782px) {
	body.admin-bar .opop-lite-guide-panel {
		top: 46px;
		height: calc(100vh - 46px);
	}
}

.opop-lite-guide-panel__body {
	padding: 12px 16px 24px;
	overflow: auto;
	flex: 1;
	min-height: 0;
	background: #fff;
}

.opop-lite-guide-layout--drawer {
	flex-wrap: nowrap;
	align-items: flex-start;
	gap: 0;
}

/* Domande (TOC) | risposte (contenuto): linea verticale grigio chiaro */
.opop-lite-guide-layout--drawer .opop-lite-guide-toc {
	border-right: 1px solid #ebebf0;
	padding-right: 14px;
	margin-right: 16px;
}

.opop-lite-guide-content--drawer {
	max-height: none;
	overflow: visible;
	flex: 1;
	min-width: 0;
	padding-left: 0;
}

.opop-lite-guide-link.is-active {
	background: var(--op-accent-muted);
	color: var(--op-accent-deep);
	border-radius: var(--op-r-sm);
}

/* Risposta corrispondente alla voce TOC selezionata (admin.js → opop-lite-guide-item--toc-active) */
.opop-lite-guide-content--drawer .opop-lite-guide-item--toc-active {
	background: var(--op-bg-panel);
	border-radius: var(--op-r);
	padding: 12px 14px 14px 16px;
	margin-left: -6px;
	margin-right: -6px;
	border-left: 4px solid var(--op-accent);
	box-shadow: inset 0 0 0 1px rgba(106, 45, 206, 0.1);
	transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.opop-lite-guide-content--drawer .opop-lite-guide-item--toc-active h4 {
	color: var(--op-accent-deep);
}

.opop-lite-guide-item--highlight {
	background: var(--op-accent-muted);
	border-radius: var(--op-r);
	padding: 8px 10px;
	margin-left: -8px;
	margin-right: -8px;
	transition: background 0.3s ease;
}

/* ------------------------------------------------------------------------- */
/* Lite — aggregate stats panel                                              */
/* ------------------------------------------------------------------------- */
.wrap.orchestra-pop-admin.op-shell .opop-lite-stats-intro {
	margin: 0 0 0.75rem;
	font-size: 12px;
	line-height: 1.45;
	color: var(--op-text-2);
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-stats-list {
	margin: 0 0 0.5rem;
	padding: 0;
	list-style: none;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-stats-list li {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--op-border);
	font-size: 13px;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-stats-list li:last-child {
	border-bottom: 0;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-stats-list li strong {
	font-weight: 700;
	color: var(--op-accent-deep);
	font-variant-numeric: tabular-nums;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-stats-list li span {
	color: var(--op-text-2);
	text-align: right;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-stats-reset {
	margin: 0.75rem 0 0;
}

.wrap.orchestra-pop-admin.op-shell .op-panel--stats-tail {
	margin-top: 20px;
}

.wrap.orchestra-pop-admin.op-shell .op-panel--stats-tail .opop-lite-stats-upsell {
	margin-top: 14px;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-hint {
	margin: 14px 0 0;
}

/* ------------------------------------------------------------------------- */
/* Sticky save bar (pill) + in-page section anchors                           */
/* ------------------------------------------------------------------------- */
.wrap.orchestra-pop-admin.op-shell .opop-lite-sec-anchor {
	scroll-margin-top: 52px;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-save-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100002;
	padding: 10px 16px calc(14px + env(safe-area-inset-bottom, 0));
	pointer-events: none;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-save-bar__pill {
	pointer-events: auto;
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 20px;
	padding: 12px 20px;
	background: var(--op-bg);
	border: 1px solid var(--op-border-md);
	border-radius: 999px;
	box-shadow:
		0 -6px 28px rgba(74, 24, 142, 0.1),
		0 10px 40px rgba(15, 10, 30, 0.12);
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-save-bar__nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	flex: 1 1 auto;
	gap: 4px 12px;
	min-width: 0;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-save-bar__link {
	color: var(--op-accent) !important;
	font-weight: 400;
	font-size: 13px;
	text-decoration: none !important;
	border: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
	padding: 4px 2px;
	line-height: 1.35;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-save-bar__link:hover,
.wrap.orchestra-pop-admin.op-shell .opop-lite-save-bar__link:focus-visible {
	color: var(--op-accent-deep) !important;
	text-decoration: underline !important;
	text-underline-offset: 2px;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-save-bar__link:focus-visible {
	outline: none;
	box-shadow: 0 0 0 2px var(--op-bg), 0 0 0 4px var(--op-accent-soft) !important;
	border-radius: 4px;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-save-bar__actions {
	flex-shrink: 0;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-save-bar__submit {
	margin: 0 !important;
}

/* ------------------------------------------------------------------------- */
/* Admin tabs (settings | Premium) + Premium tab screen                      */
/* ------------------------------------------------------------------------- */
.wrap.orchestra-pop-admin.op-shell .opop-lite-admin-tabs {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 0;
	margin: 0 0 20px;
	padding: 0;
	border-bottom: 1px solid var(--op-border-md);
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-admin-tabs__tab {
	display: inline-flex;
	align-items: center;
	padding: 10px 18px;
	margin: 0 0 -1px;
	font-size: 13px;
	font-weight: 600;
	color: var(--op-text-2);
	text-decoration: none !important;
	border: 1px solid transparent;
	border-bottom: none;
	border-radius: var(--op-r) var(--op-r) 0 0;
	background: transparent;
	box-shadow: none !important;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-admin-tabs__tab:hover {
	color: var(--op-accent-deep);
	background: var(--op-accent-muted);
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-admin-tabs__tab.is-active {
	color: var(--op-accent-deep);
	background: var(--op-bg);
	border-color: var(--op-border-md);
	border-bottom-color: var(--op-bg);
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-tab {
	max-width: 1100px;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-stack {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-features__hint {
	margin: 0 0 14px;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	align-items: start;
}

@media (max-width: 960px) {
	.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-grid {
		grid-template-columns: 1fr;
	}
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-tile--span-row {
	grid-column: 1 / -1;
}

@media (max-width: 960px) and (min-width: 601px) {
	.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-tile--span-row {
		grid-column: 1 / -1;
	}
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-tile {
	border: 1px solid var(--op-border-md);
	border-radius: var(--op-r, 8px);
	background: var(--op-bg);
	overflow: hidden;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-tile.is-open {
	border-color: var(--op-accent-soft);
	box-shadow: 0 0 0 1px var(--op-accent-muted);
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-tile__trigger {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	width: 100%;
	margin: 0;
	padding: 30px 26px;
	text-align: left;
	background: var(--op-bg-panel);
	border: none;
	border-bottom: 1px solid transparent;
	cursor: pointer;
	color: var(--op-text);
	font: inherit;
	box-sizing: border-box;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-tile.is-open .opop-lite-premium-tile__trigger {
	border-bottom-color: var(--op-border);
	background: var(--op-bg);
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-tile__trigger:hover,
.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-tile__trigger:focus-visible {
	background: var(--op-accent-muted);
	outline: none;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-tile__icon {
	flex-shrink: 0;
	color: var(--op-accent);
	line-height: 0;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-tile__icon-img {
	display: block;
	flex-shrink: 0;
	max-width: 42px;
	max-height: 42px;
	width: auto;
	height: auto;
	object-fit: contain;
	object-position: center;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-icon {
	display: block;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-tile__head {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
	flex: 1;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-tile__title {
	font-weight: 700;
	font-size: 14px;
	color: var(--op-accent-deep);
	line-height: 1.3;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-tile__teaser {
	font-size: 12px;
	color: var(--op-text-2);
	line-height: 1.4;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-tile__chevron {
	flex-shrink: 0;
	color: var(--op-text-3);
	line-height: 0;
	transition: transform 0.2s ease;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-tile.is-open .opop-lite-premium-tile__chevron {
	transform: rotate(180deg);
	color: var(--op-accent);
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-tile__panel[hidden] {
	display: none !important;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-tile__panel:not([hidden]) {
	display: block;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-tile__body {
	padding: 14px 16px 16px;
	font-size: 13px;
	line-height: 1.55;
	color: var(--op-text-2);
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-tile__body p {
	margin: 0 0 10px;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-tile__body p:last-of-type {
	margin-bottom: 0;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-tile__media {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--op-border);
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-tile__gif {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: var(--op-r, 6px);
	border: 1px solid var(--op-border-md);
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-tile__media-placeholder {
	min-height: 140px;
	border-radius: var(--op-r, 6px);
	border: 1px dashed var(--op-border-md);
	background: var(--op-accent-ghost);
}

/* Premium feature tiles — illustrative backgrounds (assets/images/) */
.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-tile[data-tile-id="analytics"] .opop-lite-premium-tile__media-placeholder {
	border-style: solid;
	background-color: var(--op-accent-ghost);
	background-image: url(../images/funnel.png);
	background-size: 200px;
	background-repeat: no-repeat;
	background-position: bottom right;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-tile[data-tile-id="branding"] .opop-lite-premium-tile__media-placeholder {
	border-style: solid;
	background-color: var(--op-accent-ghost);
	background-image: url(../images/pickbrandcolor.png);
	background-size: 200px;
	background-repeat: no-repeat;
	background-position: bottom right;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-tile[data-tile-id="multi-campaign"] .opop-lite-premium-tile__media-placeholder {
	border-style: solid;
	background-color: var(--op-accent-ghost);
	background-image: url(../images/multilayer-campaign.png);
	background-size: 200px;
	background-repeat: no-repeat;
	background-position: bottom right;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-fullstack__intro {
	margin: 0 0 12px;
	font-size: 14px;
	line-height: 1.55;
	color: var(--op-text-2);
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-fullstack__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 13px;
	line-height: 1.5;
	color: var(--op-text-2);
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-fullstack__item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-fullstack__check {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	margin-top: 1px;
	border-radius: 50%;
	background: var(--op-accent-muted);
	color: var(--op-accent-deep);
	line-height: 0;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-fullstack__check-svg {
	display: block;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-fullstack__item-text {
	min-width: 0;
	flex: 1;
}

/* Premium tab — full stack + Abbonamento in two columns */
.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-dual {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 20px;
	margin: 0 0 8px;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-dual__col {
	flex: 1 1 320px;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-dual__col .op-panel {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-dual__col .op-panel__body {
	flex: 1 1 auto;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-dual__col--stack .op-panel--premium-fullstack .op-panel__body {
	display: flex;
	flex-direction: column;
}

/* Roadmap / AI note inside full stack (crown + text, no speech-bubble) */
.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-fullstack__ai {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--op-border);
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-fullstack__ai-crown {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--op-accent-muted);
	color: var(--op-accent-deep);
	line-height: 0;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-fullstack__crown-svg {
	display: block;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-fullstack__ai-copy {
	min-width: 0;
	flex: 1;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-fullstack__ai-title {
	margin: 0 0 6px;
	font-size: 13px;
	font-weight: 700;
	color: var(--op-accent-deep);
	line-height: 1.35;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-fullstack__ai-text {
	margin: 0;
	font-size: 12px;
	line-height: 1.5;
	color: var(--op-text-2);
}

/* Premium tab — annual subscription widget (markup in class-opop-lite-admin-premium-tab.php) */
.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-dual__col--pricing .opop-lite-premium-subwrap {
	justify-content: stretch;
	padding: 0;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-subwrap {
	display: flex;
	justify-content: center;
	padding: 4px 0 8px;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-dual__col--pricing .opop-lite-premium-sub {
	max-width: none;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-sub {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	max-width: 380px;
	width: 100%;
	border-radius: 16px;
	border: 0.5px solid var(--op-border-md);
	overflow: hidden;
	background: var(--op-bg);
	box-sizing: border-box;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-sub__head {
	padding: 24px 24px 20px;
	background: linear-gradient(to bottom, #efefef, #f9f9f9);
	border-bottom: 1px solid #dedede;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-sub__plan {
	margin: 0 0 4px;
	font-size: 11px;
	font-weight: 600;
	color: #692ccd;
	text-transform: uppercase;
	letter-spacing: 0.07em;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-sub__title {
	margin: 0 0 2px;
	font-size: 18px;
	font-weight: 700;
	color: #1a1528;
	line-height: 1.25;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-sub__desc {
	margin: 0;
	font-size: 12px;
	line-height: 1.45;
	color: #692ccd;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-sub__price-row {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 4px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid rgba(26, 21, 40, 0.12);
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-sub__price-cur {
	font-size: 20px;
	font-weight: 500;
	color: #1a1528;
	align-self: flex-start;
	margin-top: 6px;
	line-height: 1;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-sub__price {
	font-size: 38px;
	font-weight: 700;
	color: #1a1528;
	line-height: 1;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-sub__price-meta {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	margin-left: 4px;
	gap: 2px;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-sub__price-period {
	font-size: 12px;
	font-weight: 500;
	color: #1a1528;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-sub__price-iva {
	font-size: 11px;
	color: #692ccd;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-sub__body {
	padding: 20px 24px;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-sub__list {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-sub__list-item {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	font-size: 13px;
	line-height: 1.4;
	color: var(--op-text);
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-sub__check {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--op-accent-muted);
	flex-shrink: 0;
	color: var(--op-accent-deep);
	line-height: 0;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-sub__check-svg {
	display: block;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-sub__btn {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 13px 16px;
	background: var(--op-accent);
	color: #fff !important;
	border: none;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	text-decoration: none !important;
	letter-spacing: -0.01em;
	line-height: 1.35;
	cursor: pointer;
	transition: background 0.15s ease;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-sub__btn:hover,
.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-sub__btn:focus-visible {
	background: var(--op-accent-deep);
	color: #fff !important;
	outline: none;
	box-shadow: 0 0 0 2px var(--op-bg), 0 0 0 4px var(--op-accent-soft);
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-sub__stripe {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-sub__stripe-icon {
	display: block;
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-sub__stripe-label {
	font-size: 12px;
	line-height: 1.45;
	font-weight: 500;
	color: var(--op-text);
	max-width: 22em;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-sub__footer {
	padding: 12px 24px 16px;
	border-top: 0.5px solid var(--op-border);
	text-align: center;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-sub__footer p {
	margin: 0;
	font-size: 11px;
	color: var(--op-text-3);
	line-height: 1.5;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-sub__footer a {
	color: var(--op-accent);
	text-decoration: none;
	font-weight: 600;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-sub__footer a:hover,
.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-sub__footer a:focus-visible {
	text-decoration: underline;
	color: var(--op-accent-deep);
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-legal {
	margin: 0 0 16px;
	font-size: 12px;
	color: var(--op-text-3);
	line-height: 1.45;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-premium-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 12px;
	margin: 0;
}

.wrap.orchestra-pop-admin.op-shell .op-panel__hd--upsell {
	padding-bottom: 10px;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-upsell__title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-size: 15px;
	line-height: 1.3;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-upsell__title-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--op-accent);
	line-height: 0;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-upsell__title-text {
	color: var(--op-text);
	font-weight: 700;
	letter-spacing: 0.02em;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-upsell__lead {
	margin: 0 0 14px;
	font-size: 13px;
	line-height: 1.55;
	color: var(--op-text);
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-upsell__pullquote {
	display: inline;
	font-style: italic;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
	color: var(--op-text);
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-upsell__banner {
	margin: 0 0 14px;
	line-height: 0;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-upsell__banner-img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 12px;
	border: 1px solid #ededf1;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-upsell__more {
	margin: 0 0 12px;
	border-top: 1px solid var(--op-border);
	padding: 20px 0 5px 0;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-upsell__more-link {
	font-weight: 600;
	color: var(--op-accent) !important;
	text-decoration: none !important;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-upsell__more-link:hover,
.wrap.orchestra-pop-admin.op-shell .opop-lite-upsell__more-link:focus-visible {
	color: var(--op-accent-deep) !important;
	text-decoration: underline !important;
	text-underline-offset: 2px;
}

.wrap.orchestra-pop-admin.op-shell .opop-lite-upsell__cta {
	margin: 0;
}
