.lch-grid,
.lch-calc {
	--lch-orange: #e8641e;
	--lch-orange-dark: #c14e12;
	--lch-wa: #1fa855;
	--lch-ink: #1c1b19;
	--lch-muted: #6b6a66;
	--lch-line: #ece9e2;
	--lch-bg: #ffffff;
	--lch-soft: #faf8f4;
	--lch-radius: 16px;
	--lch-shadow: 0 6px 24px rgba(28, 27, 25, 0.06);
	font-family: inherit;
	color: var(--lch-ink);
}

/* ---------- Grid ---------- */
.lch-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
@media (min-width: 560px) {
	.lch-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
	.lch-grid { grid-template-columns: repeat(3, 1fr); }
}

.lch-card {
	background: var(--lch-bg);
	border: 1px solid var(--lch-line);
	border-radius: var(--lch-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .2s ease, box-shadow .2s ease;
}
.lch-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--lch-shadow);
}

.lch-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--lch-soft);
}
.lch-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.lch-card__ph {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #f2efe9, #e9e5dd);
}
.lch-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: #fbe7da;
	color: var(--lch-orange-dark);
	font-size: 11px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 20px;
}

.lch-card__body {
	padding: 14px 16px 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}
.lch-card__title {
	margin: 0;
	font-size: 16px;
	line-height: 1.3;
	font-weight: 600;
}
.lch-card__title a {
	color: inherit;
	text-decoration: none;
}
.lch-card__desc {
	margin: 0;
	font-size: 13px;
	color: var(--lch-muted);
	line-height: 1.5;
}

.lch-specs {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 14px;
	font-size: 12px;
	color: var(--lch-muted);
}
.lch-specs li { position: relative; }
.lch-specs li + li::before {
	content: "";
	position: absolute;
	left: -8px;
	top: 3px;
	bottom: 3px;
	width: 1px;
	background: var(--lch-line);
}

.lch-price {
	margin: 2px 0 0;
	font-size: 18px;
	font-weight: 700;
}
.lch-price__from,
.lch-price__unit {
	font-size: 12px;
	font-weight: 500;
	color: var(--lch-muted);
}

.lch-actions {
	display: flex;
	gap: 8px;
	margin-top: auto;
	padding-top: 6px;
}

/* ---------- Buttons ---------- */
.lch-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	flex: 1;
	padding: 10px 14px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	border: 1px solid transparent;
	transition: transform .15s ease, background .15s ease, opacity .15s ease;
}
.lch-btn:active { transform: scale(.98); }
.lch-btn--ghost {
	background: #fff;
	color: var(--lch-ink);
	border-color: var(--lch-line);
}
.lch-btn--ghost:hover { border-color: #cfccc4; }
.lch-btn--wa {
	background: var(--lch-wa);
	color: #fff;
}
.lch-btn--wa:hover { opacity: .92; }
.lch-btn--full { flex: 1 1 100%; }

/* ---------- Calculator ---------- */
.lch-calc {
	max-width: 460px;
	background: var(--lch-bg);
	border: 1px solid var(--lch-line);
	border-radius: var(--lch-radius);
	padding: 18px;
	box-shadow: var(--lch-shadow);
}
.lch-calc__label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: var(--lch-muted);
	margin: 12px 0 6px;
}
.lch-calc__label:first-child { margin-top: 0; }
.lch-calc__car {
	margin: 0 0 4px;
	font-size: 18px;
	font-weight: 700;
}
.lch-select {
	width: 100%;
	padding: 11px 12px;
	border: 1px solid var(--lch-line);
	border-radius: 10px;
	background: #fff;
	font-size: 14px;
	color: var(--lch-ink);
	appearance: none;
}
.lch-select:focus {
	outline: none;
	border-color: var(--lch-orange);
	box-shadow: 0 0 0 3px rgba(232, 100, 30, .12);
}

.lch-days-wrap {
	margin-top: 12px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.lch-day {
	display: grid;
	grid-template-columns: 64px 1fr;
	align-items: center;
	gap: 10px;
}
.lch-day__label {
	font-size: 13px;
	font-weight: 600;
	color: var(--lch-muted);
}
.lch-day__std {
	font-size: 13px;
	color: var(--lch-muted);
}

.lch-summary {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px dashed var(--lch-line);
}
.lch-total {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 10px;
}
.lch-total__label {
	font-size: 12px;
	color: var(--lch-muted);
}
.lch-total__value {
	font-size: 22px;
	font-weight: 800;
	color: var(--lch-orange-dark);
}
.lch-inex {
	margin: 4px 0;
	font-size: 12px;
	color: var(--lch-muted);
}
.lch-inex strong { color: var(--lch-ink); }
.lch-disc {
	margin: 8px 0 0;
	font-size: 11px;
	font-style: italic;
	color: var(--lch-muted);
}

.lch-calc .lch-wa {
	margin-top: 14px;
	padding: 13px;
	font-size: 14px;
}

/* ---------- List layout (mode list) ---------- */
.lch-cars-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.lch-row {
	display: grid;
	grid-template-columns: 104px 1fr;
	gap: 14px;
	align-items: center;
	background: var(--lch-bg);
	border: 1px solid var(--lch-line);
	border-radius: 16px;
	padding: 12px;
	transition: transform .2s ease, box-shadow .2s ease;
}
.lch-row:hover { transform: translateY(-2px); box-shadow: var(--lch-shadow); }
.lch-row__media {
	display: block;
	width: 104px;
	aspect-ratio: 16 / 11;
	border-radius: 12px;
	overflow: hidden;
	background: var(--lch-soft);
}
.lch-row__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lch-row__body { min-width: 0; }
.lch-row__head { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 6px; }
.lch-row__title { margin: 0; font-size: 16px; font-weight: 700; }
.lch-row__title a { color: inherit; text-decoration: none; }
.lch-badge--inline { position: static; font-size: 10px; }
.lch-row__side {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border-top: 1px dashed var(--lch-line);
	padding-top: 12px;
}
.lch-price--sm { margin: 0; font-size: 16px; }
.lch-btn--sm { padding: 8px 14px; font-size: 12px; flex: none; }

@media (min-width: 680px) {
	.lch-row { grid-template-columns: 120px 1fr auto; }
	.lch-row__side {
		grid-column: auto;
		flex-direction: column;
		align-items: flex-end;
		gap: 8px;
		border-top: none;
		padding-top: 0;
		white-space: nowrap;
	}
}
