/* === Breach Chk Widget === */
.breach-checker {
	--bc-primary: #00bcd4;
	--bc-bg: #ffffff;
	--bc-text: #1a1a2e;
	--bc-btn-text: #ffffff;
	--bc-title-color: #1a1a2e;
	--bc-radius: 12px;
	max-width: 560px;
	margin: 0 auto;
	padding: 28px 24px;
	border-radius: var(--bc-radius) !important;
	background: var(--bc-bg) !important;
	color: var(--bc-text) !important;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
	box-sizing: border-box;
}

.breach-checker *,
.breach-checker *::before,
.breach-checker *::after {
	box-sizing: border-box;
}

/* Title — !important to override .elementor-kit-N h3 */
.breach-checker__title {
	margin: 0 0 18px !important;
	font-size: 1.25rem !important;
	font-weight: 700 !important;
	color: var(--bc-title-color) !important;
	text-align: center;
	line-height: normal !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	word-spacing: normal !important;
}

/* Form */
.breach-checker__form {
	display: flex;
	gap: 10px;
	margin-bottom: 4px;
	flex-wrap: wrap;
}

/* Input — !important to override .elementor-kit-N input:not(...) */
.breach-checker__input {
	flex: 1;
	min-width: 0;
	padding: 12px 14px !important;
	font-size: 0.95rem !important;
	border: 1.5px solid #d0d5dd !important;
	border-radius: 6px !important;
	outline: none;
	transition: border-color 0.2s;
	background: rgba(0, 0, 0, 0.03) !important;
	color: var(--bc-text) !important;
	font-family: inherit !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	line-height: normal !important;
}

.breach-checker__input:focus {
	border-color: var(--bc-primary) !important;
	background: var(--bc-bg) !important;
}

.breach-checker__input::placeholder {
	color: #999;
}

/* Button — !important to override .elementor-kit-N button (gradient, padding, typography) */
.breach-checker__btn {
	padding: 12px 22px !important;
	font-size: 0.95rem !important;
	font-weight: 600 !important;
	color: var(--bc-btn-text) !important;
	background: var(--bc-primary) !important;
	background-image: none !important;
	border: none !important;
	border-radius: 6px !important;
	cursor: pointer;
	transition:
		opacity 0.2s,
		transform 0.1s;
	white-space: nowrap;
	font-family: inherit !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	text-decoration: none !important;
	font-style: normal !important;
}

.breach-checker__btn:hover,
.breach-checker__btn:focus {
	opacity: 0.88;
	background: var(--bc-primary) !important;
	background-image: none !important;
	color: var(--bc-btn-text) !important;
}

.breach-checker__btn:active {
	transform: scale(0.97);
}

.breach-checker__btn:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

/* Turnstile widget — collapses when invisible, expands when CF needs interaction */
.breach-checker__turnstile {
	flex-basis: 100%;
	display: flex;
	justify-content: center;
	margin-top: 0;
	transition: margin-top 0.2s;
}

.breach-checker__turnstile:has(iframe) {
	margin-top: 8px;
}

.breach-checker__turnstile .cf-turnstile {
	max-width: 100%;
}

.breach-checker__turnstile .cf-turnstile iframe {
	max-width: 100% !important;
}

/* Highlight turnstile when user needs to act */
.breach-checker__turnstile.is-needed {
	margin-top: 10px;
	padding: 8px;
	background: #fffde7;
	border: 1px solid #fff176;
	border-radius: 6px;
	animation: bc-pulse 1s ease-in-out 2;
}

@keyframes bc-pulse {
	0%,
	100% {
		box-shadow: none;
	}
	50% {
		box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.4);
	}
}

/* Results container */
.breach-checker__results {
	margin-top: 8px;
}

/* Messages */
.breach-checker__msg {
	padding: 14px;
	margin-top: 12px;
	border-radius: 6px;
	font-size: 0.9rem;
	text-align: center;
}

.breach-checker__msg--error {
	background: #fff0f0;
	color: #c0392b;
	border: 1px solid #f5c6cb;
}

.breach-checker__msg--safe {
	background: #e8f5e9;
	color: #2e7d32;
	border: 1px solid #a5d6a7;
	font-weight: 600;
}

/* Resultado incompleto: uno de los dos endpoints de HIBP no respondio. No es
   verde porque no hay veredicto, y no es rojo porque no hay hallazgo. */
.breach-checker__msg--partial {
	background: #fff8e1;
	color: #8d6e00;
	border: 1px solid #ffe082;
	font-weight: 600;
}

.breach-checker__safe-icon {
	display: inline-block;
	margin-right: 6px;
	font-size: 1.1em;
}

/* Breach summary */
.breach-checker__summary {
	margin-top: 16px;
	padding: 14px 16px;
	background: #fff3e0;
	color: #e65100;
	border: 1px solid #ffcc80;
	border-radius: 6px;
	font-size: 0.95rem;
	font-weight: 600;
	text-align: center;
}

.breach-checker__summary-icon {
	display: inline-block;
	margin-right: 6px;
	font-size: 1.1em;
}

/* Breach cards */
.breach-checker__breach-card {
	margin-top: 12px;
	padding: 16px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: var(--bc-radius);
	background: rgba(0, 0, 0, 0.02);
	transition: box-shadow 0.2s;
}

.breach-checker__breach-card:hover {
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.breach-checker__breach-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

.breach-checker__breach-logo {
	width: 40px;
	height: 40px;
	border-radius: 6px;
	object-fit: contain;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	flex-shrink: 0;
}

.breach-checker__breach-name {
	font-weight: 700;
	font-size: 1rem;
	color: var(--bc-text);
}

.breach-checker__breach-domain {
	font-size: 0.8rem;
	opacity: 0.6;
}

.breach-checker__breach-meta {
	display: flex;
	gap: 16px;
	font-size: 0.82rem;
	opacity: 0.7;
	margin-bottom: 8px;
	flex-wrap: wrap;
}

.breach-checker__breach-desc {
	font-size: 0.85rem;
	line-height: 1.5;
	margin-bottom: 8px;
	opacity: 0.85;
}

.breach-checker__breach-classes {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.breach-checker__tag {
	display: inline-block;
	padding: 3px 10px;
	font-size: 0.75rem;
	font-weight: 500;
	background: rgba(0, 0, 0, 0.06);
	border-radius: 20px;
	color: var(--bc-text);
	opacity: 0.8;
}

/* === Article link on breach card === */
.breach-checker__card-article {
	display: inline-block !important;
	margin-top: 10px !important;
	font-size: 0.82rem !important;
	font-weight: 600 !important;
	color: var(--bc-primary) !important;
	text-decoration: none !important;
	transition: opacity 0.15s;
}

.breach-checker__card-article:hover,
.breach-checker__card-article:focus {
	opacity: 0.75 !important;
	text-decoration: underline !important;
	color: var(--bc-primary) !important;
}

/* === Paste summary === */
.breach-checker__paste-summary {
	margin-top: 16px;
	padding: 14px 16px;
	background: #ede7f6;
	color: #4a148c;
	border: 1px solid #b39ddb;
	border-radius: 6px;
	font-size: 0.95rem;
	font-weight: 600;
	text-align: center;
}

/* Paste cards */
.breach-checker__paste-card {
	margin-top: 12px;
	padding: 16px;
	border: 1px solid rgba(106, 27, 154, 0.15);
	border-radius: var(--bc-radius);
	background: rgba(106, 27, 154, 0.03);
	transition: box-shadow 0.2s;
}

.breach-checker__paste-card:hover {
	box-shadow: 0 2px 12px rgba(106, 27, 154, 0.1);
}

.breach-checker__paste-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

.breach-checker__paste-icon {
	font-size: 1.6rem;
	flex-shrink: 0;
	width: 40px;
	text-align: center;
}

.breach-checker__paste-title {
	font-weight: 700;
	font-size: 1rem;
	color: var(--bc-text);
}

.breach-checker__paste-source {
	font-size: 0.8rem;
	opacity: 0.6;
}

/* === Consent / Notice === */
.breach-checker__consent {
	flex-basis: 100%;
	margin-top: 10px;
	font-size: 0.78rem;
	opacity: 0.75;
}

.breach-checker__consent label {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	cursor: pointer;
	line-height: 1.4;
}

.breach-checker__consent-check {
	margin-top: 2px !important;
	flex-shrink: 0;
}

.breach-checker__consent-notice {
	flex-basis: 100%;
	margin-top: 8px;
	font-size: 0.72rem;
	opacity: 0.5;
	text-align: center;
	line-height: 1.4;
}

/* === Password check section === */
.breach-checker__password-section {
	margin-top: 0;
}

.breach-checker__password-divider {
	height: 1px;
	background: rgba(0, 0, 0, 0.1);
	margin: 20px 0 16px;
}

.breach-checker__password-label {
	font-size: 0.9rem !important;
	font-weight: 600 !important;
	color: var(--bc-text) !important;
	text-align: center;
	margin: 0 0 12px !important;
	line-height: normal !important;
	letter-spacing: normal !important;
	text-transform: none !important;
}

.breach-checker__password-form {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.breach-checker__password-privacy {
	font-size: 0.72rem;
	color: var(--bc-text);
	opacity: 0.5;
	text-align: center;
	margin: 8px 0 0;
	line-height: 1.4;
}

.breach-checker__password-results {
	margin-top: 4px;
}

.breach-checker__password-exposed {
	background: #fce4ec !important;
	color: #b71c1c !important;
	border: 1px solid #ef9a9a !important;
	font-weight: 600 !important;
}

.breach-checker__password-safe {
	background: #e8f5e9 !important;
	color: #2e7d32 !important;
	border: 1px solid #a5d6a7 !important;
	font-weight: 600 !important;
}

/* === Sales Pitch section === */
.breach-checker__pitch {
	margin-top: 16px;
	padding: 18px 16px;
	background: linear-gradient(135deg, rgba(0, 188, 212, 0.06) 0%, rgba(0, 188, 212, 0.02) 100%);
	border: 1px solid var(--bc-primary);
	border-radius: var(--bc-radius);
	text-align: center;
}

.breach-checker__pitch-heading {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--bc-text);
	margin-bottom: 8px;
}

.breach-checker__pitch-text {
	font-size: 0.88rem;
	line-height: 1.55;
	color: var(--bc-text);
	opacity: 0.85;
	margin-bottom: 12px;
}

.breach-checker__pitch-contact {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 18px;
	font-size: 0.82rem;
	margin-bottom: 12px;
	opacity: 0.7;
}

.breach-checker__pitch-contact a {
	color: var(--bc-primary);
	text-decoration: none;
}

.breach-checker__pitch-contact a:hover {
	text-decoration: underline;
}

.breach-checker__pitch-company {
	font-weight: 600;
}

.breach-checker__pitch-cta {
	display: inline-block;
	padding: 10px 24px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--bc-btn-text) !important;
	background: var(--bc-primary) !important;
	border-radius: 6px !important;
	text-decoration: none !important;
	transition:
		opacity 0.2s,
		transform 0.1s;
}

.breach-checker__pitch-cta:hover {
	opacity: 0.88;
	color: var(--bc-btn-text) !important;
	text-decoration: none !important;
}

.breach-checker__pitch-cta:active {
	transform: scale(0.97);
}

/* Spinner */
.breach-checker__spinner {
	display: flex;
	justify-content: center;
	padding: 24px 0;
}

.breach-checker__spinner::after {
	content: '';
	width: 28px;
	height: 28px;
	border: 3px solid #e0e0e0;
	border-top-color: var(--bc-primary);
	border-radius: 50%;
	animation: bc-spin 0.7s linear infinite;
}

@keyframes bc-spin {
	to {
		transform: rotate(360deg);
	}
}

/* === Popup overlay === */
.breach-checker-overlay {
	position: fixed;
	inset: 0;
	z-index: 999999;
	background: rgba(0, 0, 0, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.breach-checker-overlay .breach-checker {
	position: relative;
	max-height: 90vh;
	overflow-y: auto;
	animation: bc-fade-in 0.25s ease;
}

/* Close button — !important to avoid inheriting Elementor button gradient/padding */
.breach-checker-close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none !important;
	background-image: none !important;
	border: none !important;
	font-size: 1.6rem;
	color: #888 !important;
	cursor: pointer;
	line-height: 1;
	padding: 4px !important;
	z-index: 1;
}

.breach-checker-close:hover,
.breach-checker-close:focus {
	color: #333 !important;
	background: none !important;
	background-image: none !important;
}

@keyframes bc-fade-in {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* === Popup trigger button (shortcode modo="popup") === */
.breach-checker-popup-trigger {
	padding: 10px 20px !important;
	font-size: 0.95rem !important;
	font-weight: 600 !important;
	color: #fff !important;
	background: var(--bc-primary, #00bcd4) !important;
	background-image: none !important;
	border: none !important;
	border-radius: 6px !important;
	cursor: pointer;
	transition: opacity 0.2s;
	font-family: inherit !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	text-decoration: none !important;
}

.breach-checker-popup-trigger:hover,
.breach-checker-popup-trigger:focus {
	opacity: 0.88;
	background: var(--bc-primary, #00bcd4) !important;
	background-image: none !important;
	color: #fff !important;
}

/* === Floating Action Button — !important to override Elementor button globals === */
.breach-checker-fab {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 999998;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 14px 20px !important;
	background: var(--bc-fab-bg, var(--bc-primary, #00bcd4)) !important;
	background-image: none !important;
	color: var(--bc-fab-text, #fff) !important;
	border: none !important;
	border-radius: 50px !important;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	font-size: 0.9rem !important;
	font-weight: 600 !important;
	transition:
		transform 0.2s,
		box-shadow 0.2s;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	text-decoration: none !important;
}

.breach-checker-fab:hover,
.breach-checker-fab:focus {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
	background: var(--bc-fab-bg, var(--bc-primary, #00bcd4)) !important;
	background-image: none !important;
	color: var(--bc-fab-text, #fff) !important;
}

.breach-checker-fab:active {
	transform: scale(0.96);
}

.breach-checker-fab--left {
	right: auto;
	left: 24px;
}

.breach-checker-fab svg {
	flex-shrink: 0;
}

/* === Responsive === */
@media (max-width: 480px) {
	.breach-checker {
		padding: 20px 16px;
		max-width: 100%;
	}

	.breach-checker__form,
	.breach-checker__password-form {
		flex-direction: column;
	}

	.breach-checker__btn {
		width: 100%;
	}

	.breach-checker__breach-header {
		gap: 10px;
	}

	.breach-checker__breach-meta {
		flex-direction: column;
		gap: 4px;
	}

	.breach-checker__pitch-contact {
		flex-direction: column;
		gap: 6px;
	}

	.breach-checker-fab {
		bottom: 16px;
		right: 16px;
		padding: 12px 16px;
		font-size: 0.85rem;
	}

	.breach-checker-fab--left {
		right: auto;
		left: 16px;
	}

	.breach-checker-fab__text {
		display: none;
	}

	.breach-checker-fab {
		border-radius: 50%;
		padding: 14px;
	}
}

/* === Sales pitch popup overlay === */

.breach-checker__pitch-overlay {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.5);
	animation: breach-checker-fade-in 0.3s ease;
}

.breach-checker__pitch-overlay .breach-checker__pitch {
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
	animation: breach-checker-slide-up 0.3s ease;
}

.breach-checker__pitch-overlay__close {
	/* Full button reset to neutralize theme/Elementor !important rules. */
	all: unset !important;
	box-sizing: border-box !important;
	position: absolute !important;
	top: 10px !important;
	right: 10px !important;
	width: 32px !important;
	height: 32px !important;
	min-width: 32px !important;
	min-height: 32px !important;
	max-width: 32px !important;
	max-height: 32px !important;
	padding: 0 !important;
	margin: 0 !important;
	background: #ffffff !important;
	background-image: none !important;
	border: 1px solid rgba(15, 23, 42, 0.08) !important;
	border-radius: 50% !important;
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12) !important;
	cursor: pointer !important;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
	font-size: 16px !important;
	font-weight: 500 !important;
	line-height: 1 !important;
	text-align: center !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	color: #64748b !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: background 0.15s, color 0.15s, transform 0.15s !important;
	z-index: 2 !important;
	-webkit-appearance: none !important;
	appearance: none !important;
}

.breach-checker__pitch-overlay__close:hover {
	background: #f1f5f9 !important;
	color: #0f172a !important;
	transform: scale(1.05) !important;
}

.breach-checker__pitch-overlay__close:focus {
	outline: 2px solid #1c6327 !important;
	outline-offset: 2px !important;
}

@keyframes breach-checker-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes breach-checker-slide-up {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

/* === Send Report widget — uses same CSS variables as pitch, with !important to beat theme/Elementor === */

.breach-checker__report-section {
	margin-top: 24px !important;
	text-align: center !important;
	border: 1px solid #e2e8f0 !important;
	border-radius: var(--bc-radius, 10px) !important;
	padding: 24px !important;
}

.breach-checker__report-heading {
	font-size: 1.1rem !important;
	font-weight: 700 !important;
	color: var(--bc-title-color, #0f172a) !important;
	margin: 0 0 6px 0 !important;
}

.breach-checker__report-text {
	font-size: 0.88rem !important;
	color: var(--bc-text, #475569) !important;
	margin: 0 0 16px 0 !important;
	opacity: 0.85 !important;
}

.breach-checker__report-btn {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	padding: 12px 28px !important;
	font-size: 0.92rem !important;
	font-weight: 600 !important;
	color: var(--bc-btn-text, #fff) !important;
	background: var(--bc-primary, #00BCD4) !important;
	border: none !important;
	border-radius: 8px !important;
	cursor: pointer !important;
	text-decoration: none !important;
	transition: opacity 0.15s, transform 0.15s !important;
}

.breach-checker__report-btn:hover {
	opacity: 0.9 !important;
	transform: translateY(-1px) !important;
}

.breach-checker__report-form {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 8px !important;
	align-items: center !important;
	justify-content: center !important;
	margin-top: 12px !important;
}

.breach-checker__report-email {
	padding: 10px 14px !important;
	font-size: 0.88rem !important;
	border: 1.5px solid #e2e8f0 !important;
	border-radius: 8px !important;
	min-width: 250px !important;
	font-family: inherit !important;
	outline: none !important;
	transition: border-color 0.15s !important;
}

.breach-checker__report-email:focus {
	border-color: var(--bc-primary, #00BCD4) !important;
}

.breach-checker__report-send {
	padding: 10px 20px !important;
	font-size: 0.88rem !important;
	font-weight: 600 !important;
	color: var(--bc-btn-text, #fff) !important;
	background: var(--bc-primary, #00BCD4) !important;
	border: none !important;
	border-radius: 8px !important;
	cursor: pointer !important;
}

.breach-checker__report-send:disabled {
	opacity: 0.6 !important;
	cursor: not-allowed !important;
}

.breach-checker__report-status {
	width: 100% !important;
	font-size: 0.82rem !important;
	text-align: center !important;
	min-height: 1.2em !important;
}

.breach-checker__report-status--success { color: #16a34a !important; }
.breach-checker__report-status--error { color: #dc2626 !important; }
.breach-checker__report-status--info { color: #2563eb !important; }

/* === Terms & Conditions toggle (iOS-style switch) === */

.breach-checker__terms {
	background: color-mix(in srgb, var(--bc-primary, #00BCD4) 5%, #fff) !important;
	border: 1px solid color-mix(in srgb, var(--bc-primary, #00BCD4) 20%, #e2e8f0) !important;
	border-radius: var(--bc-radius, 10px) !important;
	padding: 14px 16px !important;
	margin-top: 12px !important;
}
.breach-checker__terms-switch {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	cursor: pointer !important;
	user-select: none !important;
	margin: 0 !important;
}
.breach-checker__terms-switch input[type='checkbox'] {
	opacity: 0 !important;
	width: 0 !important;
	height: 0 !important;
	position: absolute !important;
}
.breach-checker__terms-slider {
	position: relative !important;
	width: 44px !important;
	height: 24px !important;
	background: #cbd5e1 !important;
	border-radius: 12px !important;
	transition: background 0.2s !important;
	flex-shrink: 0 !important;
}
.breach-checker__terms-slider::after {
	content: '' !important;
	position: absolute !important;
	top: 3px !important;
	left: 3px !important;
	width: 18px !important;
	height: 18px !important;
	background: #fff !important;
	border-radius: 50% !important;
	transition: transform 0.2s !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) !important;
}
.breach-checker__terms-switch input:checked + .breach-checker__terms-slider {
	background: var(--bc-primary, #00BCD4) !important;
}
.breach-checker__terms-switch input:checked + .breach-checker__terms-slider::after {
	transform: translateX(20px) !important;
}
.breach-checker__terms-switch input:focus-visible + .breach-checker__terms-slider {
	outline: 2px solid var(--bc-primary, #00BCD4) !important;
	outline-offset: 2px !important;
}
.breach-checker__terms-label {
	font-size: 0.9rem !important;
	font-weight: 600 !important;
	color: var(--bc-text, #1a1a2e) !important;
}
.breach-checker__terms-required {
	color: var(--bc-primary, #00BCD4) !important;
	font-weight: 700 !important;
	margin-left: 2px !important;
}
.breach-checker__terms-toggle {
	all: unset !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
	margin-top: 8px !important;
	background: none !important;
	border: none !important;
	color: var(--bc-primary, #00BCD4) !important;
	font-size: 0.85rem !important;
	cursor: pointer !important;
	text-decoration: underline !important;
	padding: 0 !important;
	font-family: inherit !important;
}
.breach-checker__terms-toggle:hover {
	opacity: 0.8 !important;
}
.breach-checker__terms-text {
	background: #fff !important;
	border: 1px solid #e2e8f0 !important;
	border-radius: 8px !important;
	padding: 14px 16px !important;
	margin-top: 10px !important;
	font-size: 0.82rem !important;
	line-height: 1.6 !important;
	color: #475569 !important;
	max-height: 280px !important;
	overflow-y: auto !important;
	white-space: pre-wrap !important;
}
.breach-checker__terms-text a {
	color: var(--bc-primary, #00BCD4) !important;
}


/* ── OTP modal ───────────────────────────────────────────────────────── */
/* All visual properties use !important to beat Elementor / theme rules that
   target generic selectors like .elementor-element button or html body p. The
   modal lives at document.body level so theme styles WILL target its
   children unless we force ours. Inline CSS vars (--bc-primary etc.) are
   injected on .breach-checker-otp-overlay by checker.js from breachCheckerData
   so the modal picks up the plugin's configured brand colors. */

.breach-checker-otp-overlay {
	position: fixed !important;
	inset: 0 !important;
	background: rgba(0, 0, 0, 0.68) !important;
	z-index: 999999 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 20px !important;
	margin: 0 !important;
	animation: bc-otp-fade-in 0.18s ease-out !important;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

@keyframes bc-otp-fade-in {
	from { opacity: 0; }
	to   { opacity: 1; }
}

.breach-checker-otp-modal {
	background: #ffffff !important;
	border: 0 !important;
	border-radius: 12px !important;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32) !important;
	max-width: 440px !important;
	width: 100% !important;
	padding: 32px 28px 24px !important;
	position: relative !important;
	margin: 0 !important;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
	color: #0f172a !important;
	text-align: left !important;
	animation: bc-otp-slide-up 0.22s ease-out !important;
	box-sizing: border-box !important;
}

@keyframes bc-otp-slide-up {
	from { opacity: 0; transform: translateY(12px); }
	to   { opacity: 1; transform: translateY(0); }
}

.breach-checker-otp-close {
	position: absolute !important;
	top: 10px !important;
	right: 12px !important;
	background: transparent !important;
	border: 0 !important;
	color: #94a3b8 !important;
	font-size: 28px !important;
	line-height: 1 !important;
	cursor: pointer !important;
	padding: 4px 10px !important;
	margin: 0 !important;
	border-radius: 6px !important;
	min-width: 0 !important;
	min-height: 0 !important;
	width: auto !important;
	height: auto !important;
	font-weight: 400 !important;
	box-shadow: none !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	transition: all 0.15s !important;
}
.breach-checker-otp-close:hover {
	background: #f1f5f9 !important;
	color: #475569 !important;
}

.breach-checker-otp-title {
	margin: 0 0 8px !important;
	padding: 0 !important;
	font-size: 20px !important;
	font-weight: 700 !important;
	color: var(--bc-title-color, #0f172a) !important;
	line-height: 1.3 !important;
	text-align: left !important;
	padding-right: 32px !important;
	font-family: inherit !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	background: transparent !important;
	border: 0 !important;
}

.breach-checker-otp-subtitle {
	margin: 0 0 22px !important;
	padding: 0 !important;
	font-size: 14px !important;
	color: #475569 !important;
	line-height: 1.55 !important;
	text-align: left !important;
	font-family: inherit !important;
	font-weight: 400 !important;
	background: transparent !important;
	border: 0 !important;
}
.breach-checker-otp-subtitle strong {
	color: #0f172a !important;
	font-weight: 600 !important;
	background: transparent !important;
}

.breach-checker-otp-label {
	display: block !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	color: #334155 !important;
	margin: 0 0 8px !important;
	padding: 0 !important;
	font-family: inherit !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	text-align: left !important;
	line-height: 1.4 !important;
}

.breach-checker-otp-input {
	width: 100% !important;
	max-width: 100% !important;
	padding: 14px 16px !important;
	margin: 0 !important;
	font-size: 22px !important;
	font-weight: 700 !important;
	letter-spacing: 0.32em !important;
	text-align: center !important;
	font-family: ui-monospace, Menlo, Consolas, monospace !important;
	border: 2px solid #cbd5e1 !important;
	border-radius: 8px !important;
	box-sizing: border-box !important;
	color: #0f172a !important;
	background: #f8fafc !important;
	box-shadow: none !important;
	text-transform: none !important;
	transition: border-color 0.15s, background 0.15s !important;
	min-height: 0 !important;
	height: auto !important;
}
.breach-checker-otp-input:focus {
	outline: none !important;
	border-color: var(--bc-primary, #0891b2) !important;
	background: #ffffff !important;
}
.breach-checker-otp-input:disabled {
	opacity: 0.55 !important;
}

.breach-checker-otp-submit {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 14px 0 0 !important;
	padding: 13px 16px !important;
	background: var(--bc-primary, #0891b2) !important;
	color: var(--bc-btn-text, #ffffff) !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	font-family: inherit !important;
	border: 0 !important;
	border-radius: var(--bc-radius, 8px) !important;
	cursor: pointer !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	line-height: 1.4 !important;
	box-shadow: none !important;
	text-shadow: none !important;
	min-width: 0 !important;
	min-height: 0 !important;
	height: auto !important;
	box-sizing: border-box !important;
	transition: opacity 0.15s !important;
}
.breach-checker-otp-submit:hover:not(:disabled) {
	opacity: 0.92 !important;
}
.breach-checker-otp-submit:disabled {
	opacity: 0.6 !important;
	cursor: not-allowed !important;
}

.breach-checker-otp-status {
	font-size: 13px !important;
	min-height: 18px !important;
	margin: 12px 0 0 !important;
	padding: 0 !important;
	line-height: 1.5 !important;
	font-family: inherit !important;
	font-weight: 400 !important;
	color: #475569 !important;
	text-align: left !important;
	background: transparent !important;
	border: 0 !important;
}
.breach-checker-otp-status--error    { color: #b91c1c !important; }
.breach-checker-otp-status--success  { color: #15803d !important; font-weight: 600 !important; }
.breach-checker-otp-status--info     { color: #475569 !important; }

.breach-checker-otp-countdown {
	font-size: 12px !important;
	color: #94a3b8 !important;
	margin: 6px 0 0 !important;
	padding: 0 !important;
	font-family: inherit !important;
	font-variant-numeric: tabular-nums !important;
	text-align: left !important;
	background: transparent !important;
	border: 0 !important;
	line-height: 1.4 !important;
}

.breach-checker-otp-actions {
	margin: 16px 0 0 !important;
	padding: 14px 0 0 !important;
	text-align: center !important;
	border-top: 1px solid #f1f5f9 !important;
	background: transparent !important;
}

.breach-checker-otp-cancel {
	background: transparent !important;
	border: 0 !important;
	color: #64748b !important;
	font-size: 13px !important;
	font-weight: 400 !important;
	font-family: inherit !important;
	cursor: pointer !important;
	padding: 6px 10px !important;
	margin: 0 !important;
	border-radius: 4px !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	line-height: 1.4 !important;
	box-shadow: none !important;
	min-width: 0 !important;
	min-height: 0 !important;
	width: auto !important;
	height: auto !important;
	transition: color 0.15s, background 0.15s !important;
}
.breach-checker-otp-cancel:hover {
	color: #0f172a !important;
	background: #f1f5f9 !important;
}

@media (max-width: 480px) {
	.breach-checker-otp-modal {
		padding: 24px 20px 18px !important;
	}
	.breach-checker-otp-input {
		font-size: 18px !important;
		letter-spacing: 0.24em !important;
	}
}
