.aci-listings {
	display: grid;
	gap: 18px;
	margin: 36px auto;
	max-width: 1180px;
	width: min(75vw, 1180px);
}

.aci-card {
	background: #fff;
	border: 1px solid #dde2e8;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(17, 24, 39, 0.08);
	overflow: hidden;
	transition: box-shadow 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.aci-card:hover,
.aci-card:focus-within {
	border-color: #cbd5e1;
	box-shadow: 0 10px 24px rgba(17, 24, 39, 0.12);
	transform: translateY(-1px);
}

.aci-card-link {
	color: inherit;
	display: grid;
	grid-template-columns: minmax(280px, 38%) 1fr;
	min-height: 240px;
	text-decoration: none;
}

.aci-card-link:hover h3,
.aci-card-link:focus h3 {
	color: #2480c8;
}

.aci-media {
	background: #f3f4f6;
	display: grid;
	grid-template-columns: 1fr 74px;
	min-height: 240px;
	position: relative;
}

.aci-main-image {
	display: block;
	height: 100%;
	min-height: 240px;
	object-fit: cover;
	width: 100%;
}

.aci-image-placeholder {
	align-items: center;
	color: #6b7280;
	display: flex;
	font-size: 14px;
	justify-content: center;
	min-height: 240px;
}

.aci-photo-count {
	background: rgba(17, 24, 39, 0.78);
	border-radius: 6px;
	bottom: 10px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	left: 10px;
	line-height: 1;
	padding: 7px 9px;
	position: absolute;
}

.aci-thumbs {
	background: #f8fafc;
	display: grid;
	gap: 4px;
	padding: 4px;
}

.aci-thumbs img {
	aspect-ratio: 1 / 1;
	border: 2px solid transparent;
	border-radius: 4px;
	cursor: pointer;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.aci-thumbs img:hover,
.aci-thumbs img:focus {
	border-color: #f47b20;
}

.aci-card-body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 22px 24px;
}

.aci-card-meta {
	color: #8a8f98;
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	gap: 6px 10px;
	line-height: 1.2;
}

.aci-card-meta span:not(:last-child)::after {
	color: #c4c9d0;
	content: "•";
	margin-left: 10px;
}

.aci-card-heading {
	align-items: start;
	display: flex;
	gap: 16px;
	justify-content: space-between;
}

.aci-card h3 {
	color: #111827;
	font-size: 24px;
	line-height: 1.18;
	margin: 0;
}

.aci-price {
	color: #2480c8;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.1;
	white-space: nowrap;
}

.aci-summary {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	line-height: 1.2;
}

.aci-summary span {
	align-items: center;
	background: #eef3f8;
	border-radius: 5px;
	color: #4b5563;
	display: inline-flex;
	font-size: 14px;
	padding: 6px 8px;
}

.aci-summary span:not(:last-child)::after {
	content: none;
}

.aci-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.aci-badges span {
	background: #eef7f1;
	border-radius: 6px;
	color: #247044;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 8px;
	text-transform: uppercase;
}

.aci-card-footer {
	align-items: end;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin-top: auto;
}

.aci-card-cta {
	background: #111827;
	border-radius: 6px;
	color: #fff;
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	padding: 10px 14px;
	white-space: nowrap;
}

.aci-card-link:hover .aci-card-cta,
.aci-card-link:focus .aci-card-cta {
	background: #000;
}

.aci-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-top: 20px;
}

.aci-pagination .page-numbers {
	border: 1px solid #d8dde3;
	border-radius: 6px;
	color: #111827;
	padding: 8px 12px;
	text-decoration: none;
}

.aci-pagination .current {
	background: #111827;
	border-color: #111827;
	color: #fff;
}

.aci-empty {
	background: #f8fafc;
	border: 1px solid #d8dde3;
	border-radius: 8px;
	padding: 18px;
}

.aci-detail {
	color: #111827;
	margin: 48px auto 72px;
	max-width: 1180px;
	width: min(75vw, 1180px);
}

.aci-sold-notice {
	background: #fff7ed;
	border: 1px solid #fed7aa;
	border-left: 6px solid #f97316;
	border-radius: 10px;
	box-shadow: 0 8px 22px rgba(124, 45, 18, 0.08);
	color: #7c2d12;
	display: grid;
	gap: 6px;
	margin: 0 0 20px;
	padding: 18px 20px;
}

.aci-sold-notice strong {
	font-size: 20px;
	line-height: 1.2;
}

.aci-sold-notice span {
	color: #9a3412;
	font-size: 15px;
	line-height: 1.45;
}

.aci-detail-is-missing .aci-detail-muted-content {
	filter: grayscale(0.9);
	opacity: 0.62;
}

.aci-detail-is-missing .aci-summary-card,
.aci-detail-is-missing .aci-detail-card,
.aci-detail-is-missing .aci-detail-gallery-card {
	background: #f8fafc;
	border-color: #e5e7eb;
	box-shadow: none;
}

.aci-detail-is-missing .aci-detail-price,
.aci-detail-is-missing .aci-highlight-icon {
	color: #6b7280;
}

.aci-detail-layout {
	display: grid;
	gap: 20px;
	grid-template-columns: minmax(0, 1fr) 360px;
	align-items: start;
}

.aci-detail-main {
	display: grid;
	gap: 18px;
	min-width: 0;
}

.aci-detail-sidebar {
	min-width: 0;
}

.aci-summary-card,
.aci-detail-card,
.aci-detail-gallery-card {
	background: #fff;
	border: 1px solid #dde2e8;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(17, 24, 39, 0.08);
	overflow: hidden;
}

.aci-summary-card {
	display: grid;
	gap: 14px;
	padding: 22px;
	position: sticky;
	top: 24px;
}

.aci-summary-year {
	color: #6b7280;
	font-size: 15px;
	line-height: 1;
}

.aci-summary-card h1 {
	font-size: 25px;
	line-height: 1.18;
	margin: -8px 0 0;
}

.aci-detail-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.aci-detail-facts span {
	background: #eef3f8;
	border-radius: 5px;
	color: #4b5563;
	font-size: 14px;
	line-height: 1.2;
	padding: 6px 8px;
}

.aci-seller-box {
	background: #f1f6fb;
	border-radius: 8px;
	display: grid;
	gap: 4px;
	margin: 2px -22px;
	padding: 16px 22px;
}

.aci-seller-box strong {
	color: #111827;
	font-size: 15px;
}

.aci-seller-box span {
	color: #6b7280;
	font-size: 14px;
}

.aci-detail-price {
	color: #2480c8;
	font-size: 34px;
	font-weight: 800;
	line-height: 1.1;
	margin: 4px 0;
	white-space: nowrap;
}

.aci-button {
	align-items: center;
	background: #fff;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	color: #111827;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	justify-content: center;
	line-height: 1.2;
	min-height: 40px;
	padding: 9px 14px;
	text-decoration: none;
	width: 100%;
}

.aci-button:hover,
.aci-button:focus {
	border-color: #f47b20;
	color: #b74900;
}

.aci-button-phone {
	background: #111827;
	border-color: #111827;
	color: #fff;
	gap: 8px;
}

.aci-button-phone:hover,
.aci-button-phone:focus {
	background: #000;
	border-color: #000;
	color: #fff;
}

.aci-detail-gallery-card {
	display: grid;
	gap: 10px;
	padding: 10px;
}

.aci-detail-main-image {
	aspect-ratio: 4 / 3;
	background: #f3f4f6;
	border-radius: 6px;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.aci-detail-thumbs {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding: 0 0 2px;
	scrollbar-width: thin;
}

.aci-detail-thumbs button {
	background: transparent;
	border: 0;
	border-radius: 6px;
	cursor: pointer;
	flex: 0 0 112px;
	margin: 0;
	padding: 0;
}

.aci-detail-thumbs img {
	aspect-ratio: 4 / 3;
	border: 2px solid transparent;
	border-radius: 6px;
	cursor: pointer;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.aci-detail-thumbs img:hover,
.aci-detail-thumbs img:focus {
	border-color: #f47b20;
}

.aci-detail-section {
	padding: 24px 30px;
}

.aci-detail-section h2 {
	font-size: 22px;
	line-height: 1.2;
	margin: 0 0 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid #dde2e8;
}

.aci-highlight-card {
	padding: 24px 30px;
}

.aci-highlight-grid {
	display: grid;
	gap: 24px 28px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.aci-highlight {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 2px 12px;
	align-items: center;
	min-width: 0;
}

.aci-highlight-icon {
	align-items: center;
	color: #1f8be5;
	display: flex;
	font-size: 24px;
	grid-row: span 2;
	height: 34px;
	justify-content: center;
	line-height: 1;
	width: 34px;
}

.aci-highlight-label {
	color: #8a8f98;
	font-size: 14px;
	line-height: 1.2;
}

.aci-highlight strong {
	color: #2f3339;
	font-size: 17px;
	line-height: 1.25;
}

.aci-warranty-card {
	align-items: center;
	display: flex;
	gap: 14px;
	padding: 22px 30px;
}

.aci-warranty-card .aci-highlight-icon {
	background: #35b9ef;
	border-radius: 50%;
	color: #fff;
	flex: 0 0 34px;
	font-size: 20px;
}

.aci-warranty-card span:not(.aci-highlight-icon) {
	color: #8a8f98;
	display: block;
	font-size: 14px;
}

.aci-warranty-card strong {
	color: #2f3339;
	display: block;
	font-size: 17px;
}

.aci-spec-groups {
	display: grid;
	gap: 22px;
	grid-template-columns: 1fr;
}

.aci-spec-group {
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
}

.aci-spec-group h3 {
	font-size: 17px;
	line-height: 1.25;
	margin: 0 0 12px;
}

.aci-spec-group dl {
	display: grid;
	gap: 0;
	margin: 0;
}

.aci-spec-group dl > div {
	border-top: 1px solid #edf0f3;
	display: grid;
	gap: 12px;
	grid-template-columns: minmax(180px, 38%) 1fr;
	padding: 10px 0;
}

.aci-spec-group dl > div:first-child {
	border-top: 0;
	padding-top: 0;
}

.aci-spec-group dl > div:last-child {
	padding-bottom: 0;
}

.aci-spec-group dt {
	color: #858b94;
	font-size: 14px;
	margin: 0;
}

.aci-spec-group dd {
	color: #111827;
	font-size: 14px;
	font-weight: 650;
	margin: 0;
	overflow-wrap: anywhere;
}

.aci-description {
	color: #1f2937;
	font-size: 16px;
	line-height: 1.65;
}

.aci-description p {
	margin: 0 0 12px;
}

.aci-description p:last-child {
	margin-bottom: 0;
}

.aci-feature-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.aci-feature-list span {
	background: #eef7f1;
	border-radius: 6px;
	color: #247044;
	font-size: 13px;
	font-weight: 700;
	padding: 7px 9px;
}

.aci-chatbot {
	bottom: 24px;
	color: #111827;
	font-family: inherit;
	position: fixed;
	right: 24px;
	z-index: 9999;
}

.aci-chatbot-toggle {
	align-items: center;
	background: #111827;
	border: 0;
	border-radius: 8px;
	box-shadow: 0 14px 32px rgba(17, 24, 39, 0.22);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	gap: 10px;
	line-height: 1.2;
	min-height: 48px;
	padding: 10px 16px 10px 10px;
}

.aci-chatbot-toggle:hover,
.aci-chatbot-toggle:focus {
	background: #000;
	outline: 2px solid #2480c8;
	outline-offset: 2px;
}

.aci-chatbot-toggle-icon {
	align-items: center;
	background: #2480c8;
	border-radius: 6px;
	color: #fff;
	display: inline-flex;
	font-size: 12px;
	height: 30px;
	justify-content: center;
	letter-spacing: 0;
	width: 30px;
}

.aci-chatbot-panel {
	background: #fff;
	border: 1px solid #d8dde3;
	border-radius: 8px;
	bottom: 64px;
	box-shadow: 0 24px 56px rgba(17, 24, 39, 0.22);
	display: grid;
	grid-template-rows: auto minmax(0, 1fr) auto;
	max-height: min(620px, calc(100vh - 120px));
	overflow: hidden;
	position: absolute;
	right: 0;
	width: min(390px, calc(100vw - 32px));
}

.aci-chatbot-panel[hidden] {
	display: none;
}

.aci-chatbot-header {
	align-items: center;
	background: #f8fafc;
	border-bottom: 1px solid #e5e7eb;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	padding: 14px 16px;
}

.aci-chatbot-header strong {
	display: block;
	font-size: 16px;
	line-height: 1.2;
}

.aci-chatbot-header span {
	color: #6b7280;
	display: block;
	font-size: 13px;
	line-height: 1.3;
	margin-top: 2px;
}

.aci-chatbot-close {
	align-items: center;
	background: transparent;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	color: #111827;
	cursor: pointer;
	display: inline-flex;
	font-size: 24px;
	height: 34px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	width: 34px;
}

.aci-chatbot-close:hover,
.aci-chatbot-close:focus {
	border-color: #2480c8;
	color: #155f9f;
}

.aci-chatbot-messages {
	background: #fff;
	display: grid;
	gap: 12px;
	max-height: 430px;
	overflow-y: auto;
	padding: 16px 14px;
	scrollbar-width: thin;
}

.aci-chatbot-message {
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.5;
	max-width: 90%;
	overflow-wrap: anywhere;
	padding: 12px 13px;
}

.aci-chatbot-message p {
	margin: 0 0 9px;
}

.aci-chatbot-message p:last-child {
	margin-bottom: 0;
}

.aci-chatbot-message-user {
	background: #111827;
	color: #fff;
	justify-self: end;
}

.aci-chatbot-message-assistant {
	background: #eef3f8;
	color: #1f2937;
	justify-self: start;
}

.aci-chatbot-message-thinking {
	align-items: center;
	display: inline-flex;
	gap: 8px;
}

.aci-chatbot-thinking-dots {
	display: inline-flex;
	gap: 4px;
}

.aci-chatbot-thinking-dots span {
	animation: aci-chatbot-thinking 1s infinite ease-in-out;
	background: #2480c8;
	border-radius: 50%;
	display: block;
	height: 6px;
	width: 6px;
}

.aci-chatbot-thinking-dots span:nth-child(2) {
	animation-delay: 120ms;
}

.aci-chatbot-thinking-dots span:nth-child(3) {
	animation-delay: 240ms;
}

.aci-chatbot-suggestions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-self: start;
	max-width: 100%;
}

.aci-chatbot-suggestion {
	background: #fff;
	border: 1px solid #d6e3ee;
	border-radius: 999px;
	color: #155f9f;
	cursor: pointer;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	padding: 7px 13px;
	text-align: left;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.aci-chatbot-suggestion:hover,
.aci-chatbot-suggestion:focus {
	border-color: #2480c8;
	box-shadow: 0 6px 14px rgba(36, 128, 200, 0.14);
	outline: 0;
}

.aci-chatbot-reference-cards {
	display: grid;
	gap: 9px;
	margin-top: 12px;
}

.aci-chatbot-reference-card {
	background: #fff;
	border: 1px solid #d6e3ee;
	border-radius: 8px;
	color: #111827;
	display: grid;
	gap: 10px;
	grid-template-columns: 72px minmax(0, 1fr);
	padding: 8px;
	text-decoration: none;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.aci-chatbot-reference-card:hover,
.aci-chatbot-reference-card:focus {
	border-color: #2480c8;
	box-shadow: 0 8px 18px rgba(36, 128, 200, 0.14);
	outline: 0;
}

.aci-chatbot-reference-media {
	background: #eef3f8;
	border-radius: 6px;
	color: #6b7280;
	display: block;
	font-size: 12px;
	font-weight: 700;
	height: 58px;
	line-height: 58px;
	overflow: hidden;
	text-align: center;
}

.aci-chatbot-reference-media img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.aci-chatbot-reference-body {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.aci-chatbot-reference-body strong {
	color: #111827;
	font-size: 14px;
	line-height: 1.25;
}

.aci-chatbot-reference-price {
	color: #2480c8;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
}

.aci-chatbot-reference-meta {
	color: #6b7280;
	font-size: 12px;
	line-height: 1.3;
}

.aci-chatbot-reference-cta {
	color: #155f9f;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
}

.aci-chatbot-contact {
	margin-top: 12px;
}

.aci-chatbot-contact-button {
	align-items: center;
	background: #2480c8;
	border-radius: 6px;
	color: #fff;
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
	justify-content: center;
	line-height: 1.2;
	min-height: 42px;
	padding: 10px 13px;
	text-align: center;
	text-decoration: none;
	width: 100%;
}

.aci-chatbot-contact-button:hover,
.aci-chatbot-contact-button:focus {
	background: #155f9f;
	color: #fff;
	outline: 0;
}

.aci-chatbot-form {
	align-items: end;
	background: #f8fafc;
	border-top: 1px solid #e5e7eb;
	display: grid;
	gap: 8px;
	grid-template-columns: minmax(0, 1fr) auto;
	padding: 12px;
}

.aci-chatbot-form textarea {
	background: #fff;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	box-sizing: border-box;
	color: #111827;
	font: inherit;
	font-size: 14px;
	line-height: 1.35;
	max-height: 120px;
	min-height: 44px;
	padding: 10px 11px;
	resize: vertical;
	width: 100%;
}

.aci-chatbot-form textarea:focus {
	border-color: #2480c8;
	box-shadow: 0 0 0 2px rgba(36, 128, 200, 0.14);
	outline: 0;
}

.aci-chatbot-form button {
	background: #2480c8;
	border: 0;
	border-radius: 6px;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	min-height: 44px;
	padding: 10px 14px;
}

.aci-chatbot-form button:hover,
.aci-chatbot-form button:focus {
	background: #155f9f;
}

.aci-chatbot-form button:disabled,
.aci-chatbot-form textarea:disabled {
	cursor: wait;
	opacity: 0.66;
}

@keyframes aci-chatbot-thinking {
	0%,
	80%,
	100% {
		opacity: 0.35;
		transform: translateY(0);
	}

	40% {
		opacity: 1;
		transform: translateY(-3px);
	}
}

@media (max-width: 1100px) {
	.aci-listings {
		max-width: none;
		width: min(100% - 32px, 900px);
	}

	.aci-detail {
		max-width: none;
		width: min(100% - 32px, 900px);
	}

	.aci-detail-layout {
		grid-template-columns: 1fr;
	}

	.aci-detail-sidebar {
		order: -1;
	}

	.aci-summary-card {
		position: static;
	}

	.aci-highlight-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	body.aci-chatbot-open {
		overflow: hidden;
	}

	.aci-listings {
		margin: 28px auto;
		width: min(100% - 24px, 640px);
	}

	.aci-card-link {
		grid-template-columns: 1fr;
	}

	.aci-media {
		grid-template-columns: 1fr;
	}

	.aci-thumbs {
		display: none;
	}

	.aci-card-heading {
		display: block;
	}

	.aci-price {
		margin-top: 8px;
		white-space: normal;
	}

	.aci-card-body {
		padding: 18px;
	}

	.aci-card h3 {
		font-size: 22px;
	}

	.aci-card-footer {
		align-items: stretch;
		flex-direction: column;
	}

	.aci-card-cta {
		justify-content: center;
	}

	.aci-detail {
		margin: 28px auto 48px;
		max-width: none;
		width: min(100% - 24px, 640px);
	}

	.aci-detail-price {
		font-size: 26px;
		white-space: normal;
	}

	.aci-highlight-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.aci-highlight-card,
	.aci-detail-section,
	.aci-warranty-card {
		padding: 18px;
	}

	.aci-detail-thumbs button {
		flex-basis: 82px;
	}

	.aci-spec-groups {
		grid-template-columns: 1fr;
	}

	.aci-spec-group dl > div {
		grid-template-columns: 1fr;
		gap: 3px;
	}

	.aci-chatbot {
		bottom: 14px;
		left: 12px;
		right: 12px;
	}

	.aci-chatbot.is-open {
		bottom: 0;
		height: 100vh;
		height: 100dvh;
		left: 0;
		right: 0;
		top: 0;
		width: 100%;
	}

	.aci-chatbot-toggle {
		justify-content: center;
		width: 100%;
	}

	.aci-chatbot.is-open .aci-chatbot-toggle {
		display: none;
	}

	.aci-chatbot.is-open .aci-chatbot-panel {
		border: 0;
		border-radius: 0;
		bottom: 0;
		box-shadow: none;
		height: 100vh;
		height: 100dvh;
		left: 0;
		max-height: none;
		position: fixed;
		right: 0;
		top: 0;
		width: 100%;
	}

	.aci-chatbot-header {
		padding: max(14px, env(safe-area-inset-top)) 14px 14px;
	}

	.aci-chatbot-close {
		flex: 0 0 44px;
		font-size: 28px;
		height: 44px;
		width: 44px;
	}

	.aci-chatbot-messages {
		max-height: none;
		min-height: 0;
		overscroll-behavior: contain;
		padding: 14px 12px;
	}

	.aci-chatbot-message {
		max-width: 94%;
	}

	.aci-chatbot-reference-card {
		grid-template-columns: 66px minmax(0, 1fr);
	}

	.aci-chatbot-reference-media {
		height: 54px;
	}

	.aci-chatbot-form {
		grid-template-columns: 1fr;
		padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
	}

	.aci-chatbot-form button {
		width: 100%;
	}

	.aci-chatbot-suggestions {
		align-items: stretch;
		flex-direction: column;
		gap: 7px;
		justify-self: stretch;
	}

	.aci-chatbot-suggestion {
		padding: 11px 14px;
		text-align: center;
		width: 100%;
	}
}
