/* Extended warranty styles */
.warranty-options {
	display: flex;
	flex-direction: column;
	margin-top: 20px;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	background-color: #f9f9f9;
}

.warranty-options h3 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 15px;
}

.warranty-label {
	display: flex;
	align-items: center;
	background-color: #f7f7f7;
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #ddd;
	margin-bottom: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.warranty-label:hover {
	background-color: #e7e7e7;
}

.warranty-label input[type="radio"] {
	margin-right: 10px;
	cursor: pointer;
}
