/* XC Customer — style khớp brand Xuân Cương (xanh #1f7a3d).
   Copy vào child theme nếu muốn tuỳ biến sâu, GIỮ TRONG GIT. */

:root {
	--xc-green: #1f7a3d;
	--xc-green-dark: #155f2e;
	--xc-green-soft: #f3f9f5;
	--xc-text: #1f2937;
	--xc-muted: #6b7280;
	--xc-border: #e5e7eb;
	--xc-danger: #dc2626;
}

/* ===== Layout 2 cột ===== */
.xc-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	min-height: calc(100vh - 0px);
	background: #fff;
	align-items: stretch;
}
.xc-col-form {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 48px 24px;
	background: #fff;
}
.xc-col-side {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 48px 24px;
	background: linear-gradient(180deg, #fafdfb 0%, #f4f9f5 100%);
	background-image:
		linear-gradient(rgba(31, 122, 61, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(31, 122, 61, 0.04) 1px, transparent 1px);
	background-size: 28px 28px;
}

/* ===== Card form ===== */
.xc-card {
	width: 100%;
	max-width: 460px;
	margin: 0;
	padding: 36px 36px 28px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}
.xc-title {
	text-align: center;
	color: var(--xc-green);
	font-weight: 800;
	letter-spacing: 1px;
	margin: 0 0 14px;
	font-size: 26px;
	position: relative;
}
.xc-title::after {
	content: '';
	display: block;
	width: 92px;
	height: 6px;
	margin: 14px auto 0;
	background:
		linear-gradient(var(--xc-green), var(--xc-green)) left center / 72px 2px no-repeat,
		radial-gradient(circle at right center, #d4a017 3px, transparent 4px) right center / 12px 6px no-repeat;
}
.xc-sub {
	text-align: center;
	color: var(--xc-muted);
	margin: 0 0 26px;
	font-size: 14px;
}

/* ===== Form ===== */
.xc-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.xc-form label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--xc-text);
}
.xc-lbl em {
	color: var(--xc-danger);
	font-style: normal;
	margin-left: 2px;
}
.xc-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.xc-input {
	position: relative;
	display: block;
}
.xc-form input[type='text'],
.xc-form input[type='tel'],
.xc-form input[type='email'],
.xc-form input[type='password'] {
	width: 100%;
	padding: 12px 42px 12px 14px;
	border: 1px solid var(--xc-border);
	border-radius: 10px;
	font-size: 14px;
	font-weight: 400;
	color: var(--xc-text);
	background: #fff;
	box-sizing: border-box;
	transition:
		border-color 0.15s,
		box-shadow 0.15s;
}
.xc-form input::placeholder {
	color: #9ca3af;
}
.xc-form input:focus {
	outline: none;
	border-color: var(--xc-green);
	box-shadow: 0 0 0 3px rgba(31, 122, 61, 0.12);
}
.xc-input-ic {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	color: #9ca3af;
	background: transparent;
	border: 0;
	padding: 0;
	cursor: default;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.xc-input-ic svg {
	width: 20px;
	height: 20px;
	display: block;
}
button.xc-input-ic {
	cursor: pointer;
}
button.xc-input-ic:hover {
	color: var(--xc-green);
}

/* ===== Checkbox + link line ===== */
.xc-check {
	flex-direction: row !important;
	align-items: flex-start;
	gap: 8px;
	font-weight: 400 !important;
	font-size: 13px;
	color: var(--xc-text);
	cursor: pointer;
}
.xc-check input[type='checkbox'] {
	appearance: none;
	-webkit-appearance: none;
	width: 18px;
	height: 18px;
	min-width: 18px;
	border: 1.5px solid #cbd5e1;
	border-radius: 4px;
	background: #fff;
	cursor: pointer;
	position: relative;
	margin: 1px 0 0;
	transition:
		background 0.15s,
		border-color 0.15s;
}
.xc-check input[type='checkbox']:checked {
	background: #2196f3;
	border-color: #2196f3;
}
.xc-check input[type='checkbox']:checked::after {
	content: '';
	position: absolute;
	left: 5px;
	top: 1px;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
.xc-check a {
	color: var(--xc-green);
	font-weight: 600;
}
.xc-between {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}
.xc-between > a {
	color: var(--xc-green);
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}

/* ===== Button ===== */
.xc-submit {
	margin-top: 6px;
	padding: 4px 12px;
	border: 0;
	border-radius: 10px;
	background: var(--xc-green);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.15s;
}
.xc-submit:hover {
	background: var(--xc-green-dark);
}
.xc-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* ===== Lỗi ===== */
.xc-err {
	background: #fdecea;
	color: #a8261a;
	padding: 11px 14px;
	border-radius: 8px;
	font-size: 13px;
	margin: 0 0 16px;
}
input.xc-input-error,
select.xc-input-error,
textarea.xc-input-error {
	border-color: #d9534f !important;
	background: #fef1f0 !important;
}
input.xc-input-error:focus,
select.xc-input-error:focus,
textarea.xc-input-error:focus {
	outline-color: #d9534f;
	box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.15);
}

/* ===== Spinner cho nút submit ===== */
@keyframes xc-spin {
	to { transform: rotate(360deg); }
}
.xc-spinner {
	display: inline-block;
	width: 14px;
	height: 14px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: xc-spin 0.6s linear infinite;
	vertical-align: -3px;
	margin-right: 6px;
}

/* ===== Footer alt link ===== */
.xc-alt {
	text-align: center;
	font-size: 13px;
	color: var(--xc-muted);
	margin: 22px 0 0;
	padding-top: 18px;
	border-top: 1px solid #f1f5f9;
}
.xc-alt a {
	color: var(--xc-green);
	font-weight: 700;
}
.cf-turnstile {
	margin: 4px 0;
}

/* ===== Marketing panel bên phải ===== */
.xc-side {
	width: 100%;
	max-width: 580px;
}
.xc-side-head {
	text-align: center;
	margin-bottom: 28px;
	padding: 0 16px;
}
.xc-side-title {
	color: var(--xc-green);
	font-size: 22px;
	font-weight: 800;
	letter-spacing: 0.5px;
	margin: 0 0 14px;
	line-height: 1.4;
}
.xc-side-sub {
	color: var(--xc-text);
	font-size: 14px;
	margin: 0;
	line-height: 1.6;
}
.xc-side-head::after {
	content: '';
	display: block;
	width: 92px;
	height: 6px;
	margin: 18px auto 0;
	background:
		linear-gradient(var(--xc-green), var(--xc-green)) left center / 72px 2px no-repeat,
		radial-gradient(circle at right center, #d4a017 3px, transparent 4px) right center / 12px 6px no-repeat;
}
.xc-side-illu {
	background: #fff;
	border-radius: 18px;
	padding: 12px;
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
	border: 1px solid #eef2f0;
}
.xc-side-illu img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 12px;
}

/* ===========================================================================
 *  Màn 1 — Danh sách dịch vụ (card)
 * ========================================================================= */
.xc-services {
	max-width: 1400px;
	margin: 32px auto;
	padding: 0 16px;
}
.xc-svc-head {
	text-align: center;
	margin-bottom: 32px;
}
.xc-svc-head h2 {
	color: var(--xc-green);
	font-weight: 800;
	letter-spacing: 0.5px;
	display: inline-block;
	font-size: 22px;
	margin: 0;
}
.xc-svc-head h2::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	margin: 10px auto 0;
	background:
		linear-gradient(var(--xc-green), var(--xc-green)) left center / 60px 2px no-repeat,
		radial-gradient(circle at right center, #d4a017 3px, transparent 4px) right center / 12px 4px no-repeat;
}
.xc-svc-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}
.xc-svc-card {
	background: #fff;
	border: 1px solid #eef0ef;
	border-radius: 14px;
	padding: 26px 18px 22px;
	text-align: center;
	box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	transition:
		transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
		box-shadow 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
		border-color 0.28s ease;
	will-change: transform, box-shadow;
}
.xc-svc-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 32px rgba(31, 122, 61, 0.14);
	border-color: #dcebe1;
}
.xc-svc-ic {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #f0e4b8;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	margin: 4px 0 2px;
}
.xc-svc-card h3 {
	color: var(--xc-green);
	font-size: 14px;
	font-weight: 800;
	margin: 2px 0 0;
	letter-spacing: 0.4px;
}
.xc-svc-card p {
	color: var(--xc-muted);
	font-size: 13px;
	line-height: 1.6;
	margin: 0;
	flex: 1;
}
.xc-svc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #fff;
	color: #222 !important;
	padding: 5px 12px;
	border: 1px solid #9b9b9ba9;
	border-radius: 8px;
	font-size: 13px;
	text-decoration: none;
	box-shadow: 0 3px 10px rgba(31, 122, 61, 0.18);
	font-weight: 400;
	font-size: 13px;
}
/* .xc-svc-btn::before {
	content: '🗓';
	font-size: 14px;
} */
.xc-svc-btn::after {
	content: '→';
	font-size: 14px;
	margin-left: 2px;
}
.xc-svc-btn:hover {
	background: var(--xc-green);
	color: #fff !important;
}

/* ===========================================================================
 *  Form đặt dịch vụ (đầy đủ)
 * ========================================================================= */
.xc-order {
	max-width: 920px;
	margin: 24px auto;
	padding: 0 16px;
}
.xc-otitle {
	text-align: center;
	color: var(--xc-text);
	font-weight: 800;
	font-size: 28px;
	margin: 0 0 24px;
}
.xc-ok {
	background: var(--xc-green-soft);
	color: var(--xc-green);
	padding: 12px 16px;
	border-radius: 8px;
	margin-bottom: 16px;
	font-weight: 600;
}
.xc-oform {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.xc-sec {
	border: 1px solid var(--xc-border);
	border-radius: 12px;
	padding: 20px 24px;
	margin: 0;
}
.xc-sec legend {
	color: var(--xc-green);
	font-weight: 800;
	font-size: 15px;
	padding: 0 8px;
	letter-spacing: 0.3px;
}
.xc-grid {
	display: grid;
	gap: 16px;
	margin-top: 12px;
}
.xc-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}
.xc-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}
.xc-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}
.xc-oform label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--xc-text);
}
.xc-oform label.xc-inline {
	flex-direction: row;
	align-items: center;
	gap: 8px;
	font-weight: 400;
	display: inline-flex;
	margin-right: 24px;
}
/* Đồng bộ mọi input/select trong form — chặn theme override
   Selector .xc-order .xc-oform … để tăng specificity, thắng phần lớn theme.
   LOẠI TRỪ radio/checkbox — chúng giữ style native. */
.xc-order .xc-oform input:not([type="radio"]):not([type="checkbox"]),
.xc-order .xc-oform select,
.xc-order .xc-oform textarea {
	width: 100%;
	height: 44px;
	padding: 10px 12px !important;
	border: 1px solid var(--xc-border) !important;
	border-radius: 10px !important;
	background-color: #fff !important;
	background-image: none !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	color: var(--xc-text) !important;
	line-height: 1.4 !important;
	box-sizing: border-box;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	box-shadow: none !important;
	margin: 0 !important;
}
.xc-order .xc-oform textarea {
	height: auto;
	min-height: 88px;
	resize: vertical;
}
/* Mũi tên xổ tùy chỉnh cho select (đã tắt appearance) */
.xc-order .xc-oform select {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%236b7280' stroke-width='2' d='M1 1l5 5 5-5'/></svg>") !important;
	background-repeat: no-repeat !important;
	background-position: right 14px center !important;
	padding-right: 36px !important;
}
.xc-order .xc-oform input:not([type="radio"]):not([type="checkbox"]):focus,
.xc-order .xc-oform select:focus,
.xc-order .xc-oform textarea:focus {
	outline: none !important;
	border-color: var(--xc-green) !important;
	box-shadow: 0 0 0 3px rgba(31, 122, 61, 0.12) !important;
}
/* Trạng thái readonly / disabled — chỉ đổi nền, giữ nguyên border/radius */
.xc-order .xc-oform input:not([type="radio"]):not([type="checkbox"])[readonly],
.xc-order .xc-oform input:not([type="radio"]):not([type="checkbox"]):disabled,
.xc-order .xc-oform select:disabled,
.xc-order .xc-oform textarea[readonly],
.xc-order .xc-oform textarea:disabled {
	background-color: #f9fafb !important;
	color: #4b5563 !important;
	cursor: not-allowed;
}
.xc-order .xc-oform input:not([type="radio"]):not([type="checkbox"])::placeholder,
.xc-order .xc-oform textarea::placeholder {
	color: #9ca3af !important;
	opacity: 1 !important;
}
.xc-invoice {
	margin-bottom: 4px;
}
.xc-subbox {
	border: 1px solid var(--xc-border);
	border-radius: 10px;
	padding: 16px 18px;
	margin-bottom: 16px;
}
.xc-subhead {
	font-weight: 700;
	color: var(--xc-text);
	border-left: 3px solid #d4a017;
	padding-left: 10px;
	margin-bottom: 12px;
}

/* Tag input biển số */
.xc-tagfield {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	padding: 6px 8px;
	border: 1px solid var(--xc-border);
	border-radius: 8px;
	min-height: 40px;
	background: #fff;
	cursor: text;
}
.xc-chip {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: var(--xc-green-soft);
	color: var(--xc-green);
	border: 1px solid #cde9d6;
	border-radius: 6px;
	padding: 2px 6px;
	font-size: 13px;
	font-weight: 600;
}
.xc-chip-x {
	border: 0;
	background: transparent;
	color: var(--xc-green);
	cursor: pointer;
	font-size: 15px;
	line-height: 1;
}
.xc-tag-input {
	border: 0 !important;
	outline: none;
	flex: 1;
	min-width: 140px;
	padding: 4px !important;
	font-size: 14px;
}

/* Danh sách biển số + loại xe (form đăng ký) */
.xc-vlist {
	margin: 4px 0 6px;
}
.xc-vlist-lbl {
	font-size: 13px;
	font-weight: 600;
	color: #374151;
	margin-bottom: 6px;
}
.xc-vlist-hint {
	font-weight: 400;
	color: #6b7280;
	font-size: 12px;
}
/* Bảng biển số + loại xe — dùng <table> để chặn theme override display */
.xc-order .xc-oform .xc-vtable {
	width: 100% !important;
	border-collapse: separate !important;
	border-spacing: 0 6px !important;
	margin: 0 !important;
	background: transparent !important;
	border: 0 !important;
}
.xc-order .xc-oform .xc-vtable thead th {
	text-align: left !important;
	font-size: 12px !important;
	color: #6b7280 !important;
	font-weight: 600 !important;
	padding: 6px 8px 8px !important;
	border: 0 !important;
	border-bottom: 1px dashed var(--xc-border) !important;
	background: transparent !important;
}
.xc-order .xc-oform .xc-vtable tbody td {
	padding: 0 4px !important;
	vertical-align: middle !important;
	background: transparent !important;
	border: 0 !important;
}
.xc-order .xc-oform .xc-vtable tbody td:first-child { padding-left: 0 !important; }
.xc-order .xc-oform .xc-vtable tbody td:last-child  { padding-right: 0 !important; text-align: center !important; }
/* Đè lại style pill mà theme áp cho input/select trong <td> */
.xc-order .xc-oform .xc-vtable td input,
.xc-order .xc-oform .xc-vtable td select {
	width: 100% !important;
	height: 44px !important;
	padding: 10px 12px !important;
	border: 1px solid var(--xc-border) !important;
	border-radius: 10px !important;
	background-color: #fff !important;
	background-image: none !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	color: var(--xc-text) !important;
	line-height: 1.4 !important;
	box-sizing: border-box !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	box-shadow: none !important;
	margin: 0 !important;
}
.xc-order .xc-oform .xc-vtable td select {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%236b7280' stroke-width='2' d='M1 1l5 5 5-5'/></svg>") !important;
	background-repeat: no-repeat !important;
	background-position: right 14px center !important;
	padding-right: 36px !important;
}
.xc-vrow-idx {
	text-align: center;
	color: #6b7280;
	font-weight: 600;
	font-size: 13px;
}
.xc-order .xc-oform .xc-vlist .xc-vrow-x {
	all: unset;
	box-sizing: border-box !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	border: 0 !important;
	background: #fff5f5 !important;
	color: #dc2626 !important;
	font-size: 18px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	cursor: pointer !important;
	border-radius: 8px !important;
	height: 36px !important;
	width: 36px !important;
	padding: 0 !important;
	margin: 0 !important;
	min-height: 0 !important;
	min-width: 0 !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	font-family: inherit !important;
}
.xc-order .xc-oform .xc-vlist .xc-vrow-x:hover:not(:disabled) {
	background: #fee2e2 !important;
}
.xc-order .xc-oform .xc-vlist .xc-vrow-x:disabled {
	opacity: .35;
	cursor: not-allowed !important;
}
.xc-order .xc-oform .xc-vlist .xc-vadd {
	all: unset;
	box-sizing: border-box !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 6px !important;
	margin-top: 12px !important;
	background: #fff !important;
	border: 1px dashed var(--xc-green) !important;
	color: var(--xc-green) !important;
	padding: 10px 18px !important;
	border-radius: 8px !important;
	cursor: pointer !important;
	font-weight: 600 !important;
	font-size: 13px !important;
	line-height: 1 !important;
	height: auto !important;
	width: auto !important;
	min-height: 0 !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	font-family: inherit !important;
	box-shadow: none !important;
}
.xc-order .xc-oform .xc-vlist .xc-vadd:hover:not(:disabled) {
	background: var(--xc-green-soft) !important;
}
.xc-order .xc-oform .xc-vlist .xc-vadd:disabled {
	opacity: .4;
	cursor: not-allowed !important;
}
@media (max-width: 640px) {
	.xc-vtable thead { display: none; }
	.xc-vtable tbody tr {
		display: grid;
		grid-template-columns: 32px 1fr 40px;
		grid-template-areas: "idx plate x" "idx type type";
		gap: 6px;
		margin-bottom: 8px;
	}
	.xc-vtable tbody td { display: block; padding: 0 !important; }
	.xc-vtable tbody td:nth-child(1) { grid-area: idx; align-self: center; }
	.xc-vtable tbody td:nth-child(2) { grid-area: plate; }
	.xc-vtable tbody td:nth-child(3) { grid-area: type; }
	.xc-vtable tbody td:nth-child(4) { grid-area: x; align-self: center; }
}
.xc-input-locked {
	background: #f3f4f6 !important;
	color: #6b7280 !important;
	cursor: not-allowed;
}

/* Popup "Tạo đơn hàng thành công" */
.xc-modal {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, .45);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	padding: 16px;
}
.xc-modal-card {
	position: relative;
	background: #fff;
	border-radius: 16px;
	max-width: 480px;
	width: 100%;
	padding: 44px 32px 28px;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}
.xc-modal-x {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 28px;
	height: 28px;
	border: 0;
	background: transparent;
	color: #f59e0b;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	border-radius: 6px;
}
.xc-modal-x:hover {
	background: #fff7ed;
}
.xc-modal-ic-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: 16px;
}
.xc-modal-ic {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--xc-green);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 0 10px rgba(31, 122, 61, .12);
}
.xc-modal-title {
	font-size: 22px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 14px;
}
.xc-modal-code {
	display: inline-block;
	background: var(--xc-green-soft);
	color: var(--xc-green);
	border-radius: 999px;
	padding: 6px 16px;
	font-weight: 600;
	font-size: 13px;
	margin-bottom: 16px;
}
.xc-modal-msg {
	color: #4b5563;
	font-size: 14px;
	line-height: 1.55;
	margin: 0 0 22px;
}
.xc-modal-msg strong {
	color: #0f172a;
}
.xc-modal-mail {
	color: var(--xc-green);
	text-decoration: none;
	font-weight: 600;
}
.xc-modal-mail:hover {
	text-decoration: underline;
}
.xc-modal-btn {
	display: block;
	width: 100%;
	background: var(--xc-green);
	color: #fff !important;
	text-decoration: none;
	padding: 14px 20px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 15px;
	text-align: center;
	transition: background .15s;
}
.xc-modal-btn:hover {
	background: #175e30;
}

/* Hiển thị danh sách xe ở trang chi tiết đơn */
.xc-vlist-ro {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.xc-vrow-ro {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
}
.xc-vrow-ro-idx {
	color: #6b7280;
	font-weight: 600;
	min-width: 20px;
}
.xc-vrow-ro-type {
	color: #374151;
}

/* Box tiền dự kiến */
.xc-money {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	background: #fdf8e8;
	border: 1px solid #f0e4b8;
	border-radius: 10px;
	padding: 18px 22px;
	margin-top: 12px;
}
.xc-money-lbl {
	font-weight: 700;
	color: var(--xc-text);
}
.xc-money-lbl span {
	font-weight: 400;
	color: var(--xc-muted);
	font-size: 13px;
}
.xc-money-note {
	font-size: 12px;
	color: var(--xc-muted);
	margin-top: 4px;
	font-style: italic;
}
.xc-money-val {
	color: var(--xc-green);
	font-size: 26px;
	font-weight: 800;
	white-space: nowrap;
}
.xc-unit-desc {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	color: var(--xc-muted);
	font-style: italic;
	line-height: 1.4;
}
#xc-unit[readonly] {
	background: #f5f5f5;
	cursor: not-allowed;
}

/* Nút Lưu nháp + Xác nhận */
.xc-actions {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 8px;
}
.xc-btn-draft {
	padding: 12px 28px;
	border: 1px solid var(--xc-border);
	border-radius: 10px;
	background: #fff;
	color: var(--xc-text);
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
}
.xc-actions .xc-submit {
	padding: 12px 28px;
}

/* ===========================================================================
 *  Responsive
 * ========================================================================= */
@media (max-width: 1200px) {
	.xc-svc-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 980px) {
	.xc-wrap {
		grid-template-columns: 1fr;
		min-height: auto;
	}
	.xc-col-side {
		padding: 32px 16px;
	}
	.xc-svc-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 720px) {
	.xc-svc-grid {
		grid-template-columns: 1fr;
	}
	.xc-grid-2,
	.xc-grid-3,
	.xc-grid-4 {
		grid-template-columns: 1fr;
	}
	.xc-money {
		flex-direction: column;
		align-items: flex-start;
	}
}
@media (max-width: 560px) {
	.xc-col-form {
		padding: 24px 12px;
	}
	.xc-card {
		padding: 24px 20px;
	}
	.xc-row {
		grid-template-columns: 1fr;
	}
	.xc-side-title {
		font-size: 18px;
	}
}

/* ===== Breadcrumb (trang plugin) + Topbar ===== */
.xc-topbar {
	margin: 18px 0 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.xc-bc {
	font-size: 14px;
	color: var(--xc-muted);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}
.xc-bc a {
	color: var(--xc-green);
	text-decoration: none;
	font-weight: 600;
}
.xc-bc a:hover {
	text-decoration: underline;
}
.xc-bc-sep {
	color: #9ca3af;
}
.xc-bc-cur {
	color: var(--xc-text);
	font-weight: 600;
}

/* ===== Account dropdown ===== */
.xc-acc {
	position: relative;
}
.xc-acc-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	border: 1px solid var(--xc-border);
	border-radius: 999px;
	padding: 4px 12px 4px 4px;
	cursor: pointer;
	transition: box-shadow 0.15s, border-color 0.15s;
	color: var(--xc-text);
}
.xc-acc-btn:hover,
.xc-acc.is-open .xc-acc-btn {
	border-color: var(--xc-green);
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
}
.xc-acc-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--xc-green-soft);
	color: var(--xc-green);
	flex: 0 0 34px;
}
.xc-acc-avatar svg {
	width: 20px;
	height: 20px;
}
.xc-acc-btn-name {
	font-size: 14px;
	font-weight: 600;
	color: var(--xc-text);
	max-width: 160px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.xc-acc-caret {
	color: var(--xc-muted);
	transition: transform 0.15s;
	flex: 0 0 12px;
}
@media (max-width: 560px) {
	.xc-acc-btn-name {
		display: none;
	}
}
.xc-acc.is-open .xc-acc-caret {
	transform: rotate(180deg);
}
.xc-acc-menu {
	position: absolute;
	right: 0;
	top: calc(100% + 8px);
	background: #fff;
	border: 1px solid var(--xc-border);
	border-radius: 12px;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
	min-width: 260px;
	padding: 6px;
	z-index: 100;
	display: none;
}
.xc-acc.is-open .xc-acc-menu {
	display: block;
}
.xc-acc-user {
	padding: 12px 14px 14px;
	border-bottom: 1px solid var(--xc-border);
	margin-bottom: 4px;
}
.xc-acc-name {
	font-weight: 700;
	color: var(--xc-text);
	font-size: 14px;
	letter-spacing: 0.3px;
}
.xc-acc-email {
	font-size: 13px;
	color: var(--xc-muted);
	margin-top: 2px;
	word-break: break-all;
}
.xc-acc-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	color: var(--xc-text) !important;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	border-radius: 8px;
}
.xc-acc-item svg {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
}
.xc-acc-item:hover {
	background: var(--xc-green-soft);
	text-decoration: none;
}
.xc-acc-logout {
	color: var(--xc-danger) !important;
}
.xc-acc-logout:hover {
	background: #fdecea;
}

/* ===========================================================================
 *  Trang "Tài khoản của tôi" — chỉ view
 * ========================================================================= */
.xc-profile {
	max-width: 900px;
	margin: 12px auto 40px;
	padding: 0 16px;
}
.xc-profile-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--xc-text);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	margin: 8px 0 16px;
}
.xc-profile-back:hover {
	color: var(--xc-green);
}
.xc-profile-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
	border: 1px solid var(--xc-border);
}
.xc-profile-banner {
	background: var(--xc-green);
	height: 120px;
}
.xc-profile-body {
	padding: 0 32px 32px;
	margin-top: -44px;
	position: relative;
}
.xc-profile-avatar {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	background: #f3f4f6;
	border: 4px solid #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
	color: #9ca3af;
}
.xc-profile-avatar svg {
	width: 44px;
	height: 44px;
}
.xc-profile-name {
	margin: 14px 0 4px;
	font-size: 22px;
	font-weight: 800;
	color: var(--xc-text);
	letter-spacing: 0.4px;
}
.xc-profile-role {
	color: var(--xc-green);
	font-weight: 700;
	font-size: 14px;
	margin: 0 0 22px;
}
.xc-profile-info {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.xc-profile-item {
	background: #f9fafb;
	border: 1px solid var(--xc-border);
	border-radius: 10px;
	padding: 14px 16px;
}
.xc-profile-item-lbl {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: var(--xc-muted);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	margin-bottom: 8px;
}
.xc-profile-item-lbl svg {
	width: 14px;
	height: 14px;
}
.xc-profile-item-val {
	font-size: 15px;
	color: var(--xc-text);
	font-weight: 700;
	word-break: break-word;
}
@media (max-width: 720px) {
	.xc-profile-info {
		grid-template-columns: 1fr;
	}
	.xc-profile-body {
		padding: 0 20px 24px;
	}
	.xc-acc-menu {
		min-width: 220px;
	}
}

/* ===========================================================================
 *  Màn 5 — Danh sách đơn hàng
 * ========================================================================= */
.xc-orders {
	max-width: 1200px;
	margin: 0 auto 40px;
	padding: 0 16px;
}
.xc-otitle-line {
	position: relative;
	padding-bottom: 14px;
	margin-bottom: 28px;
}
.xc-otitle-line::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 64px;
	height: 3px;
	background: #d4a017;
	border-radius: 2px;
}

.xc-filter {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr auto;
	gap: 16px;
	align-items: end;
	background: #fff;
	border: 1px solid var(--xc-border);
	border-radius: 14px;
	padding: 20px 22px;
	margin-bottom: 18px;
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}
.xc-filter label {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	color: var(--xc-muted);
	text-transform: uppercase;
	letter-spacing: 0.4px;
}
.xc-filter input,
.xc-filter select {
	padding: 11px 12px;
	border: 1px solid var(--xc-border);
	border-radius: 10px;
	font-size: 14px;
	font-weight: 400;
	background: #fff;
	color: var(--xc-text);
}
.xc-filter input:focus,
.xc-filter select:focus {
	outline: none;
	border-color: var(--xc-green);
	box-shadow: 0 0 0 3px rgba(31, 122, 61, 0.12);
}
.xc-filter-search {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	color: var(--xc-muted);
	text-transform: uppercase;
	letter-spacing: 0.4px;
}
.xc-filter-search > label {
	display: block;
	padding: 0;
	margin: 0;
}
.xc-search-input {
	position: relative;
}
.xc-search-input input {
	width: 100%;
	padding: 11px 12px 11px 38px;
	border: 1px solid var(--xc-border);
	border-radius: 10px;
	font-size: 14px;
	font-weight: 400;
	box-sizing: border-box;
}
.xc-search-input input:focus {
	outline: none;
	border-color: var(--xc-green);
	box-shadow: 0 0 0 3px rgba(31, 122, 61, 0.12);
}
.xc-search-ic {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: #9ca3af;
	font-size: 14px;
	pointer-events: none;
}
.xc-search-hint {
	font-size: 12px;
	font-weight: 400;
	color: var(--xc-muted);
	text-transform: none;
	letter-spacing: 0;
	font-style: italic;
}
.xc-filter-btn {
	padding: 4px 22px;
	border: 1px solid var(--xc-green);
	color: white;
	background: #fff;
	border-color: var(--xc-green);
	border-radius: 10px;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.4px;
	cursor: pointer;
	white-space: nowrap;
	align-self: end;
	margin-bottom: 0.4em !important;
}
.xc-filter-btn:hover {
	background: var(--xc-green-soft);
	color: var(--xc-green);
}

.xc-table-wrap {
	overflow-x: auto;
	background: #fff;
	border: 1px solid var(--xc-border);
	border-radius: 14px;
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}
.xc-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}
.xc-table th {
	text-align: left;
	padding: 18px 20px;
	color: var(--xc-muted);
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.4px;
	border-bottom: 1px solid var(--xc-border);
	background: #fafafa;
	white-space: nowrap;
}
.xc-table th.xc-th-right {
	text-align: right;
}
.xc-table td {
	padding: 18px 20px;
	border-bottom: 1px solid #f1f5f9;
	vertical-align: middle;
}
.xc-table td.xc-td-right {
	text-align: right;
}
.xc-table tr:last-child td {
	border-bottom: 0;
}
.xc-code {
	color: var(--xc-green);
	font-weight: 800;
	text-decoration: none;
	letter-spacing: 0.3px;
}
.xc-svc-cell {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	color: var(--xc-text);
}
.xc-svc-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: var(--xc-green-soft);
	font-size: 18px;
	flex: 0 0 32px;
}
.xc-empty {
	text-align: center;
	color: var(--xc-muted);
	padding: 32px;
}

.xc-actions-cell {
	display: inline-flex;
	align-items: stretch;
	gap: 0;
	border: 1px solid var(--xc-border);
	border-radius: 8px;
	overflow: hidden;
}
.xc-btn-detail {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	color: var(--xc-text);
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	background: #fff;
	color: var(--xc-green);
}
.xc-btn-detail:hover {
	background-color: var(--xc-green-soft);
}
.xc-btn-detail-more {
	border: 0;
	border-left: 1px solid var(--xc-border);
	background: #fff;
	color: var(--xc-text);
	cursor: pointer;
	padding: 0 10px;
	font-size: 12px;
	line-height: 1;
}
.xc-btn-detail-more:hover {
	color: var(--xc-green);
	background: var(--xc-green-soft);
}

/* Badge */
.xc-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 12px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}
.xc-badge-dot .xc-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	display: inline-block;
}
.xc-bg-gray {
	background: #f1f5f9;
	color: #475569;
}
.xc-bg-blue {
	background: #e0edff;
	color: #1d4ed8;
}
.xc-bg-green {
	background: #e7f6ec;
	color: #1f7a3d;
}
.xc-bg-red {
	background: #fdecea;
	color: #c0392b;
}

/* Pager */
.xc-pager {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	margin-top: 20px;
	font-size: 14px;
	color: var(--xc-muted);
	gap: 12px;
}
.xc-pager-info {
	justify-self: start;
	white-space: nowrap;
}
.xc-pager-nav {
	justify-self: center;
	display: inline-flex;
	gap: 6px;
	align-items: center;
}
.xc-pager-nav a,
.xc-pager-arrow {
	display: inline-flex;
	min-width: 34px;
	height: 34px;
	padding: 0 6px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--xc-border);
	border-radius: 8px;
	color: var(--xc-text);
	text-decoration: none;
	font-weight: 600;
	background: #fff;
}
.xc-pager-nav a:hover {
	border-color: var(--xc-green);
	color: var(--xc-green);
}
.xc-pager-nav a.on {
	background: var(--xc-green);
	color: #fff;
	border-color: var(--xc-green);
}
.xc-pager-arrow-disabled {
	color: #cbd5e1;
	cursor: not-allowed;
}
.xc-pager-per {
	justify-self: end;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--xc-muted);
	white-space: nowrap;
}
.xc-pager-per select {
	padding: 6px 10px;
	border: 1px solid var(--xc-border);
	border-radius: 8px;
	background: #fff;
	font-size: 14px;
	color: var(--xc-text);
	cursor: pointer;
}

/* ===========================================================================
 *  Màn 6 — Chi tiết đơn hàng
 * ========================================================================= */
.xc-detail {
	max-width: 1200px;
	margin: 0 auto 40px;
	padding: 0 16px;
}
.xc-detail .xc-otitle-line {
	margin-top: 8px;
}
.xc-detail-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	background: #fff;
	border: 1px solid var(--xc-border);
	border-radius: 12px;
	padding: 16px 20px;
	margin-bottom: 18px;
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}
.xc-btn-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--xc-green);
	color: var(--xc-green);
	background: #fff;
	border-radius: 8px;
	padding: 9px 18px;
	text-decoration: none;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.4px;
}
.xc-btn-back:hover {
	background: var(--xc-green-soft);
}
.xc-btn-cancel {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #f1b9b3 !important;
	color: #c0392b !important;
	background: #fff !important;
	border-radius: 8px;
	padding: 9px 18px;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.4px;
	cursor: pointer;
}
.xc-btn-cancel:hover {
	background: #fdecea !important;
}
.xc-detail-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	background: #fff;
	border: 1px solid var(--xc-border);
	border-left: 4px solid var(--xc-green);
	border-radius: 12px;
	padding: 22px 24px;
	margin-bottom: 20px;
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}
.xc-detail-head-main {
	display: flex;
	align-items: center;
	gap: 18px;
	flex: 1;
}
.xc-detail-head-ic {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	background: #e7f6ec;
	color: var(--xc-green);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 56px;
}
.xc-detail-head-info .xc-dt-lbl {
	margin-bottom: 2px;
}
.xc-detail-head-info .xc-muted {
	margin-top: 4px;
	font-size: 13px;
}
.xc-code-big {
	color: var(--xc-green);
	font-size: 26px;
	font-weight: 800;
	letter-spacing: 0.5px;
	line-height: 1.2;
}
.xc-detail-badges {
	display: flex;
	gap: 36px;
	text-align: left;
}
.xc-detail-badges > div {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.xc-detail-badges .xc-badge {
	align-self: flex-start;
}

/* Section card kiểu mới — icon + tiêu đề xanh, không dùng fieldset */
.xc-card-sec {
	background: #fff;
	border: 1px solid var(--xc-border);
	border-radius: 12px;
	padding: 20px 24px 22px;
	margin: 0 0 18px;
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}
.xc-card-head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 14px;
	margin-bottom: 6px;
	border-bottom: 1px solid var(--xc-border);
}
.xc-card-head h3 {
	margin: 0;
	color: var(--xc-green);
	font-weight: 800;
	font-size: 15px;
	letter-spacing: 0.4px;
}
.xc-card-ic {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background: var(--xc-green-soft);
	color: var(--xc-green);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 28px;
}
.xc-dt-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px 24px;
	margin-top: 12px;
}
.xc-dt-3 {
	grid-template-columns: repeat(3, 1fr);
}
.xc-dt-cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 8px;
}
.xc-dt-lbl {
	font-size: 12px;
	color: var(--xc-muted);
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.3px;
}
.xc-dt-val {
	font-size: 15px;
	color: var(--xc-text);
	font-weight: 600;
	margin-top: 4px;
}
.xc-muted {
	color: #9ca3af;
}
.xc-chip-ro {
	background: #f1f5f9;
	color: #475569;
	border: 1px solid var(--xc-border);
	margin-right: 4px;
}

/* Timeline */
.xc-timeline {
	list-style: none;
	margin: 12px 0 0;
	padding: 0;
	position: relative;
}
.xc-timeline li {
	position: relative;
	padding: 0 0 20px 26px;
}
.xc-timeline li::before {
	content: '';
	position: absolute;
	left: 5px;
	top: 4px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #cbd5e1;
}
.xc-timeline li.on::before {
	background: var(--xc-green);
	box-shadow: 0 0 0 3px var(--xc-green-soft);
}
.xc-timeline li::after {
	content: '';
	position: absolute;
	left: 9px;
	top: 14px;
	bottom: 0;
	width: 2px;
	background: #e5e7eb;
}
.xc-timeline li:last-child::after {
	display: none;
}
.xc-timeline strong {
	display: block;
	color: var(--xc-text);
}
.xc-timeline span {
	font-size: 13px;
	color: var(--xc-muted);
}

@media (max-width: 900px) {
	.xc-filter {
		grid-template-columns: 1fr 1fr;
	}
	.xc-pager {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}
	.xc-pager-info,
	.xc-pager-nav,
	.xc-pager-per {
		justify-self: center;
	}
	.xc-dt-grid,
	.xc-dt-3,
	.xc-dt-cols {
		grid-template-columns: 1fr;
	}
	.xc-detail-head {
		flex-direction: column;
		align-items: flex-start;
	}
	.xc-detail-badges {
		text-align: left;
		gap: 24px;
		flex-wrap: wrap;
	}
	.xc-detail-bar {
		flex-wrap: wrap;
		gap: 12px;
	}
}

/* ===== Màn 1 — intro + nút theo dõi đơn (bổ sung) ===== */
.xc-svc-track {
	display: flex;
	justify-content: flex-end;
	margin: 8px 0 4px;
}
.xc-track-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--xc-green);
	color: #fff !important;
	padding: 12px 22px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(31, 122, 61, 0.25);
}
.xc-track-btn:hover {
	background: var(--xc-green-dark);
}
.xc-svc-intro {
	text-align: center;
	max-width: 1180px;
	margin: 8px auto 40px;
}
.xc-svc-maintitle {
	color: var(--xc-text);
	font-weight: 800;
	letter-spacing: 1px;
	font-size: 30px;
	margin: 0 0 14px;
}
.xc-svc-maintitle::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background: #cbd5e1;
	border-radius: 2px;
	margin: 12px auto 0;
}
.xc-svc-intro p {
	color: var(--xc-muted);
	line-height: 1.9;
	font-size: 15px;
	margin: 0;
}
.xc-svc-ic img {
	width: 88px;
	height: 88px;
	object-fit: contain;
}
