/* Additional Fields box - above price, light border, rounded */
.jk-additional-fields-box {
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 1em 1.25em;
	margin-bottom: 1.25em;
	background: #fafafa;
}

.jk-additional-fields-title {
	margin: 0 0 0.75em;
	font-size: 1em;
	font-weight: 600;
}

.jk-additional-fields-table {
	width: 100%;
	border-collapse: collapse;
}

.jk-additional-fields-table tbody tr {
	background: #fff;
}

.jk-additional-fields-table tbody tr:nth-child(even) {
	background: #f8f9fa;
}

.jk-additional-fields-table tbody tr:hover {
	background: #f0f4f8;
}

.jk-additional-fields-table .jk-label,
.jk-additional-fields-table .jk-value {
	padding: 0.5em 0.75em 0.5em 0;
	border-bottom: 1px solid #e8e8e8;
	vertical-align: top;
}

.jk-additional-fields-table .jk-label {
	font-weight: 600;
	width: 35%;
	color: #333;
	background: #eef0f2;
}

.jk-additional-fields-table tbody tr:nth-child(even) .jk-label {
	background: #e6e8eb;
}

.jk-additional-fields-table .jk-value {
	color: #333;
	background: inherit;
}

/* Get Quote button - full width, black, rounded, large */
.jk-get-quote-wrap {
	margin: 1em 0;
}

.jk-get-quote-btn {
	display: block;
	width: 100%;
	padding: 1em 1.5em;
	font-size: 1.1em;
	font-weight: 600;
	color: #fff;
	background: #000;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.2s ease, opacity 0.2s ease;
}

.jk-get-quote-btn:hover {
	background: #333;
}

.jk-get-quote-btn:focus {
	outline: 2px solid #000;
	outline-offset: 2px;
}

/* Quote modal */
.jk-quote-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0.2s ease, opacity 0.2s ease;
}

.jk-quote-modal.is-open {
	visibility: visible;
	opacity: 1;
}

.jk-quote-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	cursor: pointer;
}

.jk-quote-modal-inner {
	position: relative;
	width: 100%;
	max-width: 480px;
	max-height: 90vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
	padding: 1.5em 2em;
}

.jk-quote-modal-close {
	position: absolute;
	top: 0.75em;
	right: 0.75em;
	width: 36px;
	height: 36px;
	padding: 0;
	font-size: 1.5em;
	line-height: 1;
	color: #666;
	background: none;
	border: none;
	cursor: pointer;
}

.jk-quote-modal-close:hover {
	color: #000;
}

.jk-quote-modal-title {
	margin: 0 0 1em;
	font-size: 1.25em;
}

.jk-quote-form label {
	display: block;
	margin-bottom: 0.25em;
	font-weight: 500;
}

.jk-quote-form input[type="text"],
.jk-quote-form input[type="email"],
.jk-quote-form input[type="tel"],
.jk-quote-form textarea {
	width: 100%;
	padding: 0.5em 0.75em;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 1em;
}

.jk-quote-form input.jk-readonly {
	background: #f5f5f5;
	color: #555;
	cursor: default;
}

.jk-quote-form p {
	margin-bottom: 1em;
}

.jk-quote-actions {
	margin-top: 1.25em;
}

.jk-quote-submit {
	padding: 0.6em 1.5em;
	font-size: 1em;
	font-weight: 600;
	color: #fff;
	background: #000;
	border: none;
	border-radius: 6px;
	cursor: pointer;
}

.jk-quote-submit:hover {
	background: #333;
}

.jk-quote-message-area {
	margin-top: 1em;
	padding: 0.75em;
	border-radius: 6px;
	display: none;
}

.jk-quote-message-area.is-success {
	display: block;
	background: #e8f5e9;
	color: #2e7d32;
}

.jk-quote-message-area.is-error {
	display: block;
	background: #ffebee;
	color: #c62828;
}

.jk-quote-message-area.is-loading {
	display: block;
	color: #666;
}
