/* Checkout protection box + switch */
.shipshield-protection-box {
	display: flex;
	align-items: center;
	gap: 12px;
	border: 2px solid #2e7d32;
	border-radius: 8px;
	padding: 12px 16px;
	margin: 12px 0;
}

.shipshield-switch {
	position: relative;
	display: inline-block;
	width: 44px;
	height: 24px;
	flex: 0 0 auto;
}

.shipshield-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.shipshield-switch-slider {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	border-radius: 24px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.shipshield-switch-slider::before {
	content: "";
	position: absolute;
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 3px;
	background-color: #fff;
	border-radius: 50%;
	transition: transform 0.2s ease;
}

.shipshield-switch input:checked + .shipshield-switch-slider {
	background-color: #2e7d32;
}

.shipshield-switch input:checked + .shipshield-switch-slider::before {
	transform: translateX(20px);
}

.shipshield-switch input:focus-visible + .shipshield-switch-slider {
	outline: 2px solid #2e7d32;
	outline-offset: 2px;
}

.shipshield-protection-copy {
	flex: 1 1 auto;
}

.shipshield-toggle-description {
	display: block;
	font-weight: normal;
	font-size: 0.9em;
	color: #555;
}

.shipshield-toggle-message {
	display: block;
	color: #b32d2e;
	margin-top: 6px;
}

.shipshield-unavailable {
	color: #555;
}

/* Cart checkout-intercept modal */
.shipshield-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100000;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.shipshield-modal-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
}

.shipshield-modal-dialog {
	position: relative;
	background: #fff;
	max-width: 480px;
	width: 100%;
	padding: 28px 24px 24px;
	border-radius: 8px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.shipshield-modal-close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none;
	border: none;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	color: #555;
}

.shipshield-modal-dialog h2 {
	margin-top: 0;
}

.shipshield-modal-fee {
	font-weight: bold;
}

.shipshield-modal-terms {
	font-size: 0.9em;
}

.shipshield-modal-actions {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.shipshield-modal-actions .button {
	flex: 1 1 0;
	text-align: center;
}
