/* Angebotsanfrage – Conversion-optimiertes Layout (Weldify) */
.om-quote-inquiry-page {
	max-width: 1120px;
	margin: 0 auto;
	padding: 2rem 1.25rem 3.5rem;
}

.om-quote-inquiry-wrap {
	background: #fff;
	border: 1px solid #e4eaf0;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(30, 58, 95, 0.08);
	overflow: hidden;
}

.om-quote-inquiry-hero {
	background: linear-gradient(135deg, #1e3a5f 0%, #152a45 100%);
	color: #fff;
	padding: 2rem 2rem 1.75rem;
}

.om-quote-inquiry-hero h1 {
	margin: 0 0 0.5rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
}

.om-quote-inquiry-hero .lead {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.55;
	opacity: 0.92;
	max-width: 640px;
}

.om-quote-inquiry-body {
	display: grid;
	grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
	gap: 0;
}

.om-quote-inquiry-sidebar {
	background: #f5f8fb;
	border-right: 1px solid #e4eaf0;
	padding: 1.75rem;
}

.om-quote-product-card {
	background: #fff;
	border: 1px solid #e4eaf0;
	border-radius: 10px;
	overflow: hidden;
}

.om-quote-product-card__image {
	display: block;
	background: #fafbfc;
	border-bottom: 1px solid #eef2f6;
}

.om-quote-product-card__image img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 220px;
	object-fit: contain;
	padding: 1rem;
}

.om-quote-product-card__body {
	padding: 1rem 1.1rem 1.15rem;
}

.om-quote-product-card__label {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #6b7c8f;
	margin-bottom: 0.35rem;
}

.om-quote-product-card__title {
	margin: 0 0 0.65rem;
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.4;
	color: #1e293b;
}

.om-quote-product-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.5rem;
	font-size: 0.8rem;
	color: #64748b;
}

.om-quote-product-card__meta span {
	background: #f1f5f9;
	border-radius: 4px;
	padding: 0.15rem 0.45rem;
}

.om-quote-product-card__link {
	display: inline-block;
	margin-top: 0.85rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: #1e3a5f;
	text-decoration: none;
}

.om-quote-product-card__link:hover {
	text-decoration: underline;
}

.om-quote-trust-list {
	list-style: none;
	margin: 1.35rem 0 0;
	padding: 0;
}

.om-quote-trust-list li {
	position: relative;
	padding: 0.45rem 0 0.45rem 1.65rem;
	font-size: 0.88rem;
	line-height: 1.45;
	color: #334155;
}

.om-quote-trust-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.65rem;
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: #2e7d32;
	box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
}

.om-quote-inquiry-main {
	padding: 1.75rem 2rem 2rem;
}

.om-quote-inquiry-form .om-quote-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 1.25rem;
}

.om-quote-inquiry-form p {
	margin: 0 0 1.1rem;
}

.om-quote-inquiry-form p.om-quote-form-full {
	grid-column: 1 / -1;
}

.om-quote-inquiry-form label {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.88rem;
	font-weight: 600;
	color: #334155;
}

.om-quote-inquiry-form label .required {
	color: #b32d2e;
}

.om-quote-inquiry-form .input-text {
	width: 100%;
	max-width: none;
	padding: 0.72rem 0.85rem;
	border: 1px solid #ccd5e0;
	border-radius: 8px;
	font-size: 0.95rem;
	background: #fff;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.om-quote-inquiry-form .input-text:focus {
	border-color: #1e3a5f;
	box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.12);
	outline: none;
}

.om-quote-inquiry-form textarea.input-text {
	min-height: 110px;
	resize: vertical;
}

.om-quote-form-actions {
	grid-column: 1 / -1;
	margin-top: 0.35rem;
	padding-top: 0.5rem;
	border-top: 1px solid #eef2f6;
}

.om-quote-inquiry-form .button.om-quote-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 240px;
	padding: 0.9rem 1.75rem;
	background: #1e3a5f !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 999px;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: background 0.15s, transform 0.1s;
}

.om-quote-inquiry-form .button.om-quote-submit:hover:not(:disabled) {
	background: #152a45 !important;
	transform: translateY(-1px);
}

.om-quote-inquiry-form .button.om-quote-submit:disabled {
	opacity: 0.65;
	cursor: wait;
}

.om-quote-privacy {
	margin-top: 0.25rem;
}

.om-quote-privacy-label {
	display: flex !important;
	align-items: flex-start;
	gap: 0.65rem;
	font-size: 0.88rem;
	font-weight: 400 !important;
	line-height: 1.5;
	color: #475569;
	cursor: pointer;
}

.om-quote-privacy-label input[type="checkbox"] {
	flex: 0 0 auto;
	width: 1.1rem;
	height: 1.1rem;
	margin: 0.15rem 0 0;
	accent-color: #1e3a5f;
	cursor: pointer;
}

.om-quote-privacy-label a {
	color: #1e3a5f;
	font-weight: 600;
	text-decoration: underline;
}

.om-quote-privacy-label a:hover {
	color: #152a45;
}

.om-quote-form-note {
	margin: 0.75rem 0 0;
	font-size: 0.82rem;
	color: #64748b;
	line-height: 1.45;
}

.om-quote-inquiry-message {
	grid-column: 1 / -1;
	margin-top: 1rem;
	padding: 0.85rem 1rem;
	border-radius: 8px;
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.45;
}

.om-quote-inquiry-message:empty {
	display: none;
}

.om-quote-inquiry-message.success {
	background: #edf7ed;
	color: #1b5e20;
	border: 1px solid #c8e6c9;
}

.om-quote-inquiry-message.error {
	background: #fdecea;
	color: #b32d2e;
	border: 1px solid #f5c6cb;
}

.om-quote-inquiry-wrap.om-quote-inquiry--success .om-quote-inquiry-form {
	opacity: 0.45;
	pointer-events: none;
}

.om-quote-items-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.om-quote-items-count {
	font-size: 0.78rem;
	font-weight: 600;
	color: #1e3a5f;
	background: #e8f0f8;
	padding: 0.2rem 0.55rem;
	border-radius: 99px;
}

.om-quote-items-list {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	max-height: 360px;
	overflow-y: auto;
}

.om-quote-items-list__item {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	padding: 0.65rem;
	background: #fff;
	border: 1px solid #e4eaf0;
	border-radius: 8px;
}

.om-quote-items-list__thumb {
	flex: 0 0 64px;
	display: block;
	background: #fafbfc;
	border-radius: 6px;
	overflow: hidden;
}

.om-quote-items-list__thumb img {
	display: block;
	width: 64px;
	height: 64px;
	object-fit: contain;
}

.om-quote-items-list__info {
	flex: 1 1 auto;
	min-width: 0;
}

.om-quote-items-list__title {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	line-height: 1.35;
	color: #1e293b;
	text-decoration: none;
	margin-bottom: 0.25rem;
}

.om-quote-items-list__title:hover {
	color: #1e3a5f;
}

.om-quote-items-list__sku,
.om-quote-items-list__ref {
	display: block;
	font-size: 0.75rem;
	color: #64748b;
}

.om-quote-items-list__ref {
	color: #1e3a5f;
	font-weight: 600;
}

.om-quote-items-list__qty-label {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: 0.35rem;
	font-size: 0.75rem;
	color: #64748b;
}

.om-quote-items-list__qty-input {
	width: 3.5rem;
	padding: 0.2rem 0.35rem;
	border: 1px solid #ccd5e0;
	border-radius: 4px;
	font-size: 0.85rem;
	text-align: center;
}

.om-quote-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.om-quote-items-list__remove {
	flex: 0 0 auto;
	width: 1.75rem;
	height: 1.75rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #f1f5f9;
	color: #64748b;
	font-size: 1.2rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.15s, color 0.15s;
}

.om-quote-items-list__remove:hover {
	background: #fdecea;
	color: #b32d2e;
}

.om-quote-product-card--empty .om-quote-product-card__title {
	font-size: 0.92rem;
	margin-bottom: 0.35rem;
}

.om-quote-empty-hint {
	margin: 0;
	font-size: 0.85rem;
	color: #64748b;
	line-height: 1.45;
}

.om-quote-sidebar-actions {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
}

.om-quote-sidebar-actions .button {
	width: 100%;
	text-align: center;
	padding: 0.55rem 0.75rem;
	font-size: 0.85rem;
	border-radius: 8px;
}

.om-quote-add-more {
	background: #fff !important;
	border: 1px dashed #1e3a5f !important;
	color: #1e3a5f !important;
}

.om-quote-from-cart {
	background: transparent !important;
	border: 1px solid #ccd5e0 !important;
	color: #334155 !important;
}

@media (max-width: 849px) {
	.om-quote-inquiry-page {
		padding: 1.25rem 0.85rem 2.5rem;
	}

	.om-quote-inquiry-body {
		grid-template-columns: 1fr;
	}

	.om-quote-inquiry-sidebar {
		border-right: 0;
		border-bottom: 1px solid #e4eaf0;
		padding: 1.25rem;
	}

	.om-quote-inquiry-main {
		padding: 1.25rem;
	}

	.om-quote-inquiry-hero {
		padding: 1.5rem 1.25rem 1.25rem;
	}

	.om-quote-inquiry-form .om-quote-form-grid {
		grid-template-columns: 1fr;
	}

	.om-quote-inquiry-form .button.om-quote-submit {
		width: 100%;
		min-width: 0;
	}
}
