:root {
	--text-color: #101828;
	--ft-theme-color: #ffd42f;
}



/* ==========================================
CSS SẠCH CHO KHỐI 2 (KHÔNG DÙNG !IMPORTANT)
========================================== */

/* 1. Khung chứa chính của phần liên hệ */
.contact-wrapper {
	display: flex;
	align-items: center;
	gap: 25px;            /* Khoảng cách giữa mục Số điện thoại và Email */
	flex-shrink: 0;       /* Ngăn chặn việc bị co nhỏ kích thước */
	white-space: nowrap;  /* Ngăn chặn việc xuống dòng */
}

/* 2. Thẻ liên kết chứa icon và chữ */
.contact-item a {
	display: inline-flex;
	align-items: center;
	gap: 8px;             /* Khoảng cách giữa Icon và Chữ */
	color: #ffffff;       /* Màu chữ trắng */
	font-weight: bold;
	text-decoration: none;/* Bỏ gạch chân */
	text-transform: none; /* Giữ nguyên chữ thường cho email */
}

/* 3. Hiệu ứng hover khi di chuột vào */
.contact-item a:hover {
	opacity: 0.8;
}

/* 4. Định dạng riêng cho Icon Font Awesome */
.contact-item i {
	font-size: 14px;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
}







/* ==========================================
CSS CHO KHUNG CHA & KHỐI BÊN TRÁI (TỐI ƯU MƯỢT)
========================================== */

/* 1. Thiết lập cho khung cha lớn chứa cả 2 khối */
.header-banner {
	display: flex;
	align-items: center;
	justify-content: space-between; 
	width: 100%;
	overflow: hidden;
}

/* 2. Khung bọc ngoài của phần chữ chạy */
.marquee-wrapper {
	min-width: 0;         
	overflow: hidden;     
	display: flex;
	align-items: center;
	margin-right: 30px;   
	width: 60%;
}

/* 3. Khung chứa trực tiếp các đoạn chữ */
.marquee-content {
	display: flex;        
	white-space: nowrap;  

	/* CÁC THUỘC TÍNH MỚI GIÚP CHỮ CHẠY SIÊU MƯỢT, KHÔNG RUNG GIẬT: */
	will-change: transform;            /* Báo trước cho trình duyệt chuẩn bị phần cứng */
	backface-visibility: hidden;       /* Ẩn mặt sau để tối ưu GPU */
	-webkit-backface-visibility: hidden;

	/* Nên chỉnh lại thành 18s hoặc 20s. Vì tốc độ 10s hiện tại hơi nhanh, 
	chữ chạy nhanh quá sẽ dễ tạo cảm giác bị giật mắt khi nhìn vào */
	animation: scroll-left 5s linear infinite; 
}

/* 4. Từng cụm chữ chạy */
.marquee-item {
	font-weight: bold;
}

/* 5. Khai báo chuyển động chạy chữ (Đã nâng cấp lên Translate3D để dùng GPU) */
@keyframes scroll-left {
	0% {
		transform: translate3d(0, 0, 0); /* Kích hoạt tăng tốc phần cứng card đồ họa */
	}
	100% {
		transform: translate3d(-50%, 0, 0); /* Chạy mượt mà và nối đuôi vô hạn */
	}
}



.form-flat input:not([type=submit]) {
	padding: 20px;
	background-color: #fff !important;
	border: 1px solid var(--primary-color) !important;
	box-shadow: 0 8px 20px rgba(208, 0, 0, 0.2), 
		0 4px 6px rgba(208, 0, 0, 0.05) !important;
}
.icon-search:before {
	color: var(--primary-color)
}



.btn-bao-gia {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px; /* Khoảng cách giữa icon và chữ */
	background-color: var(--primary-color); /* Màu đỏ chủ đạo */
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	padding: 5px 25px;
	border: none;
	border-radius: 50px; /* Bo tròn dạng viên thuốc */
	cursor: pointer;
	text-decoration: none; /* Hỗ trợ nếu bạn dùng thẻ <a> */

	/* Đổ bóng đa lớp (kết hợp bóng màu đỏ nhạt và bóng xám đậm) tạo chiều sâu */
	box-shadow: 0 8px 20px rgba(208, 0, 0, 0.3), 
		0 4px 6px rgba(0, 0, 0, 0.08);

	/* Hiệu ứng chuyển động mượt mà khi tương tác */
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hiệu ứng khi di chuột vào (Hover) */
.btn-bao-gia:hover {
	background-color: #e00000; /* Đỏ sáng hơn một chút */
	transform: translateY(-2px); /* Nút nhấc nhẹ lên trên */

	/* Tăng độ lan của bóng đổ khi di chuột */
	box-shadow: 0 12px 24px rgba(208, 0, 0, 0.4), 
		0 6px 12px rgba(0, 0, 0, 0.12);
}

/* Hiệu ứng khi click chuột (Active) */
.btn-bao-gia:active {
	transform: translateY(1px); /* Nút lún xuống tạo cảm giác nhấn thực tế */

	/* Thu nhỏ bóng đổ lại khi nhấn xuống */
	box-shadow: 0 4px 8px rgba(208, 0, 0, 0.25), 
		0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Định dạng riêng cho icon Font Awesome */
.btn-bao-gia i {
	font-size: 18px; /* Tăng kích thước icon lên một chút cho cân đối */
}






.nav-dropdown-has-border .nav-dropdown {
	border-radius: 10px;
}




.header-nav .has-dropdown > .nav-dropdown{
	display: table;               
	left: -99999px;
	opacity: 0;
	box-shadow: 0 8px 20px rgba(208, 0, 0, 0.2), 0 4px 6px rgba(208, 0, 0, 0.01) !important;
	visibility: hidden;
	max-height: 0;
	overflow: visible !important;   
	padding: 5px 0;
	transition: opacity .25s, visibility .25s, transform .3s;
	transform-origin: 50% 0;
	transform: scaleY(0);
	z-index: 9;
	min-width: 220px !important
}

.header-nav .has-dropdown:hover > .nav-dropdown,
.header-nav .has-dropdown:focus-within > .nav-dropdown{
	left: 0;                        
	opacity: 1;
	visibility: visible;
	max-height: 1000px;             
	transform: scaleY(1);
}

.header-nav .nav-dropdown-col{
	position: relative !important;
}


.header-nav .nav-dropdown-col > ul.sub-menu.nav-column{
	position: absolute !important;
	top: 0 !important;
	left: -99999px !important;
	opacity: 0 !important;
	visibility: hidden !important;
	display: block !important;
	min-width: 260px;
	background: #fff;
	transform-origin: 0 0;
	transform: scaleY(0);
	transition: transform .25s ease, opacity .2s ease, visibility .2s ease;
	z-index: 99;
}

.header-nav .nav-dropdown-col:hover > ul.sub-menu.nav-column,
.header-nav .nav-dropdown-col:focus-within > ul.sub-menu.nav-column{
	left: 100% !important;
	opacity: 1 !important;
	visibility: visible !important;
	transform: scaleY(1);
}


.header-nav>li>a {
	color: var(--fs-color-secondary) !important
}

.header-nav>li:hover>a,
.header-nav>li.active>a{
	color: var(--primary-color)!important
}

.nav-dropdown-has-arrow li.has-dropdown:after,
.nav-dropdown-has-arrow.nav-dropdown-has-border li.has-dropdown:before{
	display: none
}

.nav-dropdown-has-border .nav-dropdown {
	border: 0px !important;
}


.sub-menu.nav-dropdown.nav-dropdown-default > li > a {
	color: var(--fs-color-secondary) !important;
}

.sub-menu.nav-dropdown.nav-dropdown-default > li:hover {
	background: #fff7ed
}
.sub-menu.nav-dropdown.nav-dropdown-default > li:hover > a{
	color: var(--fs-color-secondary) !important
}

.nav-dropdown.nav-dropdown-default>li>a {
	border-bottom: 0px !important;
}

.nav.header-nav.header-bottom-nav.nav-left {
	gap: 30px;
}

.header-nav>li>a {
	font-size: 1rem !important;
}

.product-small .col-inner,
.fs-gk-card{
	height: 100%
}





























@media (min-width: 850px){
	.header-nav .has-dropdown{
		position: relative;
	}

	.header-nav .has-dropdown:hover > .nav-dropdown,
	.header-nav .has-dropdown:focus-within > .nav-dropdown{
		left: 0;                        
		opacity: 1;
		visibility: visible;
		max-height: 1000px;             
		transform: scaleY(1);
	}

	.header-nav .nav-dropdown-col{
		position: relative !important;
	}

	.header-nav .nav-dropdown-col > ul.sub-menu.nav-column{
		position: absolute !important;
		top: 0 !important;
		left: -99999px !important;
		opacity: 0 !important;
		visibility: hidden !important;
		box-shadow: 0 8px 20px rgba(208, 0, 0, 0.2), 0 4px 6px rgba(208, 0, 0, 0.01) !important;
		display: block !important;
		min-width: 220px;
		background: #fff;

		transform-origin: 0 0;
		transform: scaleY(0);
		transition: transform .25s ease, opacity .2s ease, visibility .2s ease;
		z-index: 99;
	}

	.header-nav .nav-dropdown-col:hover > ul.sub-menu.nav-column,
	.header-nav .nav-dropdown-col:focus-within > ul.sub-menu.nav-column{
		left: 100% !important;
		opacity: 1 !important;
		visibility: visible !important;
		transform: scaleY(1);
	}
}






.sub-menu.nav-dropdown.nav-dropdown-default > li {
	position: relative;
	overflow: visible;
	min-width: 260px;
	padding: .6em 20px;
}


.sub-menu.nav-column.nav-dropdown-default {
	position: absolute;
	top: 0;
	left: 100%; 
	background: #fff;
	min-width: 260px;
	z-index: 9999;
	transition: opacity ease-in .3s;
	display: none;
}



.nav-dropdown > li.menu-item-has-children:hover > .sub-menu {
	display: block !important;
}

.nav-dropdown .menu-item-has-children>a, .nav-dropdown .nav-dropdown-col>a, .nav-dropdown .title>a {
	text-transform: unset !important;
	font-weight: unset !important;
}
.nav-dropdown li{
	margin-bottom: 0px !important;
	border: none !important;
}
.blog-share.text-center, .entry-meta.text-center {
	display: none !important;
}

.nav-dropdown-default {
	padding: 0 !important;
}
.nav-dropdown-default .nav-column li>a, .nav-dropdown.nav-dropdown-default>li>a {
	margin: 0 !important;
}

.sub-menu li {
	padding:0 20px !important;
}

.sub-menu {
	border-radius: 0 !important;
}

.nav-dropdown-has-shadow .nav-dropdown{
	box-shadow: none !important;
}
.nav-dropdown li{
	margin-bottom: 0px !important;
	border: none !important;
}
.blog-share.text-center, .entry-meta.text-center {
	display: none !important;
}

.nav-dropdown-default {
	padding: 0 !important;
}
.nav-dropdown-default .nav-column li>a, .nav-dropdown.nav-dropdown-default>li>a {
	margin: 0 !important;
	font-size: 1rem;
	color: var(--fs-color-secondary);

}

.sub-menu li {
	padding:0 20px !important;
}

.sub-menu {
	border-radius: 0 !important;
}

.nav-dropdown-has-shadow .nav-dropdown{
	box-shadow: none !important;
}
.nav-dropdown>li.image-column, .nav-dropdown>li.nav-dropdown-col {
	display: block !important;
}












.usp-banner {
	width: 100%;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Khung giới hạn chiều rộng nội dung bên trong */
.usp-container {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap; /* Hỗ trợ tự động xuống dòng trên thiết bị nhỏ */
}

/* Mỗi cột thông tin */
.usp-item {
	display: flex;
	align-items: center;
	gap: 15px; /* Khoảng cách giữa icon và phần chữ */
	flex: 1;
	min-width: 280px; /* Đảm bảo chữ không bị dồn quá hẹp */
	padding: 10px 25px;
	box-sizing: border-box;
}

/* Tạo vạch phân cách đứng giữa các cột (không áp dụng cho cột cuối) */
.usp-item:not(:last-child) {
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* Định dạng icon Font Awesome */
.usp-icon {
	color: #ffeb3b; /* Màu vàng gold sáng nổi bật */
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0; /* Giữ icon không bị bóp méo khi màn hình thu nhỏ */
	width: 45px;
	height: 45px;
}

/* Phần chữ */
.usp-text {
	color: #ffffff;
}

/* Tiêu đề chính */
.usp-title {
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 3px 0;
	line-height: 1.3;
	color: #fff;
}

/* Phụ đề */
.usp-subtitle {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.85); /* Màu trắng nhạt hơn để phân cấp nội dung */
	margin: 0;
	font-weight: 400;
	line-height: 1.3;
}

/* Responsive: Giao diện hiển thị trên điện thoại di động */
@media (max-width: 991px) {

	.usp-item {
		border-right: none !important; /* Bỏ gạch dọc đứng */
		border-bottom: 1px solid rgba(255, 255, 255, 0.15); /* Thay thế bằng gạch ngang nhẹ */
		padding: 15px 0;
		width: 100%;
		max-width: 400px; /* Giới hạn độ rộng để thẳng hàng đẹp mắt */
		justify-content: flex-start;
	}

	.usp-item:last-child {
		border-bottom: none;
	}
	.off-canvas-left.mfp-ready .mfp-content {
		background: var(--primary-color)
	}
	.off-canvas:not(.off-canvas-center) .nav-vertical li>a {
		font-size: 1rem;
		color: #fff;
		text-transform:uppercase;
	}
	.icon-angle-down:before {
		color: #fff
	}
	.nav-vertical li li.menu-item-has-children>a {
		text-transform: unset
	}
}

.banner-homepage .col {
	padding: 0 15px 0px;
}


.custom-view-all-wrapper a {
	margin: 0
}
















.image-composite-wrapper {
	width: 100%;
	aspect-ratio: 1 / 1; /* Giữ khung luôn là hình vuông tỉ lệ chuẩn */
	position: relative;
	box-sizing: border-box;
}

/* 1. KHỐI ẢNH NỀN (Ảnh nhà xưởng phía sau) */
.bg-image-box {
	position: absolute;
	left: 8%;
	top: 8%;
	width: 75%;
	height: 75%;
	border-radius: 24px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12); /* Đổ bóng mềm diện rộng */
}

.bg-image-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 24px;
	display: block;
}

/* 2. HUY HIỆU ĐỎ (Nằm đè lên góc trên bên trái của ảnh nền) */
.experience-badge {
	position: absolute;
	top: -6%;
	left: -6%;
	background-color: #d00000; /* Màu đỏ chủ đạo */
	color: #ffffff;
	padding: 12px 20px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 8px 20px rgba(208, 0, 0, 0.25);
	z-index: 3;
	pointer-events: none; /* Tránh cản trở tương tác chuột */
}

/* Icon huy chương màu vàng */
.badge-icon {
	color: #ffeb3b; 
	font-size: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Phần chữ trong huy hiệu */
.badge-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.badge-text .number {
	font-size: 24px;
	font-weight: 800;
	line-height: 1;
}

.badge-text .label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.5px;
	margin-top: 3px;
	line-height: 1.1;
	white-space: nowrap;
}

/* 3. KHỐI ẢNH ĐÈ (Ảnh chân dung phía trước) */
.fg-image-box {
	position: absolute;
	right: 4%;
	bottom: 4%;
	width: 54%;
	height: 54%;
	background-color: #ffffff;
	border: 6px solid #ffffff; /* Viền trắng dày bao quanh */
	border-radius: 24px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18); /* Đổ bóng đậm hơn một chút */
	z-index: 2;
	box-sizing: border-box;
}

.fg-image-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 18px; /* Bo góc trong nhỏ hơn bo góc ngoài để khớp tỉ lệ viền 6px */
	display: block;
}

.fg-image-box br,
.bg-image-box br{
	display: none
}






















.about-section {
	max-width: 850px;
	width: 100%;
	box-sizing: border-box;
}

/* Nhãn "Về chúng tôi" */
.about-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background-color: #fff1f2; /* Màu hồng nhạt */
	color: #e11d48; /* Chữ đỏ hồng */
	font-size: 11px;
	font-weight: 700;
	padding: 6px 12px;
	border-radius: 50px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

/* Tiêu đề lớn */
.about-heading {
	color: #0f172a; /* Màu xanh đen */
	font-size: 32px;
	font-weight: 800;
	margin: 15px 0 20px 0;
	line-height: 1.25;
}

/* Đoạn văn miêu tả */
.about-desc {
	color: #475569; /* Màu xám */
	font-size: 15.5px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.about-desc strong {
	color: #0f172a; /* Các từ bôi đậm có màu tối hơn */
}

/* Hộp "Lĩnh vực hoạt động" */
.activities-box {
	background-color: #f8fafc; /* Màu nền xám nhạt */
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 24px 30px;
	margin: 30px 0;
	box-sizing: border-box;
}

/* Tiêu đề hoạt động chính */
.activities-title {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #0f172a;
	font-size: 14px;
	font-weight: 800;
	margin: 0 0 20px 0;
	letter-spacing: 0.5px;
}

/* Dấu chấm tròn màu đỏ đứng đầu */
.activities-title::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: #d00000;
	border-radius: 50%;
}

/* Lưới hiển thị danh sách hoạt động */
.activities-grid {
	display: grid;
	grid-template-columns: 1fr 1fr; /* Chia làm 2 cột bằng nhau */
	gap: 16px 40px;
}

/* Từng dòng hoạt động */
.activity-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #475569;
	font-size: 14.5px;
}

/* Icon dấu tích màu đỏ */
.activity-item i {
	color: var(--primary-color);
	font-size: 16px;
	flex-shrink: 0;
}

/* Khung chứa các nút kêu gọi hành động (CTA) */
.cta-container {
	display: flex;
	justify-content: space-between;
	gap: 5px;
	margin-top: 30px;
}

/* Định dạng chung của các nút */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	padding: 13px 28px;
	border-radius: 50px;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.2s ease;
	box-sizing: border-box;
}

.cta-container .btn-primary {
	width: 50%;
}

/* Nút đỏ: Hồ sơ năng lực */
.btn-primary {
	background-color: var(--primary-color);
	color: #ffffff;
	border: none;
}

.btn-primary:hover {
	background-color: #a00000;
}
.cta-container .btn-secondary {
	width: 50%;
}
/* Nút viền đỏ: Nhận báo giá */
.btn-secondary {
	background-color: transparent;
	color: #c00000;
	border: 1.5px solid #c00000;
}

.btn-secondary:hover {
	background-color: #fff5f5;
	color: var(--fs-color-secondary)
}

.about-desc p {
	text-align: justify
}

/* Responsive: Tối ưu hiển thị cho thiết bị di động */
@media (max-width: 768px) {
	.about-heading {
		font-size: 26px;
	}

	.activities-grid {
		grid-template-columns: 1fr; /* Chuyển về 1 cột dọc trên màn hình nhỏ */
		gap: 12px;
	}

	.activities-box {
		padding: 20px;
	}

	.cta-container {
		flex-direction: column; /* Xếp các nút dọc xuống trên mobile */
		width: 100%;
	}

	.btn {
		width: 100%;
	}
	.cta-container .btn-primary,
	.cta-container .btn-secondary{
		width: 100%;
	}

	.cta-container br {
		display: none
	}
}







.longvu-header-block {
	text-align: center;
	width: 100%;
	box-sizing: border-box;
}

/* Nhãn phụ phía trên (Badge) */
.longvu-badge {
	display: inline-block;
	background-color: #fff1f2; /* Màu hồng nhạt */
	color: #e11d48; /* Màu chữ đỏ hồng */
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: 50px;
	letter-spacing: 0.8px;
	margin-bottom: 8px;
}

/* Tiêu đề chính */
.longvu-heading {
	color: var(--fs-color-secondary); /* Màu xanh đen đậm */
	font-size: 32px;
	font-weight: 800;
	line-height: 1.35;
	margin: 0 auto 8px auto;
}

/* Đoạn mô tả phía dưới */
.longvu-description {
	color: #475569; /* Màu xám nhạt */
	font-size: 15.5px;
	font-weight: 400;
	line-height: 1.6;
	margin: 0 auto;
	max-width: 750px;
}

/* Tối ưu hiển thị cho thiết bị di động (Mobile) */
@media (max-width: 768px) {
	.longvu-heading {
		font-size: 25px;
		padding: 0 10px;
	}

	.longvu-description {
		font-size: 14px;
		padding: 0 15px;
	}
}














.longvu-usp-container {
	width: 100%;
	box-sizing: border-box;
}

/* Lưới hiển thị 4 cột (Grid Layout) */
.longvu-usp-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr); /* 4 cột bằng nhau */
	gap: 24px; /* Khoảng cách giữa các ô */
}

/* Thiết kế từng ô nội dung (Card) */
.longvu-usp-card {
	background-color: #ffffff;
	border: 1px solid #eef2f6; /* Viền mờ sang trọng */
	border-radius: 16px;
	padding: 40px 24px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
	box-sizing: border-box;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Hiệu ứng di chuột mượt mà */
}

/* Hiệu ứng nhấc nhẹ ô lên khi di chuột vào (Hover) */
.longvu-usp-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	border-color: #cbd5e1;
}

/* Khung tròn chứa Icon */
.longvu-usp-icon-wrap {
	width: 76px;
	height: 76px;
	background-color: #ffe4e4; /* Màu nền vàng cam pastel dịu mắt */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px auto;
}

/* Icon Font Awesome */
.longvu-usp-icon-wrap i {
	color: var(--primary-color); /* Sắc vàng ấm áp */
	font-size: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Tiêu đề mục */
.longvu-usp-title {
	color: #0f172a; /* Màu xanh đen đậm */
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 12px 0;
	line-height: 1.4;
}

/* Đoạn văn mô tả chi tiết */
.longvu-usp-desc {
	color: #475569; /* Màu xám */
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

/* --- Cấu hình hiển thị Responsive --- */

/* Trên máy tính bảng (Dưới 1024px): Chia làm 2 cột */
@media (max-width: 1024px) {
	.longvu-usp-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

/* Trên điện thoại di động (Dưới 640px): Chuyển thành 1 cột dọc */
@media (max-width: 640px) {
	.longvu-usp-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.longvu-usp-card {
		padding: 30px 20px;
	}
}

























.longvu-partners-section {
	width: 100%;
}

/* Tiêu đề chính */
.longvu-partners-title {
	text-align: center;
	font-size: 26px;
	font-weight: 800;
	color: #0f172a; /* Màu xanh đen */
	letter-spacing: 1px;
	text-transform: uppercase;
	margin: 0 0 12px 0;
}

/* Vạch gạch đỏ nhỏ dưới tiêu đề */
.longvu-partners-divider {
	width: 40px;
	height: 3px;
	background-color: #d00000; /* Màu đỏ */
	margin: 0 auto 40px auto;
}

/* Khung lưới bọc danh sách logo đối tác (Chỉ áp dụng trên Desktop) */
.longvu-partners-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
	overflow: hidden; /* Ẩn các phần tràn */
}

/* Track chứa logo */
.longvu-partners-track {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	width: 100%;
}

/* Ô chứa logo đối tác (Card) */
.longvu-partner-card {
	flex: 1;
	background-color: #ffffff;
	border: 1px solid #e2e8f0; /* Viền mờ mặc định */
	border-radius: 12px;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
	box-sizing: border-box;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Logo ảnh bên trong */
.longvu-partner-card img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	filter: grayscale(100%); /* Biến logo thành trắng đen */
	opacity: 0.7;            /* Làm mờ nhẹ */
	transition: all 0.3s ease;
}

/* Khi hover: Logo khôi phục lại màu sắc gốc */
.longvu-partner-card:hover img {
	filter: grayscale(0%);   /* Trở lại màu gốc */
	opacity: 1;
}

/* Hiệu ứng Hover */
.longvu-partner-card:hover {
	border-color: #f87171; /* Màu viền hồng đỏ như hình mẫu */
	box-shadow: 0 8px 24px rgba(239, 68, 68, 0.12); /* Đổ bóng đỏ mờ mềm mại */
	cursor: pointer;
}

/* --- Tối ưu hiển thị và Chuyển động GPU trên Di động (Mobile/Tablet dưới 991px) --- */
@media (max-width: 991px) {
	.longvu-partners-wrapper {
		justify-content: flex-start;
		padding: 10px 0 25px 0; /* Khoảng trống phía dưới cho bóng đổ */
		width: 100%;
	}

	.longvu-partners-track {
		width: max-content; /* Không cho phép bó hẹp chiều rộng của nhóm chứa */
		justify-content: flex-start;
		flex-wrap: nowrap;
	}

	/* Định dạng kích thước cố định của các ô trên mobile */
	.longvu-partner-card {
		flex: 0 0 145px; 
		height: 80px;
	}

	/* Kích hoạt GPU-acceleration và chạy hoạt ảnh CSS */
	.longvu-partners-track.is-animating {
		will-change: transform;
		/* 22s là thời gian chạy hết 1 chu kỳ. Bạn có thể tăng lên (ví dụ: 30s) để chạy chậm hơn hoặc giảm xuống để chạy nhanh hơn */
		animation: longvuMarqueeGPU 22s linear infinite;
	}

	/* Tạm dừng chuyển động */
	.longvu-partners-track.is-paused {
		animation-play-state: paused;
	}
}

/* Định nghĩa hoạt ảnh tịnh tiến bằng Transform 3D (GPU tối ưu hóa) */
@keyframes longvuMarqueeGPU {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		/* Di chuyển chính xác theo khoảng cách được JavaScript đo đạc */
		transform: translate3d(var(--move-distance, -100%), 0, 0);
	}
}
















.news-header {
	display: flex;
	justify-content: space-between; /* Đẩy 2 phần ra 2 đầu trên Desktop */
	align-items: center;
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 12px;
}

.header-left {
	display: flex;
	align-items: center;
}

.indicator-bar {
	width: 6px;
	height: 28px;
	background-color: var(--primary-color);
	border-radius: 3px;
	margin-right: 8px;
	display: inline-block;
}

.header-title {
	color: var(--fs-color-secondary);
	font-size: 28px;
	font-weight: 800;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

.view-all-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: bold;
	display: flex;
	align-items: center;
	white-space: nowrap;
}

.view-all-link:hover {
	color: var(--fs-color-secondary) !important
}
/* Định dạng cho Icon Font Awesome */
.arrow-icon {
	margin-left: 6px;
	font-size: 12px; /* Thu nhỏ cỡ icon cho cân đối với chữ */
	line-height: 1;  /* Giúp căn giữa icon theo chiều dọc tốt hơn */
}

.view-all-link br {
	display: none
}

.news-header p {
	margin-bottom: 0
}
/* --- GIAO DIỆN CHO MOBILE (Màn hình dưới 576px) --- */
@media (max-width: 576px) {
	.news-header {
		justify-content: space-between; /* Đưa "Xem tất cả tin" lại gần tiêu đề */
		gap: 20px;                   /* Khoảng cách giữa tiêu đề và chữ Xem tất cả */
		padding-bottom: 8px;
	}

	.indicator-bar {
		width: 4px;
		height: 18px;                /* Thu nhỏ thanh đỏ */
		margin-right: 8px;
	}

	.header-title {
		font-size: 18px;             /* Thu nhỏ cỡ chữ tiêu đề */
	}

	.view-all-link {
		font-size: 14px;             /* Thu nhỏ cỡ chữ "Xem tất cả" */
	}

	.arrow-icon {
		font-size: 9px;              /* Thu nhỏ icon trên Mobile */
		margin-left: 4px;
	}

	.longvu-partners-title {
		font-size: 21px
	}
}
















/* Container chính dạng Grid phân chia 3 cột bằng nhau */
.news-grid-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 20px;
}

/* CỘT TRÁI: Hộp danh sách bài viết */
.featured-box {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	padding: 20px;
	display: flex;
	flex-direction: column;
}

.featured-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 12px;
	margin-bottom: 15px;
}

.featured-header h3 {
	margin: 0;
	font-size: 18px;
	color: #333;
	font-weight: bold;
	width: 70%;
}
.read-more:hover {
	color: var(--fs-color-secondary) !important
}

.badge-red {
	background-color: #fce8e6;
	color: #c00c0c;
	font-size: 14px;
	font-weight: bold;
	padding: 4px 8px;
	border-radius: 4px;
}

.featured-item {
	border-bottom: 1px solid #f0f0f0;
	padding: 15px 0;
}

.featured-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.item-title {
	margin: 0 0 6px 0;
	font-size: 15px;
	line-height: 1.4;
}

.item-title a {
	color: #001c3d;
	text-decoration: none;
	font-weight: bold;
	transition: color 0.2s;
}

.item-title a:hover {
	color: #c00c0c;
}

.item-date, .meta-date {
	color: #888;
	font-size: 12px;
}

.item-date i, .meta-date i {
	margin-right: 4px;
}

/* 2 CỘT PHẢI: Card bài viết có ảnh đại diện */
.news-card {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	padding: 15px;
	display: flex;
	flex-direction: column;
}

.card-image {
	width: 100%;
	overflow: hidden;
	border-radius: 6px;
	margin-bottom: 15px;
}

.card-image img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	background: #f9f9f9;
}

.card-meta {
	display: flex;
	gap: 15px;
	margin-bottom: 12px;
	font-size: 12px;
}

.meta-tag {
	color: #c00c0c;
	font-weight: bold;
}

.meta-tag i {
	margin-right: 4px;
}

.card-title {
	margin: 0 0 10px 0;
	font-size: 16px;
	line-height: 1.4;
}

.card-title a {
	color: #001c3d;
	text-decoration: none;
	font-weight: bold;
	transition: color 0.2s;
}

.card-title a:hover {
	color: #c00c0c;
}

.card-excerpt {
	color: #555;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 15px;
}

.read-more {
	color: #c00c0c;
	text-decoration: none;
	font-weight: bold;
	font-size: 13px;
	margin-top: auto; /* Luôn đẩy nút "Đọc tiếp" nằm sát dưới đáy Card */
}

/* --- RESPONSIVE TRÊN MOBILE & TABLET --- */
@media (max-width: 992px) {
	.news-grid-container {
		grid-template-columns: 1fr; /* Trở thành cột dọc đơn giản trên thiết bị di động */
	}
}

.sub-menu li a img {
	display: none
}














/* Tiêu đề */
.company-card-title {
	color: #ffffff;
	text-transform: uppercase;
	margin-bottom: 24px;
	letter-spacing: 0.5px;
	line-height: 1.3;
}

/* Thân chứa thông tin */
.company-card-body {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Từng hàng thông tin */
.company-card-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

/* Phần chữ */
.company-card-text {
	font-size: 0.95rem;
	line-height: 1.5;
	color: #dedede;
}

/* Chữ in đậm đầu dòng */
.company-card-label {
	color: #ffffff;
	font-weight: 700;
}

/* Đường dẫn liên kết */
.company-card-link, 
.company-card-phone-link {
	color: #ffffff;
	text-decoration: none;
	font-weight: 700;
	transition: color 0.2s ease;
}

.company-card-link:hover, 
.company-card-phone-link:hover {
	color: #ff5252;
}

/* Nhóm số điện thoại */
.company-card-phones {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.company-card-phone-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

/* Khung chứa biểu tượng */
.company-card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	font-size: 1rem;
	margin-top: 2px;
	text-align: center;
}

/* Màu biểu tượng */
.company-card-icon-red {
	color: #c92424;
}

.company-card-icon-yellow {
	color: #e0a416;
}

/* Giao diện trên di động */
@media (max-width: 576px) {
	.company-card-title {
		font-size: 1.15rem;
	}

	.company-card-phones {
		flex-direction: column;
		gap: 12px;
	}

	#main .category-page-row {
		padding-top: 0
	}
}

.ux-menu-link__link.flex {
	color: #fff
}


/* Thêm dấu chấm tròn trước mỗi liên kết */
.ux-menu-link__link::before {
	content: "•"; /* Bạn có thể đổi thành "." nếu muốn dùng dấu chấm thường */
	margin-right: 8px; /* Khoảng cách giữa dấu chấm và chữ */
	color: inherit; /* Đồng bộ màu sắc với màu chữ của link */
	display: inline-block;
}
.ux-menu-link__link:hover .ux-menu-link__link::before,
.ux-menu-link__link:hover {
	color: var(--primary-color) !important
}

#footer h3 {
	color: var(--primary-color)
}

/* 1. Thiết kế tổng thể hộp Sidebar */
#shop-sidebar .widget_product_categories {
	background: #ffffff;
	padding: 20px;
	border: 1px solid #eef1f5;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* 2. Tiêu đề danh mục */
#shop-sidebar .widget-title.shop-sidebar {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	color: #222;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
	display: block;
}

#shop-sidebar .is-divider.small {
	height: 3px;
	background-color: var(--primary-color, #446084); /* Tự động lấy màu chủ đạo của web */
	margin-top: 0;
	margin-bottom: 20px;
	width: 45px;
	border-radius: 2px;
}

/* 3. Danh mục cha (Cấp 1) */
#shop-sidebar ul.product-categories {
	list-style: none;
	padding: 0;
	margin: 0;
}

#shop-sidebar ul.product-categories > li.cat-item {
	position: relative;
	border-bottom: 1px solid #f0f0f0;
	margin: 0;
}

#shop-sidebar ul.product-categories > li.cat-item:last-child {
	border-bottom: none;
}

#shop-sidebar ul.product-categories li.cat-item a {
	display: inline-block;
	padding: 12px 40px 12px 0; /* Khoảng trống bên phải để không đè lên nút toggle */
	color: var(--fs-color-secondary);
	font-weight: 600;
	transition: all 0.25s ease;
	width: 100%;
	text-decoration: none;
	box-sizing: border-box;
}

/* Hiệu ứng hover cho danh mục cha */
#shop-sidebar ul.product-categories li.cat-item a:hover {
	color: var(--primary-color, #446084);
	padding-left: 6px;
}

/* Trạng thái danh mục đang hoạt động (Đang xem) */
#shop-sidebar ul.product-categories li.cat-item.current-cat > a {
	color: var(--primary-color, #446084);
	font-weight: 700;
}

/* Tạo một vạch màu nhỏ bên trái khi danh mục đang được active */
#shop-sidebar ul.product-categories li.cat-item.current-cat::before {
	content: "";
	position: absolute;
	left: -20px; /* Căn chỉnh sát viền trái của widget */
	top: 12px;
	bottom: 12px;
	width: 3px;
	background-color: var(--primary-color, #446084);
	border-radius: 0 4px 4px 0;
}

/* 4. Nút bấm Đóng/Mở (Toggle button) */
#shop-sidebar ul.product-categories li.cat-item .toggle {
	position: absolute;
	right: 0;
	top: 6px;
	width: 32px;
	height: 32px;
	background: transparent;
	border: none;
	color: #8c8c8c;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
	border-radius: 50%;
	outline: none;
}

#shop-sidebar ul.product-categories li.cat-item .toggle:hover {
	color: var(--primary-color, #446084);
	background-color: #f5f7fa;
}

/* Hiệu ứng xoay icon mũi tên mượt mà khi mở danh mục con */
#shop-sidebar ul.product-categories li.cat-item .toggle i {
	transition: transform 0.25s ease;
}

#shop-sidebar ul.product-categories li.cat-item[aria-expanded="true"] > .toggle i {
	transform: rotate(180deg);
}

/* 5. Danh mục con (Cấp 2) */
#shop-sidebar ul.product-categories ul.children {
	list-style: none;
	padding: 0 0 10px 15px; /* Thụt lề cho danh mục con */
	margin: 0 0 0 5px;
	border-left: 1px dashed #dcdcdc; /* Đường kẻ dọc dạng nhánh cây */
}

#shop-sidebar ul.product-categories ul.children li.cat-item {
	border-bottom: none;
	position: relative;
}

/* Đường kẻ ngang phụ nối vào chữ của danh mục con */
#shop-sidebar ul.product-categories ul.children li.cat-item::before {
	content: "";
	position: absolute;
	left: -15px;
	top: 18px;
	width: 8px;
	height: 1px;
	background-color: #dcdcdc;
}

#shop-sidebar ul.product-categories ul.children li.cat-item a {
	padding: 7px 0;
	font-size: 13px;
	font-weight: 400;
	color: #666;
}

#shop-sidebar ul.product-categories ul.children li.cat-item a:hover {
	color: var(--primary-color, #446084);
	padding-left: 4px;
}

#shop-sidebar ul.product-categories ul.children li.cat-item.current-cat > a {
	color: var(--primary-color, #446084);
	font-weight: 600;
}




.single-product-1 .product-gallery-slider img {
	border-radius: 20px;
	border: 1px solid var(--primary-color);
}
.single-product-1 .product-thumbnails a {
	border-radius: 10px;
}

.single-product-1 .title-product .col-inner,
.single-product-1 .tab-products .col-inner{
	padding: 20px;
	border: 1px solid var(--primary-color);
	border-radius: 20px;
	box-shadow: 0 4px 10px rgba(196, 150, 70, 0.25);
}

.single-product-1 .product-section {
	border-top: 0px;
}
#tab-title-reviews {
	display:none
}
.single-product-1 .product-short-description p,
.single-product-1 .tab-panels p{
	text-align: justify;
}
.single-product-1 button {
	border-radius: 5px;
}
@media (max-width: 549px){
	.single-product-1 button {
		width: 100%;
	}
	.single-product-1 button {
		padding: 5px;
	}
	.single-product-1  .row-small>.flickity-viewport>.flickity-slider>.col {
		padding: 0 4.8px 19.6px;
	}
}
#respond {
	display: none
}
.blog-wrapper .is-divider {
	display: none
}

.blog-wrapper .archive-page-header .page-title  span {
	font-size: 1.5em;
}
.article-inner .entry-header-text {
	padding-bottom: 0;
}

.article-inner .entry-title {
	color: var(--primary-color);
	font-size: 2rem;
}


.bv-box {
	background: #fff;
	border-radius: 10px;
	border: 1px solid var(--primary-color);
	overflow: hidden;
}

/* Header */
.bv-header {
	padding: 12px 16px;
	font-weight: 700;
	border-bottom: 1px solid var(--primary-color);
	font-size: 15px;
	color: var(--color-black);
}

/* Row */
.bv-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	text-decoration: none;
	border-bottom: 1px solid #f1f1f1;
	transition: background 0.25s;
}

.bv-row:last-child {
	border-bottom: none;
}

/* Image */
.bv-img {
	position: relative;
	width: 60px;
	height: 60px;
	flex-shrink: 0;
}

.bv-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 6px;
}

/* Number on image */
.bv-number {
	position: absolute;
	top: -6px;
	left: -6px;
	width: 22px;
	height: 22px;
	background: var(--primary-color);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* Content */
.bv-info {
	flex: 1;
}

.bv-title-post {
	font-size: 14px;
	font-weight: 600;
	color: #000;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.bv-row:hover .bv-title-post {
	color: var(--primary-color);
}

.bv-date {
	font-size: 12px;
	color: #888;
	margin-top: 4px;
}

.article-inner p {
	text-align: justify
}
.single-product-1 .woocommerce-Price-amount.amount bdi {
	color: var(--primary-color);
}

.product-categories li:hover a {
	color: var(--primary-color) !important
}

.post-item .col-inner,
.post-item .col-inner .box {
	border-radius: 12px;
}
.post-item .col-inner .box .box-image {
	border-radius: 12px 12px 0 0;
}

.post-item .col-inner .box .post-title a, .post-item .col-inner .box .from_the_blog_excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 1rem;
}

.post-item .post-title:hover a {
	color: var(--primary-color) !important
}

.post-item .is-divider {
	background: #fff
}
.post-item .post-meta {
	color: var(--primary-color)
}
@media (max-width: 549px){
	.news-page .row-small>.col{
		padding: 0 4.8px 19.6px;
	}
}










.sam-intro-block-v2 {
	width: 100%;
	text-align: left;
	margin: 0 auto;
	padding: 30px;
	background: #fff;
	border-top: 4px solid var(--primary-color);
	border-radius: 20px;
	box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
}

/* 2. TiÃƒÂªu Ã„â€˜Ã¡Â»Â chÃƒÂ­nh */
.sam-intro-block-v2 .sam-title {
	font-size: 36px;
	line-height: 1.3;
	font-weight: 700;
	color: #111111;
	margin-top: 0;
	margin-bottom: 20px;
}
.sam-intro-block-v2 .sam-title .text-blue {
	color: var(--primary-color);
}
.sam-intro-block-v2 .sam-title .text-orange {
	color: var(--fs-color-secondary);
}

/* 3. Thanh gÃ¡ÂºÂ¡ch ngang dÃ†Â°Ã¡Â»â€ºi tiÃƒÂªu Ã„â€˜Ã¡Â»Â */
.sam-divider,
.market-homepage.about-us-homepage .sam-divider{
	width: 80px;
	height: 5px;
	background-color: var(--primary-color);
	border-radius: 10px;
	margin: 0 0 25px 0
}

/* 4. Ã„ÂoÃ¡ÂºÂ¡n vÃ„Æ’n mÃƒÂ´ tÃ¡ÂºÂ£ */
.sam-intro-block-v2 .sam-description {
	font-size: 16px;
	line-height: 1.6;
	color: #4A5568;
	margin-bottom: 35px;
	text-align: justify;
}

/* 5. NhÃƒÂ³m cÃƒÂ¡c nÃƒÂºt bÃ¡ÂºÂ¥m */
.sam-intro-block-v2 .sam-button-group {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

/* 6. Ã„ÂÃ¡Â»â€¹nh dÃ¡ÂºÂ¡ng cÃ†Â¡ bÃ¡ÂºÂ£n cho nÃƒÂºt bÃ¡ÂºÂ¥m */
.sam-intro-block-v2 .btn-sam {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 30px;
	text-decoration: none !important;
	transition: all 0.3s ease;
	white-space: nowrap;
}

/* 7. NÃƒÂºt mÃƒÂ u xanh dÃ†Â°Ã†Â¡ng (TÃƒÂ¬m hiÃ¡Â»Æ’u thÃƒÂªm) */
.sam-intro-block-v2 .btn-sam.btn-blue {
	background-color: var(--primary-color);
	color: #ffffff !important;
	border: 2px solid var(--primary-color);
	box-shadow: 0 4px 15px #c00c0c7d;
}
.sam-intro-block-v2 .btn-sam.btn-blue:hover {
	background-color: var(--fs-color-secondary);
	border-color: var(--fs-color-secondary);
	transform: translateY(-2px);
}

/* 8. NÃƒÂºt viÃ¡Â»Ân cam (Ã„ÂÃ„Æ’ng kÃƒÂ½ hÃ¡Â»Âc thÃ¡Â»Â­) */
.sam-intro-block-v2 .btn-sam.btn-orange-outline {
	background-color: transparent;
	color: var(--primary-color) !important;
	border: 2px solid var(--fs-color-secondary);
}
.sam-intro-block-v2 .btn-sam.btn-orange-outline:hover {
	background-color: var(--fs-color-secondary);
	color: #ffffff !important;
	transform: translateY(-2px);
}

/* 9. HiÃ¡Â»â€¡u Ã¡Â»Â©ng cho mÃ…Â©i tÃƒÂªn khi di chuÃ¡Â»â„¢t qua nÃƒÂºt */
.sam-intro-block-v2 .btn-sam .arrow {
	margin-left: 8px;
	font-size: 18px;
	line-height: 1;
	transition: transform 0.2s ease;
}
.sam-intro-block-v2 .btn-sam:hover .arrow {
	transform: translateX(4px);
}
.sam-button-group br {
	display: none
}
.intro-pages .img-inner {
	border-radius: 20px;
	box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
}
/* 10. TÃ¡Â»â€˜i Ã†Â°u hÃƒÂ³a giao diÃ¡Â»â€¡n di Ã„â€˜Ã¡Â»â„¢ng */
@media (max-width: 550px) {
	.sam-intro-block-v2 .sam-title {
		font-size: 28px;
	}
	.sam-intro-block-v2 .sam-button-group {
		flex-direction: column;
		gap: 12px;
	}
	.sam-intro-block-v2 .btn-sam {
		width: 100%;
	}
}

.about-us-homepage .img-inner {
	border-radius: 20px;
}



/* Áp dụng hiệu ứng cho ảnh có class .about-us-homepage */
.about-us-homepage .img-inner {
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.08); /* Đổ bóng 2 lớp mềm mại và sâu hơn */
	animation: floatUpDown 4s ease-in-out infinite; /* Chuyển động lên xuống vô hạn, chu kỳ 4 giây */
	will-change: transform; /* Giúp trình duyệt tối ưu hóa phần cứng, tránh bị giật lag */
}

/* Định nghĩa hiệu ứng chuyển động bay lên xuống */
@keyframes floatUpDown {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(50px); /* Di chuyển lên trên 12px ở giữa chu kỳ */
	}
	100% {
		transform: translateY(0);
	}
}












.commit-homepage .col-inner {
	height: 100%;
}
.commit-homepage .icon-box {
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	background: var(--color-white);
	transition: all .3s ease-in;
	height: 100%;
}
.commit-homepage .icon-box:hover {
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}


.commit-homepage .icon-box h5 {
	color: var(--fs-color-secondary)
}

.commit-homepage .icon .icon-inner {
	padding: 10px;
	background: var(--primary-color);
	border-radius: 100px;
	transition: all .3s ease-in;
}

.commit-homepage .icon-box:hover .icon-inner{
	background: var(--primary-color);
}
.icon-box-img img {
	padding-top: 0 !important
}
.commit-homepage .icon-box:hover img,
.commit-homepage .icon-box img{
	filter: brightness(0) invert(1);
}








:root {
	--color-red: #dc2626;     /* Màu đỏ nền số */
	--color-dark: #101828;    /* Màu tối của thanh nối, mũi tên và chữ */
	--color-white: #ffffff;   /* Màu nền trắng chính */
	--color-bg-card: #f8fafc; /* Màu nền nhẹ của khung chữ */
	--color-border: #eaecf0;  /* Màu viền khung chữ */
}

/* Khung bọc ngoài quy trình */
.process-wrapper {
	background-color: var(--color-white);
	border-radius: 32px;
	padding: 30px 20px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	display: flex;
	flex-direction: column; /* Mobile xếp dọc */
	gap: 15px;
	width: 100%;
	max-width: 1200px;
	margin: 30px auto;
	box-sizing: border-box;
}

/* --- HIỂN THỊ TRÊN MOBILE --- */
.step-item {
	display: flex;
	flex-direction: row; 
	align-items: center;
	gap: 15px;
	flex-shrink: 0;
	width: 100%;
	cursor: pointer;
}

.step-number {
	width: 44px;
	height: 44px;
	background-color: var(--color-red);
	color: var(--color-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.1rem;
	box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
	flex-shrink: 0;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.step-text {
	color: var(--color-dark);
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1.4;

	background-color: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	padding: 12px 16px;
	box-sizing: border-box;
	flex-grow: 1;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Hiệu ứng mượt mà */
}

/* Thanh nối màu #101828 */
.connector {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 2px;
	height: 40px;
	background-color: var(--color-dark);
	margin-left: 21px;
}

.connector .dot {
	width: 6px;
	height: 6px;
	background-color: var(--color-dark);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}



/* --- HIỆU ỨNG TƯƠNG TÁC ĐỘNG (HOVER) --- */

/* 1. Hiệu ứng sóng mạch đập (Pulse) cho vòng tròn đỏ */
@keyframes pulse-red {
	0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
	70% { box-shadow: 0 0 0 10px rgba(220, 38, 38, 0); }
	100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.step-item:hover .step-number {
	transform: scale(1.1); /* Phóng to nhẹ */
	animation: pulse-red 1.5s infinite; /* Chạy sóng pulse */
}

/* 2. Hiệu ứng nhấc khung và đổi màu viền đỏ */
.step-item:hover .step-text {
	border-color: var(--color-red);
	background-color: var(--color-white); /* Đổi sang nền trắng tinh tế */
	transform: translateY(-4px); /* Nhấc khung chữ lên */
	box-shadow: 0 8px 20px rgba(16, 24, 40, 0.06); /* Đổ bóng nhẹ */
}


/* --- HIỂN THỊ TRÊN MÁY TÍNH (Desktop >= 992px) --- */
@media (min-width: 992px) {
	.process-wrapper {
		flex-direction: row; 
		justify-content: space-between;
		align-items: stretch; /* Đảm bảo các khung chữ cao bằng nhau */
		padding: 50px 30px;
		gap: 0;
	}

	.step-item {
		flex-direction: column; 
		align-items: center;
		text-align: center;
		flex: 1;
		max-width: 180px;
	}

	.step-number {
		width: 48px;
		height: 48px;
		font-size: 1.15rem;
		margin-bottom: 16px;
	}

	.step-text {
		width: 100%;
		display: flex;
		align-items: center;     
		justify-content: center; 
		text-align: center;
		flex-grow: 1;            
	}

	/* Thanh nối nằm ngang màu #101828 */
	.connector {
		flex: 1;
		width: auto;
		height: 2px; 
		background-color: var(--color-dark);
		margin: 0 -15px; 
		align-self: flex-start;
		margin-top: 23px; /* Căn giữa tâm vòng tròn 48px */
		min-width: 15px;
	}
}











/* Khung chứa chính */
.blv-office-box {
	background-color: #ffffff;
	width: 100%;
	border-radius: 20px;
	padding: 30px 25px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	border: 1px solid #eceff1;
}

/* Tiêu đề chính */
.blv-office-title-row {
	display: flex;
	align-items: center;
	padding-bottom: 15px;
	border-bottom: 1px solid #f0f0f0;
	margin-bottom: 25px;
}

.blv-office-title-row i.blv-office-red-dot {
	color: var(--primary-color);
	font-size: 10px;
	margin-right: 10px;
}

.blv-office-title-row h2 {
	font-size: 18px;
	font-weight: 700;
	color: var(--fs-color-secondary);
	line-height: 1.2;
	margin: 0;
}

/* Khung chứa các dòng thông tin */
.blv-office-body {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

/* Từng dòng thông tin */
.blv-office-item-row {
	display: flex;
	align-items: flex-start;
}

/* Định dạng icon */
.blv-office-icon-wrap {
	color: var(--primary-color);
	font-size: 18px;
	width: 24px;
	margin-right: 15px;
	text-align: center;
	margin-top: 2px; /* Căn chỉnh icon thẳng hàng với dòng chữ đầu tiên */
}

/* Phần nội dung chữ */
.blv-office-text-wrap {
	flex: 1;
	font-size: 14.5px;
	line-height: 1.5;
}

.blv-office-text-wrap strong {
	display: block;
	color: #111111;
	font-weight: 700;
	margin-bottom: 4px;
}

.blv-office-text-wrap p {
	color: #4a4a4a;
	margin: 0;
}

/* Định dạng riêng cho Email link */
.blv-office-text-wrap a {
	color: #d32f2f;
	text-decoration: none;
	font-weight: 500;
}

.blv-office-text-wrap a:hover {
	text-decoration: underline;
	color: var(--fs-color-secondary)
}



/* Khung chứa chính (màu nền hồng nhạt, viền bo tròn) */
.blv-hotline-container {
	background-color: #fff9f9;
	border: 1px solid #ffccd5;
	border-radius: 20px;
	padding: 25px 30px;
	width: 100%;
}

/* Tiêu đề hỗ trợ */
.blv-hotline-header {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	color: var(--primary-color); /* Màu đỏ đậm */
}

/* Định dạng biểu tượng điện thoại */
.blv-hotline-header i {
	font-size: 20px;
	margin-right: 12px;
	transform: rotate(-15deg); /* Xoay nhẹ icon điện thoại giống hình mẫu */
}

.blv-hotline-title {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.5px;
	margin: 0;
	text-transform: uppercase;
}

/* Khu vực chứa nút bấm */
.blv-hotline-body {
	display: flex;
	flex-direction: column;
}

/* Thiết kế ô Hotline/Zalo dạng nút bấm */
.blv-hotline-pill {
	background-color: #ffffff;
	border: 1px solid #ffb3b3;
	border-radius: 12px;
	padding: 14px 20px;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}

/* Hiệu ứng khi rê chuột vào */
.blv-hotline-pill:hover {
	border-color: #d32f2f;
	box-shadow: 0 4px 12px rgba(211, 47, 47, 0.08);
}

.blv-hotline-label {
	font-size: 15px;
	color: #111111;
	font-weight: 700;
}

.blv-hotline-number {
	font-size: 16px;
	color: var(--primary-color);
	font-weight: 700;
	letter-spacing: 0.5px;
}

.blv-hotline-body br {
	display: none
}












/* Khung chứa form chính */
.blv-form-wrapper {
	background-color: #ffffff;
	border: 1px solid #eef2f5;
	border-radius: 20px;
	padding: 35px 30px;
	max-width: 750px;
	width: 100%;
	margin: 0 auto;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	box-sizing: border-box;
}

/* Tiêu đề */
.blv-form-title {
	font-size: 22px;
	font-weight: 700;
	color: #111111;
	margin-bottom: 8px;
	line-height: 1.3;
}

/* Mô tả phụ bên dưới tiêu đề */
.blv-form-subtitle {
	font-size: 14.5px;
	color: #666666;
	margin-bottom: 30px;
	line-height: 1.5;
}

/* Thiết lập cấu trúc dòng cột cho Form */
.blv-form-row {
	display: flex;
	gap: 20px;
}

.blv-form-col {
	flex: 1;
	min-width: calc(50% - 10px);
}

/* Định dạng nhãn text của từng ô */
.blv-form-label {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #222222;
	margin-bottom: 8px;
}

/* Đảm bảo khung bọc của Contact Form 7 nhận 100% chiều rộng */
.blv-form-wrapper .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

/* Định dạng các ô nhập liệu (Input & Textarea) */
.blv-form-wrapper input[type="text"],
.blv-form-wrapper input[type="tel"],
.blv-form-wrapper input[type="email"],
.blv-form-wrapper textarea {
	width: 100%;
	background-color: #f7f9fa;
	border: 1px solid #dcdfe4;
	border-radius: 5px;
	padding: 25px 16px;
	font-size: 14px;
	color: #333333;
	outline: none;
	transition: all 0.3s ease;
	box-sizing: border-box;
	box-shadow: unset;
}

/* Thiết lập chiều cao riêng cho khung ghi chú */
.blv-form-wrapper textarea {
	height: 120px;
	resize: vertical;
}

/* Hiệu ứng focus khi nhấp vào ô nhập */
.blv-form-wrapper input[type="text"]:focus,
.blv-form-wrapper input[type="tel"]:focus,
.blv-form-wrapper input[type="email"]:focus,
.blv-form-wrapper textarea:focus {
	border-color: #d30505;
	background-color: #ffffff;
	box-shadow: 0 0 0 3px rgba(211, 5, 5, 0.08);
}

/* Thiết lập placeholder (chữ mờ gợi ý) */
.blv-form-wrapper ::placeholder {
	color: #9ea8b6;
	opacity: 1;
}

/* Nút bấm gửi liên hệ */
.blv-form-submit {
	background-color: #d30505; /* Màu đỏ nổi bật */
	color: #ffffff;
	width: 100%;
	padding: 15px;
	border-radius: 5px;
	font-size: 15px;
	font-weight: 700;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: background-color 0.2s ease, transform 0.1s ease;
	box-sizing: border-box;
	margin-top: 10px;
}

/* Hiệu ứng khi rê chuột vào nút gửi */
.blv-form-submit:hover {
	background-color: #b30404;
}

.blv-form-submit:active {
	transform: scale(0.99);
}

.blv-form-submit i {
	font-size: 14px;
}

/* Tự động tối ưu chuyển đổi sang 1 cột trên điện thoại di động */
@media (max-width: 600px) {
	.blv-form-row {
		flex-direction: column;
		gap: 20px;
	}
	.blv-form-col {
		min-width: 100%;
	}
	.blv-form-wrapper {
		padding: 20px;
		border-radius: 10px;
	}
	h2 {
		font-size: 25px !important
	}
}














.partners-section {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}

.partner-card {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 25px;
	background: #ffffff;
	border: 1px solid #e2eee3;
	border-radius: 14px;
	box-shadow: 0 8px 25px #e3061333;
	overflow: hidden;
	transition: all 0.35s ease;
}

/* ÄÆ°á»ng xanh phÃ­a trÃªn */
.partner-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 4px;
	background: var(--primary-color);
	transition: width 0.4s ease;
}

.partner-card:hover {
	transform: translateY(-7px);
	border-color: var(--primary-color);
	box-shadow: rgba(227, 6, 19, 0.2) 0px 8px 25px;
}

.partner-card:hover::before {
	width: 100%;
}

/* Icon */
.partner-icon {
	flex: 0 0 64px;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e3061333;
	border-radius: 50%;
	transition: all 0.35s ease;
}

.partner-icon img {
	width: 38px;
	height: 38px;
	object-fit: contain;
	transition: transform 0.35s ease;
}

.partner-card:hover .partner-icon {
	background: var(--primary-color);
	transform: rotate(-5deg);
}

.partner-card:hover .partner-icon img {
	transform: scale(1.12);
}

/* Ná»™i dung */
.partner-content {
	flex: 1;
}

.partner-content h3 {
	margin: 0 0 9px;
	font-size: 19px;
	line-height: 1.4;
	font-weight: 700;
	color: var(--fs-color-secondary);
	transition: color 0.35s ease;
}

.partner-card:hover h3 {
	color: var(--primary-color);
}

.partner-content p {
	margin: 0;
}

/* Tablet */
@media (max-width: 849px) {
	.partners-section {
		grid-template-columns: 1fr;
	}
}

/* Mobile */
@media (max-width: 549px) {
	.partners-section {
		gap: 15px;
	}

	.partner-card {
		padding: 20px 16px;
		gap: 14px;
	}

	.partner-icon {
		flex: 0 0 54px;
		width: 54px;
		height: 54px;
	}

	.partner-icon img {
		width: 32px;
		height: 32px;
	}

	.partner-content h3 {
		font-size: 17px;
	}

	.partner-content p {
		font-size: 13px;
		line-height: 1.65;
	}
	.sidebar-menu ul li a{
		color: #fff !important;
		font-size: 1rem;
	}
	.abm-prod-grid {
		gap: 10px !important;
	}
	.container.box-store-form {
		padding: 0px !important;
	}
	.icon-search:before {
		color: #fff
	}
	.btn-bao-gia {
		background: #fff;
		color: var(--primary-color);
	}
	.btn-bao-gia:hover {
		background: var(--fs-color-secondary);
		color: #fff
	}
}


.slider-wrapper+.row:not(.row-collapse) {
    margin-top: 0px !important;
}

.header-bottom-nav > li > a {
	text-transform: uppercase !important;
}












.company-brand-name {
    display: flex;
    flex-direction: column;
    align-items: center;      /* Căn giữa các thẻ con theo chiều ngang */
    text-align: center;       /* Căn giữa nội dung chữ bên trong */
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 700;
    width: 100%;
}

.company-brand-name .sub-title {
    color: var(--fs-color-secondary);
    font-size: 20px;
	font-style: italic;
}

.company-brand-name .main-title {
    color: var(--primary-color);
    font-size: 35px;
	font-style: italic;
}

/* Responsive cho thiết bị di động */
@media (max-width: 767px) {
    .company-brand-name .sub-title {
        font-size: 12px;
    }
    .company-brand-name .main-title {
        font-size: 18px;
    }
}

.header-nav.header-nav-main.nav {
	justify-content: center;
}

ol ol, ol ul, ul ol, ul ul {
	margin: 0 !important
}


 .about-us-homepage .section-bg :is(img,picture,video) {
    width: auto !important;          /* Không cho ảnh kéo giãn hết chiều ngang */
    height: auto !important;         /* Không cho ảnh kéo giãn hết chiều cao */
    
    /* Thiết lập kích thước tối đa để ảnh không bị quá to che mất chữ */
    max-width: 60% !important;       /* Bạn có thể chỉnh lại % này (ví dụ: 30%, 50%) tùy theo độ lớn mong muốn */
    max-height: 90% !important;      /* Khống chế chiều cao tối đa so với section */

    /* Định vị ảnh về góc dưới bên phải */
    top: auto !important;            /* Hủy bỏ thuộc tính top: 0 mặc định */
    left: auto !important;           /* Hủy bỏ thuộc tính left: 0 mặc định */
    right: 0 !important;             /* Căn sát mép phải */
    bottom: 0 !important;            /* Căn sát mép dưới */
    
    /* Chuyển object-fit về dạng nguyên bản */
    object-fit: contain !important;
}



/* 1. Ép khung bao ngoài cố định vuông 1:1 */
.woocommerce-product-gallery .flickity-viewport {
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
}

/* 2. Ép các slide con và thẻ liên kết chiếm 100% diện tích */
.woocommerce-product-gallery .woocommerce-product-gallery__image,
.woocommerce-product-gallery .woocommerce-product-gallery__image a {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* 3. Cho ảnh full tràn viền toàn bộ khung vuông */
.woocommerce-product-gallery .woocommerce-product-gallery__image img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important; /* Lấp đầy 100% khung vuông, không chừa viền trống */
  object-position: center !important; /* Luôn giữ trọng tâm ảnh ở giữa */
  display: block !important;
}











/* Mỗi hàng tin bên trái */
.featured-list .featured-item {
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.featured-list .featured-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Khung ảnh: Dùng absolute để ảnh KHÔNG đội chiều cao lên, mà tự thu nhỏ bằng chữ */
.featured-item .item-thumb {
    position: relative;
    flex-shrink: 0;
    width: 80px;            /* Độ rộng ảnh, bạn có thể chỉnh 70px - 85px tùy thích */
    border-radius: 4px;
    overflow: hidden;
}

.featured-item .item-thumb a,
.featured-item .item-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.featured-item:hover .item-thumb img {
    transform: scale(1.08);
}

/* Cột chữ: Gom tiêu đề và ngày lại sát nhau */
.featured-item .item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Giữ khối chữ cân đối */
    gap: 6px;                /* Khoảng cách giữa tiêu đề và ngày (chỉnh số này nếu muốn xa/gần hơn) */
}

/* Tiêu đề 2 dòng */
.featured-item .item-title {
    margin: 0 !important;   /* Xóa margin mặc định của thẻ h4 */
    font-size: 14px;
    line-height: 1.35;
}

.featured-item .item-title a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;   /* Tối đa 2 dòng */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-item .item-title a:hover {
    color: #d2143a;
}

/* Ngày đăng */
.featured-item .item-date {
    font-size: 12px;
    color: #888;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 5px;
}

#comments,
#review_form_wrapper{
	display: none
}