/**
 * PrintBox custom: Pre-Cart Check — stilurile modalului de confirmare.
 * Pereche cu assets/js/fpd-precart.js. Documentație: PRECART-CHECK-README.md
 */
.fpd-precart-overlay {
	position: fixed;
	inset: 0;
	z-index: 100000;
	background: rgba(24, 24, 27, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.fpd-precart-card {
	background: #fff;
	border-radius: 12px;
	padding: 20px 18px;
	max-width: 380px;
	width: 100%;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}
.fpd-precart-title {
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 8px;
	color: #18181b;
}
.fpd-precart-msg {
	font-size: 13.5px;
	line-height: 1.55;
	color: #3f3f46;
	margin: 0 0 16px;
}
.fpd-precart-msg strong {
	color: #18181b;
}
.fpd-precart-row {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.fpd-precart-ok {
	border: 0;
	cursor: pointer;
	background: #27ae60;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	padding: 12px 14px;
	border-radius: 8px;
	font-family: inherit;
}
.fpd-precart-ok:hover {
	background: #219150;
	color: #fff;
}
.fpd-precart-back {
	border: 1px solid #e5e7eb;
	cursor: pointer;
	background: #fff;
	color: #18181b;
	font-size: 13.5px;
	padding: 10px 14px;
	border-radius: 8px;
	font-family: inherit;
}
