.product-contact-form h2 {
	text-align: center;
}

.lottery-field {
	margin-bottom: 15px;
}

.lottery-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 5px;
	color: white;
}

.lottery-field label sup {
	color: red;
	font-size: 12px;
	font-weight: 600;
	margin-left: 5px;
}

.lottery-field input[type="text"],
.lottery-field input[type="email"],
.lottery-field select,
.lottery-field input[type="file"] {
	width: 100%;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 3px;
}

/* Tagify styles */
.lottery-field .tagify {
	width: 100%;
	border: 1px solid #fff3dc40;
	border-radius: 3px;
	padding: 5px;
	min-height: 42px;
	background-color: #fff3dc05;
}

.lottery-field .tagify__tag {
	background: #0073aa;
	color: #fff;
	border-radius: 3px;
	margin: 2px;
	padding: 5px 8px;
}

.lottery-field .tagify__tag__removeBtn {
	color: #fff;
	opacity: 0.8;
}

.lottery-field .tagify__tag__removeBtn:hover {
	opacity: 1;
}

.lottery-field .tagify__input {
	padding: 5px;
	margin: 2px;
}

.lottery-field-hint {
	display: block;
	font-size: 12px;
	color: #666;
	margin-top: 5px;
	font-style: italic;
}

#lottery-registration-form button[type="submit"] {
	background: #d18000;
	color: #fff;
	border: none;
	padding-top: 15px;
	padding-right: 30px;
	padding-bottom: 15px;
	padding-left: 30px;
	cursor: pointer;
	width: 100%;
}

#lottery-registration-form button[type="submit"]:disabled {
	opacity: 0.6;
	cursor: default;
}

.lottery-message {
	margin-top: 15px;
	padding: 10px;
	border-radius: 3px;
}

.lottery-message.success {
	background-color: #dff0d8;
	color: #3c763d;
}

.lottery-message.error {
	background-color: #f2dede;
	color: #a94442;
}

.tagify__tag>div,
.lottery-field .tagify__tag {
	background: #ba8b49 !important;
}

.tagify__tag>div::before {
	box-shadow: none;
}

.lottery-field .tagify__tag {
	padding: 0;
}

/* Captcha Overlay Styles */
.lottery-captcha-wrapper {
	position: relative;
	display: inline-block;
}

.lottery-captcha-wrapper iframe {
	width: 100% !important;
}

.captcha-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff3dcd1;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.captcha-overlay-content {
	text-align: center;
	color: #333;
	font-weight: 600;
	padding: 10px;
}

.captcha-overlay-icon {
	font-size: 24px;
	display: block;
	margin-bottom: 5px;
}

.lottery-alert-message {
	display: none;
}

/* Clear Button Styles */
.lottery-field-clearable {
	position: relative;
}

.lottery-clear-btn {
	position: absolute;
	right: 10px;
	top: 34px;
	width: 24px;
	height: 24px;
	background: #ba8b49;
	color: #fff;
	border-radius: 50%;
	display: none;
	padding-top: 2px;
	justify-content: center;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
	transition: background 0.2s;
	user-select: none;
}

.lottery-clear-btn:hover {
	background: #999;
}

.lottery-clear-btn.visible {
	display: flex;
}

/* Loading Overlay Styles */
.lottery-loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.lottery-loading-overlay p {
	color: #fff;
	font-size: 18px;
	margin-top: 20px;
	font-weight: 600;
}

.lottery-spinner {
	width: 50px;
	height: 50px;
	border: 5px solid rgba(255, 255, 255, 0.3);
	border-top-color: #fff;
	border-radius: 50%;
	animation: lottery-spin 1s linear infinite;
}

@keyframes lottery-spin {
	to {
		transform: rotate(360deg);
	}
}