/* Overlay */
.gpe-pe-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Modal */
.gpe-pe-modal {
	background: #fff;
	border-radius: 8px;
	padding: 30px;
	width: 90%;
	max-width: 500px;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.gpe-pe-modal h2 {
	margin: 0 0 5px;
	font-size: 22px;
}

.gpe-pe-product-name {
	color: #666;
	margin: 0 0 20px;
	font-size: 14px;
}

/* Close button */
.gpe-pe-modal-close {
	position: absolute;
	top: 10px;
	right: 15px;
	background: none;
	border: none;
	font-size: 28px;
	cursor: pointer;
	color: #666;
	line-height: 1;
	padding: 0;
}

.gpe-pe-modal-close:hover {
	color: #000;
}

/* Form fields */
.gpe-pe-field {
	margin-bottom: 15px;
}

.gpe-pe-field label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
	font-size: 14px;
}

.gpe-pe-field .required {
	color: #e00;
}

.gpe-pe-field input[type="text"],
.gpe-pe-field input[type="email"],
.gpe-pe-field input[type="tel"],
.gpe-pe-field textarea,
.gpe-pe-field select {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
	box-sizing: border-box;
}

.gpe-pe-field textarea {
	resize: vertical;
}

/* Submit */
.gpe-pe-submit {
	width: 100%;
	padding: 12px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 4px;
	cursor: pointer;
	border: 1px solid;
	margin-top: 5px;
}

.gpe-pe-submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

/* Messages */
.gpe-pe-form-message {
	padding: 10px;
	border-radius: 4px;
	margin-bottom: 10px;
	font-size: 14px;
}

.gpe-pe-form-message.success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.gpe-pe-form-message.error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* Enquiry button */
.gpe-pe-enquiry-btn {
	display: inline-block;
	padding: 10px 24px;
	font-size: 15px;
	font-weight: 600;
	border-radius: 4px;
	cursor: pointer;
	border: 1px solid;
	transition: opacity 0.2s;
}

.gpe-pe-enquiry-btn:hover {
	opacity: 0.85;
}
