.wfg-quick-add-shell {
	--wfg-surface: #ffffff;
	--wfg-surface-soft: #f5f7fb;
	--wfg-text: #172033;
	--wfg-text-soft: #61708b;
	--wfg-accent: #1f7a5f;
	--wfg-accent-strong: #145442;
	--wfg-warning: #b26a00;
	--wfg-danger: #b33a3a;
	--wfg-danger-soft: #ffe9e9;
	--wfg-border: #d7deeb;
	--wfg-shadow: 0 22px 48px rgba(23, 32, 51, 0.08);
	max-width: 1080px;
	margin: 24px auto;
	padding: 28px;
	border-radius: 24px;
	background: radial-gradient(circle at top left, rgba(31, 122, 95, 0.12), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
	box-shadow: var(--wfg-shadow);
	color: var(--wfg-text);
}

.wfg-quick-add-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.wfg-quick-add-heading {
	margin: 0;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	line-height: 1.1;
	color: var(--wfg-text);
}

.wfg-quick-add-subheading {
	margin: 8px 0 0;
	color: var(--wfg-text-soft);
	font-size: 0.98rem;
}

.wfg-quick-add-grid {
	display: grid;
	grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
	gap: 22px;
}

.wfg-quick-add-card {
	padding: 22px;
	border: 1px solid var(--wfg-border);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.92);
}

.wfg-quick-add-card--details {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.wfg-quick-add-field-label {
	display: inline-block;
	margin-bottom: 10px;
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--wfg-text);
}

.wfg-quick-add-field-label--required::after {
	content: " *";
	color: var(--wfg-danger);
	font-weight: 700;
}

.wfg-quick-add-image-picker {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.wfg-quick-add-file-input {
	position: absolute;
	inline-size: 1px;
	block-size: 1px;
	opacity: 0;
	pointer-events: none;
}

.wfg-quick-add-upload-trigger {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 272px;
	border: 1.5px dashed #d6deec;
	border-radius: 22px;
	background: linear-gradient(180deg, #fbfdff 0%, #f3f8fe 100%);
	text-align: center;
	cursor: pointer;
	transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.wfg-quick-add-image-picker--required .wfg-quick-add-upload-trigger {
	border-color: #d6deec;
	background: linear-gradient(180deg, #fbfdff 0%, #f3f8fe 100%);
}

.wfg-quick-add-upload-trigger:hover {
	border-color: var(--wfg-accent);
	background: linear-gradient(180deg, #ffffff 0%, #eef8f4 100%);
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(23, 32, 51, 0.08);
}

.wfg-quick-add-upload-icon {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 999px;
	background: #ffffff;
	border: 1px solid #dce6f2;
	color: #8ea1be;
	box-shadow: 0 10px 18px rgba(23, 32, 51, 0.08);
}

.wfg-quick-add-upload-icon svg {
	display: block;
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.wfg-quick-add-upload-title {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--wfg-text);
}

.wfg-quick-add-upload-subtitle {
	font-size: 0.88rem;
	font-weight: 600;
	color: #8a9ab5;
}

.wfg-quick-add-mobile-image-actions {
	display: none;
	gap: 10px;
	margin-top: 12px;
}

.wfg-quick-add-mobile-image-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 999px;
	border: 1px solid rgba(31, 122, 95, 0.18);
	background: #ffffff;
	color: var(--wfg-accent-strong);
	font-size: 0.88rem;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.wfg-quick-add-mobile-image-action:hover {
	transform: translateY(-1px);
	border-color: var(--wfg-accent);
	background: #eef8f4;
	box-shadow: 0 10px 18px rgba(23, 32, 51, 0.08);
}

.wfg-quick-add-mobile-image-action--camera {
	background: linear-gradient(180deg, #eef8f4 0%, #e0f1ea 100%);
}

.wfg-quick-add-preview-wrap {
	position: absolute;
	inset: 0;
	display: block;
	border-radius: 22px;
	overflow: hidden;
}

.wfg-quick-add-preview-wrap[hidden] {
	display: none;
}

.wfg-quick-add-preview-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wfg-quick-add-preview-clear {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(42, 47, 58, 0.58);
	color: #ffffff;
	font-size: 0;
	cursor: pointer;
	transform: translate(-50%, -50%);
	backdrop-filter: blur(4px);
	transition: transform 0.18s ease, background 0.18s ease, opacity 0.18s ease;
	opacity: 0;
}

.wfg-quick-add-preview-clear::before,
.wfg-quick-add-preview-clear::after {
	content: "";
	position: absolute;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}

.wfg-quick-add-preview-clear::before {
	transform: rotate(45deg);
}

.wfg-quick-add-preview-clear::after {
	transform: rotate(-45deg);
}

.wfg-quick-add-preview-wrap:hover .wfg-quick-add-preview-clear,
.wfg-quick-add-preview-clear:focus {
	opacity: 1;
}

.wfg-quick-add-preview-clear:hover,
.wfg-quick-add-preview-clear:focus {
	background: rgba(31, 122, 95, 0.82);
	transform: translate(-50%, -50%) scale(1.04);
	outline: none;
}

.wfg-quick-add-camera-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.wfg-quick-add-camera-modal[hidden] {
	display: none;
}

.wfg-quick-add-camera-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(23, 32, 51, 0.72);
	backdrop-filter: blur(6px);
}

.wfg-quick-add-camera-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 520px);
	max-height: calc(100vh - 32px);
	padding: 16px;
	border-radius: 24px;
	background: #ffffff;
	box-shadow: 0 24px 60px rgba(23, 32, 51, 0.25);
	display: flex;
	flex-direction: column;
	gap: 10px;
	overflow: hidden;
	justify-content: flex-start;
}

.wfg-quick-add-camera-modal__video,
.wfg-quick-add-camera-modal__canvas {
	display: block;
	width: 100%;
	border-radius: 18px;
	background: #0d1525;
	aspect-ratio: 3 / 4;
	max-height: min(68vh, 640px);
	object-fit: cover;
}

.wfg-quick-add-camera-modal__video[hidden],
.wfg-quick-add-camera-modal__canvas[hidden] {
	display: none !important;
}

.wfg-quick-add-camera-modal__actions {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 12px 0 4px;
	background: #ffffff;
	position: sticky;
	bottom: 0;
	z-index: 5;
	min-height: 72px;
	align-items: stretch;
}

.wfg-quick-add-camera-modal__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 18px;
	border: 1px solid var(--wfg-border);
	border-radius: 18px;
	background: #ffffff;
	color: var(--wfg-text);
	font-weight: 700;
	font-size: 0.92rem;
	cursor: pointer;
	flex: 1 1 0;
	box-shadow: 0 10px 22px rgba(23, 32, 51, 0.08);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
	gap: 10px;
	width: 100%;
	visibility: visible;
	opacity: 1;
}

.wfg-quick-add-camera-modal__button:hover,
.wfg-quick-add-camera-modal__button:focus {
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(23, 32, 51, 0.12);
	outline: none;
}

.wfg-quick-add-camera-modal__button--capture,
.wfg-quick-add-camera-modal__button--retake {
	background: linear-gradient(180deg, #1f7a5f 0%, #16624d 100%);
	border-color: rgba(31, 122, 95, 0.28);
	color: #ffffff;
}

.wfg-quick-add-camera-modal__button--capture:hover,
.wfg-quick-add-camera-modal__button--capture:focus,
.wfg-quick-add-camera-modal__button--retake:hover,
.wfg-quick-add-camera-modal__button--retake:focus {
	background: linear-gradient(180deg, #228669 0%, #145442 100%);
}

.wfg-quick-add-camera-modal__button--close {
	background: #f8fafc;
	border-color: #d7deeb;
	color: #33415d;
}

.wfg-quick-add-camera-modal__button[hidden] {
	display: none !important;
}

.wfg-quick-add-camera-modal__button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
}

.wfg-quick-add-camera-modal__button-icon svg {
	display: block;
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.wfg-quick-add-camera-modal__button-text {
	white-space: nowrap;
}

@media (max-width: 600px) {
	.wfg-quick-add-camera-modal {
		padding: 10px;
		align-items: stretch;
	}

	.wfg-quick-add-camera-modal__dialog {
		width: 100%;
		max-height: calc(100vh - 20px);
		height: auto;
		padding: 10px;
		border-radius: 18px;
		gap: 8px;
	}

	.wfg-quick-add-camera-modal__video,
	.wfg-quick-add-camera-modal__canvas {
		height: auto;
		max-height: min(62vh, calc(100vh - 124px));
		min-height: 220px;
		aspect-ratio: auto;
		border-radius: 14px;
	}

	.wfg-quick-add-camera-modal__actions {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 12px;
		min-height: 56px;
		padding: 4px 0 0;
	}

	.wfg-quick-add-camera-modal__button {
		width: 56px;
		min-width: 56px;
		min-height: 56px;
		padding: 0;
		border-radius: 16px;
		gap: 0;
	}

	.wfg-quick-add-camera-modal__button-text {
		display: none;
	}

	.wfg-quick-add-camera-modal__button-icon {
		width: 22px;
		height: 22px;
		flex: 0 0 22px;
	}

	.wfg-quick-add-camera-modal__button-icon svg {
		width: 22px;
		height: 22px;
	}
}

.wfg-quick-add-help {
	margin: 12px 0 0;
	color: var(--wfg-text-soft);
	font-size: 0.88rem;
}

.wfg-quick-add-live-preview {
	margin-top: 22px;
	padding: 18px;
	border-radius: 22px;
	background:
		radial-gradient(circle at top right, rgba(31, 122, 95, 0.18), transparent 36%),
		linear-gradient(135deg, #ffffff 0%, #eff8f4 54%, #e1f3ec 100%);
	border: 1px solid rgba(31, 122, 95, 0.16);
	box-shadow: 0 18px 36px rgba(23, 32, 51, 0.1);
	color: var(--wfg-text);
}

.wfg-quick-add-live-preview__eyebrow {
	margin-bottom: 12px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wfg-accent-strong);
}

.wfg-quick-add-live-preview__card {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
}

.wfg-quick-add-live-preview__media-wrap {
	position: relative;
	width: 92px;
	height: 92px;
	border-radius: 20px;
	overflow: hidden;
	background: linear-gradient(180deg, #eef8f4 0%, #ddefe8 100%);
	border: 1px solid rgba(31, 122, 95, 0.18);
}

.wfg-quick-add-live-preview__media {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wfg-quick-add-live-preview__media[hidden] {
	display: none;
}

.wfg-quick-add-live-preview__media-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 10px;
	box-sizing: border-box;
}

.wfg-quick-add-live-preview__media-icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: rgba(31, 122, 95, 0.14);
	color: var(--wfg-accent-strong);
}

.wfg-quick-add-live-preview__media-icon svg {
	display: block;
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.wfg-quick-add-live-preview__title {
	font-size: 1.28rem;
	font-weight: 800;
	line-height: 1.15;
	color: var(--wfg-text);
	word-break: break-word;
}

.wfg-quick-add-live-preview__price-row {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
}

.wfg-quick-add-live-preview__price {
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--wfg-accent-strong);
}

.wfg-quick-add-live-preview__sale {
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: line-through;
	color: var(--wfg-text-soft);
}

.wfg-quick-add-live-preview__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
}

.wfg-quick-add-live-preview__badge {
	display: inline-flex;
	align-items: center;
	padding: 7px 10px;
	border-radius: 999px;
	background: #ffffff;
	border: 1px solid rgba(31, 122, 95, 0.12);
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--wfg-text);
}

.wfg-quick-add-live-preview__badge--stock {
	background: #eaf8f1;
	color: var(--wfg-accent-strong);
}

.wfg-quick-add-live-preview__sku {
	margin-top: 14px;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--wfg-text-soft);
}

.wfg-quick-add-input-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.wfg-quick-add-input-group {
	position: relative;
}

.wfg-quick-add-text-input,
.wfg-quick-add-select-input,
.wfg-quick-add-textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid var(--wfg-border);
	border-radius: 14px;
	background: var(--wfg-surface);
	color: var(--wfg-text);
	font-size: 0.98rem;
	box-sizing: border-box;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.wfg-quick-add-text-input--required {
	border-color: rgba(31, 122, 95, 0.45);
	background:
		linear-gradient(180deg, rgba(31, 122, 95, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.wfg-quick-add-text-input--required::placeholder {
	color: #7b8ca9;
}

.wfg-quick-add-text-input:focus,
.wfg-quick-add-select-input:focus,
.wfg-quick-add-textarea:focus {
	outline: none;
	border-color: rgba(31, 122, 95, 0.65);
	box-shadow: 0 0 0 4px rgba(31, 122, 95, 0.12);
}

.wfg-quick-add-textarea {
	min-height: 140px;
	resize: vertical;
}

.wfg-quick-add-switch-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 56px;
	padding: 14px 16px;
	border: 1px solid var(--wfg-border);
	border-radius: 16px;
	background: var(--wfg-surface-soft);
	box-sizing: border-box;
}

.wfg-quick-add-switch {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
}

.wfg-quick-add-switch input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.wfg-quick-add-switch-track {
	position: relative;
	display: inline-block;
	width: 62px;
	height: 34px;
	border-radius: 999px;
	background: #c7d1e2;
	transition: background 0.2s ease;
}

.wfg-quick-add-switch-track::after {
	content: "";
	position: absolute;
	top: 4px;
	left: 4px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	transition: transform 0.2s ease;
}

.wfg-quick-add-switch input:checked + .wfg-quick-add-switch-track {
	background: var(--wfg-accent);
}

.wfg-quick-add-switch input:checked + .wfg-quick-add-switch-track::after {
	transform: translateX(28px);
}

.wfg-quick-add-switch-copy {
	display: inline-flex;
	gap: 8px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--wfg-text-soft);
}

.wfg-quick-add-actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 24px;
}

.wfg-quick-add-submit {
	min-width: 190px;
	padding: 15px 24px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--wfg-accent) 0%, #24956f 100%);
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
	box-shadow: 0 16px 28px rgba(31, 122, 95, 0.22);
}

.wfg-quick-add-submit:hover:not(:disabled) {
	transform: translateY(-1px);
	box-shadow: 0 18px 30px rgba(31, 122, 95, 0.28);
}

.wfg-quick-add-submit:disabled {
	opacity: 0.72;
	cursor: wait;
}

.wfg-quick-add-form.is-submitting .wfg-quick-add-submit::after {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-inline-start: 10px;
	border: 2px solid rgba(255, 255, 255, 0.42);
	border-top-color: #ffffff;
	border-radius: 50%;
	vertical-align: middle;
	animation: wfgQuickAddSpin 0.75s linear infinite;
}

.wfg-quick-add-toast-area {
	position: fixed;
	top: 24px;
	right: 24px;
	z-index: 99999;
	display: flex;
	flex-direction: column;
	gap: 12px;
	pointer-events: none;
}

.rtl .wfg-quick-add-toast-area,
[dir="rtl"] .wfg-quick-add-toast-area {
	right: auto;
	left: 24px;
}

.wfg-quick-add-toast {
	min-width: min(90vw, 320px);
	padding: 14px 16px;
	border-radius: 16px;
	color: #ffffff;
	font-weight: 600;
	box-shadow: 0 18px 28px rgba(23, 32, 51, 0.18);
	transform: translateY(-8px);
	opacity: 0;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.wfg-quick-add-toast.is-visible {
	transform: translateY(0);
	opacity: 1;
}

.wfg-quick-add-toast--success {
	background: linear-gradient(135deg, #1f7a5f 0%, #289d78 100%);
}

.wfg-quick-add-toast--error {
	background: linear-gradient(135deg, #b33a3a 0%, #d44d4d 100%);
}

.wfg-quick-add-field-error {
	margin-top: 8px;
	color: var(--wfg-danger);
	font-size: 0.86rem;
	font-weight: 600;
}

.wfg-quick-add-has-error .wfg-quick-add-text-input,
.wfg-quick-add-has-error .wfg-quick-add-select-input,
.wfg-quick-add-has-error .wfg-quick-add-textarea,
.wfg-quick-add-has-error .wfg-quick-add-upload-trigger {
	border-color: rgba(179, 58, 58, 0.72);
	box-shadow: 0 0 0 4px rgba(179, 58, 58, 0.08);
}

.wfg-quick-add-image-picker.wfg-quick-add-has-error .wfg-quick-add-upload-trigger,
.wfg-quick-add-switch-row.wfg-quick-add-has-error {
	border-color: rgba(179, 58, 58, 0.72);
	box-shadow: 0 0 0 4px rgba(179, 58, 58, 0.08);
}

.wfg-quick-add-input-group.is-disabled {
	opacity: 0.58;
}

.wfg-quick-add-guard {
	max-width: 720px;
	margin: 24px auto;
	padding: 18px 20px;
	border-radius: 18px;
	font-weight: 600;
}

.wfg-quick-add-guard--info {
	background: #edf4ff;
	color: #1d4f91;
}

.wfg-quick-add-guard--warning {
	background: #fff6df;
	color: var(--wfg-warning);
}

.wfg-quick-add-guard--error {
	background: var(--wfg-danger-soft);
	color: var(--wfg-danger);
}

@keyframes wfgQuickAddSpin {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 900px) {
	.wfg-quick-add-shell {
		padding: 20px;
		border-radius: 20px;
	}

	.wfg-quick-add-grid,
	.wfg-quick-add-input-row {
		grid-template-columns: 1fr;
	}

	.wfg-quick-add-live-preview {
		position: relative;
		z-index: 20;
	}

	.wfg-quick-add-live-preview.is-sticky-active {
		position: fixed !important;
		top: 84px;
		margin-top: 0;
		z-index: 50;
	}

	.wfg-quick-add-card--media.has-sticky-preview {
		padding-bottom: var(--wfg-live-preview-space, 220px);
	}

	.wfg-quick-add-mobile-image-actions {
		display: flex;
	}
}

@media (max-width: 600px) {
	.wfg-quick-add-shell {
		margin: 16px auto;
		padding: 16px;
	}

	.wfg-quick-add-card {
		padding: 16px;
		border-radius: 16px;
	}

	.wfg-quick-add-upload-trigger {
		min-height: 200px;
	}

	.wfg-quick-add-mobile-image-actions {
		flex-direction: column;
	}

	.wfg-quick-add-switch-row,
	.wfg-quick-add-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.wfg-quick-add-submit {
		width: 100%;
	}

	.wfg-quick-add-toast-area {
		top: auto;
		right: 12px;
		left: 12px;
		bottom: 16px;
	}

	.wfg-quick-add-live-preview {
		position: relative;
		margin-top: 16px;
		padding: 14px;
	}

	.wfg-quick-add-live-preview.is-sticky-active {
		top: 76px;
	}

	.wfg-quick-add-live-preview__card {
		grid-template-columns: 84px minmax(0, 1fr);
		gap: 12px;
	}

	.wfg-quick-add-live-preview__media-wrap {
		width: 84px;
		height: 84px;
	}

	.wfg-quick-add-live-preview__title {
		font-size: 1.05rem;
	}

	.wfg-quick-add-live-preview__price {
		font-size: 1.1rem;
	}

	.wfg-quick-add-live-preview__meta {
		gap: 8px;
		margin-top: 10px;
	}

	.wfg-quick-add-live-preview__sku {
		margin-top: 10px;
	}
}
.wfg-quick-add-sku-wrap {
	position: relative;
}

.wfg-quick-add-sku-wrap .wfg-quick-add-text-input {
	padding-inline-end: 62px;
}

.wfg-quick-add-sku-scan {
	position: absolute;
	inset-inline-end: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 38px;
	height: 38px;
	border: 1px solid #cfe3db;
	border-radius: 12px;
	background: linear-gradient(180deg, #eef9f4 0%, #dff3eb 100%);
	color: #1f6f5c;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.wfg-quick-add-sku-scan:hover,
.wfg-quick-add-sku-scan:focus-visible {
	background: linear-gradient(180deg, #e3f6ef 0%, #cfece2 100%);
	box-shadow: 0 10px 18px rgba(31, 111, 92, 0.14);
	transform: translateY(-50%) scale(1.03);
}

.wfg-quick-add-sku-scan svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.wfg-quick-add-scanner-modal[hidden] {
	display: none !important;
}

.wfg-quick-add-scanner-modal {
	position: fixed;
	inset: 0;
	z-index: 100001;
}

.wfg-quick-add-scanner-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 17, 31, 0.72);
	backdrop-filter: blur(6px);
}

.wfg-quick-add-scanner-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(92vw, 420px);
	margin: 4vh auto 0;
	padding: 14px;
	border-radius: 24px;
	background: #ffffff;
	box-shadow: 0 20px 45px rgba(8, 17, 31, 0.24);
}

.wfg-quick-add-scanner-modal__video {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border-radius: 18px;
	background: #0d1524;
}

.wfg-quick-add-scanner-modal__frame {
	position: absolute;
	inset: 50% 42px auto;
	transform: translateY(-50%);
	height: 148px;
	border: 2px solid rgba(29, 145, 118, 0.9);
	border-radius: 18px;
	box-shadow: 0 0 0 999px rgba(8, 17, 31, 0.22);
	pointer-events: none;
}

.wfg-quick-add-scanner-modal__actions {
	display: flex;
	justify-content: center;
	padding-top: 14px;
}

.wfg-quick-add-scanner-modal__button {
	border: 1px solid #d4e3dd;
	border-radius: 999px;
	background: #f7fbf9;
	color: #26453f;
	padding: 10px 18px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.wfg-quick-add-scanner-modal__button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.wfg-quick-add-scanner-modal__button-icon svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

@media (max-width: 600px) {
	.wfg-quick-add-scanner-modal__dialog {
		width: calc(100vw - 16px);
		margin-top: 8px;
		padding: 8px;
		border-radius: 18px;
	}

	.wfg-quick-add-scanner-modal__frame {
		inset-inline: 28px;
		height: 120px;
	}
}
