.oempc-container { max-width: 1200px; margin: 0 auto; padding: 24px 16px; }
.oempc-page-title { font-size: 28px; margin-bottom: 20px; }
.oempc-section-title { font-size: 20px; margin: 30px 0 16px; }

/* Search box */
.oempc-search-box { position: relative; max-width: 520px; margin: 0 0 24px; }
.oempc-search-input { width: 100%; padding: 12px 14px; font-size: 15px; border: 1px solid #d0d5dd; border-radius: 6px; }
.oempc-search-results {
	position: absolute; top: 100%; left: 0; right: 0; background: #fff; border: 1px solid #d0d5dd;
	border-radius: 6px; margin-top: 4px; max-height: 400px; overflow-y: auto; z-index: 40;
	box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.oempc-search-results .oempc-sr-group-title { padding: 8px 12px; font-size: 11px; text-transform: uppercase; color: #888; background: #f7f7f8; }
.oempc-search-results a.oempc-sr-item { display: block; padding: 10px 12px; text-decoration: none; color: #1d2327; border-top: 1px solid #f0f0f1; }
.oempc-search-results a.oempc-sr-item:hover { background: #f7f7f8; }
.oempc-search-results a.oempc-sr-item.oempc-sr-active { background: #eef4fb; }
.oempc-search-results .oempc-sr-empty { padding: 14px; color: #888; }

/* Vehicle grid */
.oempc-vehicle-grid, .oempc-category-grid {
	display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px;
}
.oempc-vehicle-card, .oempc-category-card {
	display: block; text-decoration: none; color: inherit; border: 1px solid #eaecf0; border-radius: 10px;
	overflow: hidden; transition: box-shadow .15s ease, transform .15s ease; background: #fff;
}
.oempc-vehicle-card:hover, .oempc-category-card:hover { box-shadow: 0 6px 18px rgba(0,0,0,.08); transform: translateY(-2px); }
.oempc-vehicle-card-image { aspect-ratio: 4 / 3; background: #f2f3f5; overflow: hidden; }
.oempc-vehicle-card-image img { width: 100%; height: 100%; object-fit: cover; }
.oempc-category-card-image { aspect-ratio: 4 / 3; background: #f2f3f5; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.oempc-category-card-image img { width: 100%; height: 100%; object-fit: contain; }
.oempc-vehicle-card-placeholder, .oempc-category-card-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg,#eee,#ddd); }
.oempc-vehicle-card-body { padding: 12px 14px; }
.oempc-vehicle-card-body h3 { margin: 0 0 4px; font-size: 16px; }
.oempc-vehicle-card-body p { margin: 0; color: #667085; font-size: 13px; }
.oempc-category-card h3 { padding: 10px 12px; margin: 0; font-size: 15px; text-align: center; }

/* Single vehicle */
.oempc-vehicle-header { display: flex; gap: 24px; flex-wrap: wrap; align-items: flex-start; margin-bottom: 20px; }
.oempc-vehicle-hero-image { width: 320px; max-width: 100%; border-radius: 10px; object-fit: cover; }
.oempc-vehicle-header-info h1 { margin: 0 0 6px; }
.oempc-vehicle-engine { color: #667085; margin: 0 0 10px; }

/* Category / diagram */
.oempc-breadcrumb { font-size: 13px; color: #667085; margin-bottom: 16px; }
.oempc-breadcrumb a { color: #667085; }
.oempc-diagram-viewer { margin-bottom: 24px; }
.oempc-diagram { margin: 0 0 20px; text-align: center; }
.oempc-diagram-image { max-width: 100%; border: 1px solid #eaecf0; border-radius: 8px; cursor: zoom-in; }
.oempc-diagram figcaption { font-size: 13px; color: #667085; margin-top: 6px; }
.oempc-pdf-link { display: inline-block; margin-top: 6px; font-size: 13px; }

/* Parts table */
.oempc-parts-table { width: 100%; border-collapse: collapse; }
.oempc-parts-table th, .oempc-parts-table td { padding: 10px 12px; border-bottom: 1px solid #eaecf0; text-align: left; vertical-align: top; font-size: 14px; }
.oempc-parts-table thead th { background: #f7f7f8; font-size: 12px; text-transform: uppercase; color: #667085; }
.oempc-part-notes, .oempc-superseded { font-size: 12px; color: #888; margin-top: 4px; }
.oempc-availability { display: flex; flex-direction: column; gap: 4px; }
.oempc-unavailable { color: #b42318; font-size: 13px; font-weight: 600; }
.oempc-stock-status { font-size: 11px; text-transform: uppercase; font-weight: 600; }
.oempc-stock-instock { color: #067647; }
.oempc-stock-outofstock { color: #b42318; }
.oempc-stock-onbackorder { color: #b54708; }
.oempc-btn { display: inline-block; padding: 5px 10px; border-radius: 5px; text-decoration: none; font-size: 12px; font-weight: 600; margin-right: 6px; }
.oempc-btn-view { background: #f0f0f1; color: #1d2327; }
.oempc-btn-cart { background: #1d2327; color: #fff; }

/* Diagram viewer: zoom / pan / fullscreen */
.oempc-diagram-viewport {
	position: relative; overflow: hidden; border: 1px solid #eaecf0; border-radius: 8px;
	background: #f7f7f8; touch-action: none; max-height: 620px;
}
.oempc-diagram-stage {
	position: relative; display: inline-block; transform-origin: center center; transition: transform .08s linear;
	cursor: grab; width: 100%;
}
.oempc-diagram-stage.oempc-dragging { cursor: grabbing; transition: none; }
.oempc-diagram-viewport .oempc-diagram-image { width: 100%; height: auto; display: block; border: 0; border-radius: 0; cursor: zoom-in; }
.oempc-diagram-controls {
	position: absolute; bottom: 10px; right: 10px; display: flex; gap: 4px; background: rgba(255,255,255,.92);
	border-radius: 6px; padding: 4px; box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.oempc-diagram-controls button {
	width: 30px; height: 30px; border: none; background: #fff; border-radius: 4px; cursor: pointer; font-size: 14px; font-weight: 700;
}
.oempc-diagram-controls button:hover { background: #f0f0f1; }
.oempc-dc-zoom-reset { width: auto !important; padding: 0 8px; font-size: 11px !important; font-weight: 600 !important; }
.oempc-diagram-viewport:fullscreen, .oempc-diagram-viewport.oempc-fullscreen-fallback {
	max-height: 100vh; background: #000;
}
.oempc-diagram-viewport:fullscreen .oempc-diagram-stage,
.oempc-diagram-viewport.oempc-fullscreen-fallback .oempc-diagram-stage { display: flex; align-items: center; justify-content: center; height: 100vh; }

/* Responsive */
.oempc-table-scroll { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
@media (max-width: 782px) {
	.oempc-container { padding: 16px 12px; }
	.oempc-page-title { font-size: 22px; }
	.oempc-vehicle-header { flex-direction: column; }
	.oempc-vehicle-hero-image { width: 100%; }
	.oempc-parts-table { min-width: 640px; }
	.oempc-diagram-viewport { max-height: 320px; }
	.oempc-diagram-controls { bottom: 6px; right: 6px; }
	.oempc-cv-table { min-width: 560px; }
	.oempc-cv-toolbar { flex-direction: column; align-items: stretch; }
	.oempc-cv-search { min-width: 0; width: 100%; }
	.oempc-search-box { max-width: 100%; }
}

/* Compatible vehicles tab (WooCommerce) */
.oempc-compatible-vehicles .oempc-cv-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.oempc-cv-search { padding: 8px 10px; border: 1px solid #d0d5dd; border-radius: 6px; min-width: 240px; }
.oempc-cv-count { color: #667085; font-size: 13px; }
.oempc-cv-table { width: 100%; border-collapse: collapse; }
.oempc-cv-table th, .oempc-cv-table td { padding: 8px 12px; border-bottom: 1px solid #eaecf0; text-align: left; font-size: 13px; }
.oempc-cv-table thead th { background: #f7f7f8; font-size: 11px; text-transform: uppercase; color: #667085; }
.oempc-cv-image-cell { width: 56px; }
.oempc-cv-image-cell img { width: 48px; height: 48px; object-fit: cover; border-radius: 4px; display: block; }
.oempc-cv-load-more { margin-top: 12px; }

/* "Your Vehicle" highlight in the Compatible Vehicles table */
.oempc-cv-row-yours { background: #eef9f1; }
.oempc-cv-yours-badge {
	display: inline-block; margin-left: 6px; padding: 1px 8px; border-radius: 10px;
	background: #067647; color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; vertical-align: middle;
}

/* Garage widget ([oempc_garage] shortcode) — collapsed button + panel */
.oempc-garage { position: relative; display: inline-block; max-width: 100%; font-family: inherit; }

.oempc-garage-toggle {
	display: flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 10px; border: none; cursor: pointer;
	background: linear-gradient(135deg, #1d2327, #2f363d); color: #fff; font-size: 15px; font-weight: 700;
	box-shadow: 0 4px 14px rgba(0,0,0,.18); transition: transform .12s ease, box-shadow .12s ease; max-width: 100%;
}
.oempc-garage-toggle:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,.24); }
.oempc-garage-toggle-icon { display: flex; align-items: center; color: #ffb020; flex-shrink: 0; }
.oempc-garage-toggle-label { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; overflow: hidden; text-align: left; }
.oempc-garage-toggle-eyebrow { font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: #ffb020; font-weight: 700; }
.oempc-garage-toggle-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 220px; }
.oempc-garage-toggle-chevron { margin-left: 2px; font-size: 11px; transition: transform .15s ease; flex-shrink: 0; }
.oempc-garage-open .oempc-garage-toggle-chevron { transform: rotate(180deg); }

.oempc-garage-panel {
	position: absolute; top: calc(100% + 10px); left: 0; z-index: 60; width: 340px; max-width: 90vw;
	background: #fff; border-radius: 12px; border: 1px solid #eaecf0; box-shadow: 0 12px 32px rgba(0,0,0,.16);
	padding: 20px; animation: oempc-garage-pop .15s ease;
}
@keyframes oempc-garage-pop {
	from { opacity: 0; transform: translateY(-6px); }
	to { opacity: 1; transform: translateY(0); }
}

.oempc-garage-current {
	display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 6px; padding: 10px 14px;
	background: #eef9f1; border-radius: 8px; font-size: 13px;
}
.oempc-garage-current-label { color: #067647; font-weight: 600; }
.oempc-garage-remove-btn {
	margin-left: auto; background: none; border: none; color: #b42318; cursor: pointer; font-size: 12px; text-decoration: underline; padding: 0;
}
.oempc-garage-replace-note { font-size: 12px; color: #98a2b3; margin: 0 0 16px; }

.oempc-garage-form { display: flex; flex-direction: column; gap: 14px; }
.oempc-garage-field label { display: block; font-size: 11px; font-weight: 700; color: #667085; margin-bottom: 5px; text-transform: uppercase; letter-spacing: .04em; }
.oempc-garage-select {
	width: 100%; padding: 11px 12px; border: 1px solid #d0d5dd; border-radius: 8px; font-size: 14px; background: #fff;
	appearance: none; -webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23667085'%3E%3Cpath d='M5.25 7.5L10 12.25l4.75-4.75H5.25z'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 10px center; background-size: 18px;
}
.oempc-garage-select:disabled { background-color: #f7f7f8; color: #98a2b3; cursor: not-allowed; }
.oempc-garage-select:focus { outline: none; border-color: #1d2327; box-shadow: 0 0 0 3px rgba(29,35,39,.1); }
.oempc-garage-error { color: #b42318; font-size: 13px; margin: 12px 0 0; }

.oempc-garage-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.oempc-garage-btn {
	width: 100%; padding: 12px 18px; border-radius: 8px; border: none; font-size: 14px; font-weight: 700; cursor: pointer;
	transition: background .12s ease, transform .12s ease;
}
.oempc-garage-btn:disabled { opacity: .45; cursor: not-allowed; }
.oempc-garage-show-parts { background: #1d2327; color: #fff; }
.oempc-garage-show-parts:not(:disabled):hover { background: #000; }
.oempc-garage-add { background: #f0f0f1; color: #1d2327; }
.oempc-garage-add:not(:disabled):hover { background: #e2e2e3; }

@media (max-width: 480px) {
	.oempc-garage-panel { position: fixed; top: auto; bottom: 0; left: 0; right: 0; width: 100%; max-width: 100%; max-height: 85vh; overflow-y: auto; border-radius: 16px 16px 0 0; }
	.oempc-garage-toggle-text { max-width: 140px; }
}

/* Product page fitment banner */
.oempc-fit-banner {
	display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 8px; margin: 16px 0; font-size: 14px;
}
.oempc-fit-yes { background: #eef9f1; color: #067647; border: 1px solid #b8e6c5; }
.oempc-fit-no { background: #fff8e6; color: #8a6100; border: 1px solid #f2dfa3; }
.oempc-fit-icon { font-weight: 700; font-size: 16px; }

/* Shop page "Show Matching Parts" filter notice */
.oempc-garage-shop-notice {
	background: #eef4fb; border: 1px solid #cfe3f7; color: #135e96; padding: 10px 16px; border-radius: 6px; margin-bottom: 20px; font-size: 14px;
}
.oempc-garage-shop-notice a { margin-left: 8px; font-weight: 600; }

/* Catalog page redesign — inherits the active theme's native font and colors. */
.oempc-container { max-width: 1440px; padding: 48px; color: inherit; font-family: inherit; }
.oempc-container *, .oempc-container *::before, .oempc-container *::after { box-sizing: border-box; }
.oempc-catalog-toolbar { display:flex; align-items:center; justify-content:space-between; gap:24px; margin-bottom:24px; }
.oempc-catalog-toolbar h1, .oempc-vehicle-title h1, .oempc-assembly-heading h1 { margin:0 0 4px; font:700 clamp(28px,3vw,40px)/1.2 inherit; color:inherit; }
.oempc-catalog-toolbar p, .oempc-vehicle-title p { margin:0; opacity:.68; font-size:14px; }
.oempc-view-controls { display:flex; padding:4px; border:1px solid color-mix(in srgb,currentColor 14%,transparent); background:color-mix(in srgb,currentColor 4%,transparent); border-radius:4px; }
.oempc-view-toggle { width:34px; height:32px; border:0; background:transparent; color:inherit; border-radius:3px; cursor:pointer; font-size:20px; }
.oempc-view-toggle.is-active { background:Canvas; box-shadow:0 1px 3px rgba(0,0,0,.12); }
.oempc-breadcrumb { display:flex; align-items:center; flex-wrap:wrap; gap:8px; margin:0 0 24px; font:500 13px/1.4 inherit; opacity:.72; }
.oempc-breadcrumb a { color:inherit; text-decoration:none; }
.oempc-breadcrumb a:hover { color:var(--wp--preset--color--primary, currentColor); text-decoration:underline; }
.oempc-vehicle-grid { grid-template-columns:repeat(3,minmax(0,1fr)); gap:24px; }
.oempc-vehicle-card { display:flex; flex-direction:column; border:1px solid color-mix(in srgb,currentColor 12%,transparent); border-radius:4px; overflow:hidden; background:Canvas; transition:border-color .2s,transform .2s; }
.oempc-vehicle-card:hover { transform:none; box-shadow:none; border-color:color-mix(in srgb,currentColor 35%,transparent); }
.oempc-vehicle-card-image { display:flex; height:192px; aspect-ratio:auto; align-items:center; justify-content:center; overflow:hidden; background:color-mix(in srgb,currentColor 5%,Canvas); }
.oempc-vehicle-card-image img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.oempc-vehicle-card:hover img { transform:scale(1.04); }
.oempc-vehicle-card-placeholder,.oempc-category-card-placeholder { display:flex; width:100%; height:100%; align-items:center; justify-content:center; font-size:52px; opacity:.3; background:none; }
.oempc-vehicle-card-body { display:flex; flex:1; flex-direction:column; padding:16px; }
.oempc-vehicle-card-body h2 { margin:0 0 12px; font:600 20px/1.35 inherit; }
.oempc-vehicle-card-body h2 a { color:inherit; text-decoration:none; }
.oempc-card-specs { display:grid; grid-template-columns:1fr 1fr; gap:8px 16px; padding:10px 12px; margin:auto 0 16px; border:1px solid color-mix(in srgb,currentColor 10%,transparent); border-radius:3px; background:color-mix(in srgb,currentColor 3%,Canvas); }
.oempc-card-specs div { min-width:0; }
.oempc-card-specs span { display:block; margin-bottom:2px; font:600 10px/1.4 inherit; letter-spacing:.06em; text-transform:uppercase; opacity:.6; }
.oempc-card-specs strong { display:block; overflow:hidden; font:500 13px/1.4 inherit; text-overflow:ellipsis; white-space:nowrap; }
.oempc-catalog-button { display:flex; align-items:center; justify-content:center; gap:8px; width:100%; padding:11px 16px; border:2px solid currentColor; border-radius:3px; color:inherit; text-decoration:none; font-weight:700; font-size:13px; text-transform:uppercase; letter-spacing:.04em; }
.oempc-catalog-button:hover { background:currentColor; color:Canvas; }
.oempc-vehicle-grid.is-list { grid-template-columns:1fr; }
.oempc-vehicle-grid.is-list .oempc-vehicle-card { display:grid; grid-template-columns:240px 1fr; }
.oempc-vehicle-grid.is-list .oempc-vehicle-card-image { height:100%; min-height:190px; }
.oempc-pagination { margin:32px 0; }
.oempc-pagination .nav-links { display:flex; align-items:center; justify-content:center; gap:8px; }
.oempc-pagination .page-numbers { display:flex; width:34px; height:34px; align-items:center; justify-content:center; border:1px solid color-mix(in srgb,currentColor 15%,transparent); border-radius:3px; color:inherit; text-decoration:none; }
.oempc-pagination .current { background:currentColor; color:Canvas; }

.oempc-vehicle-title { margin-bottom:32px; }
.oempc-vehicle-technical { display:grid; grid-template-columns:2fr 1fr; gap:24px; margin-bottom:48px; }
.oempc-vehicle-technical > div { padding:24px; border:1px solid color-mix(in srgb,currentColor 12%,transparent); border-radius:4px; background:Canvas; }
.oempc-vehicle-technical h2,.oempc-assemblies > h2 { margin:0 0 20px; font:600 24px/1.3 inherit; }
.oempc-vehicle-description-panel img { float:left; width:40%; max-height:230px; margin:0 24px 12px 0; object-fit:contain; background:color-mix(in srgb,currentColor 4%,Canvas); }
.oempc-vehicle-description-panel p { margin-top:0; line-height:1.7; }
.oempc-tech-specs dl { margin:0; }
.oempc-tech-specs dl div { display:flex; justify-content:space-between; gap:20px; padding:13px 0; border-bottom:1px solid color-mix(in srgb,currentColor 10%,transparent); }
.oempc-tech-specs dt { opacity:.65; font-size:13px; text-transform:uppercase; letter-spacing:.05em; }
.oempc-tech-specs dd { margin:0; font-weight:600; text-align:right; }
.oempc-assemblies > h2 { padding-bottom:10px; border-bottom:1px solid color-mix(in srgb,currentColor 12%,transparent); }
.oempc-category-grid { grid-template-columns:repeat(4,minmax(0,1fr)); gap:24px; }
.oempc-category-card { display:flex; flex-direction:column; border-radius:4px; }
.oempc-category-card-image { height:184px; aspect-ratio:auto; padding:14px; }
.oempc-category-card-image img { object-fit:contain; }
.oempc-category-card > div { display:flex; flex:1; flex-direction:column; padding:16px; }
.oempc-category-card h3 { padding:0; margin:0 0 16px; text-align:left; font:600 18px/1.4 inherit; }
.oempc-category-link { display:flex; justify-content:space-between; margin-top:auto; color:inherit; text-decoration:none; font-weight:700; font-size:13px; }

.oempc-assembly-heading { margin-bottom:20px; }
.oempc-assembly-heading .oempc-breadcrumb { margin:8px 0 0; }
.oempc-assembly-layout { display:grid; grid-template-columns:minmax(300px,1fr) minmax(560px,2fr); gap:24px; min-height:650px; }
.oempc-diagram-panel,.oempc-parts-panel { border:1px solid color-mix(in srgb,currentColor 16%,transparent); border-radius:4px; background:Canvas; box-shadow:0 1px 3px rgba(0,0,0,.06); }
.oempc-diagram-panel { position:sticky; top:24px; display:flex; align-items:center; height:calc(100vh - 120px); min-height:500px; overflow:hidden; }
.oempc-diagram-viewer { width:100%; margin:0; }
.oempc-diagram { margin:0; }
.oempc-diagram-image { width:100%; max-height:calc(100vh - 150px); object-fit:contain; border:0; }
.oempc-diagram-empty { display:flex; width:100%; flex-direction:column; align-items:center; gap:12px; opacity:.4; font-size:60px; }
.oempc-diagram-empty span { font-size:14px; }
.oempc-parts-panel { overflow:hidden; }
.oempc-parts-header { display:flex; align-items:center; justify-content:space-between; gap:24px; padding:18px 20px; border-bottom:1px solid color-mix(in srgb,currentColor 14%,transparent); }
.oempc-parts-header h2 { margin:0; font-size:19px; }
.oempc-parts-header p { margin:3px 0 0; opacity:.6; font-size:12px; }
.oempc-assembly-search { position:relative; width:min(360px,60%); }
.oempc-assembly-search > span:first-child { position:absolute; left:12px; top:50%; transform:translateY(-50%); opacity:.6; font-size:20px; }
.oempc-assembly-search input { width:100%; padding:10px 12px 10px 39px; border:1px solid color-mix(in srgb,currentColor 20%,transparent); border-radius:4px; background:color-mix(in srgb,currentColor 3%,Canvas); color:inherit; font:inherit; font-size:14px; }
.oempc-assembly-search input:focus { outline:2px solid currentColor; outline-offset:1px; }
.oempc-search-status { min-height:22px; padding:4px 20px 0; font-size:12px; opacity:.65; }
.oempc-parts-table { min-width:760px; }
.oempc-parts-table th,.oempc-parts-table td { padding:14px 16px; border-bottom:1px solid color-mix(in srgb,currentColor 10%,transparent); vertical-align:middle; }
.oempc-parts-table thead th { position:sticky; top:0; background:color-mix(in srgb,currentColor 5%,Canvas); color:inherit; font-size:11px; letter-spacing:.06em; }
.oempc-parts-table th:nth-child(1) { width:70px; text-align:center; }.oempc-parts-table th:nth-child(4),.oempc-parts-table td:nth-child(4),.oempc-parts-table th:nth-child(5),.oempc-parts-table td:nth-child(5) { text-align:right; }
.oempc-ref-badge { display:inline-flex; width:27px; height:27px; align-items:center; justify-content:center; border-radius:50%; background:color-mix(in srgb,currentColor 10%,Canvas); font-size:12px; }
.oempc-part-number { font-size:13px; }.oempc-parts-table td small { display:block; margin-top:3px; opacity:.6; }
.oempc-part-meta { display:flex; align-items:center; gap:8px; margin-top:6px; font-size:11px; opacity:.85; }
.oempc-stock-badge { padding:2px 7px; border:1px solid currentColor; border-radius:3px; font-size:10px; text-transform:uppercase; }.oempc-stock-badge.is-stocked { color:#26734d; }.oempc-stock-badge.is-unavailable { color:#a43b35; }
.oempc-price-cell { font-weight:700; white-space:nowrap; }
.oempc-part-actions { display:flex; justify-content:flex-end; gap:8px; }.oempc-icon-button { display:inline-flex; width:31px; height:31px; align-items:center; justify-content:center; border:1px solid color-mix(in srgb,currentColor 25%,transparent); border-radius:3px; color:inherit; text-decoration:none; }.oempc-cart-button { background:currentColor; color:Canvas; }
.oempc-quantity { display:flex; height:31px; border:1px solid color-mix(in srgb,currentColor 20%,transparent); border-radius:3px; overflow:hidden; }.oempc-quantity button { width:25px; padding:0; border:0; background:transparent; color:inherit; cursor:pointer; }.oempc-quantity input { width:34px; padding:0; border:0; border-right:1px solid color-mix(in srgb,currentColor 14%,transparent); border-left:1px solid color-mix(in srgb,currentColor 14%,transparent); background:transparent; color:inherit; text-align:center; -moz-appearance:textfield; }.oempc-quantity input::-webkit-inner-spin-button { appearance:none; }
.oempc-parts-table tr.oempc-part-match { background:color-mix(in srgb, #ffd54f 22%, Canvas); box-shadow:inset 4px 0 #d39e00; }
.oempc-parts-table tr[hidden] { display:none; }.oempc-no-matches { padding:40px; text-align:center; opacity:.65; }

@media (max-width:1000px) { .oempc-container{padding:32px 24px}.oempc-vehicle-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.oempc-category-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.oempc-assembly-layout{grid-template-columns:1fr}.oempc-diagram-panel{position:relative;top:auto;height:420px;min-height:0}.oempc-vehicle-technical{grid-template-columns:1fr} }
@media (max-width:640px) { .oempc-container{padding:20px 16px}.oempc-catalog-toolbar,.oempc-parts-header{align-items:flex-start;flex-direction:column}.oempc-vehicle-grid,.oempc-category-grid{grid-template-columns:1fr}.oempc-vehicle-grid.is-list .oempc-vehicle-card{display:flex}.oempc-assembly-search{width:100%}.oempc-vehicle-description-panel img{float:none;width:100%;margin:0 0 16px}.oempc-diagram-panel{height:320px}.oempc-assembly-layout{display:block}.oempc-parts-panel{margin-top:16px}.oempc-table-scroll{max-height:70vh}.oempc-parts-table{min-width:720px} }
