.gv-form-wrap {
	max-width: 640px;
	margin: 0 auto;
	font-family: inherit;
}

.gv-voucher-form .gv-field {
	margin-bottom: 22px;
}

.gv-voucher-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
}

.gv-voucher-form input[type="text"],
.gv-voucher-form input[type="email"],
.gv-voucher-form select,
.gv-voucher-form textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 15px;
	box-sizing: border-box;
	margin-bottom: 12px;
}

.gv-voucher-form .req {
	color: #c0392b;
}

.gv-packages {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 10px;
}

.gv-package-option {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	border: 2px solid #ddd;
	border-radius: 8px;
	padding: 12px 14px;
	cursor: pointer;
	font-weight: 400;
	margin-bottom: 0;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.gv-package-option:has(input:checked) {
	border-color: #2c7be5;
	background: #f0f6ff;
}

.gv-package-option input {
	margin-right: 6px;
}

.gv-package-name {
	font-weight: 600;
}

.gv-package-price {
	color: #2c7be5;
	font-weight: 700;
	font-size: 15px;
}

.gv-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

@media (max-width: 560px) {
	.gv-two-col {
		grid-template-columns: 1fr;
	}
}

.gv-two-col h4 {
	margin: 0 0 10px;
}

.gv-total {
	font-size: 20px;
	font-weight: 700;
}

.gv-status {
	min-height: 20px;
	font-weight: 600;
}

.gv-status.gv-error {
	color: #c0392b;
}

.gv-status.gv-success {
	color: #1e8e3e;
}

.gv-confirmation {
	border: 2px solid #1e8e3e;
	background: #f0fff4;
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 24px;
}

.gv-confirmation-pending {
	border-color: #2c7be5;
	background: #f0f6ff;
}

.gv-paypal-submit {
	background: #0070ba;
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 14px 28px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	width: 100%;
}

.gv-paypal-submit:hover {
	background: #005ea6;
}

.gv-paypal-submit:disabled {
	background: #99c2e0;
	cursor: not-allowed;
}
