/* ORDER FORM STYLES - Minimal CSS for new form */

#form.order-form {
	position: relative;
	border: none;
	padding: 0;
	margin: 0;
	box-shadow: none;
	font-family: "Open Sans", sans-serif;
}

#form.order-form .top {
	background: #0699ee;
	color: #fff;
	padding: 30px 25px;
	text-align: center;
	position: relative;
}

#form.order-form .top div {
	margin: 0;
	padding: 0;
}

#form.order-form .top h2 {
	font-family: "Montserrat", sans-serif;
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 10px 0;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1.3;
}

#form.order-form .top p {
	font-size: 13px;
	margin: 0;
	color: rgba(255, 255, 255, 0.95);
	font-weight: 400;
	line-height: 1.4;
}

#form.order-form .price {
	background: #fff;
	padding: 20px;
	text-align: center;
	border: none;
}

#form.order-form .price > p {
	font-size: 15px;
	font-weight: 500;
	margin: 0 0 10px 0;
	color: #333;
}

#form.order-form .new_price_val {
	color: #ff6600 !important;
	font-size: 28px !important;
	font-weight: 800 !important;
}

#form.order-form .new_price_cur {
	color: #ff6600 !important;
	font-size: 20px !important;
	font-weight: 700 !important;
	margin-left: 2px;
}

/* Price comparison */
#form.order-form .form-title-price {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	padding: 20px;
	border-top: 1px solid #eee;
}

#form.order-form .old-price {
	text-align: center;
}

#form.order-form .old-price .price-title {
	font-size: 10px;
	font-weight: 700;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 6px;
	display: block;
}

#form.order-form .old-price p {
	margin: 0;
	padding: 0;
}

#form.order-form .old-price .wv_old-price {
	font-size: 24px;
	font-weight: 700;
	color: #ccc;
	text-decoration: line-through;
}

#form.order-form .old-price .currency {
	color: #ccc;
}

#form.order-form .old-price .line {
	display: none;
}

#form.order-form .new-price {
	text-align: center;
}

#form.order-form .new-price .price-title {
	font-size: 10px;
	font-weight: 700;
	color: #ff6600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 6px;
	display: block;
}

#form.order-form .new-price p {
	margin: 0;
	padding: 0;
}

#form.order-form .new-price .wv_new-price {
	font-size: 28px;
	font-weight: 800;
	color: #ff6600;
}

#form.order-form .new-price .currency {
	color: #ff6600;
}

#form.order-form .frame {
	background: #fff5e6;
	border-left: 5px solid #ff6600;
	padding: 18px 20px;
	margin: 0;
	text-align: center;
}

#form.order-form .frame p {
	font-size: 13px;
	margin: 0;
	color: #333;
	line-height: 1.6;
	font-weight: 400;
}

#form.order-form .frame .wv_discount {
	color: #ff6600;
	font-weight: 700;
	font-size: 14px;
}

#form.order-form form {
	padding: 25px 20px;
}

#form.order-form form .form-control,
#form.order-form form .input-form,
#form.order-form form input[type="text"],
#form.order-form form input[type="tel"],
#form.order-form form select {
	width: 100%;
	font-family: "Open Sans", sans-serif;
	font-size: 13px;
	padding: 11px 12px;
	margin-bottom: 14px !important;
	border: 1px solid #ccc;
	border-radius: 4px;
	background: #fff;
	color: #333;
	box-sizing: border-box;
	transition: border-color 0.3s ease;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

#form.order-form form input[type="text"]:focus,
#form.order-form form input[type="tel"]:focus,
#form.order-form form select:focus {
	outline: none;
	border-color: #0699ee;
	box-shadow: 0 0 0 2px rgba(6, 153, 238, 0.1);
}

#form.order-form form input::placeholder {
	color: #999;
	font-weight: 300;
}

#form.order-form form label {
	display: block;
	font-family: "Open Sans", sans-serif;
	font-size: 11px;
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
	margin-top: 8px;
	letter-spacing: 0.3px;
	text-transform: uppercase;
}

#form.order-form form label:first-of-type {
	margin-top: 0;
}

#form.order-form form select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	padding-right: 30px;
}

#form.order-form form input[type="hidden"] {
	display: none;
}

#form.order-form form .submit-form,
#form.order-form form button[type="submit"] {
	width: 100%;
	height: auto;
	padding: 13px 15px;
	margin-top: 10px;
	margin-bottom: 0;
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	background: #ff6600 !important;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: background 0.3s ease;
	text-align: center;
	line-height: 1.2;
}

#form.order-form form .submit-form:hover,
#form.order-form form button[type="submit"]:hover {
	background: #e55a00 !important;
}

#form.order-form form .submit-form:active,
#form.order-form form button[type="submit"]:active {
	background: #d94a00 !important;
}

/* Error states */
#form.order-form form input.error,
#form.order-form form select.error {
	border-color: #ef4b52 !important;
	background-color: #fffbf9;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
	#form.order-form .top h2 {
		font-size: 24px;
	}

	#form.order-form .form-title-price {
		gap: 15px;
		padding: 15px;
	}

	#form.order-form form {
		padding: 20px 15px;
	}

	#form.order-form form label {
		font-size: 10px;
	}

	#form.order-form form .form-control,
	#form.order-form form .input-form,
	#form.order-form form input[type="text"],
	#form.order-form form input[type="tel"],
	#form.order-form form select {
		font-size: 12px;
		padding: 10px 10px;
		margin-bottom: 12px !important;
	}

	#form.order-form form .submit-form,
	#form.order-form form button[type="submit"] {
		font-size: 14px;
		padding: 12px 12px;
	}
}

@media screen and (max-width: 480px) {
	#form.order-form .top h2 {
		font-size: 20px;
		margin-bottom: 8px;
	}

	#form.order-form .price > p {
		font-size: 13px;
	}

	#form.order-form .new_price_val {
		font-size: 24px !important;
	}

	#form.order-form .new_price_cur {
		font-size: 16px !important;
	}

	#form.order-form .form-title-price {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 12px;
	}

	#form.order-form .old-price .wv_old-price,
	#form.order-form .new-price .wv_new-price {
		font-size: 20px;
	}

	#form.order-form form {
		padding: 15px 12px;
	}

	#form.order-form form label {
		font-size: 9px;
		margin-bottom: 4px;
	}

	#form.order-form form .form-control,
	#form.order-form form .input-form,
	#form.order-form form input[type="text"],
	#form.order-form form input[type="tel"],
	#form.order-form form select {
		font-size: 12px;
		padding: 9px 9px;
		margin-bottom: 10px !important;
	}

	#form.order-form form .submit-form,
	#form.order-form form button[type="submit"] {
		font-size: 13px;
		padding: 11px 10px;
		margin-top: 8px;
	}
}

/* END ORDER FORM STYLES */
