/* Cart popup — попап "Товар додано до кошика" (agzsservice.com.ua)
   Фірмові кольори сайту: темно-синій #031A4F (кнопка "Купити"), синій #229ac8 (ціна) */

#cart-popup.cp-overlay {
	position: fixed;
	inset: 0;
	top: 0; right: 0; bottom: 0; left: 0;
	z-index: 99999;
	background: rgba(0, 0, 0, .5);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

#cart-popup .cp-modal {
	width: 100%;
	max-width: 420px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, .28);
	overflow: hidden;
	animation: cpIn .22s ease;
}

@keyframes cpIn {
	from { opacity: 0; transform: translateY(14px) scale(.98); }
	to   { opacity: 1; transform: none; }
}

#cart-popup .cp-head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
	border-bottom: 1px solid #e6e6e6;
}

#cart-popup .cp-check {
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #031A4F;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 700;
	margin-right: 2px;
}

#cart-popup .cp-title {
	font-size: 15px;
	font-weight: 600;
	margin: 0;
	flex: 1;
	color: #2b2b2b;
}

#cart-popup .cp-close {
	flex: 0 0 auto;
	border: 0;
	background: transparent;
	font-size: 24px;
	line-height: 1;
	color: #aaa;
	cursor: pointer;
	padding: 0 4px;
}
#cart-popup .cp-close:hover { color: #555; }

#cart-popup .cp-body {
	display: flex;
	gap: 14px;
	padding: 16px;
	align-items: center;
}

#cart-popup .cp-thumb {
	flex: 0 0 auto;
	width: 80px;
	height: 80px;
	border: 1px solid #e6e6e6;
	border-radius: 8px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
#cart-popup .cp-thumb img { max-width: 100%; max-height: 100%; }

#cart-popup .cp-info { flex: 1; min-width: 0; }

#cart-popup .cp-name {
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 6px;
	line-height: 1.35;
	color: #2b2b2b;
}

#cart-popup .cp-qty {
	font-size: 12.5px;
	color: #7a7a7a;
	margin: 0 0 4px;
}

#cart-popup .cp-price {
	font-size: 17px;
	font-weight: 700;
	color: #229ac8;
}
#cart-popup .cp-price .cp-old {
	font-size: 13px;
	color: #7a7a7a;
	font-weight: 400;
	text-decoration: line-through;
	margin-left: 8px;
}

#cart-popup .cp-foot {
	display: flex;
	gap: 10px;
	padding: 0 16px 16px;
}

#cart-popup .cp-btn {
	flex: 1;
	border: 0;
	border-radius: 8px;
	padding: 12px 14px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	line-height: 1.2;
	display: inline-block;
}
#cart-popup .cp-btn--primary { background: #031A4F; color: #fff; }
#cart-popup .cp-btn--primary:hover { background: #02123a; color: #fff; }
#cart-popup .cp-btn--ghost { background: #f1f3f5; color: #444; }
#cart-popup .cp-btn--ghost:hover { background: #e6e9ec; }

/* ===== Мобільна версія — нижній лист ===== */
@media (max-width: 767px) {
	#cart-popup.cp-overlay {
		align-items: flex-end;
		padding: 0;
	}
	#cart-popup .cp-modal {
		max-width: none;
		border-radius: 14px 14px 0 0;
	}
	#cart-popup .cp-foot {
		flex-direction: column;
	}
	@keyframes cpIn {
		from { opacity: 0; transform: translateY(100%); }
		to   { opacity: 1; transform: none; }
	}
}
