/* Free Check — GSM form (400px) + theme background */
body.pc-page-shell-compact-tool:has(#retail-free-check-page), body.pc-page-shell-compact-tool:has(#retail-paid-check-page) {
	--fpcc-page-bg: color-mix(in srgb, rgb(var(--bs-primary-rgb)) 11%, #f4f6f8 89%);
	--fpcc-page-bg-gradient: linear-gradient(
		165deg,
		color-mix(in srgb, rgb(var(--bs-primary-rgb)) 16%, #ffffff 84%) 0%,
		color-mix(in srgb, rgb(var(--bs-primary-rgb)) 9%, #f8fafc 91%) 48%,
		color-mix(in srgb, rgb(var(--bs-primary-rgb)) 13%, #ffffff 87%) 100%
	);
}

html[data-pc-theme="dark"] body.pc-page-shell-compact-tool:has(#retail-free-check-page), html[data-pc-theme="dark"] body.pc-page-shell-compact-tool:has(#retail-paid-check-page) {
	--fpcc-page-bg: color-mix(in srgb, rgb(var(--bs-primary-rgb)) 18%, #0f172a 82%);
	--fpcc-page-bg-gradient: linear-gradient(
		165deg,
		color-mix(in srgb, rgb(var(--bs-primary-rgb)) 24%, #0f172a 76%) 0%,
		color-mix(in srgb, rgb(var(--bs-primary-rgb)) 14%, #070b12 86%) 100%
	);
}

html.pc-page-shell-compact-tool:has(#retail-free-check-page):not(:has(.pc-global-site-bg)),
html.pc-page-shell-compact-tool:has(#retail-free-check-page):not(:has(.pc-global-site-bg)) body.pc-page-shell-compact-tool,
html.pc-page-shell-compact-tool:has(#retail-paid-check-page):not(:has(.pc-global-site-bg)),
html.pc-page-shell-compact-tool:has(#retail-paid-check-page):not(:has(.pc-global-site-bg)) body.pc-page-shell-compact-tool {
	background: var(--fpcc-page-bg-gradient) !important;
	background-color: var(--fpcc-page-bg) !important;
}

body.pc-page-shell-compact-tool:has(#retail-free-check-page):not(:has(.pc-global-site-bg)) .pc-storefront-page-column,
body.pc-page-shell-compact-tool:has(#retail-free-check-page):not(:has(.pc-global-site-bg)) .pc-compact-tool-content-wrapper,
body.pc-page-shell-compact-tool:has(#retail-paid-check-page):not(:has(.pc-global-site-bg)) .pc-storefront-page-column,
body.pc-page-shell-compact-tool:has(#retail-paid-check-page):not(:has(.pc-global-site-bg)) .pc-compact-tool-content-wrapper {
	background: var(--fpcc-page-bg-gradient) !important;
}

body.pc-page-shell-compact-tool:has(#retail-free-check-page):has(.pc-global-site-bg) .pc-storefront-page-column,
body.pc-page-shell-compact-tool:has(#retail-free-check-page):has(.pc-global-site-bg) .pc-compact-tool-content-wrapper,
body.pc-page-shell-compact-tool:has(#retail-paid-check-page):has(.pc-global-site-bg) .pc-storefront-page-column,
body.pc-page-shell-compact-tool:has(#retail-paid-check-page):has(.pc-global-site-bg) .pc-compact-tool-content-wrapper {
	background: transparent !important;
}

#retail-free-check-page, #retail-paid-check-page {
	--primary: var(--bs-primary, #09090b);
	--primary-hover: color-mix(in srgb, rgb(var(--bs-primary-rgb)) 88%, black 12%);
	--primary-ring: rgba(var(--bs-primary-rgb), .16);
	--white: #ffffff;
	--bg: color-mix(in srgb, rgb(var(--bs-primary-rgb)) 6%, #fafafa 94%);
	--text: #09090b;
	--muted: #71717a;
	--subtle: #a1a1aa;
	--placeholder: #a1a1aa;
	--border: rgba(var(--bs-primary-rgb), 0.16);
	--border-hover: rgba(var(--bs-primary-rgb), 0.35);
	--input-bg: #ffffff;
	--radius: 10px;
	--fpcc-ctrl-h: 44px;
	--fpcc-gap: 20px;
	width: 100%;
	max-width: 440px;
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
	color: var(--text) !important;
	font-family: inherit;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
}

#retail-free-check-page #fpcc-app, #retail-paid-check-page #fpcc-app {
	width: 100%;
}

/* Card = admin .form-wrap */
#retail-free-check-page .fpcc-card.fpcc-form-wrap,
#retail-free-check-page .fpcc-form-wrap,
#retail-paid-check-page .fpcc-card.fpcc-form-wrap,
#retail-paid-check-page .fpcc-form-wrap {
	width: 100%;
	max-width: 440px;
	animation: fpcc-rise .36s cubic-bezier(.22, 1, .36, 1) both;
	border: 1px solid var(--bs-border-color, #cbd5e1);
	padding: 0 !important;
	border-radius: 8px !important;
	background: var(--bs-card-bg, #ffffff);
	box-shadow: 0 12px 36px -8px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(15, 23, 42, 0.04);
	overflow: hidden !important;
}

html[data-pc-theme="dark"] #retail-free-check-page .fpcc-card.fpcc-form-wrap,
html[data-pc-theme="dark"] #retail-free-check-page .fpcc-form-wrap,
html[data-pc-theme="dark"] #retail-paid-check-page .fpcc-card.fpcc-form-wrap,
html[data-pc-theme="dark"] #retail-paid-check-page .fpcc-form-wrap {
	background: var(--bs-card-bg, #1e293b) !important;
	border: 1px solid var(--bs-border-color, rgba(255, 255, 255, 0.12)) !important;
	box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(var(--bs-primary-rgb, 15, 118, 110), 0.15) !important;
}

@keyframes fpcc-rise {
	from { opacity: 0; transform: translateY(12px) scale(.98); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

#retail-free-check-page .fpcc-card-body, #retail-paid-check-page .fpcc-card-body {
	padding: 0;
}

/* Header Banner — Segmented Header (Compact) */
#retail-free-check-page .fpcc-f-head.fpcc-header-segmented,
#retail-paid-check-page .fpcc-f-head.fpcc-header-segmented {
	margin-bottom: 0 !important;
	padding: 0.85rem 1.25rem 0.75rem !important;
	text-align: center;
	background: linear-gradient(135deg, rgba(var(--bs-primary-rgb, 15, 118, 110), 0.08), rgba(6, 182, 212, 0.03)) !important;
	border-bottom: 1px solid var(--bs-border-color, #cbd5e1) !important;
}

html[data-pc-theme="dark"] #retail-free-check-page .fpcc-f-head.fpcc-header-segmented,
html[data-pc-theme="dark"] #retail-paid-check-page .fpcc-f-head.fpcc-header-segmented {
	background: linear-gradient(135deg, rgba(var(--bs-primary-rgb, 15, 118, 110), 0.2), rgba(15, 23, 42, 0.6)) !important;
	border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

#retail-free-check-page .fpcc-f-head__title, #retail-paid-check-page .fpcc-f-head__title {
	font-size: 20px !important;
	font-weight: 800;
	letter-spacing: -.03em;
	margin: 0 0 2px !important;
	line-height: 1.25;
}

#retail-free-check-page .fpcc-f-desc, #retail-paid-check-page .fpcc-f-desc {
	font-size: 12px !important;
	color: var(--muted);
	line-height: 1.4;
	margin: 0;
	text-align: center;
	opacity: 0.85;
}

/* Form Body Segment */
#retail-free-check-page .fpcc-body-segmented,
#retail-paid-check-page .fpcc-body-segmented {
	padding: 1.25rem 1.5rem 1.5rem !important;
}

#retail-free-check-page .fpcc-f-head, #retail-paid-check-page .fpcc-f-head {
	margin-bottom: 24px;
	text-align: center;
}

.fpcc-tech-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 14px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgb(var(--bs-primary-rgb));
	background: color-mix(in srgb, rgb(var(--bs-primary-rgb)) 12%, transparent);
	border: 1px solid color-mix(in srgb, rgb(var(--bs-primary-rgb)) 28%, transparent);
	box-shadow: 0 2px 10px rgba(var(--bs-primary-rgb), 0.1);
}

.fpcc-badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #10b981;
	box-shadow: 0 0 8px #10b981;
	animation: fpcc-pulse-dot 1.8s infinite;
}

@keyframes fpcc-pulse-dot {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.4); opacity: 0.5; }
}

#retail-free-check-page .fpcc-f-head__title, #retail-paid-check-page .fpcc-f-head__title {
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -.035em;
	margin: 6px 0 6px;
	line-height: 1.25;
	background: linear-gradient(
		120deg,
		rgb(var(--bs-primary-rgb)) 0%,
		color-mix(in srgb, rgb(var(--bs-primary-rgb)) 55%, #06b6d4 45%) 50%,
		color-mix(in srgb, rgb(var(--bs-primary-rgb)) 35%, #8b5cf6 65%) 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

#retail-free-check-page .fpcc-f-domain, #retail-paid-check-page .fpcc-f-domain {
	font-size: 13.5px;
	color: var(--muted);
	margin: 0;
	line-height: 1.5;
}

#retail-free-check-page .fpcc-f-desc, #retail-paid-check-page .fpcc-f-desc {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.45;
	margin: 0;
	text-align: center;
	opacity: 0.9;
}

#retail-free-check-page .fpcc-f-sep, #retail-paid-check-page .fpcc-f-sep {
	margin-bottom: 40px;
}

#retail-free-check-page .fpcc-form-shell, #retail-paid-check-page .fpcc-form-shell {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
}

#retail-free-check-page .fpcc-field,
#retail-free-check-page .fpcc-field-group,
#retail-paid-check-page .fpcc-field,
#retail-paid-check-page .fpcc-field-group {
	margin: 0 0 var(--fpcc-gap);
	text-align: left;
}

#retail-free-check-page .fpcc-field-top, #retail-paid-check-page .fpcc-field-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 6px;
}

#retail-free-check-page .fpcc-field-label,
#retail-free-check-page .f-label,
#retail-paid-check-page .fpcc-field-label,
#retail-paid-check-page .f-label {
	display: block;
	margin: 0;
	font-size: 13px;
	font-weight: 500;
	color: var(--text);
	line-height: 1.2;
}

#retail-free-check-page .fpcc-imei-block, #retail-paid-check-page .fpcc-imei-block {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-bottom: var(--fpcc-gap);
}

#retail-free-check-page .fpcc-imei-hint, #retail-paid-check-page .fpcc-imei-hint {
	margin: 5px 0 0;
	font-size: 12px;
	line-height: 1.45;
	color: var(--muted);
}

/* Select2 — admin .f-input style */
#retail-free-check-page .fpcc-select-wrapper .select2-container, #retail-paid-check-page .fpcc-select-wrapper .select2-container {
	width: 100% !important;
	display: block !important;
}

#retail-free-check-page .select2-container--default .select2-selection--single, #retail-paid-check-page .select2-container--default .select2-selection--single {
	border: 1px solid var(--border) !important;
	border-radius: var(--radius) !important;
	height: var(--fpcc-ctrl-h) !important;
	min-height: var(--fpcc-ctrl-h) !important;
	display: flex !important;
	align-items: center !important;
	background: var(--input-bg) !important;
	box-shadow: none !important;
	transition: border-color .15s, box-shadow .15s;
}

#retail-free-check-page .select2-container--default.select2-container--focus .select2-selection--single,
#retail-free-check-page .select2-container--default.select2-container--open .select2-selection--single,
#retail-paid-check-page .select2-container--default.select2-container--focus .select2-selection--single,
#retail-paid-check-page .select2-container--default.select2-container--open .select2-selection--single {
	border-color: var(--primary) !important;
	box-shadow: 0 0 0 3px var(--primary-ring) !important;
}

#retail-free-check-page .select2-container--default .select2-selection--single .select2-selection__rendered, #retail-paid-check-page .select2-container--default .select2-selection--single .select2-selection__rendered {
	color: var(--text) !important;
	font-family: inherit !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	padding: 0 2rem 0 12px !important;
	line-height: var(--fpcc-ctrl-h) !important;
	height: var(--fpcc-ctrl-h) !important;
}

#retail-free-check-page .select2-container--default .select2-selection--single .select2-selection__arrow, #retail-paid-check-page .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: var(--fpcc-ctrl-h) !important;
	top: 0 !important;
	right: 10px !important;
}

.fpcc-storefront-select2-dropdown.select2-dropdown {
	border: 1px solid var(--border) !important;
	border-radius: var(--radius) !important;
	box-shadow: 0 8px 24px rgba(15, 23, 42, .08) !important;
	font-family: inherit !important;
	z-index: 9999 !important;
}

.fpcc-svc-opt__name {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* IMEI input — admin .f-wrap / .f-input */
#retail-free-check-page .fpcc-input-wrapper, #retail-paid-check-page .fpcc-input-wrapper {
	position: relative;
}

#retail-free-check-page .sv-imei-input-group, #retail-paid-check-page .sv-imei-input-group {
	display: flex;
	align-items: stretch;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--input-bg);
	overflow: hidden;
	min-height: var(--fpcc-ctrl-h);
	transition: border-color .15s, box-shadow .15s;
}

#retail-free-check-page .sv-imei-input-group:focus-within, #retail-paid-check-page .sv-imei-input-group:focus-within {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px var(--primary-ring);
}

#retail-free-check-page .fpcc-input-icon-left, #retail-paid-check-page .fpcc-input-icon-left {
	flex: 0 0 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--placeholder);
	font-size: 14px;
	font-weight: 600;
	border-right: none;
	background: transparent;
	pointer-events: none;
}

#retail-free-check-page .fpcc-input-text, #retail-paid-check-page .fpcc-input-text {
	flex: 1 1 auto;
	min-width: 0;
	height: var(--fpcc-ctrl-h) !important;
	border: none !important;
	background: transparent !important;
	padding: 0 12px 0 0 !important;
	font-family: inherit;
	font-size: 14px;
	color: var(--text) !important;
	box-shadow: none !important;
}

#retail-free-check-page .fpcc-input-text::placeholder, #retail-paid-check-page .fpcc-input-text::placeholder {
	color: var(--placeholder);
	font-size: 13.5px;
}

#retail-free-check-page .sv-imei-field-overlay, #retail-paid-check-page .sv-imei-field-overlay {
	border-radius: var(--radius);
	background: rgba(255, 255, 255, .92) !important;
}

/* Turnstile */
#retail-free-check-page .fpcc-turnstile-wrap, #retail-paid-check-page .fpcc-turnstile-wrap {
	margin: 0 0 var(--fpcc-gap);
	display: flex;
	justify-content: center;
}

/* Actions — admin .btn-go */
#retail-free-check-page .fpcc-actions-row, #retail-paid-check-page .fpcc-actions-row {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0 0 12px;
}

#retail-free-check-page .fpcc-tools-row, #retail-paid-check-page .fpcc-tools-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin: 0;
}

#retail-free-check-page .fpcc-submit-custom.btn-go,
#retail-free-check-page .fpcc-submit-custom,
#retail-paid-check-page .fpcc-submit-custom.btn-go,
#retail-paid-check-page .fpcc-submit-custom {
	width: 100%;
	height: var(--fpcc-ctrl-h);
	min-height: var(--fpcc-ctrl-h);
	border: none !important;
	border-radius: var(--radius);
	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .02em;
	color: #fff !important;
	background: linear-gradient(
		135deg,
		rgb(var(--bs-primary-rgb)) 0%,
		color-mix(in srgb, rgb(var(--bs-primary-rgb)) 65%, #06b6d4 35%) 50%,
		color-mix(in srgb, rgb(var(--bs-primary-rgb)) 40%, #7c3aed 60%) 100%
	) !important;
	background-size: 200% auto !important;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	box-shadow: 0 6px 20px -2px rgba(var(--bs-primary-rgb), 0.38) !important;
	transition: background-position .3s ease, transform .15s ease, box-shadow .2s ease;
}

#retail-free-check-page .fpcc-submit-custom .btn-arrow, #retail-paid-check-page .fpcc-submit-custom .btn-arrow {
	width: 15px;
	height: 15px;
	stroke: rgba(255, 255, 255, .95);
	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
	transition: transform .2s cubic-bezier(.22, 1, .36, 1);
}

#retail-free-check-page .fpcc-submit__idle, #retail-paid-check-page .fpcc-submit__idle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

#retail-free-check-page .fpcc-submit__busy, #retail-paid-check-page .fpcc-submit__busy {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

#retail-free-check-page .fpcc-submit__spinner, #retail-paid-check-page .fpcc-submit__spinner {
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255, 255, 255, .35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: fpcc-spin .7s linear infinite;
	flex-shrink: 0;
}

#retail-free-check-page .fpcc-submit__busy-text, #retail-paid-check-page .fpcc-submit__busy-text {
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

@keyframes fpcc-spin {
	to { transform: rotate(360deg); }
}

@keyframes fpcc-submit-pulse {
	0%, 100% {
		box-shadow: 0 6px 20px rgba(var(--bs-primary-rgb), 0.35);
	}
	50% {
		box-shadow: 0 8px 28px rgba(var(--bs-primary-rgb), 0.55);
	}
}

#retail-free-check-page .fpcc-submit-custom:hover:not(:disabled), #retail-paid-check-page .fpcc-submit-custom:hover:not(:disabled) {
	background-position: right center !important;
	box-shadow: 0 8px 25px -2px rgba(var(--bs-primary-rgb), 0.5) !important;
	transform: translateY(-2px);
}

#retail-free-check-page .fpcc-submit-custom:hover:not(:disabled) .btn-arrow, #retail-paid-check-page .fpcc-submit-custom:hover:not(:disabled) .btn-arrow {
	transform: translateX(3px);
}

#retail-free-check-page .fpcc-submit-custom:active:not(:disabled), #retail-paid-check-page .fpcc-submit-custom:active:not(:disabled) {
	transform: translateY(0);
}

#retail-free-check-page .fpcc-submit-custom:disabled:not(.is-loading), #retail-paid-check-page .fpcc-submit-custom:disabled:not(.is-loading) {
	opacity: .7;
	cursor: not-allowed;
	transform: none;
	box-shadow: none !important;
}

#retail-free-check-page .fpcc-submit-custom.is-loading .fpcc-submit__idle, #retail-paid-check-page .fpcc-submit-custom.is-loading .fpcc-submit__idle {
	display: none;
}

#retail-free-check-page .fpcc-submit-custom.is-loading .fpcc-submit__busy, #retail-paid-check-page .fpcc-submit-custom.is-loading .fpcc-submit__busy {
	display: inline-flex;
}

#retail-free-check-page .fpcc-submit-custom.is-loading,
#retail-free-check-page .fpcc-submit-custom.is-loading:disabled,
#retail-paid-check-page .fpcc-submit-custom.is-loading,
#retail-paid-check-page .fpcc-submit-custom.is-loading:disabled {
	opacity: 1 !important;
	cursor: wait !important;
	transform: none;
	animation: fpcc-submit-pulse 1.15s ease-in-out infinite;
}

#retail-free-check-page #freeCheckCard.is-checking, #retail-paid-check-page #freeCheckCard.is-checking {
	position: relative;
}

#retail-free-check-page #freeCheckCard.is-checking::after, #retail-paid-check-page #freeCheckCard.is-checking::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: rgba(255, 255, 255, 0.35);
	pointer-events: none;
	z-index: 1;
}

#retail-free-check-page #freeCheckCard.is-checking .fpcc-form-shell,
#retail-free-check-page #freeCheckCard.is-checking .fpcc-actions-row,
#retail-free-check-page #freeCheckCard.is-checking .fpcc-tools-row,
#retail-paid-check-page #freeCheckCard.is-checking .fpcc-form-shell,
#retail-paid-check-page #freeCheckCard.is-checking .fpcc-actions-row,
#retail-paid-check-page #freeCheckCard.is-checking .fpcc-tools-row {
	position: relative;
	z-index: 2;
}

#retail-free-check-page .fpcc-scan-btn, #retail-paid-check-page .fpcc-scan-btn {
	width: 100%;
	height: var(--fpcc-ctrl-h);
	min-height: var(--fpcc-ctrl-h);
	border-radius: var(--radius);
	border: 1px solid color-mix(in srgb, rgb(var(--bs-primary-rgb)) 20%, #e4e4e7 80%);
	background: color-mix(in srgb, rgb(var(--bs-primary-rgb)) 4%, #ffffff 96%);
	color: var(--text);
	font-family: inherit;
	font-size: 13.5px;
	font-weight: 600;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	transition: border-color .18s, background .18s, transform .15s, box-shadow .18s;
	position: relative;
}

#retail-free-check-page .fpcc-scan-btn .sv-imei-scan-btn__icon, #retail-paid-check-page .fpcc-scan-btn .sv-imei-scan-btn__icon {
	font-size: 14px;
	line-height: 1;
	color: rgb(var(--bs-primary-rgb));
}

#retail-free-check-page .fpcc-scan-btn .sv-imei-scan-btn__spin, #retail-paid-check-page .fpcc-scan-btn .sv-imei-scan-btn__spin {
	display: none;
	width: 14px;
	height: 14px;
	border-width: 2px;
}

#retail-free-check-page .fpcc-scan-btn.is-loading, #retail-paid-check-page .fpcc-scan-btn.is-loading {
	opacity: .75;
	pointer-events: none;
}

#retail-free-check-page .fpcc-scan-btn.is-loading .fpcc-scan-btn__label,
#retail-free-check-page .fpcc-scan-btn.is-loading .sv-imei-scan-btn__icon,
#retail-paid-check-page .fpcc-scan-btn.is-loading .fpcc-scan-btn__label,
#retail-paid-check-page .fpcc-scan-btn.is-loading .sv-imei-scan-btn__icon {
	display: none;
}

#retail-free-check-page .fpcc-scan-btn.is-loading .sv-imei-scan-btn__spin, #retail-paid-check-page .fpcc-scan-btn.is-loading .sv-imei-scan-btn__spin {
	display: inline-block;
}

#retail-free-check-page .fpcc-scan-btn:hover, #retail-paid-check-page .fpcc-scan-btn:hover {
	border-color: rgb(var(--bs-primary-rgb));
	background: color-mix(in srgb, rgb(var(--bs-primary-rgb)) 10%, #ffffff 90%);
	color: rgb(var(--bs-primary-rgb));
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb), 0.12);
}

.fpcc-tech-features {
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 10px 12px;
	border-radius: 10px;
	background: color-mix(in srgb, rgb(var(--bs-primary-rgb)) 5%, transparent);
	border: 1px solid color-mix(in srgb, rgb(var(--bs-primary-rgb)) 14%, transparent);
}

.fpcc-tf-item {
	font-size: 11.5px;
	font-weight: 600;
	color: var(--muted);
	display: flex;
	align-items: center;
	gap: 4px;
}

#retail-free-check-page .fpcc-show-example, #retail-paid-check-page .fpcc-show-example {
	width: 100%;
	margin: 0;
	min-height: var(--fpcc-ctrl-h);
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: var(--white);
	color: var(--text);
	font-family: inherit;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
}

#retail-free-check-page .fpcc-show-example:hover, #retail-paid-check-page .fpcc-show-example:hover {
	border-color: var(--border-hover);
	background: #f4f4f5;
}

#retail-free-check-page .fpcc-show-example.is-open .fpcc-show-example__chev, #retail-paid-check-page .fpcc-show-example.is-open .fpcc-show-example__chev {
	transform: rotate(180deg);
}

#retail-free-check-page .fpcc-show-example__chev, #retail-paid-check-page .fpcc-show-example__chev {
	transition: transform .2s;
}

#retail-free-check-page .fpcc-example-panel, #retail-paid-check-page .fpcc-example-panel {
	margin: 0;
	padding: 12px;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: var(--bg);
	color: var(--text);
	font-size: 13px;
	max-height: 240px;
	overflow: auto;
}

#retail-free-check-page .fpcc-example-panel[hidden], #retail-paid-check-page .fpcc-example-panel[hidden] {
	display: none !important;
}

/* Footnotes */
.fpcc-footnotes {
	margin: 16px 0 0;
	padding: 0;
	text-align: center;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.5;
}

.fpcc-footnotes__lead {
	margin: 0 0 8px;
}

.fpcc-footnotes__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px 12px;
}

.fpcc-footnotes__list li::marker {
	content: none;
}

.fpcc-footnotes__list li {
	position: relative;
	padding-left: 0;
}

.fpcc-footnotes__list li::before {
	content: none;
}

/* Alerts */
#retail-free-check-page .alert, #retail-paid-check-page .alert {
	margin-bottom: 16px !important;
	border-radius: var(--radius);
	font-size: 13px;
	padding: 10px 12px;
	line-height: 1.45;
}

#retail-free-check-page .alert-warning, #retail-paid-check-page .alert-warning {
	background: #fffbeb;
	border: 1px solid #fde68a;
	color: #b45309;
}

#retail-free-check-page .alert-secondary, #retail-paid-check-page .alert-secondary {
	background: #f4f4f5;
	border: 1px solid var(--border);
	color: var(--muted);
}

#retail-free-check-page .fpcc-hp-field, #retail-paid-check-page .fpcc-hp-field {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
}

/* Result modal popup */
.fpcc-result-modal {
	position: fixed;
	inset: 0;
	z-index: 1055;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	box-sizing: border-box;
	pointer-events: none;
}

.fpcc-result-modal[hidden] {
	display: none !important;
}

.fpcc-result-modal__panel {
	position: relative;
	z-index: 1;
	width: fit-content !important;
	min-width: min(380px, calc(100vw - 1.5rem)) !important;
	max-width: min(650px, calc(100vw - 1.5rem)) !important;
	max-height: min(90vh, 720px);
	display: flex;
	flex-direction: column;
	pointer-events: auto;
	margin-left: auto;
	margin-right: auto;
	animation: fpcc-modal-rise .24s cubic-bezier(.22, 1, .36, 1) both;
}

/* Responsive 2-Column Result Modal Layout */
.fpcc-modal-layout {
	width: fit-content !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
}

.fpcc-modal-layout.has-image,
.ifree-report.has-image {
	display: grid !important;
	grid-template-columns: 140px minmax(200px, 1fr) !important;
	gap: 1rem !important;
	align-items: center !important;
	text-align: left !important;
	width: fit-content !important;
	max-width: 100% !important;
}

.fpcc-modal-layout.has-image .fpcc-modal-col-left,
.ifree-report.has-image .fpcc-modal-col-left {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 0.5rem !important;
	background: rgba(15, 23, 42, 0.03) !important;
	border: 1px solid rgba(15, 23, 42, 0.08) !important;
	border-radius: 10px !important;
	height: 100% !important;
	min-height: 130px !important;
	box-sizing: border-box !important;
}

html[data-pc-theme="dark"] .fpcc-modal-layout.has-image .fpcc-modal-col-left,
body.dark-mode .fpcc-modal-col-left,
[data-bs-theme="dark"] .fpcc-modal-col-left {
	background: rgba(255, 255, 255, 0.03) !important;
	border-color: rgba(255, 255, 255, 0.08) !important;
}

.fpcc-modal-layout.has-image .fpcc-modal-col-left img,
.fpcc-modal-layout.has-image .fpcc-modal-col-left .ifree-device-image {
	max-width: 100% !important;
	max-height: 160px !important;
	object-fit: contain !important;
	display: block !important;
	margin: 0 auto !important;
}

.fpcc-modal-layout.has-image .fpcc-modal-col-left .ifree-device-image-wrap {
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.fpcc-modal-layout.has-image .fpcc-modal-col-right,
.ifree-report.has-image .fpcc-modal-col-right {
	min-width: 0 !important;
	flex: 1 1 auto !important;
	width: 100% !important;
	text-align: left !important;
}

.fpcc-modal-layout.no-image,
.ifree-report.no-image {
	display: block !important;
	width: 100% !important;
}

.fpcc-modal-layout.no-image .fpcc-modal-col-left,
.ifree-report.no-image .fpcc-modal-col-left {
	display: none !important;
}

.fpcc-modal-layout.no-image .fpcc-modal-col-right,
.ifree-report.no-image .fpcc-modal-col-right {
	width: 100% !important;
}

@media (max-width: 575.98px) {
	.fpcc-result-modal__panel {
		max-width: calc(100vw - 1rem) !important;
	}
	.fpcc-modal-layout.has-image,
	.ifree-report.has-image {
		grid-template-columns: 1fr !important;
		gap: 0.65rem !important;
	}
	.fpcc-modal-layout.has-image .fpcc-modal-col-left {
		min-height: auto !important;
		padding: 0.4rem !important;
	}
	.fpcc-modal-layout.has-image .fpcc-modal-col-left img {
		max-height: 110px !important;
	}
}

@keyframes fpcc-modal-rise {
	from { opacity: 0; transform: translateY(10px) scale(.99); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

body.fpcc-result-modal-open {
	overflow: hidden;
}

#retail-free-check-page #freeResultSection.fpcc-card,
#retail-free-check-page #freeResultSection.fpcc-result-modal__card,
#retail-paid-check-page #freeResultSection.fpcc-card,
#retail-paid-check-page #freeResultSection.fpcc-result-modal__card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 10px;
	color: var(--text);
	padding: 0;
	width: fit-content !important;
	min-width: min(380px, calc(100vw - 1.5rem)) !important;
	max-width: 100% !important;
	display: flex;
	flex-direction: column;
	max-height: min(88vh, 640px);
	overflow: hidden;
	box-shadow: 0 18px 48px -12px rgba(15, 23, 42, 0.28), 0 4px 14px rgba(15, 23, 42, 0.1);
}

#retail-free-check-page .fpcc-card-header-custom,
#retail-free-check-page .fpcc-result-card__header,
#retail-paid-check-page .fpcc-card-header-custom,
#retail-paid-check-page .fpcc-result-card__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: .65rem 1rem;
	border-bottom: 1px solid var(--border);
	flex-shrink: 0;
}

#retail-free-check-page .fpcc-brand, #retail-paid-check-page .fpcc-brand {
	display: flex;
	align-items: center;
	gap: .45rem;
	min-width: 0;
}

#retail-free-check-page .fpcc-result-icon, #retail-paid-check-page .fpcc-result-icon {
	width: 1.5rem;
	height: 1.5rem;
	border-radius: .35rem;
	background: #22c55e;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: .75rem;
	flex-shrink: 0;
}

#retail-free-check-page .fpcc-result-title, #retail-paid-check-page .fpcc-result-title {
	font-weight: 700;
	color: #15803d;
	font-size: 15px;
	line-height: 1.2;
}

#retail-free-check-page .fpcc-result-actions, #retail-paid-check-page .fpcc-result-actions {
	display: flex;
	gap: .35rem;
	align-items: center;
	flex-shrink: 0;
}

#retail-free-check-page .fpcc-result-modal__body,
#retail-free-check-page .fpcc-result-card__body,
#retail-paid-check-page .fpcc-result-modal__body,
#retail-paid-check-page .fpcc-result-card__body {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: 0;
	padding: 0;
	flex: 1 1 auto;
}

#retail-free-check-page .fpcc-result-copy,
#retail-free-check-page .fpcc-result-close,
#retail-paid-check-page .fpcc-result-copy,
#retail-paid-check-page .fpcc-result-close {
	width: 1.75rem;
	height: 1.75rem;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	border: 1px solid var(--border);
	background: var(--white);
	color: var(--muted);
	cursor: pointer;
	transition: border-color .15s, color .15s;
}

#retail-free-check-page .fpcc-result-copy:hover,
#retail-free-check-page .fpcc-result-close:hover,
#retail-paid-check-page .fpcc-result-copy:hover,
#retail-paid-check-page .fpcc-result-close:hover {
	border-color: var(--border-hover);
	color: var(--text);
}

#retail-free-check-page .fpcc-result-copy.is-copied, #retail-paid-check-page .fpcc-result-copy.is-copied {
	color: #15803d;
	border-color: #86efac;
}

#retail-free-check-page .fpcc-result-close, #retail-paid-check-page .fpcc-result-close {
	color: #dc2626;
}

#retail-free-check-page .fpcc-result-card__footer,
#retail-paid-check-page .fpcc-result-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .5rem;
	padding: .4rem .75rem;
	border-top: 1px solid var(--border);
	background: color-mix(in srgb, rgb(var(--bs-primary-rgb)) 4%, #fafafa 96%);
	flex-shrink: 0;
}

html[data-pc-theme="dark"] #retail-free-check-page .fpcc-result-card__footer,
html[data-pc-theme="dark"] #retail-paid-check-page .fpcc-result-card__footer {
	background: color-mix(in srgb, rgb(var(--bs-primary-rgb)) 10%, #0f172a 90%);
	border-top-color: rgba(255, 255, 255, 0.1);
}

#retail-free-check-page .fpcc-result-footer__site,
#retail-paid-check-page .fpcc-result-footer__site {
	font-size: 11px;
	font-weight: 700;
	color: var(--text);
	letter-spacing: -.01em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	min-width: 0;
}

#retail-free-check-page .fpcc-result-footer__meta,
#retail-paid-check-page .fpcc-result-footer__meta {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	flex-shrink: 0;
}

#retail-free-check-page .fpcc-result-footer__time,
#retail-paid-check-page .fpcc-result-footer__time {
	font-size: 11px;
	font-weight: 500;
	color: var(--muted);
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

#retail-free-check-page .fpcc-result-toggle-nums,
#retail-paid-check-page .fpcc-result-toggle-nums {
	width: 1.5rem;
	height: 1.5rem;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	border: 1px solid var(--border);
	background: var(--white);
	color: var(--muted);
	cursor: pointer;
	font-size: .72rem;
	transition: border-color .15s, color .15s, background .15s;
}

#retail-free-check-page .fpcc-result-toggle-nums:hover,
#retail-paid-check-page .fpcc-result-toggle-nums:hover {
	border-color: var(--border-hover);
	color: var(--text);
	background: #f4f4f5;
}

#retail-free-check-page .fpcc-result-toggle-nums[aria-pressed="true"],
#retail-paid-check-page .fpcc-result-toggle-nums[aria-pressed="true"] {
	color: rgb(var(--bs-primary-rgb));
	border-color: color-mix(in srgb, rgb(var(--bs-primary-rgb)) 35%, var(--border) 65%);
	background: color-mix(in srgb, rgb(var(--bs-primary-rgb)) 8%, #ffffff 92%);
}

#retail-free-check-page .fpcc-result-body, #retail-paid-check-page .fpcc-result-body {
	background: var(--white);
	border: none;
	border-radius: 0;
	margin: 0;
	padding: .5rem .75rem .6rem;
	max-height: min(62vh, 480px);
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-gutter: stable;
	scrollbar-width: thin;
	scrollbar-color: #d4d4d8 #fafafa;
	font-size: 12px;
	line-height: 1.35;
}

#retail-free-check-page .fpcc-result-body::-webkit-scrollbar, #retail-paid-check-page .fpcc-result-body::-webkit-scrollbar {
	width: 6px;
}

#retail-free-check-page .fpcc-result-body::-webkit-scrollbar-thumb, #retail-paid-check-page .fpcc-result-body::-webkit-scrollbar-thumb {
	background: #d4d4d8;
	border-radius: 999px;
}

#retail-free-check-page .ifree-report, #retail-paid-check-page .ifree-report {
	text-align: left;
}

#retail-free-check-page .ifree-kv-grid, #retail-paid-check-page .ifree-kv-grid {
	display: flex;
	flex-direction: column;
	gap: .28rem;
}

#retail-free-check-page .ifree-kv-card, #retail-paid-check-page .ifree-kv-card {
	display: grid;
	grid-template-columns: minmax(4.8rem, 36%) 1fr;
	align-items: center;
	gap: .25rem .45rem;
	min-height: 0;
	padding: .28rem .45rem;
	border: 1px solid color-mix(in srgb, var(--border) 85%, transparent);
	border-radius: 6px;
	background: #fff;
	box-shadow: none;
}

html[data-pc-theme="dark"] #retail-free-check-page .ifree-kv-card,
html[data-pc-theme="dark"] #retail-paid-check-page .ifree-kv-card {
	background: color-mix(in srgb, rgb(var(--bs-primary-rgb)) 6%, #1e293b 94%);
	border-color: rgba(255, 255, 255, 0.08);
}

#retail-free-check-page .ifree-kv-card--stack, #retail-paid-check-page .ifree-kv-card--stack {
	grid-template-columns: 1fr;
	align-items: start;
	gap: .12rem;
	padding: .32rem .45rem;
}

#retail-free-check-page .ifree-kv-card--wide, #retail-paid-check-page .ifree-kv-card--wide {
	grid-column: auto;
}

#retail-free-check-page .ifree-kv-card--error, #retail-paid-check-page .ifree-kv-card--error {
	border-color: #fecaca;
	background: #fef2f2;
	padding: .35rem .45rem;
}

#retail-free-check-page .ifree-kv-card__label, #retail-paid-check-page .ifree-kv-card__label {
	font-size: 11px;
	font-weight: 700;
	text-transform: none;
	letter-spacing: 0;
	color: #18181b;
	line-height: 1.25;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#retail-free-check-page .ifree-kv-card--stack .ifree-kv-card__label,
#retail-paid-check-page .ifree-kv-card--stack .ifree-kv-card__label {
	white-space: normal;
}

#retail-free-check-page .ifree-kv-card__value, #retail-paid-check-page .ifree-kv-card__value {
	font-size: 12px;
	font-weight: 700;
	color: #09090b;
	line-height: 1.3;
	word-break: break-word;
	text-align: right;
	min-width: 0;
}

#retail-free-check-page .ifree-kv-card--stack .ifree-kv-card__value,
#retail-paid-check-page .ifree-kv-card--stack .ifree-kv-card__value {
	text-align: left;
	font-weight: 700;
}

#retail-free-check-page .ifree-kv-card .ifree-badge, #retail-paid-check-page .ifree-kv-card .ifree-badge {
	display: inline-block;
	font-size: 10.5px;
	font-weight: 800;
	padding: .05em .38em;
	border-radius: 4px;
	line-height: 1.25;
	vertical-align: baseline;
}

#retail-free-check-page .ifree-kv-card .ifree-val, #retail-paid-check-page .ifree-kv-card .ifree-val {
	font-size: 12px;
	font-weight: 700;
	color: #09090b;
}

/* Dark Theme Overrides */
html[data-pc-theme="dark"] #retail-free-check-page .ifree-kv-card__label,
body.dark-mode #retail-free-check-page .ifree-kv-card__label,
[data-bs-theme="dark"] #retail-free-check-page .ifree-kv-card__label,
.dark-theme #retail-free-check-page .ifree-kv-card__label {
	color: #38bdf8 !important;
}
html[data-pc-theme="dark"] #retail-free-check-page .ifree-kv-card__value,
body.dark-mode #retail-free-check-page .ifree-kv-card__value,
[data-bs-theme="dark"] #retail-free-check-page .ifree-kv-card__value,
.dark-theme #retail-free-check-page .ifree-kv-card__value,
html[data-pc-theme="dark"] #retail-free-check-page .ifree-val,
body.dark-mode #retail-free-check-page .ifree-val {
	color: #ffffff !important;
}

#retail-free-check-page .ifree-mask-dots, #retail-paid-check-page .ifree-mask-dots {
	font-weight: 700;
	letter-spacing: .06em;
	font-variant-numeric: tabular-nums;
}

#retail-free-check-page .ifree-line, #retail-paid-check-page .ifree-line {
	margin: 0 0 .35rem;
	padding: 0;
	font-size: 13px;
	line-height: 1.45;
	color: #3f3f46;
	word-break: break-word;
}

#retail-free-check-page .ifree-line:last-child, #retail-paid-check-page .ifree-line:last-child {
	margin-bottom: 0;
}

#retail-free-check-page .ifree-line--error, #retail-paid-check-page .ifree-line--error {
	color: #dc2626;
	font-weight: 600;
}

#retail-free-check-page .ifree-key, #retail-paid-check-page .ifree-key {
	font-weight: 600;
	color: var(--text);
}

#retail-free-check-page .ifree-val, #retail-paid-check-page .ifree-val {
	font-weight: 400;
	color: #3f3f46;
}

#retail-free-check-page .ifree-badge, #retail-paid-check-page .ifree-badge {
	display: inline-block;
	padding: .05em .4em;
	border-radius: .2rem;
	font-size: .92em;
	font-weight: 600;
	line-height: 1.3;
}

#retail-free-check-page .ifree-badge--green, #retail-paid-check-page .ifree-badge--green {
	background: #dcfce7;
	color: #166534;
}

#retail-free-check-page .ifree-badge--red, #retail-paid-check-page .ifree-badge--red {
	background: #fee2e2;
	color: #991b1b;
}

#retail-free-check-page .ifree-badge--blue, #retail-paid-check-page .ifree-badge--blue {
	background: #dbeafe;
	color: #1e40af;
}

#retail-free-check-page .ifree-details-grid, #retail-paid-check-page .ifree-details-grid {
	display: flex;
	flex-direction: column;
	gap: 0;
}

#retail-free-check-page .ifree-device-image-wrap, #retail-paid-check-page .ifree-device-image-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 .45rem;
	min-height: 56px;
}

#retail-free-check-page .ifree-device-image-wrap--error, #retail-paid-check-page .ifree-device-image-wrap--error {
	min-height: 72px;
	flex-direction: column;
}

#retail-free-check-page .ifree-device-image-wrap--error i, #retail-paid-check-page .ifree-device-image-wrap--error i {
	font-size: 2.5rem;
	color: #dc3545;
	opacity: 0.9;
	filter: drop-shadow(0 4px 12px rgba(220, 53, 69, 0.25));
}

#retail-free-check-page .ifree-device-image, #retail-paid-check-page .ifree-device-image {
	max-width: 112px;
	max-height: 112px;
	object-fit: contain;
}

@media (max-width: 991.98px) {
	#retail-free-check-page, #retail-paid-check-page {
		max-width: min(400px, calc(100vw - 1.7rem));
	}
}

@media (max-width: 640px) {
	#retail-free-check-page, #retail-paid-check-page {
		max-width: 100%;
	}

	#retail-free-check-page .fpcc-card.fpcc-form-wrap,
	#retail-free-check-page .fpcc-form-wrap,
	#retail-paid-check-page .fpcc-card.fpcc-form-wrap,
	#retail-paid-check-page .fpcc-form-wrap {
		padding: 24px 20px;
	}

	#retail-free-check-page .ifree-kv-card, #retail-paid-check-page .ifree-kv-card {
		grid-template-columns: minmax(4.2rem, 38%) 1fr;
		padding: .26rem .4rem;
	}

	#retail-free-check-page .fpcc-result-card__footer, #retail-paid-check-page .fpcc-result-card__footer {
		flex-wrap: wrap;
	}

	.fpcc-footnotes__list {
		flex-direction: column;
		align-items: center;
		gap: 4px;
	}
}

/* ── Paid check extras (tabs / bulk / inline result) ── */
#retail-paid-check-page .fpcc-tabs-wrap {
	background: color-mix(in srgb, rgb(var(--bs-primary-rgb)) 8%, #f4f4f5 92%);
	border: 1px solid color-mix(in srgb, rgb(var(--bs-primary-rgb)) 16%, transparent);
	border-radius: 12px;
	padding: 4px;
	margin-bottom: var(--fpcc-gap);
}

html[data-pc-theme="dark"] #retail-paid-check-page .fpcc-tabs-wrap {
	background: rgba(15, 23, 42, 0.6);
	border: 1px solid rgba(99, 102, 241, 0.25);
}

#retail-paid-check-page .fpcc-tabs {
	display: flex;
	gap: 4px;
	border: none;
	margin: 0;
	list-style: none;
	padding: 0;
}

#retail-paid-check-page .fpcc-tabs .nav-item {
	flex: 1 1 0;
	min-width: 0;
}

#retail-paid-check-page .fpcc-tabs .nav-link {
	width: 100%;
	color: var(--muted);
	border: none !important;
	border-radius: 9px !important;
	padding: .55rem .65rem;
	font-size: 13.5px;
	font-weight: 600;
	background: transparent;
	transition: all .2s cubic-bezier(.22, 1, .36, 1);
	text-align: center;
	white-space: nowrap;
	line-height: 1.2;
}

#retail-paid-check-page .fpcc-tabs .nav-link.active {
	color: rgb(var(--bs-primary-rgb)) !important;
	background: var(--white) !important;
	box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb), .15) !important;
	border-bottom: none !important;
}

html[data-pc-theme="dark"] #retail-paid-check-page .fpcc-tabs .nav-link.active {
	background: #1e293b !important;
	color: #38bdf8 !important;
	box-shadow: 0 4px 14px rgba(0, 0, 0, .35) !important;
}

#retail-paid-check-page .tab-pane:not(.active) {
	display: none !important;
}

#retail-paid-check-page .fpcc-bulk-textarea {
	width: 100%;
	min-height: 110px;
	resize: vertical;
	border: 1px solid rgba(var(--bs-primary-rgb), 0.22);
	border-radius: var(--radius);
	background: var(--input-bg);
	padding: .65rem .75rem;
	font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
	font-size: 13.5px;
	font-weight: 500;
	color: var(--text);
	line-height: 1.45;
	box-shadow: none;
	transition: border-color .15s, box-shadow .15s;
}

#retail-paid-check-page .fpcc-bulk-textarea:focus {
	outline: none;
	border-color: rgb(var(--bs-primary-rgb));
	box-shadow: 0 0 0 3.5px rgba(var(--bs-primary-rgb), 0.16);
}

#retail-paid-check-page .fpcc-bulk-textarea::placeholder {
	color: var(--placeholder);
	font-size: 13.5px;
	font-family: inherit;
}

#paidResultSection.fpcc-result-section {
	margin-top: var(--fpcc-gap);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--white);
	overflow: hidden;
}

#paidResultSection .fpcc-result-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .5rem;
	padding: .65rem .85rem;
	border-bottom: 1px solid var(--border);
	background: color-mix(in srgb, rgb(var(--bs-primary-rgb)) 5%, #fafafa 95%);
}

#paidResultSection .fpcc-result-title {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	color: #15803d;
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	line-height: 1.2;
}

#paidResultSection .fpcc-result-body {
	margin: .65rem .75rem .75rem;
	max-height: min(52vh, 420px);
	overflow-x: hidden;
	overflow-y: auto;
}

.fpcc-svc-opt {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
	width: 100%;
	min-width: 0;
}

.fpcc-svc-opt__price {
	flex: 0 0 auto;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--primary, #09090b);
	white-space: nowrap;
}

.fpcc-storefront-select2-dropdown .select2-results__option--highlighted .fpcc-svc-opt__price,
#retail-paid-check-page .select2-selection__rendered .fpcc-svc-opt__price {
	color: inherit;
}

#retail-paid-check-page .fpcc-bulk-card {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	margin-bottom: .55rem;
	overflow: hidden;
	background: var(--white);
}

#retail-paid-check-page .fpcc-bulk-card:last-child {
	margin-bottom: 0;
}

#retail-paid-check-page .fpcc-bulk-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .5rem;
	padding: .45rem .65rem;
	background: color-mix(in srgb, rgb(var(--bs-primary-rgb)) 6%, #fafafa 94%);
	border-bottom: 1px solid var(--border);
}

#retail-paid-check-page .fpcc-bulk-card__imei {
	font-weight: 700;
	font-size: 13px;
	color: var(--text);
	font-variant-numeric: tabular-nums;
}

#retail-paid-check-page .fpcc-bulk-card__body {
	padding: .5rem .65rem;
}

#retail-paid-check-page .fpcc-res-empty,
#retail-paid-check-page .fpcc-res-plain {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
}

/* Limit Notice Banner on Form */
.fpcc-form-alert {
	width: 100%;
}

.fpcc-limit-banner {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 12px 14px;
	border-radius: 8px;
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #991b1b;
	margin: 0 0 14px 0;
	animation: fpcc-rise .25s ease-out;
}

html[data-pc-theme="dark"] .fpcc-limit-banner {
	background: rgba(153, 27, 27, 0.22);
	border-color: rgba(239, 68, 68, 0.35);
	color: #fca5a5;
}

.fpcc-limit-banner__msg {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	font-weight: 600;
	line-height: 1.4;
	color: #991b1b;
}

html[data-pc-theme="dark"] .fpcc-limit-banner__msg {
	color: #fecaca;
}

.fpcc-limit-banner__msg i,
.fpcc-limit-banner__icon {
	font-size: 15px;
	color: #dc2626;
	flex-shrink: 0;
	margin-right: 6px !important;
}

html[data-pc-theme="dark"] .fpcc-limit-banner__icon {
	color: #f87171;
}

.fpcc-limit-banner__btns {
	display: flex;
	align-items: center;
	width: 100%;
}

.fpcc-limit-btn {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 6px;
	font-size: 12.5px;
	font-weight: 700;
	text-decoration: none !important;
	transition: all 0.15s ease;
	cursor: pointer;
	border: none;
	line-height: 1.25;
	text-align: center;
}

.fpcc-limit-btn i,
.fpcc-limit-btn svg {
	margin-right: 6px !important;
	font-size: 13px;
	display: inline-block;
}

.fpcc-limit-btn--primary {
	background: #dc2626;
	color: #ffffff !important;
	box-shadow: 0 2px 6px rgba(220, 38, 38, 0.25);
}

.fpcc-limit-btn--primary:hover {
	background: #b91c1c;
	transform: translateY(-1px);
	box-shadow: 0 4px 10px rgba(220, 38, 38, 0.35);
}
