.vkpe-box {
	--vkpe-accent: #4f63f6;
	--vkpe-accent-alt: #c23a8e;
	--vkpe-ink: #151515;
	--vkpe-muted: #626b78;
	--vkpe-line: #dde3ec;
	--vkpe-soft: #f7f8fb;
	position: relative;
	display: grid;
	gap: 0;
	margin: 8px 0 10px;
	padding: 11px 13px 11px;
	border: 1px solid var(--vkpe-line);
	border-radius: 6px;
	background: var(--vkpe-soft);
	box-shadow: none;
	color: var(--vkpe-ink);
	font: inherit;
	overflow: hidden;
	container-type: inline-size;
}

.vkpe-fibo-results {
	position: absolute;
	z-index: 99999;
	display: none;
	max-height: 420px;
	overflow: auto;
	padding: 6px;
	border: 1px solid #dde3ec;
	border-left: 3px solid #4f63f6;
	border-radius: 6px;
	background: #f7f8fb;
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.14);
}

.vkpe-fibo-results.is-open {
	display: block;
}

.vkpe-fibo-results__item {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	padding: 8px;
	border-radius: 5px;
	color: #151515;
	text-decoration: none;
}

.vkpe-fibo-results__item:hover,
.vkpe-fibo-results__item:focus {
	background: #fff;
	color: #151515;
	text-decoration: none;
}

.vkpe-fibo-results__thumb {
	display: flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border: 1px solid #e4e9f1;
	border-radius: 5px;
	background: #fff;
}

.vkpe-fibo-results__thumb img {
	max-width: 36px;
	max-height: 36px;
	object-fit: contain;
}

.vkpe-fibo-results__title {
	overflow: hidden;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vkpe-fibo-results__empty {
	padding: 10px 12px;
	color: #626b78;
	font-size: 13px;
}

.vkpe-box__accent {
	position: absolute;
	inset: 0 auto 0 0;
	width: 3px;
	background: linear-gradient(180deg, var(--vkpe-accent), var(--vkpe-accent-alt));
}

.vkpe-box__main {
	display: grid;
	gap: 8px;
	padding-left: 5px;
	min-width: 0;
}

.vkpe-box__top {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
}

.vkpe-box__headline {
	color: #343a46;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.2;
	text-transform: none;
	white-space: nowrap;
}

.vkpe-box__price-row {
	display: flex;
	align-items: baseline;
	gap: 7px;
	justify-content: flex-end;
	flex-wrap: wrap;
	margin-left: auto;
	align-self: center;
	min-width: 0;
}

.vkpe-box__promo-price {
	color: var(--vkpe-ink);
	font-size: 17px;
	font-weight: 800;
	line-height: 1.1;
	white-space: nowrap;
}

.woocommerce ul.products li.product,
.woocommerce ul.products li.product-item,
.product {
	position: relative;
}

.vkpe-mfg-badges {
	position: absolute;
	z-index: 8;
	display: flex;
	align-items: flex-start;
	gap: 7px;
	max-width: calc(100% - 24px);
	flex-wrap: wrap;
	pointer-events: none;
}

.vkpe-mfg-badges--top-left {
	top: 46px;
	left: 12px;
	justify-content: flex-start;
}

.vkpe-mfg-badges--top-center {
	top: 8px;
	left: 50%;
	justify-content: center;
	transform: translateX(-50%);
}

.vkpe-mfg-badges--top-right {
	top: 8px;
	right: 12px;
	justify-content: flex-end;
}

.vkpe-mfg-badges--single.vkpe-mfg-badges--top-left {
	top: 56px;
}

.vkpe-mfg-badges--middle-left {
	top: 50%;
	left: 12px;
	justify-content: flex-start;
	transform: translateY(-50%);
}

.vkpe-mfg-badges--middle-center {
	top: 50%;
	left: 50%;
	justify-content: center;
	transform: translate(-50%, -50%);
}

.vkpe-mfg-badges--middle-right {
	top: 50%;
	right: 12px;
	justify-content: flex-end;
	transform: translateY(-50%);
}

.vkpe-mfg-badges--bottom-left {
	bottom: 12px;
	left: 12px;
	justify-content: flex-start;
}

.vkpe-mfg-badges--bottom-center {
	bottom: 12px;
	left: 50%;
	justify-content: center;
	transform: translateX(-50%);
}

.vkpe-mfg-badges--bottom-right {
	right: 12px;
	bottom: 12px;
	justify-content: flex-end;
}

.vkpe-mfg-badge {
	position: relative;
	display: inline-flex;
	max-width: min(180px, calc(100vw - 32px));
	min-width: 118px;
	min-height: 38px;
	align-items: center;
	justify-content: center;
	padding: 6px 9px 6px 12px;
	border: 1px solid #dbe3f0;
	border-radius: 3px;
	background: linear-gradient(135deg, #ffffff 0%, #f5f7ff 58%, #fff0fb 100%);
	box-shadow: 0 8px 22px rgba(79, 99, 246, 0.14);
	color: #111827;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.25;
	text-align: center;
	white-space: normal;
	pointer-events: auto;
	cursor: help;
	overflow: visible;
	transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.vkpe-mfg-badge::before {
	position: absolute;
	inset: -1px auto -1px -1px;
	width: 4px;
	border-radius: 3px 0 0 3px;
	background: linear-gradient(180deg, #4f63f6, #c23a8e);
	content: "";
}

.vkpe-mfg-badges--badge-videoking-dark .vkpe-mfg-badge {
	border-color: rgba(79, 99, 246, 0.36);
	background: linear-gradient(135deg, #151515 0%, #262c42 58%, #4f1d42 100%);
	box-shadow: 0 10px 26px rgba(21, 21, 21, 0.22);
	color: #fff;
}

.vkpe-mfg-badges--badge-clean-white .vkpe-mfg-badge {
	border-color: #e4e7ee;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
	color: #111827;
}

.vkpe-mfg-badges--badge-accent-outline .vkpe-mfg-badge {
	border-color: rgba(194, 58, 142, 0.45);
	background: #fff;
	box-shadow: 0 8px 22px rgba(194, 58, 142, 0.12);
	color: #111827;
}

.vkpe-mfg-badge__value {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 1px;
	align-items: center;
	transition: opacity 0.16s ease, transform 0.16s ease;
}

.vkpe-mfg-badge__label {
	display: block;
	overflow: hidden;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.15;
	text-overflow: ellipsis;
}

.vkpe-mfg-badge__amount {
	display: block;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.1;
}

.vkpe-mfg-badge__countdown {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 6px 9px 6px 12px;
	color: #fff;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.1;
	opacity: 0;
	text-align: center;
	transform: translateY(3px);
	transition: opacity 0.16s ease, transform 0.16s ease;
	white-space: nowrap;
}

.vkpe-mfg-badge__countdown-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 19px;
	line-height: 1;
	transform: translateY(-1px);
}

.vkpe-mfg-badge[data-vkpe-countdown-end]:hover,
.vkpe-mfg-badge[data-vkpe-countdown-end]:focus-visible {
	border-color: rgba(79, 99, 246, 0.42);
	background: linear-gradient(135deg, #151515 0%, #262c42 54%, #4f1d42 100%);
	box-shadow: 0 12px 30px rgba(79, 99, 246, 0.23);
	color: #fff;
}

.vkpe-mfg-badge[data-vkpe-countdown-end]:hover .vkpe-mfg-badge__value,
.vkpe-mfg-badge[data-vkpe-countdown-end]:focus-visible .vkpe-mfg-badge__value {
	opacity: 0;
	transform: translateY(-3px);
}

.vkpe-mfg-badge[data-vkpe-countdown-end]:hover .vkpe-mfg-badge__countdown,
.vkpe-mfg-badge[data-vkpe-countdown-end]:focus-visible .vkpe-mfg-badge__countdown {
	opacity: 1;
	transform: translateY(0);
}

.vkpe-mfg-badge__tooltip {
	position: absolute;
	display: block;
	top: calc(100% + 8px);
	left: 0;
	z-index: 40;
	width: min(280px, 70vw);
	padding: 9px 11px;
	border: 1px solid #dbe3f0;
	border-left: 4px solid #4f63f6;
	border-radius: 5px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18);
	color: #343a46;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.45;
	text-align: left;
	white-space: normal;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.vkpe-mfg-badges--loop .vkpe-mfg-badge__tooltip {
	display: none !important;
}

.vkpe-mfg-badge__tooltip-text {
	display: inline;
}

.vkpe-mfg-badge__tooltip-link {
	display: inline-flex;
	width: 17px;
	height: 17px;
	align-items: center;
	justify-content: center;
	margin-left: 6px;
	border: 1px solid rgba(79, 99, 246, 0.32);
	border-radius: 999px;
	background: linear-gradient(135deg, #151515 0%, #252b42 55%, #4f1d42 100%);
	box-shadow: 0 5px 14px rgba(79, 99, 246, 0.18);
	color: #fff;
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	vertical-align: -2px;
}

.vkpe-mfg-badge__tooltip-link:hover,
.vkpe-mfg-badge__tooltip-link:focus {
	background: linear-gradient(135deg, #4f63f6 0%, #c23a8e 100%);
	color: #fff;
	text-decoration: none;
	outline: none;
}

.vkpe-mfg-badge__tooltip::before {
	position: absolute;
	right: 0;
	bottom: 100%;
	left: 0;
	height: 8px;
	content: "";
}

.vkpe-mfg-badges--top-right .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--middle-right .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--bottom-right .vkpe-mfg-badge__tooltip {
	right: 0;
	left: auto;
}

.vkpe-mfg-badges--top-center .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--middle-center .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--bottom-center .vkpe-mfg-badge__tooltip {
	left: 50%;
	transform: translateX(-50%);
}

.vkpe-mfg-badge:hover .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badge:focus-visible .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badge:focus-within .vkpe-mfg-badge__tooltip {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.vkpe-mfg-badges--info-videoking-dark .vkpe-mfg-badge__tooltip {
	border-color: rgba(79, 99, 246, 0.36);
	border-left-color: #c23a8e;
	background: #151515;
	box-shadow: 0 16px 38px rgba(15, 23, 42, 0.28);
	color: #fff;
}

.vkpe-mfg-badges--info-videoking-gradient .vkpe-mfg-badge__tooltip {
	border-color: rgba(79, 99, 246, 0.32);
	border-left-color: #c23a8e;
	background: linear-gradient(135deg, #ffffff 0%, #f5f7ff 54%, #fff0fb 100%);
	box-shadow: 0 16px 38px rgba(79, 99, 246, 0.18);
	color: #2c3442;
}

.vkpe-mfg-badges--tooltip-fade .vkpe-mfg-badge__tooltip {
	transform: translateY(0);
}

.vkpe-mfg-badges--tooltip-slide .vkpe-mfg-badge__tooltip {
	transform: translateY(8px);
}

.vkpe-mfg-badges--top-center.vkpe-mfg-badges--tooltip-slide .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--middle-center.vkpe-mfg-badges--tooltip-slide .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--bottom-center.vkpe-mfg-badges--tooltip-slide .vkpe-mfg-badge__tooltip {
	transform: translate(-50%, 8px);
}

.vkpe-mfg-badges--tooltip-slide .vkpe-mfg-badge:hover .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--tooltip-slide .vkpe-mfg-badge:focus-visible .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--tooltip-slide .vkpe-mfg-badge:focus-within .vkpe-mfg-badge__tooltip {
	transform: translateY(0);
}

.vkpe-mfg-badges--top-center.vkpe-mfg-badges--tooltip-slide .vkpe-mfg-badge:hover .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--top-center.vkpe-mfg-badges--tooltip-slide .vkpe-mfg-badge:focus-visible .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--top-center.vkpe-mfg-badges--tooltip-slide .vkpe-mfg-badge:focus-within .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--middle-center.vkpe-mfg-badges--tooltip-slide .vkpe-mfg-badge:hover .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--middle-center.vkpe-mfg-badges--tooltip-slide .vkpe-mfg-badge:focus-visible .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--middle-center.vkpe-mfg-badges--tooltip-slide .vkpe-mfg-badge:focus-within .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--bottom-center.vkpe-mfg-badges--tooltip-slide .vkpe-mfg-badge:hover .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--bottom-center.vkpe-mfg-badges--tooltip-slide .vkpe-mfg-badge:focus-visible .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--bottom-center.vkpe-mfg-badges--tooltip-slide .vkpe-mfg-badge:focus-within .vkpe-mfg-badge__tooltip {
	transform: translateX(-50%);
}

.vkpe-mfg-badges--tooltip-scale .vkpe-mfg-badge__tooltip {
	transform: scale(0.96);
	transform-origin: top left;
}

.vkpe-mfg-badges--top-right.vkpe-mfg-badges--tooltip-scale .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--middle-right.vkpe-mfg-badges--tooltip-scale .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--bottom-right.vkpe-mfg-badges--tooltip-scale .vkpe-mfg-badge__tooltip {
	transform-origin: top right;
}

.vkpe-mfg-badges--top-center.vkpe-mfg-badges--tooltip-scale .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--middle-center.vkpe-mfg-badges--tooltip-scale .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--bottom-center.vkpe-mfg-badges--tooltip-scale .vkpe-mfg-badge__tooltip {
	transform: translateX(-50%) scale(0.96);
	transform-origin: top center;
}

.vkpe-mfg-badges--tooltip-scale .vkpe-mfg-badge:hover .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--tooltip-scale .vkpe-mfg-badge:focus-visible .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--tooltip-scale .vkpe-mfg-badge:focus-within .vkpe-mfg-badge__tooltip {
	transform: scale(1);
}

.vkpe-mfg-badges--top-center.vkpe-mfg-badges--tooltip-scale .vkpe-mfg-badge:hover .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--top-center.vkpe-mfg-badges--tooltip-scale .vkpe-mfg-badge:focus-visible .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--top-center.vkpe-mfg-badges--tooltip-scale .vkpe-mfg-badge:focus-within .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--middle-center.vkpe-mfg-badges--tooltip-scale .vkpe-mfg-badge:hover .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--middle-center.vkpe-mfg-badges--tooltip-scale .vkpe-mfg-badge:focus-visible .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--middle-center.vkpe-mfg-badges--tooltip-scale .vkpe-mfg-badge:focus-within .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--bottom-center.vkpe-mfg-badges--tooltip-scale .vkpe-mfg-badge:hover .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--bottom-center.vkpe-mfg-badges--tooltip-scale .vkpe-mfg-badge:focus-visible .vkpe-mfg-badge__tooltip,
.vkpe-mfg-badges--bottom-center.vkpe-mfg-badges--tooltip-scale .vkpe-mfg-badge:focus-within .vkpe-mfg-badge__tooltip {
	transform: translateX(-50%) scale(1);
}

.vkpe-mfg-badges--tooltip-none .vkpe-mfg-badge__tooltip {
	transition: none;
}

.vkpe-mfg-box {
	--vkpe-accent: #4f63f6;
	--vkpe-accent-alt: #c23a8e;
	position: relative;
	margin: 8px 0 10px;
	padding: 11px 13px 11px;
	border: 1px solid #dde3ec;
	border-radius: 6px;
	background: #f7f8fb;
	color: #151515;
	overflow: hidden;
}

.vkpe-mfg-box__main {
	display: grid;
	gap: 10px;
	padding-left: 5px;
}

.vkpe-mfg-box__item {
	display: grid;
	gap: 6px;
}

.vkpe-mfg-box__item + .vkpe-mfg-box__item {
	padding-top: 10px;
	border-top: 1px solid #dde3ec;
}

.vkpe-mfg-box__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.vkpe-mfg-box__head strong,
.vkpe-mfg-box__head b {
	color: #151515;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
}

.vkpe-mfg-box__head span,
.vkpe-mfg-box__item p,
.vkpe-mfg-box__item small,
.vkpe-mfg-box__meta {
	color: #626b78;
	font-size: 12px;
	line-height: 1.35;
}

.vkpe-mfg-box__item p {
	margin: 0;
}

.vkpe-mfg-box__meta {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.vkpe-mfg-box__meta a {
	color: #151515;
	font-weight: 800;
	text-decoration: underline;
}

.vkpe-box__deal-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-width: 0;
}

.vkpe-box__controls {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: nowrap;
	flex: 0 1 auto;
	min-width: 0;
}

.vkpe-code,
.vkpe-copy-button {
	appearance: none;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
	font: inherit;
	box-sizing: border-box;
	margin: 0 !important;
}

.vkpe-code {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	height: 28px;
	min-height: 28px;
	padding: 0 9px;
	border: 1px solid #ccd5e4;
	border-radius: 5px;
	background: #fff;
	color: var(--vkpe-ink);
	font-weight: 800;
	line-height: 1 !important;
}

.vkpe-copy-button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	height: 28px;
	min-height: 28px;
	padding: 0 9px;
	border: 1px solid var(--vkpe-line);
	border-radius: 5px;
	background: #fff;
	color: #4b5563;
	font-size: 12px;
	font-weight: 700;
	line-height: 1 !important;
}

.vkpe-copy-button:hover,
.vkpe-code:hover {
	border-color: var(--vkpe-accent);
	color: var(--vkpe-ink);
}

.woocommerce .vkpe-box button.vkpe-action.button.alt,
.woocommerce-page .vkpe-box button.vkpe-action.button.alt,
.vkpe-box .vkpe-action.button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: auto !important;
	min-width: 108px;
	height: 28px !important;
	min-height: 28px !important;
	margin: 0 !important;
	padding: 0 12px !important;
	border-radius: 5px;
	background: var(--vkpe-ink);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1 !important;
	text-align: center;
	white-space: nowrap;
}

@container (max-width: 460px) {
	.vkpe-box__deal-row {
		gap: 8px;
	}

	.vkpe-box__controls {
		gap: 5px;
	}

	.vkpe-code,
	.vkpe-copy-button {
		padding-right: 6px;
		padding-left: 6px;
	}

	.woocommerce .vkpe-box button.vkpe-action.button.alt,
	.woocommerce-page .vkpe-box button.vkpe-action.button.alt,
	.vkpe-box .vkpe-action.button {
		min-width: 98px;
		padding-right: 8px !important;
		padding-left: 8px !important;
		font-size: 11px;
	}

	.vkpe-box__promo-price {
		font-size: 16px;
	}
}

.woocommerce .vkpe-box button.vkpe-action.button.alt:hover,
.woocommerce .vkpe-box button.vkpe-action.button.alt:focus,
.woocommerce-page .vkpe-box button.vkpe-action.button.alt:hover,
.woocommerce-page .vkpe-box button.vkpe-action.button.alt:focus,
.vkpe-box .vkpe-action.button:hover,
.vkpe-box .vkpe-action.button:focus {
	background: #2d3340;
	color: #fff;
}

.vkpe-message {
	min-height: 0;
	color: var(--vkpe-muted);
	font-size: 11px;
	line-height: 1.4;
}

.vkpe-message.is-success {
	color: #1f7a3a;
}

.vkpe-message.is-error {
	color: #b42318;
}

@media (max-width: 640px) {
	.vkpe-box {
		padding: 9px 10px 8px;
	}

	.vkpe-box__main {
		align-items: flex-start;
		flex-direction: column;
		gap: 7px;
	}

	.vkpe-box__top {
		align-items: flex-start;
		gap: 5px;
	}

	.vkpe-box__deal-row {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.vkpe-box__price-row {
		justify-content: flex-start;
	}

	.vkpe-box__promo-price {
		font-size: 17px;
	}
}

@media (max-width: 480px) {
	.vkpe-box__controls {
		align-items: stretch;
		flex-direction: column;
	}

	.vkpe-code,
	.vkpe-copy-button,
	.vkpe-box .vkpe-action.button {
		justify-content: center;
		width: 100%;
		margin-left: 0 !important;
		text-align: center;
	}
}

.vkpe-ai-box {
	--vkpe-ai-accent: #4f63f6;
	--vkpe-ai-accent-alt: #c23a8e;
	--vkpe-ai-ink: #151515;
	--vkpe-ai-muted: #626b78;
	--vkpe-ai-line: #dbe2ef;
	--vkpe-ai-soft: #f7f8fb;
	margin: 12px 0 14px;
	color: var(--vkpe-ai-ink);
}

.vkpe-ai-box__header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 9px;
}

.vkpe-ai-box__title {
	margin: 0;
	color: var(--vkpe-ai-ink);
	font-size: 18px;
	line-height: 1.25;
}

.vkpe-ai-setup-booster {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin: 0 0 15px;
	padding: 16px 18px 16px 20px;
	border: 1px solid rgba(79, 99, 246, 0.2);
	border-left: 5px solid var(--vkpe-ai-accent);
	border-radius: 7px;
	background:
		linear-gradient(90deg, rgba(79, 99, 246, 0.13), rgba(194, 58, 142, 0.1) 58%, rgba(255, 255, 255, 0.98)),
		#fff;
	box-shadow: inset 2px 0 0 var(--vkpe-ai-accent-alt), 0 8px 22px rgba(15, 23, 42, 0.07);
}

.vkpe-ai-setup-booster__copy {
	display: grid;
	gap: 5px;
	min-width: 0;
}

.vkpe-ai-setup-booster__badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-height: 22px;
	padding: 3px 9px;
	border-radius: 999px;
	background: linear-gradient(135deg, #151515, #27305f 58%, #c23a8e);
	color: #fff;
	font-size: 11px;
	font-style: normal;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1;
	text-transform: uppercase;
}

.vkpe-ai-setup-booster__copy strong {
	color: var(--vkpe-ai-ink);
	font-size: 18px;
	font-weight: 900;
	line-height: 1.2;
}

.vkpe-ai-setup-booster__copy span {
	color: #343a46;
	font-size: 13.5px;
	line-height: 1.4;
}

.vkpe-ai-setup-booster__copy small {
	color: var(--vkpe-ai-muted);
	font-size: 11px;
	line-height: 1.3;
}

.vkpe-ai-setup-booster__actions {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	max-width: 56%;
	flex-wrap: wrap;
}

.vkpe-ai-setup-booster__step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 34px;
	padding: 7px 12px;
	border-radius: 999px;
	border: 1px solid rgba(79, 99, 246, 0.2);
	background: #fff;
	color: #343a46;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.1;
	white-space: nowrap;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.vkpe-ai-setup-booster__step-dot {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 14px;
	border: 1px solid #c7cfdd;
	border-radius: 999px;
	background: #f5f7fb;
	flex: 0 0 auto;
}

.vkpe-ai-setup-booster__step.is-done {
	border-color: rgba(79, 99, 246, 0.28);
	background: linear-gradient(135deg, #151515 0%, #202531 55%, #27305f 100%);
	color: #fff;
	box-shadow: inset 3px 0 0 var(--vkpe-ai-accent), 0 7px 16px rgba(15, 23, 42, 0.14);
}

.vkpe-ai-setup-booster__step.is-done .vkpe-ai-setup-booster__step-dot {
	border-color: transparent;
	background: linear-gradient(135deg, var(--vkpe-ai-accent), var(--vkpe-ai-accent-alt));
}

.vkpe-ai-setup-booster__step.is-done .vkpe-ai-setup-booster__step-dot::after {
	content: "";
	width: 6px;
	height: 3px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg);
	margin-top: -1px;
}

.vkpe-ai-setup-booster__step.is-discount {
	border-color: rgba(194, 58, 142, 0.24);
	color: var(--vkpe-ai-ink);
	box-shadow: inset 3px 0 0 var(--vkpe-ai-accent-alt), 0 4px 12px rgba(194, 58, 142, 0.08);
}

.vkpe-ai-setup-booster__step.is-discount.is-done {
	background: linear-gradient(135deg, #151515, #27305f 58%, #c23a8e);
	color: #fff;
	box-shadow: inset 3px 0 0 var(--vkpe-ai-accent-alt), 0 8px 18px rgba(194, 58, 142, 0.18);
}

.vkpe-ai-setup-booster.is-unlocked {
	border-left-color: var(--vkpe-ai-accent-alt);
	background:
		linear-gradient(90deg, rgba(79, 99, 246, 0.17), rgba(194, 58, 142, 0.15) 70%, #fff),
		#fff;
}

.vkpe-ai-setup-booster.is-unlocked .vkpe-ai-setup-booster__copy strong {
	color: #12151d;
}

.vkpe-ai-setup-booster[data-vkpe-setup-state="blocked_coupon"] {
	border-left-color: #151515;
	background:
		linear-gradient(90deg, rgba(21, 21, 21, 0.08), rgba(79, 99, 246, 0.08) 68%, #fff),
		#fff;
}

.vkpe-ai-setup-booster[data-vkpe-setup-state="blocked_coupon"] .vkpe-ai-setup-booster__step.is-discount {
	border-color: rgba(21, 21, 21, 0.18);
	background: #fff;
	color: var(--vkpe-ai-muted);
	box-shadow: inset 3px 0 0 #151515;
}

.vkpe-ai-showcase {
	position: relative;
	padding: 16px 16px 16px 20px;
	border: 1px solid var(--vkpe-ai-line);
	border-radius: 6px;
	background: var(--vkpe-ai-soft);
	overflow: hidden;
}

.vkpe-ai-showcase::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 3px;
	background: linear-gradient(180deg, var(--vkpe-ai-accent), var(--vkpe-ai-accent-alt));
}

.vkpe-ai-showcase__quick {
	display: none;
}

.vkpe-ai-showcase__quick-button,
.vkpe-ai-showcase__nav-item {
	min-width: 0;
	border: 1px solid var(--vkpe-ai-line);
	border-radius: 6px;
	background: #fff;
	color: var(--vkpe-ai-ink);
	font: inherit;
	text-align: left;
	cursor: pointer;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.vkpe-ai-showcase__quick-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 5px 10px;
	font-size: 12px;
	font-weight: 800;
	text-align: center;
}

.vkpe-ai-showcase__quick-button:hover,
.vkpe-ai-showcase__quick-button:focus,
.vkpe-ai-showcase__quick-button.is-active,
.vkpe-ai-showcase__nav-item:hover,
.vkpe-ai-showcase__nav-item:focus,
.vkpe-ai-showcase__nav-item.is-active {
	border-color: #aeb9ff;
	background: #fff;
	box-shadow: inset 3px 0 0 var(--vkpe-ai-accent);
	outline: none;
}

.vkpe-ai-showcase__body {
	display: grid;
	grid-template-columns: minmax(180px, 230px) minmax(0, 1fr);
	gap: 16px;
	align-items: start;
}

.vkpe-ai-showcase__nav {
	display: grid;
	gap: 0;
	border: 1px solid var(--vkpe-ai-line);
	border-radius: 6px;
	background: #fff;
	overflow: hidden;
}

.vkpe-ai-showcase__nav-item {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 34px;
	padding: 7px 12px;
	margin: 0 !important;
	border: 0;
	border-bottom: 1px solid var(--vkpe-ai-line);
	border-radius: 0;
	background: #fff;
}

.vkpe-ai-showcase__nav-item[hidden] {
	display: none !important;
}

.vkpe-ai-showcase__nav-item:last-child {
	border-bottom: 0;
}

.vkpe-ai-showcase__nav-item.is-active {
	background: #17191d;
	color: #fff;
	box-shadow: inset 4px 0 0 var(--vkpe-ai-accent);
}

.vkpe-ai-showcase__nav-item[data-vkpe-ai-group="top-recommendations"],
.vkpe-ai-showcase__nav-item[data-vkpe-ai-group="setup-booster"] {
	position: relative;
	min-height: 40px;
	margin: 0;
	background: linear-gradient(135deg, #15171c 0%, #202531 58%, #27305f 100%);
	color: #fff;
	box-shadow: inset 4px 0 0 var(--vkpe-ai-accent);
}

.vkpe-ai-showcase__nav-item[data-vkpe-ai-group="top-recommendations"]::after,
.vkpe-ai-showcase__nav-item[data-vkpe-ai-group="setup-booster"]::after {
	content: "";
	position: absolute;
	right: 12px;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--vkpe-ai-accent), var(--vkpe-ai-accent-alt));
	box-shadow: 0 0 0 4px rgba(79, 99, 246, 0.14);
}

.vkpe-ai-showcase__nav-item[data-vkpe-ai-group="top-recommendations"] strong,
.vkpe-ai-showcase__nav-item[data-vkpe-ai-group="setup-booster"] strong {
	color: #fff;
	font-size: 14px;
	letter-spacing: 0;
}

.vkpe-ai-showcase__nav-item[data-vkpe-ai-group="top-recommendations"]:hover,
.vkpe-ai-showcase__nav-item[data-vkpe-ai-group="top-recommendations"]:focus,
.vkpe-ai-showcase__nav-item[data-vkpe-ai-group="top-recommendations"].is-active,
.vkpe-ai-showcase__nav-item[data-vkpe-ai-group="setup-booster"]:hover,
.vkpe-ai-showcase__nav-item[data-vkpe-ai-group="setup-booster"]:focus,
.vkpe-ai-showcase__nav-item[data-vkpe-ai-group="setup-booster"].is-active {
	background: linear-gradient(135deg, #101217 0%, #202531 52%, #303a74 100%);
	color: #fff;
	box-shadow: inset 4px 0 0 var(--vkpe-ai-accent), 0 8px 20px rgba(15, 23, 42, 0.12);
}

.vkpe-ai-showcase__nav-item.is-active strong {
	color: #fff;
}

.vkpe-ai-showcase__nav-item:hover:not(.is-active),
.vkpe-ai-showcase__nav-item:focus:not(.is-active) {
	background: #fdfdff;
	color: var(--vkpe-ai-ink);
	box-shadow: inset 4px 0 0 var(--vkpe-ai-accent);
}

.vkpe-ai-showcase__nav-item:hover:not(.is-active) strong,
.vkpe-ai-showcase__nav-item:focus:not(.is-active) strong {
	color: var(--vkpe-ai-ink);
}

.vkpe-ai-showcase__nav-item strong {
	min-width: 0;
	overflow: hidden;
	font-size: 12.5px;
	font-weight: 800;
	line-height: 1.1;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vkpe-ai-showcase__nav-item span {
	color: var(--vkpe-ai-muted);
	font-size: 9px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.vkpe-ai-showcase__main {
	min-width: 0;
	overflow: hidden;
}

.vkpe-ai-grid {
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
	align-items: stretch;
	justify-content: flex-start;
	max-width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0 2px 10px 0;
	scroll-padding-left: 2px;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
}

.vkpe-ai-grid::-webkit-scrollbar {
	height: 8px;
}

.vkpe-ai-grid::-webkit-scrollbar-track {
	background: rgba(219, 226, 239, 0.7);
	border-radius: 999px;
}

.vkpe-ai-grid::-webkit-scrollbar-thumb {
	background: linear-gradient(90deg, var(--vkpe-ai-accent), var(--vkpe-ai-accent-alt));
	border-radius: 999px;
}

.vkpe-ai-loading {
	flex: 1 0 100%;
	padding: 12px;
	border: 1px solid var(--vkpe-ai-line);
	border-radius: 6px;
	color: var(--vkpe-ai-muted);
	font-size: 13px;
}

.vkpe-ai-card {
	display: grid;
	grid-template-rows: auto minmax(0, 1fr);
	flex: 0 0 200px;
	width: 200px;
	min-width: 0;
	min-height: 278px;
	border: 1px solid var(--vkpe-ai-line);
	border-radius: 6px;
	background: #fff;
	overflow: hidden;
	scroll-snap-align: start;
}

.vkpe-ai-card__image-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 1 / 1;
	min-height: 0;
	background: #f9fafb;
}

.vkpe-ai-card__image {
	display: block;
	width: 76%;
	height: 76%;
	max-width: 150px;
	max-height: 150px;
	object-fit: contain;
}

.vkpe-ai-card__body {
	display: grid;
	align-content: start;
	gap: 6px;
	padding: 10px;
}

.vkpe-ai-card__title {
	color: var(--vkpe-ai-ink);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.vkpe-ai-card__title:hover,
.vkpe-ai-card__title:focus {
	color: var(--vkpe-ai-accent);
	text-decoration: none;
}

.vkpe-ai-card__price {
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
}

.vkpe-ai-card__meta {
	display: grid;
	gap: 2px;
	color: var(--vkpe-ai-muted);
	font-size: 10.5px;
	line-height: 1.35;
}

.vkpe-ai-card__reason {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	max-width: 100%;
	padding: 2px 6px;
	border-radius: 999px;
	background: #fff;
	box-shadow: inset 0 0 0 1px var(--vkpe-ai-line);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vkpe-ai-card__setup-badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	max-width: 100%;
	padding: 2px 6px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(79, 99, 246, 0.12), rgba(194, 58, 142, 0.12));
	color: var(--vkpe-ai-ink);
	box-shadow: inset 0 0 0 1px rgba(79, 99, 246, 0.24);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.woocommerce .vkpe-ai-card__button.button,
.woocommerce-page .vkpe-ai-card__button.button,
.vkpe-ai-card__button.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-width: 112px;
	min-height: 28px;
	margin: 1px 0 0;
	padding: 0 10px;
	border-radius: 5px;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	text-align: center;
}

.woocommerce .vkpe-ai-card__button.button.is-loading,
.woocommerce-page .vkpe-ai-card__button.button.is-loading,
.vkpe-ai-card__button.button.is-loading {
	opacity: 0.68;
	pointer-events: none;
}

.woocommerce .vkpe-ai-card__button.button.is-added,
.woocommerce-page .vkpe-ai-card__button.button.is-added,
.vkpe-ai-card__button.button.is-added {
	background: #20242b;
	box-shadow: inset 0 0 0 2px rgba(79, 99, 246, 0.28);
}

.vkpe-ai-card__debug {
	max-height: 160px;
	overflow: auto;
	margin: 0;
	padding: 8px;
	border-radius: 5px;
	background: #f6f7f7;
	color: #1d2327;
	font-size: 11px;
	white-space: pre-wrap;
}

@media (max-width: 900px) {
	.vkpe-ai-showcase__body {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.vkpe-ai-showcase__nav {
		display: flex;
		flex-wrap: nowrap;
		gap: 6px;
		padding: 0 0 2px;
		border: 0;
		background: transparent;
		overflow-x: auto;
	}

	.vkpe-ai-showcase__nav-item {
		flex: 0 0 auto;
		width: auto;
		min-height: 32px;
		padding: 7px 10px;
		border: 1px solid var(--vkpe-ai-line);
		border-radius: 6px;
	}

	.vkpe-ai-grid {
		gap: 10px;
	}
}

@media (max-width: 520px) {
	.vkpe-ai-showcase {
		padding: 13px 10px 14px 14px;
	}

	.vkpe-ai-grid {
		gap: 10px;
	}

	.vkpe-ai-setup-booster {
		align-items: flex-start;
		flex-wrap: wrap;
	}

	.vkpe-ai-setup-booster__actions {
		width: 100%;
		max-width: none;
		justify-content: flex-start;
	}

	.vkpe-ai-card {
		flex-basis: 176px;
		width: 176px;
		grid-template-rows: auto minmax(0, 1fr);
		min-height: 248px;
	}

	.vkpe-ai-card__image-link {
		width: 100%;
		aspect-ratio: 1 / 1;
		min-height: 0;
	}

	.vkpe-ai-card__image {
		width: 72%;
		height: 72%;
	}

	.vkpe-ai-box__title {
		font-size: 16px;
	}
}

.vkpe-gift-box {
	--vkpe-gift-accent: #4f63f6;
	--vkpe-gift-accent-alt: #c23a8e;
	--vkpe-gift-ink: #151515;
	--vkpe-gift-muted: #626b78;
	--vkpe-gift-line: #dde3ec;
	--vkpe-gift-soft: #f7f8fb;
	position: relative;
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 13px;
	align-items: center;
	margin: 10px 0 12px;
	padding: 13px 15px 13px 18px;
	border: 1px solid var(--vkpe-gift-line);
	border-radius: 6px;
	background: var(--vkpe-gift-soft);
	box-shadow: none;
	color: var(--vkpe-gift-ink);
	font: inherit;
	overflow: hidden;
}

.vkpe-gift-box__accent {
	position: absolute;
	inset: 0 auto 0 0;
	width: 3px;
	background: linear-gradient(180deg, var(--vkpe-gift-accent), var(--vkpe-gift-accent-alt));
}

.vkpe-gift-box__image-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border: 1px solid var(--vkpe-gift-line);
	border-radius: 6px;
	background: #fff;
}

.vkpe-gift-box__image,
.vkpe-gift-box__image-wrap img {
	display: block;
	width: 52px;
	height: 52px;
	object-fit: contain;
}

.vkpe-gift-box__content {
	display: grid;
	gap: 4px;
	min-width: 0;
	padding-left: 1px;
}

.vkpe-gift-box__top,
.vkpe-gift-box__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.vkpe-gift-box__badge {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 0 9px;
	border: 1px solid #ccd5e4;
	border-radius: 5px;
	background: #fff;
	color: #343a46;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.vkpe-gift-box__message,
.vkpe-gift-box__meta {
	color: var(--vkpe-gift-muted);
	font-size: 12px;
	line-height: 1.35;
}

.vkpe-gift-box__name {
	color: var(--vkpe-gift-ink);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.25;
}

.vkpe-gift-box__meta a {
	color: var(--vkpe-gift-ink);
	font-weight: 700;
	text-decoration: none;
	text-underline-offset: 2px;
}

.vkpe-gift-box__meta a:hover,
.vkpe-gift-box__meta a:focus {
	color: var(--vkpe-gift-accent);
	text-decoration: underline;
}

@media (max-width: 640px) {
	.vkpe-gift-box {
		grid-template-columns: 58px minmax(0, 1fr);
		gap: 10px;
		padding: 10px 11px;
	}

	.vkpe-gift-box__image-wrap {
		width: 58px;
		height: 58px;
	}

	.vkpe-gift-box__image,
	.vkpe-gift-box__image-wrap img {
		width: 48px;
		height: 48px;
	}
}

.vkpe-leasing-box {
	--vkpe-leasing-accent: #4f63f6;
	--vkpe-leasing-accent-alt: #c23a8e;
	--vkpe-leasing-ink: #151515;
	--vkpe-leasing-muted: #626b78;
	--vkpe-leasing-line: #dde3ec;
	--vkpe-leasing-soft: #f7f8fb;
	position: relative;
	display: grid;
	gap: 12px;
	margin: 8px 0 10px;
	padding: 14px 16px 13px;
	border: 1px solid var(--vkpe-leasing-line);
	border-radius: 6px;
	background: var(--vkpe-leasing-soft);
	box-shadow: none;
	color: var(--vkpe-leasing-ink);
	overflow: hidden;
}

.vkpe-leasing-box__accent {
	position: absolute;
	inset: 0 auto 0 0;
	width: 3px;
	background: linear-gradient(180deg, var(--vkpe-leasing-accent), var(--vkpe-leasing-accent-alt));
}

.vkpe-leasing-box__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	padding-left: 6px;
}

.vkpe-leasing-box__headline {
	color: #343a46;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.15;
	text-transform: none;
}

.vkpe-leasing-box__subhead,
.vkpe-leasing-box__minimum,
.vkpe-leasing-box__disclaimer,
.vkpe-leasing-box--notice p {
	color: var(--vkpe-leasing-muted);
	font-size: 12px;
	line-height: 1.4;
}

.vkpe-leasing-box__minimum {
	margin-top: 2px;
	font-size: 11px;
}

.vkpe-leasing-box__price {
	display: grid;
	gap: 2px;
	text-align: right;
	white-space: nowrap;
}

.vkpe-leasing-box__price span {
	color: var(--vkpe-leasing-muted);
	font-size: 11px;
	line-height: 1.2;
}

.vkpe-leasing-box__price strong {
	color: var(--vkpe-leasing-ink);
	font-size: 14px;
	line-height: 1.1;
}

.vkpe-leasing-box__price small {
	color: var(--vkpe-leasing-muted);
	font-size: 10px;
	line-height: 1.2;
}

.vkpe-leasing-mini {
	appearance: none;
	float: right;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: -4px 0 0 16px;
	padding: 7px 10px;
	border: 1px solid var(--vkpe-leasing-line, #dde3ec);
	border-radius: 6px;
	background: #fff;
	color: #151515;
	cursor: pointer;
	font: inherit;
	text-decoration: none;
	box-shadow: none;
}

.vkpe-leasing-mini:hover,
.vkpe-leasing-mini:focus {
	border-color: var(--vkpe-leasing-accent, #4f63f6);
	color: #151515;
	text-decoration: none;
}

.vkpe-leasing-mini__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #151515;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
}

.vkpe-leasing-mini strong,
.vkpe-leasing-mini small {
	display: block;
	line-height: 1.2;
}

.vkpe-leasing-mini strong {
	font-size: 12px;
	font-weight: 800;
}

.vkpe-leasing-mini small {
	margin-top: 1px;
	color: #666;
	font-size: 11px;
}

.vkpe-leasing-details-modal {
	position: fixed;
	inset: 0;
	z-index: 99990;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.vkpe-leasing-details-modal.is-open {
	display: flex;
}

.vkpe-leasing-details-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.42);
}

.vkpe-leasing-details-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(900px, 100%);
	max-height: calc(100vh - 48px);
	overflow: auto;
	padding: 25px;
	border-radius: 7px;
	background: #fff;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
	color: #151515;
}

.vkpe-leasing-details-modal__title {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.vkpe-leasing-details-modal .vkpe-leasing-box {
	margin: 0;
	padding: 18px 20px 17px;
	box-shadow: none;
}

.vkpe-leasing-compact {
	display: grid;
	grid-template-columns: minmax(170px, 0.3fr) minmax(0, 1fr);
	gap: 18px;
	align-items: end;
	padding-left: 6px;
}

.vkpe-leasing-compact__select,
.vkpe-leasing-compact__metric {
	display: grid;
	gap: 4px;
}

.vkpe-leasing-compact__select {
	margin: 0;
}

.vkpe-leasing-compact__select span,
.vkpe-leasing-compact__metric span {
	color: var(--vkpe-leasing-muted);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
}

.vkpe-leasing-compact__select select {
	width: 100%;
	min-height: 42px;
	padding: 0 34px 0 11px;
	border: 1px solid #ccd5e4;
	border-radius: 5px;
	background-color: #fff;
	color: var(--vkpe-leasing-ink);
	font-size: 13px;
	font-weight: 700;
}

.vkpe-leasing-compact__row {
	display: grid;
	grid-template-columns: minmax(150px, 1fr) minmax(150px, 1fr) minmax(190px, auto);
	gap: 18px;
	align-items: end;
	padding: 14px 15px;
	border: 1px solid var(--vkpe-leasing-line);
	border-radius: 6px;
	background: #fff;
}

.vkpe-leasing-compact__metric strong {
	color: var(--vkpe-leasing-ink);
	font-size: 14px;
	line-height: 1.15;
}

.vkpe-leasing-compact__action {
	display: flex;
	justify-content: flex-end;
}

.woocommerce .vkpe-leasing-box .vkpe-leasing-cta.button,
.woocommerce-page .vkpe-leasing-box .vkpe-leasing-cta.button,
.vkpe-leasing-box .vkpe-leasing-cta.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 190px;
	min-height: 38px;
	margin: 0;
	padding: 0 14px;
	border-radius: 5px;
	background: var(--vkpe-leasing-ink);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.15;
	text-decoration: none;
	text-align: center;
	white-space: normal;
}

.woocommerce .vkpe-leasing-box .vkpe-leasing-cta.button:hover,
.woocommerce-page .vkpe-leasing-box .vkpe-leasing-cta.button:hover,
.vkpe-leasing-box .vkpe-leasing-cta.button:hover {
	background: #2d3340;
	color: #fff;
}

.vkpe-leasing-box__disclaimer {
	margin: 0;
	padding: 0 0 0 6px;
	font-size: 11px;
	line-height: 1.45;
}

.vkpe-leasing-box--notice {
	padding: 10px 12px;
}

.vkpe-leasing-box--notice p {
	margin: 0;
	padding-left: 4px;
}

.vkpe-leasing-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.vkpe-leasing-modal.is-open {
	display: flex;
}

.vkpe-leasing-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.42);
}

.vkpe-leasing-modal__dialog {
	--vkpe-leasing-accent: #4f63f6;
	--vkpe-leasing-accent-alt: #c23a8e;
	--vkpe-leasing-ink: #151515;
	--vkpe-leasing-muted: #626b78;
	--vkpe-leasing-line: #dde3ec;
	--vkpe-leasing-soft: #f7f8fb;
	position: relative;
	z-index: 1;
	width: min(900px, 100%);
	max-height: calc(100vh - 48px);
	overflow: auto;
	padding: 25px;
	border: 0;
	border-radius: 7px;
	background: #fff;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
	color: var(--vkpe-leasing-ink);
}

.vkpe-leasing-modal__dialog::before {
	display: none;
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: linear-gradient(180deg, var(--vkpe-leasing-accent), var(--vkpe-leasing-accent-alt));
	content: "";
}

.vkpe-leasing-modal__dialog h3 {
	margin: 0 42px 18px 4px;
	color: #343a46;
	font-size: 21px;
	font-weight: 800;
	line-height: 1.2;
}

.vkpe-leasing-modal .vkpe-leasing-modal__close,
.vkpe-leasing-details-modal .vkpe-leasing-modal__close,
.vkpe-cart-leasing-modal .vkpe-leasing-modal__close {
	position: absolute;
	top: 10px;
	right: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px !important;
	min-width: 28px !important;
	height: 28px !important;
	min-height: 28px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 1px solid #e7e2dc !important;
	border-radius: 50% !important;
	background: #fff !important;
	box-shadow: 0 2px 8px rgba(21, 21, 21, 0.08);
	color: #151515 !important;
	cursor: pointer;
	font-family: Arial, sans-serif;
	font-size: 18px !important;
	font-weight: 400;
	line-height: 1 !important;
	text-align: center;
	text-decoration: none;
}

.vkpe-leasing-modal .vkpe-leasing-modal__close:hover,
.vkpe-leasing-modal .vkpe-leasing-modal__close:focus,
.vkpe-leasing-details-modal .vkpe-leasing-modal__close:hover,
.vkpe-leasing-details-modal .vkpe-leasing-modal__close:focus,
.vkpe-cart-leasing-modal .vkpe-leasing-modal__close:hover,
.vkpe-cart-leasing-modal .vkpe-leasing-modal__close:focus {
	border-color: #4f63f6 !important;
	background: #fff !important;
	color: #151515 !important;
	outline: none;
}

.vkpe-leasing-form {
	position: relative;
	display: grid;
	gap: 17px;
	overflow: hidden;
	padding: 18px 20px 17px 24px;
	border: 1px solid var(--vkpe-leasing-line, #dde3ec);
	border-radius: 6px;
	background: var(--vkpe-leasing-soft, #f7f8fb);
}

.vkpe-leasing-form::before {
	position: absolute;
	inset: 0 auto 0 0;
	width: 3px;
	background: linear-gradient(180deg, var(--vkpe-leasing-accent, #4f63f6), var(--vkpe-leasing-accent-alt, #c23a8e));
	content: "";
}

.vkpe-leasing-form__summary {
	display: grid;
	gap: 6px;
	padding: 15px 16px;
	border: 1px solid var(--vkpe-leasing-line, #dde3ec);
	border-radius: 6px;
	background: #fff;
	font-size: 12px;
}

.vkpe-leasing-form__summary strong {
	font-size: 14px;
	line-height: 1.25;
}

.vkpe-leasing-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 15px 18px;
}

.vkpe-leasing-form__grid label {
	display: grid;
	gap: 6px;
	margin: 0;
	color: var(--vkpe-leasing-ink, #151515);
	font-size: 12px;
	font-weight: 800;
}

.vkpe-leasing-form__grid input {
	width: 100%;
	min-height: 42px;
	border: 1px solid #ccd5e4;
	border-radius: 5px;
	background: #fff;
	color: var(--vkpe-leasing-ink, #151515);
}

.woocommerce .vkpe-leasing-modal .vkpe-leasing-form__grid input,
.woocommerce-page .vkpe-leasing-modal .vkpe-leasing-form__grid input,
.vkpe-leasing-modal .vkpe-leasing-form__grid input {
	border: 1px solid #ccd5e4 !important;
	border-radius: 5px !important;
	background: #fff !important;
	box-shadow: none !important;
	color: var(--vkpe-leasing-ink, #151515) !important;
}

.woocommerce .vkpe-leasing-modal .vkpe-leasing-form__grid input:focus,
.woocommerce-page .vkpe-leasing-modal .vkpe-leasing-form__grid input:focus,
.vkpe-leasing-modal .vkpe-leasing-form__grid input:focus {
	border-color: var(--vkpe-leasing-accent, #4f63f6) !important;
	outline: none;
}

.vkpe-leasing-form__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.woocommerce .vkpe-leasing-modal .vkpe-leasing-submit.button,
.woocommerce-page .vkpe-leasing-modal .vkpe-leasing-submit.button,
.vkpe-leasing-modal .vkpe-leasing-submit.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-height: 34px;
	margin: 0;
	padding: 0 16px;
	border-radius: 5px;
	background: var(--vkpe-leasing-ink, #151515);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.woocommerce .vkpe-leasing-modal .vkpe-leasing-submit.button:hover,
.woocommerce .vkpe-leasing-modal .vkpe-leasing-submit.button:focus,
.woocommerce-page .vkpe-leasing-modal .vkpe-leasing-submit.button:hover,
.woocommerce-page .vkpe-leasing-modal .vkpe-leasing-submit.button:focus,
.vkpe-leasing-modal .vkpe-leasing-submit.button:hover,
.vkpe-leasing-modal .vkpe-leasing-submit.button:focus {
	background: #2d3340;
	color: #fff;
}

.vkpe-leasing-message {
	color: var(--vkpe-leasing-muted, #626b78);
	font-size: 12px;
	line-height: 1.4;
}

.vkpe-leasing-message.is-success {
	color: #1f7a3a;
}

.vkpe-leasing-message.is-error {
	color: #b42318;
}

@media (max-width: 640px) {
	.vkpe-leasing-modal {
		padding: 12px;
	}

	.vkpe-leasing-modal__dialog {
		width: 100%;
		max-height: calc(100vh - 24px);
		padding: 14px;
	}

	.vkpe-leasing-form {
		padding: 16px 16px 15px 19px;
	}

	.vkpe-leasing-details-modal {
		padding: 12px;
	}

	.vkpe-leasing-details-modal__dialog {
		width: 100%;
		max-height: calc(100vh - 24px);
		padding: 14px;
	}

	.vkpe-leasing-mini {
		float: none;
		margin: 8px 0 0;
	}

	.vkpe-leasing-box__header {
		display: grid;
		gap: 8px;
	}

	.vkpe-leasing-box__price {
		text-align: left;
		white-space: normal;
	}

	.vkpe-leasing-compact,
	.vkpe-leasing-compact__row {
		grid-template-columns: 1fr;
	}

	.vkpe-leasing-compact__action,
	.vkpe-leasing-box .vkpe-leasing-cta.button {
		justify-content: center;
		width: 100%;
		min-width: 0;
	}

	.vkpe-leasing-form__grid {
		grid-template-columns: 1fr;
	}
}

.vkpe-saved-cart-box,
.vkpe-saved-cart-modal__dialog,
.vkpe-saved-cart-item {
	--vkpe-saved-accent: #4f63f6;
	--vkpe-saved-accent-alt: #c23a8e;
	--vkpe-saved-ink: #151515;
	--vkpe-saved-muted: #626b78;
	--vkpe-saved-line: #dde3ec;
	--vkpe-saved-soft: #f7f8fb;
	box-sizing: border-box;
	color: var(--vkpe-saved-ink);
	font: inherit;
}

.vkpe-saved-cart-box {
	position: relative;
	margin: 0 0 18px;
	padding: 16px 22px;
	overflow: hidden;
	border: 1px solid var(--vkpe-saved-line);
	border-radius: 6px;
	background: var(--vkpe-saved-soft);
}

.vkpe-cart-leasing-box {
	--vkpe-cart-leasing-accent: #4f63f6;
	--vkpe-cart-leasing-accent-alt: #c23a8e;
	--vkpe-cart-leasing-ink: #151515;
	--vkpe-cart-leasing-muted: #626b78;
	--vkpe-cart-leasing-line: #dde3ec;
	--vkpe-cart-leasing-soft: #f7f8fb;
	position: relative;
	box-sizing: border-box;
	margin: 10px 0 0;
	padding: 16px 22px;
	overflow: hidden;
	border: 1px solid var(--vkpe-cart-leasing-line);
	border-radius: 6px;
	background: var(--vkpe-cart-leasing-soft);
	color: var(--vkpe-cart-leasing-ink);
	font: inherit;
}

.vkpe-insurance-box,
.vkpe-insurance-modal__dialog {
	--vkpe-insurance-accent: #4f63f6;
	--vkpe-insurance-accent-alt: #c23a8e;
	--vkpe-insurance-ink: #151515;
	--vkpe-insurance-muted: #626b78;
	--vkpe-insurance-line: #dde3ec;
	--vkpe-insurance-soft: #f7f8fb;
	box-sizing: border-box;
	color: var(--vkpe-insurance-ink);
	font: inherit;
}

.vkpe-insurance-box {
	position: relative;
	margin: 10px 0 0;
	padding: 16px 22px;
	overflow: hidden;
	border: 1px solid var(--vkpe-insurance-line);
	border-radius: 6px;
	background: var(--vkpe-insurance-soft);
}

.vkpe-insurance-fallback {
	margin: 0;
}

.vkpe-insurance-box__accent,
.vkpe-insurance-form::before {
	position: absolute;
	inset: 0 auto 0 0;
	width: 3px;
	background: linear-gradient(180deg, var(--vkpe-insurance-accent), var(--vkpe-insurance-accent-alt));
	content: "";
}

.vkpe-insurance-box__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.vkpe-insurance-box__copy h2 {
	margin: 0;
	color: #343a46;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.15;
}

.vkpe-insurance-box__copy p,
.vkpe-insurance-message,
.vkpe-insurance-disclaimer {
	margin: 5px 0 0;
	color: var(--vkpe-insurance-muted);
	font-size: 13px;
	line-height: 1.35;
}

.woocommerce .vkpe-insurance-box .vkpe-insurance-open.button,
.woocommerce-page .vkpe-insurance-box .vkpe-insurance-open.button,
.vkpe-insurance-open.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	min-width: 42px;
	height: 36px;
	min-height: 36px;
	max-height: 36px;
	margin: 0;
	padding: 0;
	border-radius: 5px;
	background: var(--vkpe-insurance-ink);
	color: #fff;
	font-size: 0;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.vkpe-insurance-icon {
	display: inline-block;
	width: 19px;
	height: 19px;
	margin: 0;
	opacity: 0.82;
}

.vkpe-insurance-open .screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.vkpe-insurance-modal {
	position: fixed;
	inset: 0;
	z-index: 99996;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.vkpe-insurance-modal.is-open {
	display: flex;
}

.vkpe-insurance-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.42);
}

.vkpe-insurance-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(680px, 100%);
	max-height: calc(100vh - 48px);
	overflow: auto;
	padding: 22px;
	border-radius: 7px;
	background: #fff;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.vkpe-insurance-modal__dialog h3 {
	margin: 0 42px 14px 0;
	color: #343a46;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.2;
}

.vkpe-insurance-modal__close {
	position: absolute;
	top: 10px;
	right: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px !important;
	min-width: 28px !important;
	height: 28px !important;
	min-height: 28px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 1px solid #e7e2dc !important;
	border-radius: 50% !important;
	background: #fff !important;
	box-shadow: 0 2px 8px rgba(21, 21, 21, 0.08);
	color: #151515 !important;
	cursor: pointer;
	font-family: Arial, sans-serif;
	font-size: 18px !important;
	font-weight: 400;
	line-height: 1 !important;
	text-align: center;
}

.vkpe-insurance-form {
	position: relative;
	display: grid;
	gap: 9px;
	margin-top: 14px;
	overflow: hidden;
	padding: 14px 16px 14px 20px;
	border: 1px solid var(--vkpe-insurance-line);
	border-radius: 6px;
	background: var(--vkpe-insurance-soft);
}

.vkpe-insurance-item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(220px, 48%);
	gap: 12px;
	align-items: center;
	padding: 0 0 10px;
	border-bottom: 1px solid rgba(221, 227, 236, 0.9);
}

.vkpe-insurance-item:last-of-type {
	padding-bottom: 0;
	border-bottom: 0;
}

.vkpe-insurance-item__head {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
}

.vkpe-insurance-item__head strong {
	display: block;
	color: #343a46;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.25;
}

.vkpe-insurance-item__head small {
	display: block;
	margin-top: 2px;
	color: var(--vkpe-insurance-muted);
	font-size: 11px;
	line-height: 1.3;
}

.vkpe-insurance-item__image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	overflow: hidden;
	border: 1px solid var(--vkpe-insurance-line);
	border-radius: 5px;
	background: #fff;
}

.vkpe-insurance-item__image img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.vkpe-insurance-select-row {
	display: grid;
	gap: 5px;
	margin: 0;
}

.vkpe-insurance-select-row span {
	color: #343a46;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.1;
	text-transform: uppercase;
}

.vkpe-insurance-select-row select {
	box-sizing: border-box;
	width: 100%;
	min-height: 38px;
	padding: 0 34px 0 11px;
	border: 1px solid var(--vkpe-insurance-line);
	border-radius: 5px;
	background-color: #fff;
	color: #151515;
	font: inherit;
	font-size: 13px;
	font-weight: 700;
}

.vkpe-insurance-item__note {
	grid-column: 2;
	margin: -5px 0 0;
	color: var(--vkpe-insurance-muted);
	font-size: 11px;
	line-height: 1.3;
}

.vkpe-insurance-choice {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	gap: 10px;
	align-items: flex-start;
	margin: 0;
	padding: 12px;
	border: 1px solid var(--vkpe-insurance-line);
	border-radius: 6px;
	background: #fff;
	cursor: pointer;
}

.vkpe-insurance-choice input {
	margin-top: 3px;
}

.vkpe-insurance-choice span {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.vkpe-insurance-choice strong {
	color: #343a46;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.25;
}

.vkpe-insurance-choice small {
	color: var(--vkpe-insurance-muted);
	font-size: 12px;
	line-height: 1.35;
}

.vkpe-insurance-choice em {
	color: var(--vkpe-insurance-ink);
	font-size: 14px;
	font-style: normal;
	font-weight: 800;
	line-height: 1.2;
}

.vkpe-insurance-form__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 2px;
}

.woocommerce .vkpe-insurance-submit.button,
.woocommerce-page .vkpe-insurance-submit.button,
.vkpe-insurance-submit.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-height: 38px;
	margin: 0;
	padding: 0 16px;
	border-radius: 5px;
	background: var(--vkpe-insurance-ink);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.vkpe-insurance-message.is-success {
	color: #1f7a3a;
}

.vkpe-insurance-message.is-error {
	color: #b42318;
}

.vkpe-insurance-status-label {
	display: inline-flex;
	align-items: center;
	padding: 3px 7px;
	border: 1px solid #dde3ec;
	border-radius: 4px;
	background: #f7f8fb;
	color: #343a46;
	cursor: help;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.15;
	vertical-align: middle;
	white-space: nowrap;
}

.vkpe-insurance-status-line {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
	margin: 5px 0 0 6px;
	color: #626b78;
	font-size: 12px;
	line-height: 1.3;
}

.vkpe-insurance-status-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #11151d;
	color: #fff;
	flex: 0 0 13px;
}

.vkpe-insurance-status-icon svg {
	width: 9px;
	height: 9px;
}

.vkpe-insurance-status-offer {
	color: #343a46;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
}

.vkpe-insurance-linked-row {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr) auto 28px;
	gap: 10px;
	align-items: center;
	width: min(520px, 100%);
	margin: 12px 0 0;
	padding: 10px 10px 10px 12px;
	border: 1px solid var(--vkpe-insurance-line, #dde3ec);
	border-radius: 6px;
	background: var(--vkpe-insurance-soft, #f7f8fb);
	color: var(--vkpe-insurance-ink, #151515);
}

.vkpe-insurance-linked-row__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 5px;
	background: #151515;
	color: #fff;
}

.vkpe-insurance-linked-row__icon svg {
	width: 18px;
	height: 18px;
}

.vkpe-insurance-linked-row__body {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.vkpe-insurance-linked-row__body strong {
	color: #343a46;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.25;
}

.vkpe-insurance-linked-row__body small {
	color: #626b78;
	font-size: 11px;
	line-height: 1.3;
}

.vkpe-insurance-linked-row__price {
	color: #151515;
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
}

.vkpe-insurance-linked-row__remove {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 26px !important;
	min-width: 26px !important;
	height: 26px !important;
	min-height: 26px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 1px solid #e7e2dc !important;
	border-radius: 50% !important;
	background: #fff !important;
	color: #151515 !important;
	cursor: pointer;
	font-size: 17px !important;
	font-weight: 400 !important;
	line-height: 1 !important;
}

.vkpe-insurance-linked-row__remove.loading,
.vkpe-insurance-linked-row__remove:disabled {
	cursor: wait;
	opacity: 0.6;
}

.vkpe-delivery-panel-sidebar.vksa-delivery-panel {
	box-sizing: border-box;
	width: 100%;
	margin: 10px 0 0 !important;
}

.vkpe-delivery-panel-sidebar .vksa-delivery-split,
.vkpe-delivery-panel-sidebar .vksa-delivery-options,
.vkpe-delivery-panel-sidebar .vksa-delivery-panel-body {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}

.vkpe-delivery-panel-sidebar .vksa-delivery-panel-head {
	align-items: flex-start;
}

.vkpe-delivery-panel-sidebar .vksa-delivery-card,
.vkpe-delivery-panel-sidebar .vksa-delivery-option {
	width: 100%;
	min-width: 0;
}

.vkpe-delivery-panel-under-products.vksa-delivery-panel {
	box-sizing: border-box;
	width: 100%;
	margin: 18px 0 0;
}

.vksa-delivery-panel .vksa-delivery-panel-head strong {
	display: block;
	margin: 0;
	color: #343a46;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.15;
}

.vksa-delivery-panel .vksa-delivery-panel-head strong + * {
	margin-top: 5px;
}

.wc-block-cart__main > .vkpe-delivery-panel-under-products,
.woocommerce-cart-form > .vkpe-delivery-panel-under-products {
	clear: both;
}

.woocommerce-proceed-to-checkout .vkpe-saved-cart-box,
.vkpe-saved-cart-fallback .vkpe-saved-cart-box {
	margin: 22px 0 0;
}

body.woocommerce-cart .entry-content > .wp-block-woocommerce-cart.alignwide,
body.woocommerce-cart .entry-content > .wp-block-woocommerce-cart {
	width: 100%;
	max-width: 100%;
	margin-right: auto !important;
	margin-left: auto !important;
}

body.woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart {
	width: 100%;
}

body.woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart__sidebar {
	box-sizing: border-box;
}

.vkpe-saved-cart-box__accent,
.vkpe-cart-leasing-box__accent,
.vkpe-saved-cart-form::before,
.vkpe-saved-cart-restore-form::before {
	position: absolute;
	inset: 0 auto 0 0;
	width: 3px;
	background: linear-gradient(180deg, var(--vkpe-saved-accent), var(--vkpe-saved-accent-alt));
	content: "";
}

.vkpe-cart-leasing-box__accent {
	background: linear-gradient(180deg, var(--vkpe-cart-leasing-accent), var(--vkpe-cart-leasing-accent-alt));
}

.vkpe-saved-cart-box__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.vkpe-cart-leasing-box__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.vkpe-saved-cart-modal__dialog h3,
.vkpe-saved-cart-account h2 {
	margin: 0;
	color: #343a46;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.2;
}

.vkpe-saved-cart-box__copy h2 {
	margin: 0;
	color: #343a46;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.15;
}

.vkpe-cart-leasing-box__copy h2 {
	margin: 0;
	color: #343a46;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.15;
}

.vkpe-saved-cart-box__copy p,
.vkpe-cart-leasing-box__copy p,
.vkpe-saved-cart-modal__dialog p,
.vkpe-saved-cart-message,
.vkpe-saved-cart-item span {
	margin: 5px 0 0;
	color: var(--vkpe-saved-muted);
	font-size: 13px;
	line-height: 1.35;
}

.woocommerce .vkpe-saved-cart-box .vkpe-saved-cart-open.button,
.woocommerce-page .vkpe-saved-cart-box .vkpe-saved-cart-open.button,
.woocommerce .vkpe-saved-cart-submit.button,
.woocommerce-page .vkpe-saved-cart-submit.button,
.vkpe-saved-cart-submit.button,
.woocommerce .vkpe-saved-cart-item .button,
.woocommerce-page .vkpe-saved-cart-item .button,
.vkpe-saved-cart-item .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-height: 38px;
	margin: 0;
	padding: 0 16px;
	border-radius: 5px;
	background: var(--vkpe-saved-ink);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.woocommerce .vkpe-saved-cart-box .vkpe-saved-cart-open.button,
.woocommerce-page .vkpe-saved-cart-box .vkpe-saved-cart-open.button,
.vkpe-saved-cart-open.button {
	width: 42px;
	min-width: 42px;
	height: 36px;
	min-height: 36px;
	max-height: 36px;
	padding: 0;
	font-size: 0;
}

.woocommerce .vkpe-saved-cart-box .vkpe-saved-cart-open.button:disabled,
.woocommerce-page .vkpe-saved-cart-box .vkpe-saved-cart-open.button:disabled,
.vkpe-saved-cart-open.button:disabled {
	border: 1px solid #d5dbe5;
	background: #fff;
	color: #9aa3af;
	cursor: not-allowed;
}

.vkpe-saved-cart-icon {
	display: inline-block;
	width: 18px;
	height: 18px;
	margin: 0;
	opacity: 0.72;
}

.vkpe-saved-cart-open .screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.woocommerce .vkpe-cart-leasing-box .vkpe-cart-leasing-open.button,
.woocommerce-page .vkpe-cart-leasing-box .vkpe-cart-leasing-open.button,
.vkpe-cart-leasing-open.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	min-width: 42px;
	height: 36px;
	min-height: 36px;
	max-height: 36px;
	margin: 0;
	padding: 0;
	border-radius: 5px;
	background: var(--vkpe-cart-leasing-ink);
	color: #fff;
	font-size: 0;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.vkpe-cart-leasing-icon {
	display: inline-block;
	width: 19px;
	height: 19px;
	margin: 0;
	opacity: 0.82;
}

.vkpe-cart-leasing-open .screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.vkpe-cart-leasing-modal {
	position: fixed;
	inset: 0;
	z-index: 99995;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.vkpe-cart-leasing-modal.is-open {
	display: flex;
}

.vkpe-cart-leasing-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.42);
}

.vkpe-cart-leasing-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(900px, 100%);
	max-height: calc(100vh - 48px);
	overflow: auto;
	padding: 25px;
	border: 0;
	border-radius: 7px;
	background: #fff;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.vkpe-cart-leasing-modal__dialog h3 {
	margin: 0 42px 18px 0;
	color: #343a46;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.2;
}

.vkpe-cart-leasing-details {
	margin: 0;
}

.vkpe-saved-cart-message.is-success {
	color: #1f7a3a;
}

.vkpe-saved-cart-message.is-error {
	color: #b42318;
}

.vkpe-saved-cart-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.vkpe-saved-cart-modal.is-open {
	display: flex;
}

.vkpe-saved-cart-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.42);
}

.vkpe-saved-cart-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(620px, 100%);
	max-height: calc(100vh - 48px);
	overflow: auto;
	padding: 25px;
	border-radius: 7px;
	background: #fff;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.vkpe-saved-cart-modal__close {
	position: absolute;
	top: 10px;
	right: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px !important;
	min-width: 28px !important;
	height: 28px !important;
	min-height: 28px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 1px solid #e7e2dc !important;
	border-radius: 50% !important;
	background: #fff !important;
	box-shadow: 0 2px 8px rgba(21, 21, 21, 0.08);
	color: #151515 !important;
	cursor: pointer;
	font-family: Arial, sans-serif;
	font-size: 18px !important;
	font-weight: 400;
	line-height: 1 !important;
	text-align: center;
}

.vkpe-saved-cart-form,
.vkpe-saved-cart-restore-form {
	position: relative;
	display: grid;
	gap: 16px;
	margin-top: 18px;
	overflow: hidden;
	padding: 18px 20px 17px 24px;
	border: 1px solid var(--vkpe-saved-line);
	border-radius: 6px;
	background: var(--vkpe-saved-soft);
}

.vkpe-saved-cart-form label,
.vkpe-saved-cart-choice {
	display: grid;
	gap: 7px;
	color: var(--vkpe-saved-ink);
	font-size: 12px;
	font-weight: 800;
}

.vkpe-saved-cart-choice label {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-weight: 700;
}

.vkpe-saved-cart-form input[type="text"],
.vkpe-saved-cart-form input[type="email"],
.vkpe-saved-cart-form textarea {
	width: 100%;
	min-height: 42px;
	border: 1px solid #ccd5e4;
	border-radius: 5px;
	background: #fff;
	color: var(--vkpe-saved-ink);
	font-family: inherit;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.35;
}

.vkpe-saved-cart-form input[type="text"]::placeholder,
.vkpe-saved-cart-form input[type="email"]::placeholder,
.vkpe-saved-cart-form textarea::placeholder {
	color: #8b94a3;
	font-weight: 400;
	opacity: 1;
}

.vkpe-saved-cart-form textarea {
	min-height: 84px;
	padding: 10px 12px;
	resize: vertical;
}

.vkpe-saved-cart-form__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.vkpe-saved-cart-list {
	display: grid;
	gap: 10px;
}

.vkpe-saved-cart-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 14px 16px;
	border: 1px solid var(--vkpe-saved-line);
	border-radius: 6px;
	background: var(--vkpe-saved-soft);
}

.vkpe-saved-cart-item__actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.vkpe-saved-cart-item small {
	display: block;
	margin-top: 4px;
	color: var(--vkpe-saved-muted);
	font-size: 12px;
}

.vkpe-saved-setup-preview-page {
	background: #f4f6f8;
}

.vkpe-saved-setup-preview {
	box-sizing: border-box;
	width: min(1100px, calc(100% - 32px));
	margin: 34px auto;
	color: #343a46;
	font-family: inherit;
}

.vkpe-saved-setup-hero,
.vkpe-saved-setup-card,
.vkpe-saved-setup-leasing,
.vkpe-saved-setup-warnings,
.vkpe-saved-setup-actions {
	position: relative;
	overflow: hidden;
	margin: 0 0 14px;
	padding: 18px 22px 18px 26px;
	border: 1px solid var(--vkpe-saved-line);
	border-left: 3px solid #6d63ff;
	border-radius: 6px;
	background: var(--vkpe-saved-soft);
}

.vkpe-saved-setup-hero span,
.vkpe-saved-setup-leasing span {
	display: block;
	margin-bottom: 4px;
	color: #6b7280;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.vkpe-saved-setup-hero h1,
.vkpe-saved-setup-card h2 {
	margin: 0;
	color: #343a46;
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 800;
	line-height: 1.15;
}

.vkpe-saved-setup-hero p {
	margin: 10px 0 0;
	color: #626b78;
	font-size: 14px;
	line-height: 1.45;
}

.vkpe-saved-setup-card__head,
.vkpe-saved-setup-line,
.vkpe-saved-setup-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.vkpe-saved-setup-card__head {
	padding-bottom: 14px;
	border-bottom: 1px solid var(--vkpe-saved-line);
}

.vkpe-saved-setup-line {
	padding: 14px 0;
	border-bottom: 1px solid #e6ebf2;
}

.vkpe-saved-setup-line:last-child {
	border-bottom: 0;
}

.vkpe-saved-setup-line strong {
	display: block;
	color: #151515;
	font-weight: 800;
}

.vkpe-saved-setup-line span,
.vkpe-saved-setup-line small {
	display: block;
	margin-top: 4px;
	color: #6b7280;
	font-size: 12px;
}

.vkpe-saved-setup-warnings {
	display: grid;
	gap: 8px;
	border-left-color: #f59e0b;
	background: #fffaf0;
}

.vkpe-saved-setup-warnings span {
	color: #8a4b00;
	font-size: 13px;
	font-weight: 700;
}

.vkpe-saved-setup-leasing {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	border-left-color: #d94ecb;
}

.vkpe-saved-setup-leasing strong {
	color: #151515;
	font-size: 18px;
}

.vkpe-saved-setup-actions {
	justify-content: flex-start;
	flex-wrap: wrap;
	border-left-color: #151515;
}

.woocommerce .vkpe-saved-setup-actions .button,
.vkpe-saved-setup-actions .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 16px;
	border-radius: 5px;
	background: #151515;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
}

@media (max-width: 640px) {
	.vkpe-saved-cart-box {
		padding: 17px 18px 16px;
	}

	.vkpe-saved-cart-box__content,
	.vkpe-saved-cart-item,
	.vkpe-saved-cart-form__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.vkpe-saved-cart-modal {
		padding: 12px;
	}

	.vkpe-saved-cart-modal__dialog {
		width: 100%;
		max-height: calc(100vh - 24px);
		padding: 14px;
	}

	.vkpe-saved-cart-form,
	.vkpe-saved-cart-restore-form {
		padding: 16px 16px 15px 19px;
	}

	.vkpe-saved-setup-card__head,
	.vkpe-saved-setup-line,
	.vkpe-saved-setup-leasing {
		align-items: flex-start;
		flex-direction: column;
	}

	.vkpe-insurance-box__content {
		align-items: flex-start;
	}

	.vkpe-insurance-linked-row {
		grid-template-columns: 30px minmax(0, 1fr) 26px;
		width: 100%;
	}

	.vkpe-insurance-linked-row__price {
		grid-column: 2 / -1;
	}

	.vkpe-insurance-item {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.vkpe-insurance-item__note {
		grid-column: auto;
		margin-top: -2px;
	}
}
