/* Bonsanto Cart Recovery – Produkt-Pop-up (Bonsanto CI) */
#bcr-pp-overlay {
	position: fixed;
	inset: 0;
	background: rgba(20, 33, 10, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999999;
	padding: 16px;
	font-family: Arial, Helvetica, sans-serif;
}
#bcr-pp-overlay.bcr-pp-hidden { display: none; }

#bcr-pp {
	background: #fff;
	border-radius: 14px;
	max-width: 380px;
	width: 100%;
	overflow: hidden;
	position: relative;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
	animation: bcr-pp-in 0.25s ease;
}
@keyframes bcr-pp-in {
	from { transform: translateY(18px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

#bcr-pp .bcr-pp-close {
	position: absolute;
	top: 10px;
	right: 12px;
	width: 28px;
	height: 28px;
	border: none;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.08);
	color: #333;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	z-index: 2;
}

#bcr-pp .bcr-pp-head {
	background: #3D9007;
	color: #fff;
	text-align: center;
	padding: 14px 16px 12px;
}
#bcr-pp .bcr-pp-eyebrow {
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	opacity: 0.9;
}
#bcr-pp .bcr-pp-title {
	font-size: 20px;
	font-weight: bold;
	margin-top: 3px;
}

#bcr-pp .bcr-pp-body {
	padding: 18px 20px 22px;
	text-align: center;
}

#bcr-pp .bcr-pp-img-wrap {
	position: relative;
	display: inline-block;
	margin: 2px 0 10px;
}
#bcr-pp .bcr-pp-img-wrap img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}
#bcr-pp .bcr-pp-badge {
	position: absolute;
	top: -6px;
	right: -6px;
	background: #3D9007;
	color: #fff;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	font-weight: bold;
	border: 3px solid #fff;
}

#bcr-pp .bcr-pp-text {
	font-size: 14px;
	color: #444;
	margin: 0 0 12px;
}

#bcr-pp .bcr-pp-price { margin: 6px 0 12px; }
#bcr-pp .bcr-pp-old {
	text-decoration: line-through;
	color: #999;
	font-size: 16px;
}
#bcr-pp .bcr-pp-new {
	color: #3D9007;
	font-size: 32px;
	font-weight: bold;
	margin-left: 6px;
}

#bcr-pp .bcr-pp-timer-box {
	background: #14210a;
	border-radius: 8px;
	padding: 12px;
	margin: 0 0 14px;
}
#bcr-pp .bcr-pp-timer-label {
	color: #9bd36a;
	font-size: 10px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 4px;
}
#bcr-pp .bcr-pp-timer {
	font-size: 30px;
	font-weight: bold;
	color: #fff;
	letter-spacing: 3px;
	font-family: 'Courier New', monospace;
}

#bcr-pp .bcr-pp-accept {
	display: block;
	width: 100%;
	background: #3D9007;
	color: #fff;
	border: none;
	padding: 14px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
}
#bcr-pp .bcr-pp-accept:hover { background: #2f7205; }
#bcr-pp .bcr-pp-accept[disabled] {
	background: #9aa694;
	cursor: default;
}
#bcr-pp .bcr-pp-decline {
	display: block;
	width: 100%;
	background: none;
	border: none;
	margin-top: 10px;
	font-size: 12px;
	color: #888;
	cursor: pointer;
}
