/* ============================================================
   SCAR - DESIGN SYSTEM MỚI (dùng chung toàn site, prefix .hm-)
   Chứa: biến màu, header, menu mobile, nút dùng chung.
   ============================================================ */
:root {
	--hm-red: #e11b22;
	--hm-red-dark: #b81419;
	--hm-text: #1a1a1a;
	--hm-muted: #6b7280;
	--hm-border: #e9ecef;
	--hm-bg: #f7f8fa;
	--hm-header-h: 72px;
	--hm-container: 1064px;
}

/* ---------- RESET & NỀN TẢNG ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: var(--hm-text);
	background: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--hm-red); }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; line-height: 1.3; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
button { cursor: pointer; }
table { border-collapse: collapse; }
:focus-visible { outline: 2px solid var(--hm-red); outline-offset: 2px; }

/* Container của hệ mới (tự chủ, không phụ thuộc style.css cũ). */
.container-custom { max-width: var(--hm-container); margin: 0 auto; padding: 0 15px; width: 100%; }

/* ---------- NÚT DÙNG CHUNG ---------- */
.hm-btn-red { background: var(--hm-red); color: #fff; border: none; border-radius: 6px; padding: 11px 22px; font-size: 14px; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; transition: background .2s; }
.hm-btn-red:hover { background: var(--hm-red-dark); color: #fff; }
.hm-btn-white { background: #fff; color: var(--hm-red); border-radius: 6px; padding: 12px 28px; font-size: 15px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.hm-btn-white:hover { background: #f8f8f8; color: var(--hm-red-dark); }
.hm-btn-ghost { border: 1px solid var(--hm-border); border-radius: 6px; padding: 8px 16px; font-size: 13px; color: var(--hm-text); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.hm-btn-ghost:hover { border-color: var(--hm-red); color: var(--hm-red); }

/* ---------- SELECT (dùng chung) ---------- */
.hm-select { position: relative; }
.hm-select::after { content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 10px; color: var(--hm-muted); position: absolute; right: 12px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.hm-select select { width: 100%; height: 42px; padding: 0 30px 0 12px; border: 1px solid var(--hm-border); border-radius: 8px; background: #fff; font-size: 14px; color: #374151; appearance: none; -webkit-appearance: none; cursor: pointer; }
.hm-select select:focus { outline: none; border-color: var(--hm-red); }
.hm-select select:disabled { background: var(--hm-bg); color: #a3abb5; cursor: not-allowed; }

/* ---------- BREADCRUMB (dùng chung) ---------- */
.hm-breadcrumb { font-size: 13px; color: var(--hm-muted); margin-bottom: 16px; display: flex; flex-wrap: wrap; align-items: center; gap: 2px; }
.hm-breadcrumb a { color: var(--hm-muted); text-decoration: none; }
.hm-breadcrumb a:hover { color: var(--hm-red); }
.hm-breadcrumb .bc-sep { font-size: 9px; color: #c7cdd4; margin: 0 6px; }
.hm-breadcrumb span:last-child { color: var(--hm-text); font-weight: 600; }

/* ---------- KHỐI NỘI DUNG (dùng chung) ---------- */
.hm-box { background: #fff; border: 1px solid var(--hm-border); border-radius: 10px; padding: 20px; }
.hm-box + .hm-box { margin-top: 20px; }
.hm-box-title { font-size: 16px; font-weight: 800; text-transform: uppercase; color: var(--hm-text); margin: 0 0 14px; letter-spacing: .3px; }

/* ---------- PHÂN TRANG (dùng chung) ---------- */
.hm-pagination { display: flex; justify-content: center; margin-top: 30px; }
.hm-pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.hm-pagination .page-numbers { min-width: 38px; height: 38px; padding: 0 12px; border: 1px solid var(--hm-border); border-radius: 8px; background: #fff; color: #374151; font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 6px; transition: all .2s; }
.hm-pagination .page-numbers:hover { border-color: var(--hm-red); color: var(--hm-red); }
.hm-pagination .page-numbers.current { background: var(--hm-red); border-color: var(--hm-red); color: #fff; font-weight: 700; }
.hm-pagination .page-numbers.dots { border: none; background: none; }

/* ---------- THÔNG BÁO (dùng chung) ---------- */
.hm-notice { border-radius: 8px; padding: 13px 16px; font-size: 14px; margin-bottom: 18px; }
.hm-notice-success { background: #e8f7ef; color: #1a7f4b; border: 1px solid #b7e4cd; }
.hm-notice-error { background: #fdecec; color: #b42318; border: 1px solid #f5c2c0; }
.hm-notice-info { background: #eef4ff; color: #175cd3; border: 1px solid #c3d8fb; }

/* ---------- TRẠNG THÁI TRỐNG (dùng chung) ---------- */
.hm-empty { background: #fff; border: 1px solid var(--hm-border); border-radius: 10px; padding: 60px 20px; text-align: center; }
.hm-empty i { font-size: 40px; color: #d0d5dd; margin-bottom: 14px; display: block; }
.hm-empty p { font-size: 15px; color: var(--hm-muted); margin: 0 0 18px; }

/* ---------- TIÊU ĐỀ SECTION (dùng chung) ---------- */
.hm-section { padding: 40px 0 0; }
.hm-section-head { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.hm-section-title { font-size: 20px; font-weight: 800; text-transform: uppercase; color: var(--hm-text); margin: 0; letter-spacing: .3px; }
.hm-section-link { margin-left: auto; font-size: 14px; color: var(--hm-muted); text-decoration: none; white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; }
.hm-section-link:hover { color: var(--hm-red); }

.hm-tabs { display: flex; gap: 20px; align-items: center; }
.hm-tab { font-size: 14px; color: var(--hm-muted); text-decoration: none; padding-bottom: 4px; border-bottom: 2px solid transparent; cursor: pointer; }
.hm-tab.active { color: var(--hm-red); font-weight: 600; border-bottom-color: var(--hm-red); }
.hm-tab:hover { color: var(--hm-red); }

/* ---------- CARD TIN XE (dùng chung: trang chủ, xe tương tự...) ---------- */
.hm-car-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hm-car-card { position: relative; background: #fff; border: 1px solid var(--hm-border); border-radius: 10px; overflow: hidden; transition: box-shadow .2s; display: flex; flex-direction: column; height: 100%; }
.hm-car-card:hover { box-shadow: 0 8px 24px rgba(16,24,40,.10); }
.hm-car-thumb { position: relative; aspect-ratio: 4 / 3; background: var(--hm-bg); flex: 0 0 auto; }
.hm-car-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hm-badge-new { position: absolute; top: 10px; left: 10px; z-index: 2; background: var(--hm-red); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 4px; }
.hm-fav { position: absolute; top: 10px; right: 10px; z-index: 2; width: 30px; height: 30px; border-radius: 50%; border: none; background: rgba(255,255,255,.92); color: #6b7280; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: color .2s; }
.hm-fav:hover, .hm-fav.is-fav { color: var(--hm-red); }
/* Thân card: flex-column, chiếm hết chỗ còn lại trong card (card cùng hàng luôn cao bằng nhau nhờ grid/flex stretch). */
.hm-car-body { padding: 14px; display: flex; flex-direction: column; flex: 1; }
/* Tiêu đề luôn chiếm đúng 2 dòng (kể cả tiêu đề ngắn) -> các card thẳng hàng với nhau, không lệch cao thấp. */
.hm-car-title { font-size: 15px; font-weight: 600; margin: 0 0 8px; line-height: 1.4; min-height: 2.8em; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hm-car-title a { color: var(--hm-text); text-decoration: none; }
.hm-car-title a:hover { color: var(--hm-red); }
.hm-car-price { font-size: 18px; font-weight: 800; color: var(--hm-red); margin-bottom: 12px; }
/* Luôn neo xuống đáy card (margin-top:auto) -> mọi card trong 1 hàng có hàng meta thẳng hàng nhau dù nội dung phía trên dài ngắn khác nhau.
   min-height đảm bảo không bị "thọt" (co lại thành 0) ngay cả khi rỗng - PHP nên luôn cố hiện khu vực (noi_ban) làm nội dung tối thiểu. */
.hm-car-meta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; padding-top: 10px; border-top: 1px solid var(--hm-border); margin-top: auto; min-height: 36px; }
.hm-car-meta span { font-size: 12px; color: var(--hm-muted); display: inline-flex; align-items: center; gap: 5px; }
/* Hàng thông số phụ - chỉ hiện ở dạng danh sách. */
.hm-car-meta2 { display: none; gap: 22px; flex-wrap: wrap; margin-top: 10px; }
.hm-car-meta2 span { font-size: 12px; color: var(--hm-muted); display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 991px) { .hm-car-grid { grid-template-columns: repeat(2, 1fr); } }

/* Mobile: các list trong section thành SLIDER NGANG (2.5 tin / dòng). */
@media (max-width: 640px) {
	.hm-section .hm-car-grid {
		display: flex;
		gap: 12px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		padding: 0 15px 8px;
		margin: 0 -15px;
		scrollbar-width: none;
	}
	.hm-section .hm-car-grid::-webkit-scrollbar { display: none; }
	.hm-section .hm-car-grid > .hm-car-card { flex: 0 0 40%; scroll-snap-align: start; }
}

/* ---------- HEADER ---------- */
.hm-header { background: #fff; border-bottom: 1px solid var(--hm-border); position: sticky; top: 0; z-index: 900; }
.hm-header-inner { display: flex; align-items: center; gap: 28px; height: var(--hm-header-h); }

.hm-logo { flex: 0 0 auto; display: inline-flex; align-items: center; text-decoration: none; }
.hm-logo img { height: 40px; width: auto; display: block; }

.hm-nav { display: flex; align-items: center; gap: 26px; flex: 1; }
.hm-nav .nav-link { font-size: 15px; font-weight: 500; color: #4b5563; text-decoration: none; position: relative; padding: 24px 0; transition: color .2s; }
.hm-nav .nav-link:hover { color: var(--hm-red); }
.hm-nav .nav-link.active { color: var(--hm-red); font-weight: 600; }
.hm-nav .nav-link.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: 18px; height: 2px; background: var(--hm-red); border-radius: 2px; }

.hm-header-actions { display: flex; align-items: center; gap: 18px; flex: 0 0 auto; }
.hm-icon-link { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; color: #4b5563; text-decoration: none; }
.hm-icon-link:hover { color: var(--hm-red); }
.hm-icon-btn { width: 36px; height: 36px; border: none; background: transparent; color: #4b5563; font-size: 17px; cursor: pointer; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; position: relative; }
.hm-icon-btn:hover { background: var(--hm-bg); color: var(--hm-red); }
.hm-btn-post { border-radius: 6px; padding: 10px 24px; }

/* Dropdown tài khoản */
.hm-user { position: relative; }
.hm-user-toggle { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-size: 14px; color: var(--hm-text); }
.hm-user-toggle img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.hm-user-name { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 600; }
.hm-user-menu { position: absolute; right: 0; top: calc(100% + 10px); background: #fff; border: 1px solid var(--hm-border); border-radius: 8px; box-shadow: 0 10px 30px rgba(16,24,40,.12); min-width: 220px; padding: 6px; list-style: none; margin: 0; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .18s; }
.hm-user:hover .hm-user-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.hm-user-menu li { list-style: none; }
.hm-user-menu a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; font-size: 14px; color: #374151; text-decoration: none; border-radius: 6px; }
.hm-user-menu a:hover { background: var(--hm-bg); color: var(--hm-red); }
.hm-user-menu .hm-logout a { color: var(--hm-red); }

/* Nút mở menu mobile */
.hm-menu-toggle { display: none; width: 40px; height: 40px; border: none; background: transparent; font-size: 20px; color: var(--hm-text); cursor: pointer; }

/* ---------- MENU MOBILE (off-canvas) ---------- */
.offcanvas-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.45); opacity: 0; visibility: hidden; transition: all .25s; z-index: 998; }
.offcanvas-overlay.is-visible { opacity: 1; visibility: visible; }
.offcanvas-menu { position: fixed; top: 0; right: 0; width: 300px; max-width: 85vw; height: 100%; background: #fff; transform: translateX(100%); transition: transform .28s ease; z-index: 999; display: flex; flex-direction: column; }
.offcanvas-menu.is-open { transform: translateX(0); }
.offcanvas-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--hm-border); }
.offcanvas-title { font-size: 15px; font-weight: 700; color: var(--hm-text); }
.close-menu-btn { border: none; background: transparent; font-size: 20px; color: var(--hm-muted); cursor: pointer; }
.offcanvas-body { padding: 18px 20px; overflow-y: auto; flex: 1; }

.mobile-user-profile { padding-bottom: 16px; border-bottom: 1px solid var(--hm-border); margin-bottom: 16px; }
.mobile-user-info-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.mobile-user-info-row img { width: 46px; height: 46px; border-radius: 50%; }
.mobile-user-name { font-size: 15px; font-weight: 700; color: var(--hm-text); }
.mobile-user-type { font-size: 12px; color: var(--hm-muted); }
.mobile-user-menu a,
.mobile-nav a,
.mobile-action-link { display: flex; align-items: center; gap: 10px; padding: 11px 0; font-size: 15px; color: #374151; text-decoration: none; border-bottom: 1px solid #f1f3f5; }
.mobile-user-menu a:hover,
.mobile-nav a:hover,
.mobile-action-link:hover { color: var(--hm-red); }
.mobile-logout { color: var(--hm-red) !important; }
.mobile-actions { margin-top: 16px; }
.mobile-actions .hm-btn-red { width: 100%; justify-content: center; margin-top: 14px; }

@media (max-width: 991px) {
	.hm-nav,
	.hm-header-actions .hm-icon-link,
	.hm-header-actions .hm-user,
	.hm-header-actions .hm-btn-post { display: none; } /* Đăng tin đã có ở bottom nav */
	.hm-menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
	.hm-header-inner { gap: 14px; justify-content: space-between; }
	.hm-header-actions { margin-left: auto; gap: 6px; }
	.hm-header { position: static; }
}
@media (max-width: 640px) {
	.hm-logo img { height: 32px; }
}

/* ---------- NÚT MỞ TÌM KIẾM MOBILE (trong header) ---------- */
.hm-msearch { display: none; }

/* ---------- PANEL TÌM KIẾM / LỌC (mobile) ---------- */
.hm-searchpanel { position: fixed; inset: 0; z-index: 1000; background: #fff; }
.hm-searchpanel[hidden] { display: none; }
.hm-sp-inner { display: flex; flex-direction: column; height: 100%; }
.hm-sp-head { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--hm-border); }
.hm-sp-close { width: 36px; height: 36px; border: none; background: none; font-size: 18px; color: var(--hm-text); cursor: pointer; }
.hm-sp-title { flex: 1; font-size: 18px; font-weight: 800; color: var(--hm-text); margin: 0; text-transform: uppercase; }
.hm-sp-clear { font-size: 14px; color: var(--hm-red); text-decoration: none; }
.hm-sp-body { flex: 1; overflow-y: auto; padding: 16px; }
.hm-sp-group { margin-bottom: 16px; }
.hm-sp-label { display: block; font-size: 14px; font-weight: 700; color: var(--hm-text); margin-bottom: 8px; }
.hm-sp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hm-sp-search { position: relative; }
.hm-sp-search i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #9aa5b1; font-size: 14px; }
.hm-sp-search input { width: 100%; height: 46px; border: 1px solid var(--hm-border); border-radius: 8px; padding: 0 14px 0 40px; font-size: 14px; }
.hm-sp-search input:focus { outline: none; border-color: var(--hm-red); }
.hm-sp-foot { padding: 14px 16px; border-top: 1px solid var(--hm-border); display: flex; flex-direction: column; gap: 10px; }
.hm-sp-apply { width: 100%; height: 50px; border: none; border-radius: 8px; background: var(--hm-red); color: #fff; font-size: 16px; font-weight: 700; cursor: pointer; }
.hm-sp-apply:hover { background: var(--hm-red-dark); }
.hm-sp-reset { width: 100%; height: 48px; border: 1px solid var(--hm-border); border-radius: 8px; background: #fff; color: var(--hm-text); font-size: 15px; font-weight: 600; text-decoration: none; display: flex; align-items: center; justify-content: center; }
.hm-sp-reset:hover { border-color: var(--hm-red); color: var(--hm-red); }

/* ---------- LỐI TẮT (mobile, trang chủ) ---------- */
.hm-quicklinks { display: none; }

/* ---------- BOTTOM NAV (mobile) ---------- */
.hm-bottomnav { display: none; }

@media (max-width: 991px) {
	/* Nút mở tìm kiếm mobile */
	.hm-msearch { display: flex; align-items: center; gap: 10px; width: calc(100% - 30px); margin: 0 15px 12px; height: 42px; border: 1px solid var(--hm-border); border-radius: 10px; background: var(--hm-bg); padding: 0 14px; font-size: 14px; color: #8a929c; text-align: left; cursor: pointer; }
	.hm-msearch i { font-size: 14px; color: #9aa5b1; }

	/* Lối tắt */
	.hm-quicklinks { display: block; padding: 6px 0 4px; }
	.hm-quicklinks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
	.hm-quicklinks-grid a { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 6px 4px; text-decoration: none; }
	.hm-quicklinks-grid i { width: 52px; height: 52px; border-radius: 14px; background: #fff5f5; color: var(--hm-red); display: flex; align-items: center; justify-content: center; font-size: 20px; }
	.hm-quicklinks-grid span { font-size: 12px; color: var(--hm-text); font-weight: 500; }

	/* Bottom nav */
	body { padding-bottom: 64px; }
	.hm-bottomnav { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 850; height: 62px; background: #fff; border-top: 1px solid var(--hm-border); box-shadow: 0 -2px 10px rgba(16,24,40,.06); }
	.hm-bnav-item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; font-size: 11px; color: var(--hm-muted); text-decoration: none; }
	.hm-bnav-item i { font-size: 18px; }
	.hm-bnav-item.active { color: var(--hm-red); }
	.hm-bnav-item.is-center { position: relative; }
	.hm-bnav-item.is-center i { width: 52px; height: 52px; border-radius: 50%; background: var(--hm-red); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-top: -24px; box-shadow: 0 4px 12px rgba(225,27,34,.4); border: 3px solid #fff; }
	.hm-bnav-item.is-center span { color: var(--hm-red); font-weight: 600; }
	.hm-bnav-item.is-center.active i { background: var(--hm-red-dark); }
}

/* ---------- FOOTER ---------- */
.hm-footer { background: #fff; border-top: 1px solid var(--hm-border); box-shadow: 0 -4px 16px rgba(16,24,40,.04); margin-top: 40px; padding: 34px 0 30px; }

.hm-footer-heading { font-size: 16px; font-weight: 800; text-transform: uppercase; color: var(--hm-text); margin: 0 0 16px; letter-spacing: .3px; }
.hm-footer-search { padding-bottom: 24px; border-bottom: 1px solid var(--hm-border); margin-bottom: 28px; }
.hm-footer-search-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px 24px; }
.hm-footer-list { list-style: none; margin: 0; padding: 0; }
.hm-footer-list li { margin-bottom: 8px; }
.hm-footer-list a { font-size: 13px; color: var(--hm-muted); text-decoration: none; position: relative; padding-left: 12px; display: inline-block; }
.hm-footer-list a::before { content: ""; position: absolute; left: 0; top: 8px; width: 4px; height: 4px; border-radius: 50%; background: #cbd2d9; }
.hm-footer-list a:hover { color: var(--hm-red); }
.hm-footer-list a:hover::before { background: var(--hm-red); }

.hm-footer-logo { display: inline-block; margin-bottom: 14px; }
.hm-footer-logo img { height: 42px; width: auto; display: block; }
.hm-footer-desc { font-size: 13px; line-height: 1.75; color: var(--hm-muted); margin: 0 0 22px; }
.hm-footer-sub { font-size: 15px; font-weight: 700; color: var(--hm-text); margin: 0 0 14px; }

.hm-app-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.hm-app-btn { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--hm-border); border-radius: 8px; padding: 8px 14px; text-decoration: none; color: var(--hm-text); background: #fff; transition: border-color .2s, box-shadow .2s; }
.hm-app-btn:hover { border-color: var(--hm-red); box-shadow: 0 4px 12px rgba(16,24,40,.06); color: var(--hm-text); }
.hm-app-btn i { font-size: 22px; color: var(--hm-text); }
.hm-app-btn span { display: flex; flex-direction: column; line-height: 1.25; }
.hm-app-btn small { font-size: 10px; color: var(--hm-muted); }
.hm-app-btn strong { font-size: 13px; font-weight: 700; }

.hm-footer-menu { list-style: none; margin: 0; padding: 0; }
.hm-footer-menu li { margin-bottom: 10px; }
.hm-footer-menu a { font-size: 13px; color: var(--hm-muted); text-decoration: none; }
.hm-footer-menu a:hover { color: var(--hm-red); }

.hm-socials { display: flex; gap: 10px; margin-bottom: 20px; }
.hm-social { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--hm-border); display: inline-flex; align-items: center; justify-content: center; color: #4b5563; text-decoration: none; font-size: 15px; transition: all .2s; }
.hm-social span { font-size: 11px; font-weight: 700; }
.hm-social:hover { background: var(--hm-red); border-color: var(--hm-red); color: #fff; }

.hm-footer-company p { font-size: 12px; line-height: 1.8; color: var(--hm-muted); margin: 0 0 12px; }

@media (max-width: 991px) {
	.hm-footer-search-grid { grid-template-columns: repeat(2, 1fr); }
	.hm-footer-info .col-lg-4 { margin-bottom: 28px; }
}
@media (max-width: 640px) {
	.hm-footer-search-grid { grid-template-columns: 1fr; }
}
