.pop-options {
	--pop-primary: #1d2327;
	--pop-accent: #2271b1;
	--pop-success: #1a7f4e;
	--pop-border: #e2e4e7;
	--pop-radius: 14px;
	margin: 18px 0 22px;
	max-width: 560px;
}

.pop-group {
	margin-bottom: 18px;
}

.pop-group-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--pop-primary);
	margin: 0 0 10px;
}

.pop-step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--pop-accent);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
}

.pop-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.pop-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border: 2px solid var(--pop-border);
	border-radius: var(--pop-radius);
	background: #fff;
	cursor: pointer;
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
}

.pop-card:hover {
	border-color: #b7cbe0;
	box-shadow: 0 4px 14px rgba(16, 24, 40, 0.08);
	transform: translateY(-1px);
}

.pop-card.pop-selected {
	border-color: var(--pop-accent);
	background: #f5faff;
	box-shadow: 0 4px 16px rgba(34, 113, 177, 0.14);
}

.pop-card-radio {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.pop-card-check {
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 2px solid #c9ced3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.15s ease;
}

.pop-card.pop-selected .pop-card-check {
	border-color: var(--pop-accent);
	background: var(--pop-accent);
}

.pop-card.pop-selected .pop-card-check::after {
	content: "";
	width: 6px;
	height: 10px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg) translate(-1px, -1px);
}

.pop-card-body {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.pop-card-title {
	font-weight: 600;
	font-size: 15px;
	color: var(--pop-primary);
}

.pop-card-desc {
	font-size: 12.5px;
	color: #767c82;
}

.pop-card-price {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
	text-align: right;
}

.pop-card-price-regular {
	font-size: 12.5px;
	color: #9aa0a6;
	text-decoration: line-through;
}

.pop-card-price-final {
	font-size: 16px;
	font-weight: 700;
	color: var(--pop-primary);
}

.pop-card-price-missing {
	font-size: 16px;
	font-weight: 700;
	color: #c9ced3;
}

.pop-card.pop-selected .pop-card-price-final {
	color: var(--pop-accent);
}

.pop-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 20px;
	letter-spacing: 0.02em;
	width: fit-content;
}

.pop-badge-savings {
	background: #e6f6ee;
	color: var(--pop-success);
}

.pop-badge-popular {
	position: absolute;
	top: -10px;
	inset-inline-start: 14px;
	background: linear-gradient(135deg, #ff7a45, #ff4d6d);
	color: #fff;
	box-shadow: 0 2px 6px rgba(255, 77, 109, 0.35);
}

.pop-card.pop-popular {
	border-color: #ffd3c2;
}

.pop-card.pop-popular.pop-selected {
	border-color: var(--pop-accent);
}

.pop-price-box {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-top: 4px;
	padding: 12px 16px;
	background: #f8f9fb;
	border-radius: var(--pop-radius);
	flex-wrap: wrap;
}

.pop-price-final {
	font-size: 22px;
	font-weight: 700;
	color: var(--pop-primary);
}

.pop-price-regular {
	font-size: 15px;
	color: #9aa0a6;
	text-decoration: line-through;
}

.pop-price-savings {
	font-size: 13px;
	font-weight: 600;
	color: var(--pop-success);
	background: #e6f6ee;
	padding: 2px 10px;
	border-radius: 20px;
}

.pop-price-savings:empty,
.pop-price-regular:empty {
	display: none;
}

.pop-options.pop-deals-active ~ .quantity,
.pop-deals-active .quantity {
	display: none !important;
}

/*
 * Below 640px, cards are too narrow for a side-by-side "check | title | price"
 * row, so they switch to a stacked tile layout: a small check badge in the
 * corner, the title/description below it, then the price at the bottom.
 */
@media (max-width: 640px) {
	.pop-card {
		flex-direction: column;
		align-items: flex-start;
		padding: 14px 12px 12px;
		gap: 6px;
	}

	.pop-card-check {
		position: absolute;
		top: 10px;
		inset-inline-end: 10px;
	}

	.pop-card-body {
		width: 100%;
		padding-inline-end: 28px;
	}

	.pop-card-price {
		width: 100%;
		align-items: flex-start;
		text-align: right;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 6px;
	}

	.pop-badge-popular {
		inset-inline-start: 10px;
	}
}

@media (max-width: 480px) {
	.pop-card-title {
		font-size: 14px;
	}

	.pop-card-price-final,
	.pop-card-price-missing {
		font-size: 14px;
	}

	.pop-price-final {
		font-size: 19px;
	}
}
