.cardis-cart-protection {
	margin: 32px 0;
	padding: 24px;
	border: 1px solid #d8d8d8;
	border-radius: 12px;
	background: #fff;
}

.cardis-cart-protection__title {
	margin: 0 0 16px;
	font-size: 22px;
	line-height: 1.2;
}

.cardis-cart-protection__plan {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px;
	border: 1px solid #d8d8d8;
	border-radius: 12px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cardis-cart-protection__plan + .cardis-cart-protection__plan {
	margin-top: 12px;
}

.cardis-cart-protection__plan--added {
	border-color: #0f4c81;
	box-shadow: 0 0 0 2px rgba(15, 76, 129, 0.12);
}

.cardis-cart-protection__plan-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.cardis-cart-protection__plan-product {
	font-size: 13px;
	color: #5f5f5f;
}

.cardis-cart-protection__plan-name {
	font-weight: 600;
}

.cardis-cart-protection__plan-price {
	font-weight: 700;
	color: #1a2b5f;
}

.cardis-cart-protection__btn {
	flex-shrink: 0;
	padding: 10px 20px;
	border-radius: 999px;
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: opacity 0.2s ease, background 0.2s ease;
	white-space: nowrap;
}

.cardis-cart-protection__btn:disabled {
	opacity: 0.6;
	pointer-events: none;
}

.cardis-cart-protection__btn--add {
	border: 2px solid #0f4c81;
	background: #0f4c81;
	color: #fff;
}

.cardis-cart-protection__btn--add:hover {
	background: #0b3a63;
	border-color: #0b3a63;
}

.cardis-cart-protection__btn--added {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 2px solid #0f4c81;
	background: #fff;
	color: #0f4c81;
}

.cardis-cart-protection__btn--added:hover {
	background: #f0f4f8;
}

.cardis-cart-protection__check {
	display: inline-block;
	vertical-align: middle;
}

@media (max-width: 767px) {
	.cardis-cart-protection {
		padding: 18px;
	}

	.cardis-cart-protection__plan {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	.cardis-cart-protection__plan-info {
		align-items: center;
	}

	.cardis-cart-protection__btn {
		width: 100%;
	}
}
