/* Quote Only Products — "Get a Quote" button + enquiry modal */

.qop-quote-btn.button {
	text-align: center;
}

.qop-single-quote-wrap {
	margin: 10px 0;
}
.qop-single-quote-wrap .qop-quote-btn.button {
	display: inline-block;
	padding: 12px 28px;
}

/* Modal */
.qop-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
}
.qop-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}
.qop-modal-content {
	position: relative;
	background: #fff;
	border-radius: 6px;
	max-width: 480px;
	width: 92%;
	max-height: 90vh;
	overflow-y: auto;
	padding: 28px 24px 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.qop-modal-close {
	position: absolute;
	top: 10px;
	right: 12px;
	background: none;
	border: none;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	color: #666;
}
.qop-modal-content h3 {
	margin-top: 0;
	margin-bottom: 4px;
}
.qop-modal-product {
	margin: 0 0 16px;
	color: #666;
	font-weight: 600;
}
.qop-field {
	margin-bottom: 12px;
}
.qop-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 4px;
}
.qop-field input,
.qop-field textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
}
.qop-field-row {
	display: flex;
	gap: 12px;
}
.qop-field-row .qop-field {
	flex: 1 1 0;
	min-width: 0;
}
@media (max-width: 480px) {
	.qop-field-row {
		flex-direction: column;
		gap: 0;
	}
}
.qop-form-msg {
	min-height: 20px;
	font-size: 0.92em;
	margin-bottom: 8px;
}
.qop-form-msg.qop-success {
	color: #2e7d32;
}
.qop-form-msg.qop-error {
	color: #c62828;
}
.qop-submit-row .button {
	width: 100%;
	text-align: center;
}
