@import url("fonts.css");

/* =========================================================================
   Văn Tiến — CSS viết tay, không framework.
   Bảng màu lấy theo bản thiết kế khách duyệt: nền đen ấm, nhấn vàng đồng,
   nền phụ màu kem. Chữ trên nền vàng dùng nâu than (không dùng trắng) vì
   trắng trên vàng chỉ đạt ~2,3:1 — dưới ngưỡng đọc được.
   ====================================================================== */

:root {
	--den: #14110d;
	--den-2: #1c1813;
	--den-3: #251f18;
	--vang: #c9a45d;
	--vang-sang: #e0c692;
	--vang-dam: #a8823c;      /* icon, viền — không dùng cho chữ trên nền sáng */
	--vang-chu: #86671f;      /* vàng đủ tối để làm CHỮ trên nền trắng/kem (5,3:1) */
	--kem: #faf6ee;
	--kem-2: #f3ecdd;
	--chu: #26221c;
	--chu-nhat: #6d655a;
	--chu-mo: #736a5d;
	--vien: #e7dfd0;
	--vien-dam: #d6cab2;
	--trang: #fff;
	--do: #b3261e;
	--xanh: #2e7d32;

	--serif: "Playfair Display", "Times New Roman", serif;
	--sans: "Be Vietnam Pro", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

	--khung: 1280px;
	--r: 2px;
	--bong: 0 2px 14px rgba(20, 17, 13, .07);
	--bong-2: 0 10px 34px rgba(20, 17, 13, .14);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--sans);
	font-size: 15px;
	line-height: 1.65;
	color: var(--chu);
	background: var(--trang);
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.25; margin: 0 0 .5em; }

.vt-khung { width: min(100% - 32px, var(--khung)); margin-inline: auto; }

/* mọi cột grid/flex chứa nội dung có thể rộng — chặn tràn ngang */
.vt-khung > *, .vt-luoi > *, .vt-cot > * { min-width: 0; }

.vt-an { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.vt-bo-qua {
	position: absolute; left: -9999px; top: 0; z-index: 200;
	background: var(--vang); color: var(--den); padding: 10px 18px; font-weight: 600;
}
.vt-bo-qua:focus { left: 8px; top: 8px; }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
	outline: 2px solid var(--vang-dam); outline-offset: 2px;
}

/* ---------- Nút ---------- */

.vt-nut {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	padding: 14px 30px; border: 1px solid transparent; border-radius: var(--r);
	font-size: 12.5px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase;
	cursor: pointer; transition: background .2s, color .2s, border-color .2s;
	line-height: 1.2; text-align: center;
}
.vt-nut svg { width: 15px; height: 15px; flex: none; transition: transform .2s; }
.vt-nut:hover svg { transform: translateX(3px); }

/* nền vàng đặc + chữ nâu than: 6,8:1 */
.vt-nut--vang { background: var(--vang); color: #201a12; border-color: var(--vang); }
.vt-nut--vang:hover { background: var(--vang-sang); border-color: var(--vang-sang); }

/* viền vàng trên nền tối */
.vt-nut--vien { background: transparent; color: var(--vang-sang); border-color: var(--vang); }
.vt-nut--vien:hover { background: var(--vang); color: #201a12; }

/* viền vàng trên nền sáng */
.vt-nut--vien-sang { background: transparent; color: #6b4f14; border-color: var(--vang-dam); }
.vt-nut--vien-sang:hover { background: var(--vang); color: #201a12; border-color: var(--vang); }

.vt-nut--tron { border-radius: 999px; }
.vt-nut--nho { padding: 11px 20px; font-size: 11.5px; letter-spacing: 1.2px; }

/* nút trong thẻ tranh: chữ thường, đúng bản thiết kế */
.vt-nut--thuong { text-transform: none; letter-spacing: .2px; font-size: 12.5px; font-weight: 500; }
.vt-nut--rong { width: 100%; }
.vt-nut--den { background: var(--den); color: #fff; border-color: var(--den); }
.vt-nut--den:hover { background: var(--den-3); }

/* ---------- Tiêu đề khối ---------- */

.vt-dau { text-align: center; margin-bottom: 34px; }

.vt-nhan {
	display: flex; align-items: center; justify-content: center; gap: 14px;
	font-size: 11.5px; font-weight: 600; letter-spacing: 3.4px; text-transform: uppercase;
	color: var(--vang-chu); margin-bottom: 12px;
}
.vt-nhan::before, .vt-nhan::after { content: ""; width: 44px; height: 1px; background: var(--vang); opacity: .75; }
.vt-nhan--trai { justify-content: flex-start; color: var(--vang); }
.vt-nhan--trai::before, .vt-nhan--trai::after { display: none; }

.vt-dau h2 {
	font-size: clamp(22px, 3vw, 31px); letter-spacing: 1px; text-transform: uppercase; margin: 0;
}

/* hàng tiêu đề có "Xem tất cả" bên phải */
.vt-hang-dau {
	display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 16px; margin-bottom: 30px;
}
.vt-hang-dau .vt-dau { margin-bottom: 0; }
.vt-xem-tat-ca {
	display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
	font-size: 13px; color: var(--chu-nhat); padding-bottom: 4px;
}
.vt-xem-tat-ca:hover { color: var(--vang-chu); }
.vt-xem-tat-ca svg { width: 14px; height: 14px; transition: transform .2s; }
.vt-xem-tat-ca:hover svg { transform: translateX(3px); }

section { padding: 62px 0; }
.vt-nen-kem { background: var(--kem); }
.vt-nen-toi { background: var(--den); color: #efe8dc; }

/* =========================================================================
   ĐẦU TRANG
   ====================================================================== */

.vt-dinh { position: sticky; top: 0; z-index: 60; }

.vt-header { background: var(--den); color: #fff; }
.vt-header__trong {
	display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 26px;
	min-height: 64px;
}

.vt-logo { display: inline-flex; align-items: center; gap: 11px; }
.vt-logo__hieu { width: 38px; height: 38px; flex: none; }
.vt-logo__ten { display: block; font-family: var(--serif); font-size: 19px; font-weight: 700; letter-spacing: 2.4px; line-height: 1.1; }
.vt-logo__phu { display: block; font-size: 8px; letter-spacing: 2.2px; color: var(--vang); margin-top: 3px; text-transform: uppercase; }

/* --- điều hướng chính --- */
.vt-nav { justify-self: center; }
.vt-nav ul { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.vt-nav li { position: relative; }
.vt-nav > ul > li > a {
	display: flex; align-items: center; gap: 5px; padding: 21px 0;
	font-size: 12.5px; font-weight: 500; letter-spacing: 1.1px; text-transform: uppercase;
	color: #e8e1d6; border-bottom: 2px solid transparent; transition: color .18s, border-color .18s;
}
.vt-nav > ul > li > a:hover,
.vt-nav > ul > li.current-menu-item > a,
.vt-nav > ul > li.current-menu-parent > a,
.vt-nav > ul > li.vt-dang-xem > a { color: var(--vang); border-bottom-color: var(--vang); }

.vt-nav .menu-item-has-children > a::after {
	content: ""; width: 7px; height: 7px; flex: none; margin-left: 2px;
	border-right: 1.4px solid currentColor; border-bottom: 1.4px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
}

.vt-nav .sub-menu {
	position: absolute; top: 100%; left: -14px; min-width: 232px; z-index: 70;
	display: block; padding: 8px 0; margin: 0; list-style: none;
	background: #fff; color: var(--chu); box-shadow: var(--bong-2);
	border-top: 2px solid var(--vang);
	opacity: 0; visibility: hidden; transform: translateY(8px);
	transition: opacity .18s, transform .18s, visibility .18s;
}
.vt-nav li:hover > .sub-menu,
.vt-nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.vt-nav .sub-menu a {
	display: block; padding: 9px 18px; font-size: 13.5px; color: var(--chu);
	border-left: 2px solid transparent; transition: background .16s, color .16s, border-color .16s;
}
.vt-nav .sub-menu a:hover { background: var(--kem); color: var(--vang-dam); border-left-color: var(--vang); }

/* --- công cụ bên phải --- */
.vt-cong-cu { display: flex; align-items: center; gap: 14px; }

.vt-tim { position: relative; }
.vt-tim input {
	width: 168px; height: 34px; padding: 0 36px 0 15px;
	border: 1px solid transparent; border-radius: 999px;
	background: #fff; color: var(--chu); font-size: 12.5px;
	transition: width .22s, box-shadow .2s;
}
.vt-tim input::placeholder { color: #6f675c; }
.vt-tim input:focus { width: 210px; outline: none; box-shadow: 0 0 0 2px var(--vang); }
.vt-tim button {
	position: absolute; right: 3px; top: 3px; width: 28px; height: 28px;
	display: grid; place-items: center; border: 0; border-radius: 999px;
	background: transparent; color: #5f574c;
}
.vt-tim button:hover { color: var(--vang-chu); }
.vt-tim svg { width: 15px; height: 15px; }

.vt-bieu-tuong {
	position: relative; width: 34px; height: 34px; display: grid; place-items: center;
	border-radius: 999px; color: #ede6da; transition: background .18s, color .18s;
}
.vt-bieu-tuong:hover { background: rgba(201, 164, 93, .18); color: var(--vang); }
.vt-bieu-tuong svg { width: 19px; height: 19px; }
.vt-bieu-tuong--gio { color: var(--vang); }

.vt-so-gio {
	position: absolute; top: -1px; right: -3px; min-width: 17px; height: 17px; padding: 0 4px;
	display: grid; place-items: center; border-radius: 999px;
	background: var(--vang); color: #201a12; font-size: 10.5px; font-weight: 700; line-height: 1;
}

/* --- nút menu di động --- */
.vt-nut-menu {
	display: none; align-items: center; gap: 8px; padding: 8px 12px;
	background: transparent; border: 1px solid rgba(255, 255, 255, .28); border-radius: var(--r);
	color: #fff; font-size: 11.5px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
}
.vt-nut-menu svg { width: 17px; height: 17px; }

/* --- ngăn kéo menu di động --- */
.vt-phu {
	position: fixed; inset: 0; z-index: 65; background: rgba(11, 9, 7, .55);
	opacity: 0; visibility: hidden; transition: opacity .22s, visibility .22s;
}
.vt-phu.mo { opacity: 1; visibility: visible; }

.vt-ngan {
	position: fixed; top: 0; left: 0; bottom: 0; width: min(86vw, 330px); z-index: 70;
	background: var(--den); color: #fff; overflow-y: auto; overscroll-behavior: contain;
	transform: translateX(-100%); transition: transform .26s ease;
	display: flex; flex-direction: column;
}
.vt-ngan.mo { transform: none; }
.vt-ngan__dau {
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	padding: 14px 16px; border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.vt-ngan__dong {
	width: 40px; height: 40px; display: grid; place-items: center; flex: none;
	background: transparent; border: 1px solid rgba(255, 255, 255, .22); border-radius: var(--r); color: #fff;
}
.vt-ngan__dong svg { width: 17px; height: 17px; }
.vt-ngan nav ul { list-style: none; margin: 0; padding: 8px 0; }
.vt-ngan nav a {
	display: flex; align-items: center; min-height: 46px; padding: 8px 18px;
	font-size: 14px; color: #e9e2d7; border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.vt-ngan nav a:hover, .vt-ngan nav .current-menu-item > a { color: var(--vang); }
.vt-ngan .sub-menu a { padding-left: 34px; font-size: 13px; color: #c3bbaf; }
.vt-ngan__chan { margin-top: auto; padding: 16px; border-top: 1px solid rgba(255, 255, 255, .12); }
.vt-ngan__chan a { display: block; margin-bottom: 8px; font-size: 13px; color: #cfc7ba; }
.vt-ngan__chan a:hover { color: var(--vang); }

/* --- thanh dưới cho điện thoại (trong tầm ngón cái) --- */
.vt-thanh-duoi {
	display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
	background: var(--den); border-top: 1px solid rgba(255, 255, 255, .1);
	padding-bottom: env(safe-area-inset-bottom);
}
.vt-thanh-duoi ul {
	display: grid; grid-template-columns: repeat(5, 1fr); list-style: none; margin: 0; padding: 0;
}
.vt-thanh-duoi a {
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
	min-height: 56px; padding: 6px 2px; font-size: 10px; letter-spacing: .2px; color: #cbc3b6;
	position: relative;
}
.vt-thanh-duoi a.dang-xem { color: var(--vang); }
.vt-thanh-duoi svg { width: 20px; height: 20px; }
.vt-thanh-duoi .vt-so-gio { top: 4px; right: calc(50% - 20px); }

/* =========================================================================
   HERO — ảnh nền + phủ tối dần từ trái
   ====================================================================== */

.vt-hero { position: relative; background: var(--den); overflow: hidden; }
.vt-hero__khung { position: relative; }

.vt-hero__slide {
	position: relative; display: none; min-height: clamp(430px, 56vw, 620px);
	align-items: center;
}
.vt-hero__slide.dang-xem { display: flex; animation: vt-hien .55s ease both; }
@keyframes vt-hien { from { opacity: .25; } to { opacity: 1; } }

.vt-hero__anh { position: absolute; inset: 0; }
.vt-hero__anh img { width: 100%; height: 100%; object-fit: cover; }
.vt-hero__anh::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(10, 8, 6, .96) 0%, rgba(10, 8, 6, .92) 34%, rgba(10, 8, 6, .66) 55%, rgba(10, 8, 6, .22) 78%, rgba(10, 8, 6, .1) 100%);
}

.vt-hero__noi-dung { position: relative; z-index: 2; padding: 54px 0; max-width: 560px; color: #fff; }
.vt-hero__nhan { font-size: 12px; font-weight: 500; letter-spacing: 5px; text-transform: uppercase; color: #efe6d6; margin-bottom: 14px; }
.vt-hero__ten {
	font-family: var(--serif); font-size: clamp(44px, 7.4vw, 82px); font-weight: 700;
	letter-spacing: 3px; line-height: 1.02; margin: 0 0 14px;
}
.vt-hero__slogan {
	font-family: var(--serif); font-style: italic; font-size: clamp(18px, 2.4vw, 24px);
	color: #f0e7d7; margin: 0 0 20px; font-weight: 400;
}
.vt-hero__mo-ta { font-size: 14px; line-height: 1.95; color: rgba(255, 255, 255, .88); max-width: 470px; margin: 0 0 30px; }

.vt-hero__dieu-khien {
	position: absolute; left: 0; right: 0; bottom: 20px; z-index: 3;
	display: flex; align-items: center; gap: 14px;
}
.vt-hero__mui-ten {
	width: 34px; height: 34px; display: grid; place-items: center; flex: none;
	background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .35);
	border-radius: 999px; color: #fff; transition: background .18s, border-color .18s;
}
.vt-hero__mui-ten:hover { background: var(--vang); border-color: var(--vang); color: #201a12; }
.vt-hero__mui-ten svg { width: 14px; height: 14px; }

.vt-hero__cham { display: flex; gap: 9px; margin-left: auto; margin-right: auto; }
.vt-hero__cham button {
	width: 9px; height: 9px; padding: 0; border: 1px solid rgba(255, 255, 255, .7);
	border-radius: 999px; background: transparent; transition: background .18s, transform .18s;
}
.vt-hero__cham button.dang-xem { background: var(--vang); border-color: var(--vang); transform: scale(1.15); }

/* =========================================================================
   DẢI CHỦ ĐỀ
   ====================================================================== */

.vt-chu-de { background: var(--kem); border-bottom: 1px solid var(--vien); }
.vt-chu-de__luoi {
	display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; padding: 20px 0;
}
.vt-chu-de__o {
	display: flex; align-items: center; gap: 12px; padding: 8px 10px;
	border-radius: var(--r); transition: background .18s;
}
.vt-chu-de__o:hover { background: rgba(201, 164, 93, .13); }
.vt-chu-de__hieu {
	width: 44px; height: 44px; flex: none; display: grid; place-items: center;
	border: 1px solid var(--vang); border-radius: 999px; color: var(--vang-dam);
	transition: background .18s, color .18s;
}
.vt-chu-de__o:hover .vt-chu-de__hieu { background: var(--vang); color: #201a12; }
.vt-chu-de__hieu svg { width: 21px; height: 21px; }
.vt-chu-de__ten { display: block; font-size: 13.5px; font-weight: 600; color: var(--chu); line-height: 1.3; }
.vt-chu-de__mo-ta { display: block; font-size: 11.5px; color: var(--chu-nhat); line-height: 1.45; margin-top: 2px; }

/* =========================================================================
   THẺ TRANH
   ====================================================================== */

.vt-luoi { display: grid; gap: 20px; }
.vt-luoi--5 { grid-template-columns: repeat(5, 1fr); }
.vt-luoi--4 { grid-template-columns: repeat(4, 1fr); }
.vt-luoi--3 { grid-template-columns: repeat(3, 1fr); }
.vt-luoi--2 { grid-template-columns: repeat(2, 1fr); }

.vt-tranh {
	position: relative; display: flex; flex-direction: column;
	background: #fff; border: 1px solid var(--vien); border-radius: var(--r);
	transition: box-shadow .22s, transform .22s, border-color .22s;
}
.vt-tranh:hover { box-shadow: var(--bong-2); transform: translateY(-3px); border-color: var(--vien-dam); }

.vt-tranh__anh { position: relative; display: block; overflow: hidden; background: var(--kem-2); aspect-ratio: 4 / 3; }
.vt-tranh__anh img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.vt-tranh:hover .vt-tranh__anh img { transform: scale(1.045); }

.vt-tranh__thich {
	position: absolute; top: 9px; right: 9px; z-index: 2;
	width: 30px; height: 30px; display: grid; place-items: center;
	background: rgba(255, 255, 255, .93); border: 1px solid var(--vien); border-radius: 999px;
	color: var(--chu-nhat); transition: color .18s, background .18s;
}
.vt-tranh__thich:hover, .vt-tranh__thich[aria-pressed="true"] { color: #c0392b; background: #fff; }
.vt-tranh__thich[aria-pressed="true"] svg { fill: currentColor; }
.vt-tranh__thich svg { width: 15px; height: 15px; }

.vt-tranh__nhan {
	position: absolute; top: 9px; left: 9px; z-index: 2;
	padding: 4px 9px; border-radius: var(--r);
	background: var(--vang); color: #201a12; font-size: 10.5px; font-weight: 700;
	letter-spacing: .8px; text-transform: uppercase;
}

.vt-tranh__than { padding: 13px 13px 15px; display: flex; flex-direction: column; flex: 1; }
.vt-tranh__ten {
	font-family: var(--sans); font-size: 14px; font-weight: 600; line-height: 1.4; margin: 0 0 5px;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.vt-tranh__ten a:hover { color: var(--vang-chu); }
.vt-tranh__cd { font-size: 12px; color: var(--chu-nhat); margin-bottom: 9px; }
.vt-tranh__gia { font-size: 15.5px; font-weight: 700; color: var(--chu); margin-bottom: 12px; }
.vt-tranh__gia del { font-size: 12.5px; font-weight: 400; color: var(--chu-mo); margin-left: 7px; }
.vt-tranh__nut { margin-top: auto; }
.vt-tranh__nut .vt-nut { gap: 8px; }

/* =========================================================================
   DẢI CHẤT LƯỢNG (nền tối, ảnh trái)
   ====================================================================== */

.vt-chat-luong { position: relative; background: var(--den); color: #f0e9dd; padding: 0; overflow: hidden; }
.vt-chat-luong__trong { display: grid; grid-template-columns: 31% 1fr; align-items: stretch; }
.vt-chat-luong__anh { position: relative; min-height: 250px; }
.vt-chat-luong__anh img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vt-chat-luong__anh::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(20, 17, 13, .25), rgba(20, 17, 13, .96));
}
.vt-chat-luong__noi-dung { padding: 46px clamp(16px, 3vw, 44px); text-align: center; }
.vt-chat-luong__noi-dung h2 {
	font-size: clamp(21px, 2.9vw, 30px); letter-spacing: 1.4px; text-transform: uppercase; color: #fff; margin: 0 0 30px;
}
.vt-chat-luong .vt-nhan { color: var(--vang); }
.vt-chat-luong .vt-nhan::before, .vt-chat-luong .vt-nhan::after { background: rgba(201, 164, 93, .55); }

.vt-diem { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 30px; }
.vt-diem__o { display: flex; align-items: center; gap: 12px; text-align: left; }
.vt-diem__hieu {
	width: 44px; height: 44px; flex: none; display: grid; place-items: center;
	border: 1px solid var(--vang); border-radius: 999px; color: var(--vang);
}
.vt-diem__hieu svg { width: 20px; height: 20px; }
.vt-diem__chu { font-size: 12px; line-height: 1.45; color: #ece5d9; }

/* =========================================================================
   VỀ CHÚNG TÔI
   ====================================================================== */

.vt-gioi-thieu__trong { display: grid; grid-template-columns: 32% 1fr 27%; gap: 40px; align-items: center; }
.vt-gioi-thieu__anh { border-radius: var(--r); overflow: hidden; box-shadow: var(--bong); }
.vt-gioi-thieu__anh img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.vt-gioi-thieu h2 {
	font-size: clamp(20px, 2.6vw, 27px); letter-spacing: .6px; text-transform: uppercase; margin: 0 0 16px;
}
.vt-gioi-thieu p { font-size: 14px; line-height: 1.9; color: var(--chu-nhat); margin: 0 0 22px; }

.vt-loi-the { padding-left: 34px; border-left: 1px solid var(--vien); display: grid; gap: 20px; }
.vt-loi-the__o { display: flex; align-items: flex-start; gap: 13px; }
.vt-loi-the__hieu { width: 26px; height: 26px; flex: none; color: var(--vang-dam); margin-top: 1px; }
.vt-loi-the__hieu svg { width: 100%; height: 100%; }
.vt-loi-the__chu { font-size: 13px; line-height: 1.6; color: var(--chu); }

/* =========================================================================
   CẢM NHẬN KHÁCH HÀNG
   ====================================================================== */

.vt-cam-nhan__luoi { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.vt-cam-nhan__o { display: flex; gap: 16px; align-items: flex-start; }
.vt-cam-nhan__anh {
	width: 58px; height: 58px; flex: none; border-radius: 999px; overflow: hidden;
	border: 2px solid #fff; box-shadow: var(--bong); background: var(--kem-2);
}
.vt-cam-nhan__anh img { width: 100%; height: 100%; object-fit: cover; }
.vt-cam-nhan__chu { font-size: 13px; font-style: italic; line-height: 1.75; color: var(--chu-nhat); margin: 0 0 10px; }
.vt-cam-nhan__ten { font-size: 13px; font-weight: 600; }
.vt-cam-nhan__noi { font-size: 11.5px; color: var(--chu-mo); margin-bottom: 6px; }
.vt-sao { display: flex; gap: 2px; color: var(--vang-dam); }
.vt-sao svg { width: 13px; height: 13px; fill: currentColor; }

/* =========================================================================
   TIN TỨC
   ====================================================================== */

.vt-tin { display: flex; flex-direction: column; }
.vt-tin__anh { display: block; overflow: hidden; border-radius: var(--r); background: var(--kem-2); aspect-ratio: 16 / 10; }
.vt-tin__anh img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.vt-tin:hover .vt-tin__anh img { transform: scale(1.05); }
.vt-tin__ngay { font-size: 11.5px; color: var(--chu-mo); margin: 13px 0 6px; }
.vt-tin__ten {
	font-family: var(--sans); font-size: 14px; font-weight: 600; line-height: 1.5; margin: 0 0 10px;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.vt-tin__ten a:hover { color: var(--vang-dam); }
.vt-tin__them { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--chu-nhat); margin-top: auto; }
.vt-tin__them svg { width: 13px; height: 13px; transition: transform .2s; }
.vt-tin:hover .vt-tin__them { color: var(--vang-chu); }
.vt-tin:hover .vt-tin__them svg { transform: translateX(3px); }

/* =========================================================================
   CHÂN TRANG
   ====================================================================== */

.vt-footer { background: var(--den); color: #cec6b9; font-size: 13px; padding: 46px 0 0; }
.vt-footer__luoi {
	display: grid; grid-template-columns: .95fr 1.2fr .85fr 1fr 1.15fr; gap: 28px; padding-bottom: 34px;
}
.vt-footer h3 {
	font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 1.6px;
	text-transform: uppercase; color: #fff; margin: 0 0 16px;
}
.vt-footer__lien-he { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.vt-footer__lien-he li { display: flex; align-items: flex-start; gap: 11px; line-height: 1.55; }
.vt-footer__lien-he svg { width: 15px; height: 15px; flex: none; margin-top: 3px; color: var(--vang); }
.vt-footer__lien-he a:hover { color: var(--vang); }

.vt-footer__ds { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.vt-footer__ds a { display: inline-flex; align-items: center; gap: 8px; }
.vt-footer__ds a::before { content: ""; width: 4px; height: 4px; border-radius: 999px; background: var(--vang); flex: none; }
.vt-footer__ds a:hover { color: var(--vang); }

.vt-mxh { display: flex; flex-wrap: wrap; gap: 7px; }
.vt-mxh a {
	width: 31px; height: 31px; display: grid; place-items: center; border-radius: var(--r);
	background: rgba(255, 255, 255, .09); color: #e6dfd3; transition: background .18s, color .18s;
}
.vt-mxh a:hover { background: var(--vang); color: #201a12; }
.vt-mxh svg { width: 16px; height: 16px; }

.vt-dang-ky__mo-ta { margin: 0 0 13px; line-height: 1.6; color: #b8b0a3; }
.vt-dang-ky__o { display: grid; grid-template-columns: 1fr auto; gap: 0; }
.vt-dang-ky input {
	height: 40px; padding: 0 13px; border: 1px solid rgba(255, 255, 255, .2); border-right: 0;
	border-radius: var(--r) 0 0 var(--r); background: rgba(255, 255, 255, .06); color: #fff; font-size: 13px;
}
.vt-dang-ky input::placeholder { color: #928a7d; }
.vt-dang-ky input:focus { outline: none; border-color: var(--vang); }
.vt-dang-ky button {
	width: 44px; display: grid; place-items: center; border: 1px solid var(--vang);
	border-radius: 0 var(--r) var(--r) 0; background: var(--vang); color: #201a12;
}
.vt-dang-ky button:hover { background: var(--vang-sang); border-color: var(--vang-sang); }
.vt-dang-ky svg { width: 16px; height: 16px; }
.vt-dang-ky__bao { margin: 9px 0 0; font-size: 12px; color: var(--vang-sang); }

.vt-footer__day {
	border-top: 1px solid rgba(255, 255, 255, .1); padding: 15px 0;
	display: flex; align-items: center; justify-content: space-between; gap: 14px;
	font-size: 12.5px; color: #9c9488;
}
.vt-footer__day a:hover { color: var(--vang); }

/* nút gọi / zalo nổi */
.vt-noi { position: fixed; right: 14px; bottom: 18px; z-index: 50; display: grid; gap: 10px; }
.vt-noi a {
	width: 46px; height: 46px; display: grid; place-items: center; border-radius: 999px;
	background: var(--vang); color: #201a12; box-shadow: var(--bong-2);
	transition: transform .18s, background .18s;
}
.vt-noi a:hover { transform: scale(1.07); background: var(--vang-sang); }
.vt-noi svg { width: 21px; height: 21px; }

/* =========================================================================
   TRANG TRONG
   ====================================================================== */

.vt-dau-trang { position: relative; background: var(--den); color: #fff; padding: 42px 0; overflow: hidden; }
.vt-dau-trang::before {
	content: ""; position: absolute; inset: 0; opacity: .3;
	background: radial-gradient(circle at 78% 22%, rgba(201, 164, 93, .5), transparent 58%);
}
.vt-dau-trang__trong { position: relative; z-index: 2; }
.vt-dau-trang h1 {
	font-size: clamp(24px, 3.6vw, 36px); letter-spacing: 1px; text-transform: uppercase; margin: 0 0 8px; color: #fff;
}
.vt-dau-trang p { margin: 0; color: rgba(255, 255, 255, .78); font-size: 14px; max-width: 620px; }

.vt-duong-dan { font-size: 12.5px; color: rgba(255, 255, 255, .62); margin-bottom: 12px; }
.vt-duong-dan a:hover { color: var(--vang); }
.vt-duong-dan span + span::before { content: "›"; margin: 0 7px; opacity: .6; }

.vt-cot { display: grid; grid-template-columns: 258px 1fr; gap: 34px; align-items: start; }
.vt-cot--phai { grid-template-columns: 1fr 300px; }

.vt-hop {
	background: #fff; border: 1px solid var(--vien); border-radius: var(--r); padding: 20px; margin-bottom: 20px;
}
.vt-hop h3 {
	font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 1.3px;
	text-transform: uppercase; margin: 0 0 14px; padding-bottom: 11px; border-bottom: 1px solid var(--vien);
}
.vt-hop ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 3px; }
.vt-hop li a {
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	padding: 8px 10px; font-size: 13.5px; border-radius: var(--r); transition: background .16s, color .16s;
}
.vt-hop li a:hover, .vt-hop li.dang-xem > a { background: var(--kem); color: var(--vang-chu); font-weight: 600; }
.vt-hop li .dem { font-size: 11.5px; color: var(--chu-mo); }
.vt-hop .children { padding-left: 12px; }

.vt-loc {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
	gap: 14px; margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid var(--vien);
}
.vt-loc__so { font-size: 13px; color: var(--chu-nhat); }
.vt-loc select {
	height: 38px; padding: 0 32px 0 12px; border: 1px solid var(--vien-dam); border-radius: var(--r);
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236d655a' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 9px center / 15px;
	font-size: 13.5px; appearance: none; cursor: pointer; color: var(--chu);
}
.vt-loc select option { color: var(--chu); background: #fff; }

/* --- phân trang --- */
.vt-trang { display: flex; justify-content: center; gap: 7px; margin-top: 34px; flex-wrap: wrap; }
.vt-trang .page-numbers {
	min-width: 38px; height: 38px; padding: 0 11px; display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid var(--vien-dam); border-radius: var(--r); font-size: 13.5px; color: var(--chu);
	transition: background .16s, color .16s, border-color .16s;
}
.vt-trang .page-numbers:hover { border-color: var(--vang); color: var(--vang-chu); }
.vt-trang .page-numbers.current { background: var(--den); border-color: var(--den); color: #fff; font-weight: 600; }
.vt-trang .page-numbers.dots { border-color: transparent; }

/* --- chi tiết tranh --- */
.vt-ct { display: grid; grid-template-columns: 1.08fr 1fr; gap: 40px; align-items: start; }
.vt-ct__anh { border: 1px solid var(--vien); border-radius: var(--r); overflow: hidden; background: var(--kem-2); }
.vt-ct__anh img { width: 100%; object-fit: contain; cursor: zoom-in; }
.vt-ct__nho { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; margin-top: 11px; }
.vt-ct__nho button {
	padding: 0; border: 1px solid var(--vien); border-radius: var(--r); overflow: hidden; background: none; aspect-ratio: 1;
}
.vt-ct__nho button.dang-xem { border-color: var(--vang); }
.vt-ct__nho img { width: 100%; height: 100%; object-fit: cover; }

.vt-ct h1 { font-size: clamp(22px, 3vw, 31px); margin: 0 0 12px; }
.vt-ct__gia { font-size: 27px; font-weight: 700; color: var(--vang-chu); margin: 0 0 20px; }
.vt-ct__gia del { font-size: 16px; font-weight: 400; color: var(--chu-mo); margin-left: 10px; }
.vt-ct__bang { width: 100%; border-collapse: collapse; margin-bottom: 22px; font-size: 13.5px; }
.vt-ct__bang th, .vt-ct__bang td { padding: 9px 0; text-align: left; border-bottom: 1px solid var(--vien); vertical-align: top; }
.vt-ct__bang th { width: 132px; font-weight: 600; color: var(--chu-nhat); }
.vt-ct__mua { display: flex; flex-wrap: wrap; gap: 11px; margin-bottom: 22px; }

.vt-so-luong { display: inline-flex; align-items: center; border: 1px solid var(--vien-dam); border-radius: var(--r); }
.vt-so-luong button { width: 38px; height: 46px; border: 0; background: none; font-size: 17px; color: var(--chu-nhat); }
.vt-so-luong button:hover { color: var(--vang-dam); }
.vt-so-luong input {
	width: 48px; height: 46px; border: 0; border-inline: 1px solid var(--vien); text-align: center;
	font-size: 14px; font-weight: 600; background: none;
}
.vt-so-luong input::-webkit-outer-spin-button, .vt-so-luong input::-webkit-inner-spin-button { appearance: none; margin: 0; }

.vt-ct__cam-ket { display: grid; gap: 11px; padding: 18px; background: var(--kem); border-radius: var(--r); }
.vt-ct__cam-ket div { display: flex; align-items: center; gap: 11px; font-size: 13px; }
.vt-ct__cam-ket svg { width: 18px; height: 18px; flex: none; color: var(--vang-dam); }

.vt-noi-dung { font-size: 14.5px; line-height: 1.85; color: #38322b; }
.vt-noi-dung h2 { font-size: 22px; margin: 26px 0 12px; }
.vt-noi-dung h3 { font-size: 18px; margin: 22px 0 10px; }
.vt-noi-dung p { margin: 0 0 15px; }
.vt-noi-dung ul, .vt-noi-dung ol { margin: 0 0 15px; padding-left: 22px; }
.vt-noi-dung li { margin-bottom: 6px; }
.vt-noi-dung img { border-radius: var(--r); margin: 16px 0; }
.vt-noi-dung blockquote {
	margin: 18px 0; padding: 14px 20px; border-left: 3px solid var(--vang);
	background: var(--kem); font-style: italic; color: var(--chu-nhat);
}
.vt-noi-dung a { color: var(--vang-chu); text-decoration: underline; }

.vt-tab { display: flex; gap: 4px; border-bottom: 1px solid var(--vien); margin: 40px 0 22px; flex-wrap: wrap; }
.vt-tab button {
	padding: 12px 20px; border: 0; background: none; font-size: 13.5px; font-weight: 600;
	color: var(--chu-nhat); border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.vt-tab button.dang-xem { color: var(--chu); border-bottom-color: var(--vang); }
.vt-tab-noi-dung > div { display: none; }
.vt-tab-noi-dung > div.dang-xem { display: block; }

/* --- xem ảnh phóng to tại chỗ --- */
.vt-xem-anh {
	position: fixed; inset: 0; z-index: 120; display: none;
	align-items: center; justify-content: center; padding: 24px;
	background: rgba(10, 8, 6, .93);
}
.vt-xem-anh.mo { display: flex; }
.vt-xem-anh img { max-width: 100%; max-height: 88vh; object-fit: contain; border-radius: var(--r); }
.vt-xem-anh__dong, .vt-xem-anh__tab {
	position: absolute; top: 16px; display: inline-flex; align-items: center; gap: 8px;
	padding: 9px 14px; border: 1px solid rgba(255, 255, 255, .3); border-radius: var(--r);
	background: rgba(255, 255, 255, .08); color: #fff; font-size: 12.5px;
}
.vt-xem-anh__dong { right: 16px; }
.vt-xem-anh__tab { right: 96px; }
.vt-xem-anh__dong:hover, .vt-xem-anh__tab:hover { background: var(--vang); color: #201a12; border-color: var(--vang); }
.vt-xem-anh svg { width: 15px; height: 15px; }

/* =========================================================================
   BIỂU MẪU — bỏ nhãn phía trên, dùng icon trong ô + placeholder
   ====================================================================== */

.vt-o { position: relative; margin-bottom: 14px; }
.vt-o__hieu {
	position: absolute; left: 12px; top: 15px; width: 17px; height: 17px;
	color: var(--chu-mo); pointer-events: none;
}
.vt-o__hieu svg { width: 100%; height: 100%; }
.vt-o input, .vt-o textarea, .vt-o select {
	width: 100%; min-height: 47px; padding: 12px 14px 12px 38px;
	border: 1px solid var(--vien-dam); border-radius: var(--r);
	background: #fff; color: var(--chu); font-size: 14px;
	transition: border-color .18s, box-shadow .18s;
}
.vt-o select {
	appearance: none; cursor: pointer;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236d655a' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 11px center / 16px;
}
.vt-o select option { color: var(--chu); background: #fff; }
.vt-o textarea { min-height: 118px; resize: vertical; padding-top: 13px; }
.vt-o input::placeholder, .vt-o textarea::placeholder { color: #7d7466; }
.vt-o input:focus, .vt-o textarea:focus, .vt-o select:focus {
	outline: none; border-color: var(--vang); box-shadow: 0 0 0 3px rgba(201, 164, 93, .2);
}
.vt-o--khong-hieu input, .vt-o--khong-hieu textarea, .vt-o--khong-hieu select { padding-left: 14px; }
.vt-o--doi { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.vt-bay { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.vt-bao {
	display: flex; align-items: flex-start; gap: 11px; padding: 13px 16px; margin-bottom: 18px;
	border-radius: var(--r); font-size: 13.5px; line-height: 1.55;
}
.vt-bao svg { width: 17px; height: 17px; flex: none; margin-top: 2px; }
.vt-bao--ok { background: #edf7ed; color: #1e5620; border: 1px solid #c6e5c7; }
.vt-bao--loi { background: #fdeceb; color: #8c1d18; border: 1px solid #f3c6c3; }

.vt-chon { display: flex; align-items: flex-start; gap: 11px; padding: 14px; border: 1px solid var(--vien-dam); border-radius: var(--r); cursor: pointer; margin-bottom: 10px; }
.vt-chon:hover { border-color: var(--vang); }
.vt-chon input { margin-top: 3px; accent-color: var(--vang-dam); cursor: pointer; }
.vt-chon__ten { font-size: 13.5px; font-weight: 600; }
.vt-chon__mo-ta { font-size: 12.5px; color: var(--chu-nhat); margin-top: 2px; }

/* =========================================================================
   GIỎ HÀNG & THANH TOÁN
   ====================================================================== */

.vt-gio { display: grid; grid-template-columns: 1fr 340px; gap: 30px; align-items: start; }
.vt-gio__bang { width: 100%; border-collapse: collapse; }
.vt-gio__bang th {
	text-align: left; padding: 0 0 12px; font-size: 11.5px; font-weight: 700;
	letter-spacing: 1.2px; text-transform: uppercase; color: var(--chu-nhat); border-bottom: 1px solid var(--vien);
}
.vt-gio__bang td { padding: 16px 0; border-bottom: 1px solid var(--vien); vertical-align: middle; }
.vt-gio__mon { display: flex; align-items: center; gap: 14px; }
.vt-gio__mon img { width: 82px; height: 62px; object-fit: cover; border-radius: var(--r); flex: none; }
.vt-gio__ten { font-size: 14px; font-weight: 600; line-height: 1.4; }
.vt-gio__cd { font-size: 12px; color: var(--chu-nhat); margin-top: 3px; }
.vt-gio__xoa { border: 0; background: none; color: var(--chu-mo); padding: 6px; }
.vt-gio__xoa:hover { color: var(--do); }
.vt-gio__xoa svg { width: 16px; height: 16px; }

.vt-tom-tat { background: var(--kem); border: 1px solid var(--vien); border-radius: var(--r); padding: 22px; position: sticky; top: 84px; }
.vt-tom-tat h3 { font-family: var(--sans); font-size: 13px; letter-spacing: 1.3px; text-transform: uppercase; margin: 0 0 16px; }
.vt-tom-tat__dong { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; font-size: 13.5px; }
.vt-tom-tat__dong--tong {
	border-top: 1px solid var(--vien-dam); margin-top: 8px; padding-top: 14px;
	font-size: 17px; font-weight: 700; color: var(--chu);
}
.vt-tom-tat__tien { color: var(--vang-chu); }

.vt-trong-rong { text-align: center; padding: 56px 20px; }
.vt-trong-rong svg { width: 54px; height: 54px; color: var(--vien-dam); margin: 0 auto 16px; }
.vt-trong-rong h2 { font-size: 21px; margin-bottom: 8px; }
.vt-trong-rong p { color: var(--chu-nhat); margin: 0 0 22px; }

/* =========================================================================
   LIÊN HỆ
   ====================================================================== */

.vt-lh { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.vt-lh__ds { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 18px; }
.vt-lh__ds li { display: flex; align-items: flex-start; gap: 14px; }
.vt-lh__hieu {
	width: 42px; height: 42px; flex: none; display: grid; place-items: center;
	border: 1px solid var(--vang); border-radius: 999px; color: var(--vang-dam);
}
.vt-lh__hieu svg { width: 18px; height: 18px; }
.vt-lh__nhan { font-size: 11.5px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--chu-mo); }
.vt-lh__gt { font-size: 14px; font-weight: 600; }
.vt-ban-do { border: 1px solid var(--vien); border-radius: var(--r); overflow: hidden; }
.vt-ban-do iframe { display: block; width: 100%; height: 320px; border: 0; }

/* =========================================================================
   ĐÁP ỨNG MÀN HÌNH — 80-90% khách xem bằng điện thoại
   ====================================================================== */

@media (max-width: 1180px) {
	.vt-nav > ul { gap: 17px; }
	.vt-nav > ul > li > a { font-size: 11.5px; letter-spacing: .6px; }
	.vt-tim input { width: 132px; }
	.vt-luoi--5 { grid-template-columns: repeat(4, 1fr); }
	.vt-footer__luoi { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

@media (max-width: 1024px) {
	.vt-nav, .vt-tim { display: none; }
	.vt-nut-menu { display: inline-flex; }
	.vt-header__trong { grid-template-columns: auto 1fr auto; }
	.vt-header__trong .vt-nut-menu { order: -1; }
	.vt-logo { justify-self: center; }
	.vt-gioi-thieu__trong { grid-template-columns: 1fr 1fr; }
	.vt-loi-the { grid-column: 1 / -1; padding-left: 0; padding-top: 24px; border-left: 0; border-top: 1px solid var(--vien); grid-template-columns: repeat(2, 1fr); }
	.vt-cot, .vt-cot--phai { grid-template-columns: 1fr; }
	.vt-cot__ben { order: 2; }
	.vt-ct { grid-template-columns: 1fr; gap: 26px; }
	.vt-gio { grid-template-columns: 1fr; }
	.vt-tom-tat { position: static; }
	.vt-lh { grid-template-columns: 1fr; }
	.vt-chat-luong__trong { grid-template-columns: 1fr; }
	.vt-chat-luong__anh { min-height: 190px; }
	.vt-chat-luong__anh::after { background: linear-gradient(180deg, rgba(20, 17, 13, .3), rgba(20, 17, 13, .95)); }
}

@media (max-width: 900px) {
	section { padding: 46px 0; }
	.vt-chu-de__luoi { grid-template-columns: repeat(3, 1fr); }
	.vt-luoi--5, .vt-luoi--4 { grid-template-columns: repeat(3, 1fr); }
	.vt-diem { grid-template-columns: repeat(2, 1fr); }
	.vt-cam-nhan__luoi { grid-template-columns: 1fr; gap: 20px; }
	.vt-footer__luoi { grid-template-columns: repeat(2, 1fr); }
	.vt-hang-dau { grid-template-columns: 1fr; }
	.vt-hang-dau .vt-xem-tat-ca { justify-self: start; }
}

@media (max-width: 640px) {
	body { font-size: 14.5px; padding-bottom: 58px; }
	/* logo phải nằm gọn một dòng trên màn hẹp */
	.vt-logo__hieu { width: 32px; height: 32px; }
	.vt-logo__ten { font-size: 15px; letter-spacing: 1.4px; white-space: nowrap; }
	.vt-logo__phu { font-size: 7px; letter-spacing: 1.2px; white-space: nowrap; }
	.vt-nut-menu span { display: none; }
	.vt-nut-menu { padding: 8px 10px; }
	.vt-cong-cu { gap: 6px; }
	/* nút trong thẻ tranh: giữ một dòng */
	.vt-tranh__nut .vt-nut { padding: 10px 8px; font-size: 12px; gap: 6px; white-space: nowrap; }
	.vt-thanh-duoi { display: block; }
	.vt-noi { bottom: 72px; }
	.vt-hero__noi-dung { padding: 40px 0 56px; }
	.vt-hero__anh::after { background: linear-gradient(90deg, rgba(10, 8, 6, .95), rgba(10, 8, 6, .82)); }
	.vt-hero__dieu-khien { bottom: 12px; }
	.vt-chu-de__luoi { grid-template-columns: repeat(2, 1fr); gap: 4px; }
	.vt-chu-de__mo-ta { display: none; }
	.vt-luoi--5, .vt-luoi--4, .vt-luoi--3, .vt-luoi--2 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.vt-tranh__than { padding: 11px; }
	.vt-tranh__ten { font-size: 13px; }
	.vt-tranh__gia { font-size: 14.5px; }
	.vt-gioi-thieu__trong { grid-template-columns: 1fr; gap: 24px; }
	.vt-loi-the { grid-template-columns: 1fr; }
	.vt-o--doi { grid-template-columns: 1fr; }
	.vt-footer__luoi { grid-template-columns: 1fr; gap: 26px; }
	.vt-footer__day { flex-direction: column; text-align: center; gap: 6px; }
	.vt-gio__mon img { width: 62px; height: 48px; }
	.vt-gio__bang thead { display: none; }
	.vt-gio__bang, .vt-gio__bang tbody, .vt-gio__bang tr, .vt-gio__bang td { display: block; width: 100%; }
	.vt-gio__bang tr { padding: 14px 0; border-bottom: 1px solid var(--vien); }
	.vt-gio__bang td { border: 0; padding: 5px 0; }
	.vt-gio__bang td[data-nhan]::before {
		content: attr(data-nhan) ": "; font-size: 12px; color: var(--chu-nhat); font-weight: 600;
	}
	.vt-diem { grid-template-columns: 1fr; }
	.vt-tab button { padding: 10px 14px; font-size: 12.5px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .001ms !important; animation-iteration-count: 1 !important;
		transition-duration: .001ms !important; scroll-behavior: auto !important;
	}
	.vt-hero__slide.dang-xem { animation: none; }
}

@media print {
	.vt-header, .vt-footer, .vt-thanh-duoi, .vt-noi, .vt-hero__dieu-khien { display: none !important; }
}
