/* Automobex Stock Sync - frontend styles */

:root {
	--automobex-bg: #f5f7fb;
	--automobex-nav: #0b253d;
	--automobex-blue: #4a95df;
	--automobex-blue-dark: #0f4077;
	--automobex-ink: #0d253d;
	--automobex-muted: #69798b;
	--automobex-line: #dfe8f2;
	--automobex-shadow: 0 12px 28px rgba(14, 38, 64, .12);
	--automobex-btn-bg: #2d419a;
	--automobex-btn-bg-dark: #233276;
}

.automobex-stock-list {
	color: var(--automobex-ink);
	font-family: inherit;
	margin: 0 auto;
	max-width: 1080px;
	padding: 0 20px 44px;
}

.automobex-filter-panel {
	align-items: end;
	background: var(--automobex-nav);
	border-radius: 14px;
	box-shadow: var(--automobex-shadow);
	display: grid;
	gap: 18px 16px;
	grid-template-areas:
		"search search sort sort"
		"make make model model"
		"actions actions actions actions";
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0 0 28px;
	padding: 24px;
}

.automobex-filter-panel,
.automobex-filter-panel * {
	box-sizing: border-box;
}

.automobex-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	min-width: 0;
}

.automobex-field-search {
	grid-area: search;
}

.automobex-field-sort {
	grid-area: sort;
}

.automobex-field-make {
	grid-area: make;
}

.automobex-field-model {
	grid-area: model;
}

.automobex-field label {
	color: #fff;
	display: block;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.2;
	margin: 0;
	padding: 0;
}

.automobex-field input,
.automobex-field select {
	background: #fff;
	border: 0;
	border-radius: 10px;
	box-shadow: none;
	color: #142a40;
	font-size: 13px;
	height: 42px;
	line-height: normal;
	margin: 0;
	max-width: none;
	padding: 0 13px;
	width: 100%;
}

.automobex-filter-actions {
	align-items: center;
	display: flex;
	gap: 16px;
	grid-area: actions;
	justify-content: flex-start;
	margin: 0;
	min-height: 42px;
}

.automobex-search-btn,
.automobex-clear-link {
	align-items: center;
	border: 0;
	border-radius: 8px;
	display: inline-flex;
	font-size: 13px;
	font-weight: 900;
	justify-content: center;
	min-height: 42px;
	text-decoration: none;
}

.automobex-search-btn {
	background: var(--automobex-blue);
	color: #fff;
	cursor: pointer;
	padding: 0 22px;
}

.automobex-clear-link {
	color: #fff;
	padding: 0;
}

.automobex-count {
	color: #2D419A;
	font-size: 14px;
	font-weight: 900;
	margin: 0 0 24px;
	text-shadow: 0 1px 12px rgba(14, 38, 64, .22);
}

.automobex-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, 1fr);
}

.automobex-cols-1 { grid-template-columns: repeat(1, 1fr); }
.automobex-cols-2 { grid-template-columns: repeat(2, 1fr); }
.automobex-cols-3 { grid-template-columns: repeat(3, 1fr); }
.automobex-cols-4 { grid-template-columns: repeat(4, 1fr); }
.automobex-cols-5 { grid-template-columns: repeat(5, 1fr); }
.automobex-cols-6 { grid-template-columns: repeat(6, 1fr); }

.automobex-card {
	background: #fff;
	border: 1px solid var(--automobex-line);
	border-radius: 8px;
	box-shadow: 0 3px 10px rgba(14, 38, 64, .08);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: box-shadow .16s ease, transform .16s ease;
}

.automobex-card:hover {
	box-shadow: var(--automobex-shadow);
	transform: translateY(-2px);
}

.automobex-card-image {
	aspect-ratio: 1.46;
	background: #d8e3ee;
	display: block;
	overflow: hidden;
	position: relative;
}

.automobex-card-image img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.automobex-noimage {
	align-items: center;
	background: linear-gradient(135deg, #d8e3ee, #b7c8da);
	color: #62748a;
	display: flex;
	font-size: 13px;
	font-weight: 800;
	height: 100%;
	justify-content: center;
}

.automobex-status-badge {
	background: var(--automobex-blue);
	border-radius: 4px;
	color: #fff;
	display: inline-flex;
	font-size: 10px;
	font-weight: 950;
	left: 10px;
	letter-spacing: 0;
	line-height: 1;
	padding: 7px 9px;
	position: absolute;
	text-transform: uppercase;
	top: 10px;
	width: fit-content;
}

.automobex-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 12px;
	padding: 18px 14px 14px;
}

.automobex-card-title {
	color: var(--automobex-ink);
	font-size: 15px;
	font-weight: 950;
	line-height: 1.35;
	margin: 0;
	text-transform: uppercase;
}

.automobex-card-title a {
	color: inherit;
	text-decoration: none;
}

.automobex-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.automobex-meta-pill {
	align-items: center;
	background: #f1f5fa;
	border: 1px solid var(--automobex-line);
	border-radius: 999px;
	color: #33475c;
	display: inline-flex;
	font-size: 11px;
	font-weight: 700;
	gap: 6px;
	line-height: 1;
	padding: 7px 11px;
	width: max-content;
}

.automobex-odometer-pill {
	background: #eaf4ff;
	border-color: #cfe5fb;
	color: #2c6eaa;
	font-weight: 800;
}

.automobex-meta-pill svg {
	flex-shrink: 0;
}

.automobex-price-row {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: space-between;
}

.automobex-price-tag {
	background: var(--automobex-blue-dark);
	border-radius: 6px;
	color: #fff;
	font-size: 18px;
	font-weight: 950;
	padding: 9px 13px;
	width: max-content;
}

.automobex-from-week {
	border: 1px solid #93cbe3;
	border-radius: 999px;
	color: #3176a8;
	font-size: 11px;
	font-weight: 700;
	margin-left: auto;
	padding: 5px 10px;
	white-space: nowrap;
	width: max-content;
}

.automobex-price-note {
	color: #182c40;
	font-size: 11px;
	margin-top: -4px;
	white-space: nowrap;
}

.automobex-btn {
	align-items: center;
	background: var(--automobex-btn-bg);
	border-radius: 7px;
	color: #fff;
	display: inline-flex;
	font-size: 13px;
	font-weight: 900;
	justify-content: center;
	margin-top: auto;
	min-height: 42px;
	padding: 0 18px;
	text-align: center;
	text-decoration: none;
	transition: background .16s ease;
	width: 100%;
}

.automobex-btn:hover {
	background: var(--automobex-btn-bg-dark);
	color: #fff;
}

.automobex-pagination {
	align-items: center;
	display: flex;
	gap: 20px;
	justify-content: center;
	margin: 44px 0 18px;
}

.automobex-pagination a,
.automobex-pagination span {
	color: #000;
	font-size: 13px;
	font-weight: 400;
	text-decoration: none;
}

.automobex-pagination .current {
	background: var(--automobex-blue);
	border-radius: 7px;
	color: #fff;
	padding: 9px 12px;
}

.automobex-empty {
	background: #fff;
	border: 1px solid var(--automobex-line);
	border-radius: 8px;
	color: var(--automobex-muted);
	padding: 24px;
}

.automobex-detail-wrap {
	color: var(--automobex-ink);
	margin: 0 auto;
	max-width: 1050px;
	padding: 36px 20px 70px;
}

.automobex-detail-wrap [hidden] {
	display: none !important;
}

.automobex-detail-hero {
	background: linear-gradient(120deg, #0b253d, #2d419a);
	border-radius: 18px;
	box-shadow: var(--automobex-shadow);
	color: #fff;
	margin-bottom: 28px;
	padding: 36px 32px;
}

.automobex-detail-back {
	align-items: center;
	color: #cfe0f5;
	display: inline-flex;
	font-size: 13px;
	font-weight: 700;
	gap: 7px;
	margin-bottom: 14px;
	text-decoration: none;
}

.automobex-detail-back:hover {
	color: #fff;
}

.automobex-detail-hero h1 {
	color: #fff;
	font-size: 34px;
	font-weight: 950;
	line-height: 1.1;
	margin: 0;
	text-transform: uppercase;
}

.automobex-detail {
	align-items: start;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, 1.65fr) 370px;
}

.automobex-detail-main {
	min-width: 0;
}

.automobex-detail-gallery {
	background: #fff;
	border: 1px solid var(--automobex-line);
	border-radius: 18px;
	box-shadow: 0 1px 0 rgba(14, 38, 64, .05);
	padding: 28px 24px 18px;
}

.automobex-detail-main-image {
	aspect-ratio: 1.52;
	background: #dbe5ef;
	border-radius: 16px;
	overflow: hidden;
}

.automobex-detail-main-image img,
.automobex-detail-noimage {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.automobex-detail-noimage {
	align-items: center;
	color: #62748a;
	display: flex;
	font-weight: 800;
	justify-content: center;
}

.automobex-detail-thumbs {
	display: flex;
	gap: 12px;
	margin-top: 14px;
	overflow-x: auto;
	padding-bottom: 12px;
	scrollbar-color: #8b8f94 transparent;
}

.automobex-detail-thumb {
	background: transparent;
	border: 0;
	border-radius: 8px;
	cursor: pointer;
	flex: 0 0 70px;
	height: 54px;
	overflow: hidden;
	padding: 0;
}

.automobex-detail-thumb img {
	border: 3px solid #e9f0f7;
	border-radius: 8px;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.automobex-detail-thumb.is-active img,
.automobex-detail-thumb:hover img {
	border-color: var(--automobex-blue);
}

.automobex-detail-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 24px 0;
}

.automobex-detail-chips span {
	background: #eaf4ff;
	border-radius: 999px;
	color: #18314a;
	font-size: 14px;
	font-weight: 950;
	padding: 10px 15px;
}

.automobex-detail-tabs {
	border-bottom: 1px solid #dbe6f2;
	display: flex;
	gap: 28px;
	margin-bottom: 18px;
}

.automobex-detail-tabs button {
	background: none;
	border: 0;
	border-bottom: 3px solid transparent;
	color: #6d7d8f;
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	font-weight: 950;
	margin-bottom: -1px;
	padding: 0 0 14px;
}

.automobex-detail-tabs button.is-active,
.automobex-detail-tabs button:hover {
	border-bottom-color: var(--automobex-blue);
	color: var(--automobex-ink);
}

.automobex-detail-copy {
	color: #284057;
	font-size: 16px;
	line-height: 1.7;
}

.automobex-detail-copy h2 {
	color: var(--automobex-ink);
	font-size: 22px;
	margin: 28px 0 12px;
}

.automobex-detail-copy ul {
	padding-left: 22px;
}

.automobex-detail-specs table {
	background: #fff;
	border: 1px solid var(--automobex-line);
	border-collapse: collapse;
	border-radius: 10px;
	margin-top: 6px;
	overflow: hidden;
	width: 100%;
}

.automobex-detail-specs th,
.automobex-detail-specs td {
	border-bottom: 1px solid #edf2f7;
	color: #34495f;
	font-size: 16px;
	padding: 15px 18px;
	text-align: left;
}

.automobex-detail-specs th {
	color: #647486;
	font-weight: 900;
	width: 230px;
}

.automobex-detail-sidebar {
	display: grid;
	gap: 18px;
	position: sticky;
	top: 24px;
}

.automobex-detail-price-card {
	background: linear-gradient(135deg, #2d419a, #0f4077);
	border-radius: 16px;
	box-shadow: 0 14px 30px rgba(20, 35, 90, .25);
	color: #fff;
	padding: 26px 28px;
}

.automobex-detail-price-label {
	color: #b9c7f2;
	display: block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.automobex-detail-price-card strong {
	display: block;
	font-size: 38px;
	font-weight: 950;
	line-height: 1.1;
	margin-top: 8px;
}

.automobex-detail-price-sub {
	color: #c9d6f5;
	display: block;
	font-size: 13px;
	margin-top: 6px;
}

.automobex-detail-price-week {
	background: rgba(255, 255, 255, .14);
	border: 1px solid rgba(255, 255, 255, .25);
	border-radius: 999px;
	display: inline-block;
	font-size: 13px;
	font-weight: 800;
	margin-top: 16px;
	padding: 8px 14px;
}

.automobex-detail-panel {
	background: #fff;
	border: 1px solid var(--automobex-line);
	border-radius: 8px;
	padding: 24px;
}

.automobex-detail-panel h2 {
	color: var(--automobex-ink);
	font-size: 22px;
	font-weight: 950;
	margin: 0 0 20px;
}

.automobex-detail-form {
	display: grid;
	gap: 13px;
}

.automobex-detail-form label {
	color: #3c4d5f;
	display: grid;
	font-size: 13px;
	font-weight: 400;
	gap: 8px;
}

.automobex-detail-form input,
.automobex-detail-form select,
.automobex-detail-form textarea {
	background: #f7f9fc;
	border: 0;
	border-radius: 12px;
	color: #26384d;
	font: inherit;
	padding: 14px;
	width: 100%;
}

.automobex-detail-form select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, #607286 50%), linear-gradient(135deg, #607286 50%, transparent 50%);
	background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
	background-repeat: no-repeat;
	background-size: 5px 5px, 5px 5px;
	padding-right: 30px;
}

.automobex-phone-row {
	align-items: stretch;
	background: #f7f9fc;
	border: 1px solid transparent;
	border-radius: 12px;
	display: flex;
	overflow: hidden;
	transition: border-color .16s ease, box-shadow .16s ease;
}

.automobex-phone-row:focus-within {
	border-color: var(--automobex-blue);
	box-shadow: 0 0 0 3px rgba(74, 149, 223, .15);
}

.automobex-detail-form .automobex-phone-row select {
	appearance: none !important;
	-webkit-appearance: none !important;
	background-color: #e9eff7 !important;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23607286' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
	background-position: right 10px center !important;
	background-repeat: no-repeat !important;
	background-size: 10px 6px !important;
	border: 0 !important;
	border-radius: 0 !important;
	border-right: 1px solid #dfe8f2 !important;
	box-shadow: none !important;
	color: #33475c !important;
	cursor: pointer;
	flex: 0 0 auto;
	font-size: 13px !important;
	font-weight: 600;
	height: auto !important;
	line-height: normal !important;
	margin: 0 !important;
	max-width: 132px;
	outline: none !important;
	overflow: hidden;
	padding: 14px 28px 14px 13px !important;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: auto !important;
}

.automobex-detail-form .automobex-phone-row input {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	flex: 1;
	height: auto !important;
	margin: 0 !important;
	min-width: 0;
	outline: none !important;
}

.automobex-detail-form textarea {
	min-height: 120px;
	resize: vertical;
}

.automobex-detail-form button {
	align-items: center;
	background: var(--automobex-btn-bg);
	border: 0;
	border-radius: 8px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-size: 16px;
	font-weight: 950;
	justify-content: center;
	min-height: 52px;
	text-decoration: none;
	transition: background .16s ease;
	width: 100%;
}

.automobex-detail-form button:hover {
	background: var(--automobex-btn-bg-dark);
}

.automobex-enquiry-notice {
	border-radius: 8px;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.45;
	margin: -4px 0 16px;
	padding: 12px 14px;
}

.automobex-enquiry-success {
	background: #e9f8ef;
	color: #176b37;
}

.automobex-enquiry-error {
	background: #fff1f1;
	color: #9d1f1f;
}

.automobex-detail-privacy,
.automobex-detail-finance p {
	color: #8a98a8;
	font-size: 12px;
	line-height: 1.5;
	margin: 18px 0 0;
	text-align: center;
}

.automobex-finance-label {
	color: #7b8a9a;
	display: block;
	font-size: 12px;
	font-weight: 800;
	margin: 16px 0 8px;
	text-transform: uppercase;
}

.automobex-finance-amount,
.automobex-detail-stepper {
	background: #f4f7fb;
	border-radius: 8px;
	color: #253b52;
	font-weight: 950;
	min-height: 44px;
}

.automobex-finance-amount {
	align-items: center;
	border: 1px solid var(--automobex-line);
	display: flex;
	gap: 4px;
	padding: 0 14px;
}

.automobex-finance-amount input {
	appearance: textfield;
	background: transparent;
	border: 0;
	color: inherit;
	flex: 1;
	font: inherit;
	min-width: 0;
	outline: none;
	padding: 0;
	width: 100%;
}

.automobex-finance-amount input::-webkit-outer-spin-button,
.automobex-finance-amount input::-webkit-inner-spin-button {
	appearance: none;
	margin: 0;
}

.automobex-detail-stepper {
	display: grid;
	grid-template-columns: 44px 1fr 44px;
	overflow: hidden;
}

.automobex-detail-stepper button {
	align-items: center;
	background: var(--automobex-blue);
	border: 0;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-size: 20px;
	justify-content: center;
	transition: background .16s ease;
}

.automobex-detail-stepper button:hover {
	background: var(--automobex-blue-dark);
}

.automobex-detail-stepper strong {
	align-items: center;
	display: flex;
	justify-content: center;
}

.automobex-detail-weekly {
	margin: 24px 0 18px;
}

.automobex-detail-weekly strong {
	color: var(--automobex-ink);
	display: block;
	font-size: 34px;
	font-weight: 950;
	line-height: 1;
}

.automobex-detail-weekly span {
	color: #6b7b8d;
	display: block;
	font-size: 13px;
	margin-top: 5px;
}

.automobex-finance-monthly b {
	color: var(--automobex-ink);
	font-weight: 800;
}

.automobex-detail-main-image {
	cursor: zoom-in;
}

.automobex-lightbox {
	align-items: center;
	background: rgba(7, 16, 28, .93);
	display: flex;
	inset: 0;
	justify-content: center;
	position: fixed;
	z-index: 99999;
}

.automobex-lightbox img {
	border-radius: 8px;
	max-height: 85vh;
	max-width: 90vw;
	object-fit: contain;
}

.automobex-lightbox-close,
.automobex-lightbox-nav {
	align-items: center;
	background: rgba(255, 255, 255, .12);
	border: 0;
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-size: 22px;
	height: 46px;
	justify-content: center;
	position: absolute;
	width: 46px;
}

.automobex-lightbox-close:hover,
.automobex-lightbox-nav:hover {
	background: rgba(255, 255, 255, .28);
}

.automobex-lightbox-close {
	right: 22px;
	top: 22px;
}

.automobex-lightbox-prev {
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
}

.automobex-lightbox-next {
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
}

.automobex-lightbox-count {
	bottom: 22px;
	color: #cfe0f5;
	font-size: 13px;
	font-weight: 700;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
}

/* Existing single vehicle fallback styles. */
.automobex-single {
	background: var(--automobex-bg);
	color: var(--automobex-ink);
	margin: 0 auto;
	max-width: 1200px;
	padding: 40px 16px;
}

.automobex-back-link {
	color: var(--automobex-ink);
	display: inline-flex;
	font-weight: 700;
	margin-bottom: 18px;
	text-decoration: none;
}

.automobex-single-hero {
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
	margin-bottom: 24px;
}

.automobex-single-media {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}

.automobex-single-media img,
.automobex-single-noimage {
	aspect-ratio: 16 / 10;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.automobex-single-noimage {
	align-items: center;
	color: #667;
	display: flex;
	justify-content: center;
}

.automobex-single-summary {
	background: #fff;
	border: 1px solid var(--automobex-line);
	border-radius: 8px;
	padding: 22px;
}

.automobex-single-summary h1 {
	color: var(--automobex-ink);
	font-size: 34px;
	font-weight: 800;
	line-height: 1.08;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.automobex-single-stock {
	color: var(--automobex-muted);
	font-weight: 700;
	margin: 0 0 22px;
}

.automobex-weekly-price {
	color: var(--automobex-ink);
	font-size: 39px;
	font-weight: 800;
	line-height: 1;
	margin: 0;
	text-transform: uppercase;
}

.automobex-weekly-price span {
	font-size: .78em;
}

.automobex-drive-price {
	color: var(--automobex-ink);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.15;
	margin: 4px 0 0;
	text-transform: uppercase;
}

.automobex-gallery {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	margin: 16px 0;
}

.automobex-gallery img {
	border-radius: 6px;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.automobex-single-section {
	background: #fff;
	border: 1px solid var(--automobex-line);
	border-radius: 8px;
	margin-top: 20px;
	padding: 22px;
}

.automobex-single-section h2 {
	color: var(--automobex-ink);
	font-size: 24px;
	margin: 0 0 14px;
}

.automobex-spec-table {
	border-collapse: collapse;
	margin: 16px 0;
	width: 100%;
}

.automobex-spec-table th,
.automobex-spec-table td {
	border-bottom: 1px solid #eee;
	padding: 8px 12px;
	text-align: left;
}

.automobex-spec-table th {
	color: #555;
	font-weight: 600;
	width: 200px;
}

@media ( max-width: 900px ) {
	.automobex-filter-panel {
		grid-template-areas:
			"search search"
			"make model"
			"sort sort"
			"actions actions";
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.automobex-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.automobex-single-hero {
		grid-template-columns: 1fr;
	}
	.automobex-detail {
		grid-template-columns: 1fr;
	}
	.automobex-detail-sidebar {
		position: static;
	}
}

@media ( max-width: 600px ) {
	.automobex-stock-list {
		padding: 0 14px 32px;
	}
	.automobex-filter-panel {
		grid-template-areas:
			"search"
			"make"
			"model"
			"sort"
			"actions";
		grid-template-columns: 1fr;
	}
	.automobex-grid {
		grid-template-columns: 1fr;
	}
	.automobex-filter-actions {
		display: grid;
	}
	.automobex-pagination {
		gap: 12px;
	}
	.automobex-detail-wrap {
		padding: 20px 14px 40px;
	}
	.automobex-detail-hero {
		padding: 24px 18px;
	}
	.automobex-detail-hero h1 {
		font-size: 24px;
	}
	.automobex-detail-gallery,
	.automobex-detail-panel {
		padding: 16px;
	}
	.automobex-detail-tabs {
		gap: 18px;
		overflow-x: auto;
	}
	.automobex-detail-specs th,
	.automobex-detail-specs td {
		display: block;
		width: 100%;
	}
	.automobex-detail-specs th {
		border-bottom: 0;
		padding-bottom: 4px;
	}
	.automobex-detail-specs td {
		padding-top: 4px;
	}
}
