#upsell-backdrop {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.55);
	z-index: 9998;
}

#cart-success {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9999;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.28);
	max-width: 700px;
	width: 94%;
	max-height: 82vh;
	overflow-y: auto;
	display: none;
}

.upsell-cart-added {
	padding: 12px 46px 12px 16px;
	background: #f0f7ee;
	border-bottom: 1px solid #d4e9cc;
	font-size: 13px;
	color: #3a6b2a;
}

.upsell-close {
	position: absolute;
	top: 10px;
	right: 14px;
	cursor: pointer;
	font-size: 22px;
	line-height: 1;
	color: #999;
	text-decoration: none !important;
	z-index: 1;
}

.upsell-close:hover { color: #333; }

#upsell-info-modal {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10001;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
	max-width: 520px;
	width: 92%;
	overflow: hidden;
	font-size: 14px;
	line-height: 1.7;
	color: #333;
}

.upsell-info-header {
	padding: 10px 16px;
	border-bottom: 1px solid #f0f0f0;
	text-align: right;
}

.upsell-info-body {
	padding: 20px 24px 24px;
	max-height: 72vh;
	overflow-y: auto;
}

.upsell-info-close {
	cursor: pointer;
	font-size: 22px;
	line-height: 1;
	color: #999;
	text-decoration: none !important;
	display: inline-block;
}

.upsell-info-close:hover { color: #333; }

.upsell-block-header {
	background: #2c2c2c;
	color: #fff;
	padding: 9px 14px;
	font-size: 13px;
	font-weight: bold;
	letter-spacing: 0.3px;
	display: flex;
	align-items: center;
}

.upsell-info-btn {
	margin-left: 8px;
	cursor: pointer;
	font-size: 15px;
	color: #bbb;
	line-height: 1;
	flex-shrink: 0;
}

.upsell-info-btn:hover { color: #fff; }

.upsell-block {
	margin: 18px 0;
	border: 1px solid #ddd;
	border-radius: 3px;
	background: #fff;
}

.upsell-rows { padding: 0; }

.upsell-row {
	display: flex;
	align-items: center;
	padding: 10px 14px;
	border-bottom: 1px solid #f2f2f2;
	gap: 10px;
	flex-wrap: nowrap;
}

.upsell-row:last-child { border-bottom: none; }

.upsell-row.added { opacity: 0.55; }

.upsell-product {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1;
	min-width: 0;
}

.upsell-product img {
	width: 52px;
	min-width: 52px;
	max-width: 52px;
	height: auto;
	border-radius: 2px;
	flex-shrink: 0;
	flex-grow: 0;
	border: 1px solid #eee;
}

.upsell-product-name {
	font-size: 12px;
	line-height: 1.35;
	color: #333;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.upsell-sep {
	font-size: 20px;
	color: #ccc;
	font-weight: bold;
	flex-shrink: 0;
	padding: 0 2px;
}

.upsell-pricing {
	text-align: right;
	flex-shrink: 0;
	min-width: 88px;
}

.upsell-badge {
	display: inline-block;
	background: #e74c3c;
	color: #fff;
	font-size: 11px;
	font-weight: bold;
	padding: 2px 5px;
	border-radius: 2px;
	margin-bottom: 3px;
}

.upsell-price-combined {
	display: block;
	font-size: 15px;
	font-weight: bold;
	color: #c0392b;
}

.upsell-price-old {
	display: block;
	font-size: 11px;
	color: #aaa;
}

.upsell-action { flex-shrink: 0; }

.upsell-action .button {
	white-space: nowrap;
	font-size: 12px;
	padding: 7px 12px;
}

#upsell-pairs-block .upsell-block,
#upsell-pairs-checkout .upsell-block {
	margin: 0;
}

.upsell-pair-qty {
	display: block;
	font-size: 11px;
	color: #888;
}

#upsell-pairs-checkout {
	margin-bottom: 20px;
}

@media (max-width: 640px) {

	#cart-success {
		top: auto;
		bottom: 0;
		left: 0;
		transform: none;
		width: 100%;
		max-width: 100%;
		border-radius: 0;
		max-height: 88vh;
	}

	#upsell-info-modal {
		top: auto;
		bottom: 0;
		left: 0;
		transform: none;
		width: 100%;
		max-width: 100%;
		border-radius: 0;
		max-height: 80vh;
	}

	#upsell-info-modal .upsell-info-body {
		max-height: calc(80vh - 46px);
	}

	.upsell-close {
		position: fixed;
		top: 10px;
		right: 14px;
		z-index: 10000;
	}

	.upsell-row {
		padding: 8px;
		gap: 6px;
	}

	.upsell-product img {
		display: none;
	}

	.upsell-product-name {
		font-size: 11px;
	}

	.upsell-sep {
		font-size: 14px;
		padding: 0 1px;
	}

	.upsell-pricing {
		min-width: 60px;
	}

	.upsell-price-combined {
		font-size: 13px;
	}

	.upsell-price-old {
		font-size: 10px;
	}

	.upsell-action .button {
		font-size: 11px;
		padding: 6px 8px;
		white-space: nowrap;
	}

}

#cart-success .upsell-block {
	margin: 0;
	border: none;
	border-radius: 0;
}

#cart-success .upsell-row {
	padding: 8px 16px;
	gap: 8px;
}

#cart-success .upsell-product img {
	width: 44px;
	height: 44px;
}

#cart-success .upsell-pricing {
	min-width: 76px;
}

#cart-success .upsell-price-combined {
	font-size: 14px;
}

#cart-success .upsell-action .button {
	font-size: 12px;
	padding: 6px 10px;
}
