/* =============================================================================
   CSS NỀN TẢNG DÙNG CHUNG CHO TOÀN WEBSITE
   Quán ngon Quảng Bình ơi
   File này nạp ở mọi trang. Riêng trang chủ nạp thêm home.css.
   Mọi class đều bắt đầu bằng "qbo-" để không đụng tới giao diện cũ.
   ========================================================================== */

:root {
	--qbo-cam:        #d2691e;
	--qbo-cam-dam:    #b04f10;
	--qbo-cam-nhat:   #f0a35e;
	--qbo-vang:       #f5c453;
	--qbo-do:         #c0392b;
	--qbo-nau:        #2a1a11;
	--qbo-nau-nhat:   #40291c;
	--qbo-kem:        #fdf8f1;
	--qbo-kem-dam:    #f6ead9;
	--qbo-chu:        #3f2d21;
	--qbo-chu-mo:     #7d6858;
	--qbo-trang:      #ffffff;

	--qbo-font:       'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
	--qbo-font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
	--qbo-font-tay:   'Dancing Script', cursive;

	--qbo-bo-goc:     14px;
	--qbo-bong:       0 6px 22px rgba(63, 45, 33, .10);
	--qbo-bong-hover: 0 14px 34px rgba(63, 45, 33, .18);
}

/* --- Nền tảng chung ------------------------------------------------------ */
body.qbo-home {
	margin: 0;
	padding: 0;
	background: var(--qbo-trang);
	color: var(--qbo-chu);
	font-family: var(--qbo-font);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.qbo-home *,
body.qbo-home *::before,
body.qbo-home *::after {
	box-sizing: border-box;
}

body.qbo-home img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Bọc :where() để dòng này không đè mất màu chữ khai báo riêng cho từng nút */
:where(body.qbo-home) a {
	color: inherit;
	text-decoration: none;
}

/* Xoá lề mặc định của trình duyệt.
   Bọc trong :where() để mấy dòng này có độ ưu tiên bằng 0 - nhờ vậy khoảng cách
   khai báo ở từng khối bên dưới luôn có hiệu lực, không bị đoạn reset này đè mất. */
:where(body.qbo-home) :where(h1, h2, h3, p, figure) {
	margin: 0;
}

:where(body.qbo-home) :where(h1, h2, h3) {
	line-height: 1.25;
}

:where(body.qbo-home) :where(ul) {
	margin: 0;
	padding: 0;
	list-style: none;
}

.qbo-container {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 20px;
}

.qbo-icon {
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
}

/* Chữ chỉ dành cho trình đọc màn hình */
.qbo-screen-reader {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

/* --- Nút bấm ------------------------------------------------------------- */
.qbo-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
	padding: 15px 30px;
	border: 0;
	border-radius: 10px;
	font-family: inherit;
	font-weight: 700;
	font-size: 13.5px;
	letter-spacing: .09em;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	cursor: pointer;
	isolation: isolate;
	transition: transform .22s cubic-bezier(.2, .7, .3, 1),
	            box-shadow .22s cubic-bezier(.2, .7, .3, 1),
	            background-color .22s ease,
	            color .22s ease,
	            border-color .22s ease;
}

.qbo-btn .qbo-icon {
	width: 18px;
	height: 18px;
	transition: transform .22s cubic-bezier(.2, .7, .3, 1);
}

/* Vệt sáng lướt qua mặt nút khi rê chuột */
.qbo-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -60%;
	width: 45%;
	height: 100%;
	background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .35), transparent);
	transform: skewX(-18deg);
	transition: left .55s cubic-bezier(.2, .7, .3, 1);
	pointer-events: none;
	z-index: 1;
}

.qbo-btn:hover::before {
	left: 120%;
}

.qbo-btn:hover .qbo-icon {
	transform: translateX(3px);
}

/* Nút bấm giữ nguyên bàn tay lún xuống khi nhấn - cảm giác bấm thật */
.qbo-btn:active {
	transform: translateY(0) scale(.985);
}

/* Viền sáng khi di chuyển bằng bàn phím (hỗ trợ người dùng không dùng chuột) */
.qbo-btn:focus-visible {
	outline: 3px solid rgba(210, 105, 30, .45);
	outline-offset: 3px;
}

/* Nút cam đặc - hành động chính */
.qbo-btn--cam {
	background: linear-gradient(135deg, #e0801f 0%, #cc6716 52%, #b4530f 100%);
	color: #fff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28),
	            0 2px 4px rgba(120, 55, 8, .22),
	            0 12px 24px -8px rgba(176, 79, 16, .62);
}

.qbo-btn--cam:hover {
	transform: translateY(-3px);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .34),
	            0 3px 6px rgba(120, 55, 8, .22),
	            0 18px 32px -10px rgba(176, 79, 16, .72);
}

/* Nút viền - hành động phụ, dùng trên nền ảnh tối */
.qbo-btn--vien {
	background: rgba(255, 255, 255, .14);
	color: #fff;
	border: 2px solid rgba(255, 255, 255, .92);
	text-shadow: 0 1px 3px rgba(0, 0, 0, .45);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22),
	            0 8px 20px -10px rgba(0, 0, 0, .7);
}

.qbo-btn--vien:hover {
	background: #fff;
	color: var(--qbo-nau);
	border-color: #fff;
	text-shadow: none;
	transform: translateY(-3px);
	box-shadow: 0 14px 26px -10px rgba(0, 0, 0, .55);
}

.qbo-btn--vien:focus-visible {
	outline-color: rgba(255, 255, 255, .6);
}

.qbo-btn--nho {
	padding: 11px 20px;
	font-size: 12.5px;
	border-radius: 8px;
}

/* =============================================================================
   1. THANH THÔNG TIN TRÊN CÙNG
   ========================================================================== */
.qbo-topbar {
	background: var(--qbo-nau);
	color: rgba(255, 255, 255, .88);
	font-size: 13.5px;
}

.qbo-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 46px;
	flex-wrap: wrap;
}

.qbo-topbar__info {
	display: flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
}

.qbo-topbar__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.qbo-topbar__item .qbo-icon {
	width: 17px;
	height: 17px;
	color: var(--qbo-cam-nhat);
}

.qbo-topbar__right {
	display: flex;
	align-items: center;
	gap: 16px;
}

.qbo-social {
	display: flex;
	align-items: center;
	gap: 8px;
}

.qbo-social__link {
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, .12);
	transition: background-color .18s ease, transform .18s ease;
}

.qbo-social__link:hover {
	background: var(--qbo-cam);
	transform: translateY(-2px);
}

.qbo-social__link .qbo-icon {
	width: 16px;
	height: 16px;
}

.qbo-btn-hotline {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: linear-gradient(135deg, #e0801f 0%, #c8641c 55%, #b4530f 100%);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	padding: 8px 20px;
	border-radius: 999px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25),
	            0 6px 16px -6px rgba(176, 79, 16, .85);
	transition: transform .2s cubic-bezier(.2, .7, .3, 1), box-shadow .2s ease, filter .2s ease;
}

.qbo-btn-hotline:hover {
	transform: translateY(-2px);
	filter: brightness(1.06);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3),
	            0 10px 22px -6px rgba(176, 79, 16, .95);
}

.qbo-btn-hotline:active {
	transform: translateY(0) scale(.98);
}

.qbo-btn-hotline .qbo-icon {
	width: 17px;
	height: 17px;
}

/* =============================================================================
   2. LOGO + MENU
   ========================================================================== */
.qbo-header {
	position: sticky;
	top: 0;
	z-index: 90;
	background: var(--qbo-kem);
	border-bottom: 1px solid rgba(63, 45, 33, .08);
	transition: box-shadow .2s ease;
}

.qbo-header.is-dinh {
	box-shadow: 0 6px 20px rgba(63, 45, 33, .12);
}

.qbo-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 78px;
}

.qbo-logo__chu {
	font-family: var(--qbo-font-tay);
	font-size: 36px;
	font-weight: 700;
	line-height: 1;
	color: var(--qbo-cam);
	text-shadow: 0 2px 0 rgba(245, 196, 83, .45);
	display: inline-block;
}

.qbo-nav__list {
	display: flex;
	align-items: center;
	gap: 30px;
}

.qbo-nav__item > a {
	display: inline-block;
	padding: 6px 0;
	font-size: 14.5px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--qbo-chu);
	border-bottom: 2px solid transparent;
	transition: color .18s ease, border-color .18s ease;
}

.qbo-nav__item > a:hover,
.qbo-nav__item.is-active > a {
	color: var(--qbo-cam);
	border-bottom-color: var(--qbo-cam);
}

/* Nút mở menu trên điện thoại */
.qbo-menu-toggle {
	display: none;
	position: relative;
	width: 44px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 8px;
	background: rgba(210, 105, 30, .12);
	cursor: pointer;
}

.qbo-menu-toggle__vach,
.qbo-menu-toggle__vach::before,
.qbo-menu-toggle__vach::after {
	position: absolute;
	left: 50%;
	width: 22px;
	height: 2px;
	background: var(--qbo-cam-dam);
	border-radius: 2px;
	transform: translateX(-50%);
	transition: transform .2s ease, opacity .2s ease;
	content: '';
}

.qbo-menu-toggle__vach {
	top: 50%;
	margin-top: -1px;
}

.qbo-menu-toggle__vach::before {
	top: -7px;
}

.qbo-menu-toggle__vach::after {
	top: 7px;
}

.qbo-menu-toggle[aria-expanded="true"] .qbo-menu-toggle__vach {
	background: transparent;
}

.qbo-menu-toggle[aria-expanded="true"] .qbo-menu-toggle__vach::before {
	top: 0;
	transform: translateX(-50%) rotate(45deg);
}

.qbo-menu-toggle[aria-expanded="true"] .qbo-menu-toggle__vach::after {
	top: 0;
	transform: translateX(-50%) rotate(-45deg);
}


/* =============================================================================
   8. CHÂN TRANG
   ========================================================================== */
.qbo-footer {
	background: var(--qbo-kem);
	color: var(--qbo-chu);
	padding-top: 44px;
}

.qbo-footer__grid {
	display: grid;
	grid-template-columns: 1.25fr 1fr 1.1fr;
	gap: 44px;
	padding-bottom: 40px;
}

/* Khung fanpage Facebook ở cột bên phải */
.qbo-fanpage {
	max-width: 340px;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	box-shadow: var(--qbo-bong);
}

.qbo-fanpage iframe {
	display: block;
	width: 100%;
	border: 0;
}

/* Khi chưa điền link fanpage thì hiện lời mời gọi thay cho khung nhúng */
.qbo-fanpage--trong {
	background: transparent;
	box-shadow: none;
	overflow: visible;
}

.qbo-logo__chu--footer {
	font-size: 34px;
	margin-bottom: 12px;
}

.qbo-footer__mo-ta {
	color: var(--qbo-chu-mo);
	font-size: 14.5px;
	margin-bottom: 16px;
	max-width: 300px;
}

.qbo-social--footer .qbo-social__link {
	background: rgba(63, 45, 33, .10);
	color: var(--qbo-chu);
}

.qbo-social--footer .qbo-social__link:hover {
	background: var(--qbo-cam);
	color: #fff;
}

.qbo-footer__tieu-de {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .08em;
	margin-bottom: 16px;
	color: var(--qbo-chu);
}

.qbo-footer__list {
	display: grid;
	gap: 11px;
	font-size: 14.5px;
	color: var(--qbo-chu-mo);
}

.qbo-footer__list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.qbo-footer__list .qbo-icon {
	width: 18px;
	height: 18px;
	color: var(--qbo-cam);
	margin-top: 3px;
}

.qbo-footer__list a:hover {
	color: var(--qbo-cam);
}

.qbo-footer__ban-quyen {
	border-top: 1px solid rgba(63, 45, 33, .12);
	padding: 18px 0;
	font-size: 13.5px;
	color: var(--qbo-chu-mo);
}

.qbo-footer__ban-quyen-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.qbo-tim {
	color: var(--qbo-do);
}


/* =============================================================================
   BỐ CỤC CHUNG CỦA CÁC TRANG BÊN TRONG
   (tin tức, bài viết, trang tĩnh, thực đơn, tìm kiếm, 404)
   ========================================================================== */
.qbo-trang {
	background: var(--qbo-trang);
	padding: 34px 0 60px;
}

.qbo-trang__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	align-items: start;
	gap: 40px;
}

/* Trang không có cột bên */
.qbo-trang__inner--rong {
	grid-template-columns: minmax(0, 1fr);
	max-width: 860px;
}

.qbo-noi-dung {
	min-width: 0;
}

/* --- Đường dẫn phân cấp --- */
.qbo-duong-dan {
	background: var(--qbo-kem);
	border-bottom: 1px solid rgba(63, 45, 33, .08);
	font-size: 13.5px;
	color: var(--qbo-chu-mo);
}

.qbo-duong-dan__inner {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	padding-top: 12px;
	padding-bottom: 12px;
}

.qbo-duong-dan a:hover {
	color: var(--qbo-cam);
}

.qbo-duong-dan__cach {
	color: #c3b1a2;
}

.qbo-duong-dan__hien-tai {
	color: var(--qbo-chu);
	font-weight: 600;
}

/* --- Tiêu đề đầu trang --- */
.qbo-dau-trang {
	margin-bottom: 28px;
}

.qbo-dau-trang__chu {
	font-family: var(--qbo-font-serif);
	font-size: 30px;
	font-weight: 800;
	color: var(--qbo-chu);
	letter-spacing: .01em;
}

.qbo-dau-trang__gach {
	display: block;
	width: 68px;
	height: 4px;
	margin-top: 12px;
	border-radius: 4px;
	background: linear-gradient(90deg, var(--qbo-cam), var(--qbo-vang));
}

.qbo-dau-trang__mo-ta {
	margin-top: 14px;
	color: var(--qbo-chu-mo);
	font-size: 15.5px;
}

/* =============================================================================
   DANH SÁCH BÀI VIẾT
   ========================================================================== */
.qbo-ds-bai {
	display: grid;
	gap: 22px;
}

.qbo-bai {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 22px;
	padding: 16px;
	border: 1px solid rgba(63, 45, 33, .09);
	border-radius: var(--qbo-bo-goc);
	background: var(--qbo-trang);
	transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease;
}

.qbo-bai:hover {
	transform: translateY(-3px);
	border-color: rgba(210, 105, 30, .28);
	box-shadow: var(--qbo-bong-hover);
}

.qbo-bai__anh {
	display: block;
	overflow: hidden;
	border-radius: 10px;
	background: var(--qbo-kem-dam);
	aspect-ratio: 4 / 3;
}

.qbo-bai__anh img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
	transition: transform .5s ease;
}

.qbo-bai:hover .qbo-bai__anh img {
	transform: scale(1.05);
}

.qbo-bai__anh-trong {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: var(--qbo-cam-nhat);
}

.qbo-bai__anh-trong .qbo-icon {
	width: 46px;
	height: 46px;
}

.qbo-bai__noi-dung {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.qbo-bai__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 10px;
	font-size: 13px;
	color: var(--qbo-chu-mo);
}

.qbo-bai__chuyen-muc {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 999px;
	background: rgba(210, 105, 30, .12);
	color: var(--qbo-cam-dam);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .03em;
	text-transform: uppercase;
	transition: background-color .18s ease, color .18s ease;
}

a.qbo-bai__chuyen-muc:hover {
	background: var(--qbo-cam);
	color: #fff;
}

.qbo-bai__ngay {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.qbo-bai__ngay .qbo-icon {
	width: 15px;
	height: 15px;
	color: var(--qbo-cam-nhat);
}

.qbo-bai__tieu-de {
	font-size: 19px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 10px;
}

.qbo-bai__tieu-de a:hover {
	color: var(--qbo-cam);
}

.qbo-bai__tom-tat {
	color: var(--qbo-chu-mo);
	font-size: 14.5px;
	margin-bottom: 14px;
}

.qbo-bai__xem-them {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	align-self: flex-start;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--qbo-cam);
	letter-spacing: .03em;
}

.qbo-bai__xem-them .qbo-icon {
	width: 16px;
	height: 16px;
	transition: transform .2s ease;
}

.qbo-bai__xem-them:hover .qbo-icon {
	transform: translateX(4px);
}

/* Danh sách bài dạng nhỏ - dùng cho "Bài viết liên quan" */
.qbo-ds-bai--nho {
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.qbo-ds-bai--nho .qbo-bai {
	grid-template-columns: 1fr;
	gap: 14px;
}

.qbo-ds-bai--nho .qbo-bai__tieu-de {
	font-size: 16px;
}

.qbo-ds-bai--nho .qbo-bai__tom-tat,
.qbo-ds-bai--nho .qbo-bai__xem-them {
	display: none;
}

/* =============================================================================
   PHÂN TRANG (kiểu Google)
   ========================================================================== */
.qbo-phan-trang {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 36px;
}

.qbo-trang-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid rgba(63, 45, 33, .14);
	border-radius: 9px;
	background: var(--qbo-trang);
	color: var(--qbo-chu);
	font-size: 14.5px;
	font-weight: 600;
	transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.qbo-trang-link:hover {
	border-color: var(--qbo-cam);
	color: var(--qbo-cam);
	transform: translateY(-2px);
}

.qbo-trang-link--dang-xem {
	background: var(--qbo-cam);
	border-color: var(--qbo-cam);
	color: #fff;
	cursor: default;
	box-shadow: 0 6px 14px -6px rgba(176, 79, 16, .8);
}

.qbo-trang-link--dang-xem:hover {
	transform: none;
	color: #fff;
}

.qbo-trang-link--tat {
	opacity: .35;
	pointer-events: none;
}

.qbo-trang-cham {
	padding: 0 2px;
	color: var(--qbo-chu-mo);
}

/* =============================================================================
   BÀI VIẾT CHI TIẾT
   ========================================================================== */
.qbo-bai-viet__dau {
	margin-bottom: 22px;
}

.qbo-bai-viet__dau .qbo-bai__chuyen-muc {
	margin-bottom: 14px;
}

.qbo-bai-viet__tieu-de {
	font-family: var(--qbo-font-serif);
	font-size: 33px;
	font-weight: 800;
	line-height: 1.3;
	color: var(--qbo-chu);
	margin-bottom: 14px;
}

.qbo-bai-viet__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px;
	font-size: 13.5px;
	color: var(--qbo-chu-mo);
}

.qbo-bai-viet__meta span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.qbo-bai-viet__meta .qbo-icon {
	width: 16px;
	height: 16px;
	color: var(--qbo-cam-nhat);
}

.qbo-bai-viet__anh {
	margin: 0 0 26px;
	border-radius: var(--qbo-bo-goc);
	overflow: hidden;
	box-shadow: var(--qbo-bong);
}

.qbo-bai-viet__anh img {
	width: 100%;
	height: auto;
	border-radius: inherit;
}

/* Phần nội dung do Đại Ka soạn trong trang quản trị */
.qbo-bai-viet__noi-dung {
	font-size: 16.5px;
	line-height: 1.8;
	color: #4a3729;
}

.qbo-bai-viet__noi-dung > * + * {
	margin-top: 18px;
}

.qbo-bai-viet__noi-dung h2,
.qbo-bai-viet__noi-dung h3,
.qbo-bai-viet__noi-dung h4 {
	font-family: var(--qbo-font-serif);
	font-weight: 700;
	color: var(--qbo-chu);
	line-height: 1.35;
	margin-top: 32px;
}

.qbo-bai-viet__noi-dung h2 { font-size: 25px; }
.qbo-bai-viet__noi-dung h3 { font-size: 21px; }
.qbo-bai-viet__noi-dung h4 { font-size: 18px; }

.qbo-bai-viet__noi-dung a {
	color: var(--qbo-cam-dam);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.qbo-bai-viet__noi-dung a:hover {
	color: var(--qbo-cam);
}

.qbo-bai-viet__noi-dung img {
	border-radius: 10px;
	margin-left: auto;
	margin-right: auto;
}

.qbo-bai-viet__noi-dung ul,
.qbo-bai-viet__noi-dung ol {
	padding-left: 22px;
	list-style: revert;
}

.qbo-bai-viet__noi-dung li + li {
	margin-top: 8px;
}

.qbo-bai-viet__noi-dung blockquote {
	margin: 26px 0;
	padding: 18px 22px;
	border-left: 4px solid var(--qbo-cam);
	border-radius: 0 10px 10px 0;
	background: var(--qbo-kem);
	font-style: italic;
	color: #5b4535;
}

.qbo-bai-viet__noi-dung table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
}

.qbo-bai-viet__noi-dung th,
.qbo-bai-viet__noi-dung td {
	border: 1px solid rgba(63, 45, 33, .14);
	padding: 10px 12px;
	text-align: left;
}

.qbo-bai-viet__noi-dung th {
	background: var(--qbo-kem);
	font-weight: 700;
}

/* Bảng và ảnh rộng thì cuộn ngang bên trong, không đẩy vỡ cả trang */
.qbo-bai-viet__noi-dung > table,
.qbo-bai-viet__noi-dung .wp-block-table {
	display: block;
	overflow-x: auto;
}

.qbo-bai-viet__the {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 28px;
}

.qbo-bai-viet__the a {
	padding: 6px 14px;
	border-radius: 999px;
	background: var(--qbo-kem);
	border: 1px solid rgba(63, 45, 33, .1);
	font-size: 13px;
	color: var(--qbo-chu-mo);
	transition: background-color .18s ease, color .18s ease;
}

.qbo-bai-viet__the a:hover {
	background: var(--qbo-cam);
	border-color: var(--qbo-cam);
	color: #fff;
}

/* --- Dải mời gọi đặt món --- */
.qbo-moi-goi {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 34px;
	padding: 24px 28px;
	border-radius: var(--qbo-bo-goc);
	background: linear-gradient(120deg, #2a1a11 0%, #40291c 100%);
	color: #fff;
}

.qbo-moi-goi__chu h3 {
	font-family: var(--qbo-font-serif);
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 5px;
}

.qbo-moi-goi__chu p {
	color: rgba(255, 255, 255, .82);
	font-size: 14.5px;
}

/* --- Bài viết liên quan --- */
.qbo-lien-quan {
	margin-top: 44px;
}

.qbo-lien-quan__tieu-de {
	font-family: var(--qbo-font-serif);
	font-size: 23px;
	font-weight: 800;
	color: var(--qbo-chu);
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid rgba(210, 105, 30, .22);
}

/* =============================================================================
   THỰC ĐƠN (WooCommerce)
   ========================================================================== */
.qbo-ds-mon {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px 22px;
}

/* Dải món luôn nằm gọn một hàng ngang, dù là 3 hay 4 món thì cũng tự chia đều
   chứ không để món cuối rơi xuống dòng dưới trông lệch hẳn đi. */
.qbo-ds-mon--mot-dong {
	grid-template-columns: none;
	grid-auto-flow: column;
	grid-auto-columns: minmax(0, 1fr);
}

.qbo-mon-woo {
	display: block;
	text-align: center;
}

.qbo-mon-woo__anh {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--qbo-bo-goc);
	box-shadow: var(--qbo-bong);
	background: var(--qbo-kem-dam);
	aspect-ratio: 1 / 1;
	transition: transform .22s ease, box-shadow .22s ease;
}

.qbo-mon-woo__anh img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
	transition: transform .5s ease;
}

.qbo-mon-woo:hover .qbo-mon-woo__anh {
	transform: translateY(-5px);
	box-shadow: var(--qbo-bong-hover);
}

.qbo-mon-woo:hover .qbo-mon-woo__anh img {
	transform: scale(1.06);
}

.qbo-mon-woo__ten {
	display: block;
	margin-top: 16px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--qbo-chu);
	transition: color .18s ease;
}

.qbo-mon-woo:hover .qbo-mon-woo__ten {
	color: var(--qbo-cam);
}

.qbo-mon-woo__gia {
	display: block;
	margin-top: 7px;
	font-size: 14.5px;
	font-weight: 600;
	color: var(--qbo-cam);
}

.qbo-mon-woo__gia del {
	color: #a89283;
	font-weight: 400;
	margin-right: 6px;
}

/* --- Trang chi tiết một món --- */
.qbo-mon-chi-tiet__tren {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 34px;
	align-items: start;
}

.qbo-mon-chi-tiet__anh {
	margin: 0;
	border-radius: var(--qbo-bo-goc);
	overflow: hidden;
	box-shadow: var(--qbo-bong);
	background: var(--qbo-kem-dam);
	aspect-ratio: 1 / 1;
}

.qbo-mon-chi-tiet__anh img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
}

.qbo-mon-chi-tiet__ten {
	font-family: var(--qbo-font-serif);
	font-size: 31px;
	font-weight: 800;
	line-height: 1.3;
	color: var(--qbo-chu);
	margin-bottom: 12px;
}

.qbo-mon-chi-tiet__gia {
	font-size: 26px;
	font-weight: 700;
	color: var(--qbo-cam);
	margin-bottom: 16px;
}

.qbo-mon-chi-tiet__gia del {
	font-size: 19px;
	color: #a89283;
	font-weight: 400;
	margin-right: 8px;
}

.qbo-mon-chi-tiet__tom-tat {
	color: var(--qbo-chu-mo);
	font-size: 15.5px;
	line-height: 1.75;
	margin-bottom: 22px;
}

.qbo-mon-chi-tiet__nut {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 24px;
}

.qbo-mon-chi-tiet__thong-tin {
	display: grid;
	gap: 10px;
	padding-top: 20px;
	border-top: 1px solid rgba(63, 45, 33, .12);
	font-size: 14.5px;
	color: var(--qbo-chu-mo);
}

.qbo-mon-chi-tiet__thong-tin li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.qbo-mon-chi-tiet__thong-tin .qbo-icon {
	width: 18px;
	height: 18px;
	color: var(--qbo-cam);
	margin-top: 3px;
}

.qbo-mon-chi-tiet__mo-ta {
	margin-top: 38px;
}

.qbo-mon-chi-tiet__phu-de {
	font-family: var(--qbo-font-serif);
	font-size: 23px;
	font-weight: 800;
	color: var(--qbo-chu);
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid rgba(210, 105, 30, .22);
}

/* =============================================================================
   CỘT BÊN
   ========================================================================== */
.qbo-cot-ben {
	display: grid;
	gap: 22px;
	position: sticky;
	top: 96px;
}

.qbo-o-ben {
	padding: 20px;
	border: 1px solid rgba(63, 45, 33, .09);
	border-radius: var(--qbo-bo-goc);
	background: var(--qbo-kem);
}

.qbo-o-ben__tieu-de {
	position: relative;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--qbo-chu);
	padding-bottom: 12px;
	margin-bottom: 16px;
	border-bottom: 1px solid rgba(63, 45, 33, .1);
}

.qbo-o-ben__tieu-de::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 46px;
	height: 3px;
	border-radius: 3px;
	background: linear-gradient(90deg, var(--qbo-cam), var(--qbo-vang));
}

.qbo-o-ben__list {
	display: grid;
	gap: 12px;
	font-size: 14.5px;
	color: var(--qbo-chu-mo);
}

.qbo-o-ben__list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.qbo-o-ben__list .qbo-icon {
	width: 18px;
	height: 18px;
	color: var(--qbo-cam);
	margin-top: 3px;
}

.qbo-o-ben__nut {
	width: 100%;
	margin-top: 16px;
}

/* Danh sách món trong cột bên */
.qbo-o-ben__mon {
	display: grid;
	gap: 14px;
}

.qbo-o-ben__mon a,
.qbo-o-ben__bai a {
	display: flex;
	align-items: center;
	gap: 12px;
}

.qbo-o-ben__mon-anh,
.qbo-o-ben__bai-anh {
	flex: 0 0 58px;
	width: 58px;
	height: 58px;
	border-radius: 10px;
	overflow: hidden;
	background: var(--qbo-kem-dam);
}

.qbo-o-ben__mon-anh img,
.qbo-o-ben__bai-anh img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
	transition: transform .4s ease;
}

.qbo-o-ben__mon a:hover img,
.qbo-o-ben__bai a:hover img {
	transform: scale(1.08);
}

.qbo-o-ben__mon-chu,
.qbo-o-ben__bai-chu {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.qbo-o-ben__mon-ten,
.qbo-o-ben__bai-ten {
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.45;
	color: var(--qbo-chu);
	transition: color .18s ease;
}

.qbo-o-ben__mon a:hover .qbo-o-ben__mon-ten,
.qbo-o-ben__bai a:hover .qbo-o-ben__bai-ten {
	color: var(--qbo-cam);
}

.qbo-o-ben__mon-gia {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--qbo-cam);
}

.qbo-o-ben__bai-ngay {
	font-size: 12.5px;
	color: var(--qbo-chu-mo);
}

.qbo-o-ben__bai {
	display: grid;
	gap: 14px;
}

.qbo-o-ben__xem-het {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--qbo-cam);
}

.qbo-o-ben__xem-het .qbo-icon {
	width: 16px;
	height: 16px;
	transition: transform .2s ease;
}

.qbo-o-ben__xem-het:hover .qbo-icon {
	transform: translateX(4px);
}

/* Các widget cũ trong trang quản trị - khoác lại tông màu cho đồng bộ */
.qbo-widget-cu .widget {
	padding: 20px;
	margin-bottom: 22px;
	border: 1px solid rgba(63, 45, 33, .09);
	border-radius: var(--qbo-bo-goc);
	background: var(--qbo-kem);
	font-size: 14.5px;
	color: var(--qbo-chu-mo);
}

.qbo-widget-cu .widget-title,
.qbo-widget-cu h4,
.qbo-widget-cu h3 {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--qbo-chu);
	padding-bottom: 12px;
	margin-bottom: 14px;
	border-bottom: 1px solid rgba(63, 45, 33, .1);
}

.qbo-widget-cu ul {
	display: grid;
	gap: 10px;
}

.qbo-widget-cu a:hover {
	color: var(--qbo-cam);
}

.qbo-widget-cu img {
	border-radius: 8px;
}

/* =============================================================================
   Ô TÌM KIẾM, TRANG TRỐNG, TRANG 404
   ========================================================================== */
.qbo-o-tim {
	display: flex;
	gap: 10px;
	margin-bottom: 28px;
}

.qbo-o-tim input[type="search"] {
	flex: 1 1 auto;
	min-width: 0;
	padding: 12px 16px;
	border: 1px solid rgba(63, 45, 33, .16);
	border-radius: 9px;
	background: var(--qbo-trang);
	font-family: inherit;
	font-size: 15px;
	color: var(--qbo-chu);
}

.qbo-o-tim input[type="search"]:focus {
	outline: none;
	border-color: var(--qbo-cam);
	box-shadow: 0 0 0 3px rgba(210, 105, 30, .16);
}

.qbo-trong {
	padding: 40px 24px;
	text-align: center;
	border: 1px dashed rgba(63, 45, 33, .2);
	border-radius: var(--qbo-bo-goc);
	background: var(--qbo-kem);
	color: var(--qbo-chu-mo);
}

.qbo-trong p + p {
	margin-top: 8px;
}

.qbo-trong .qbo-btn {
	margin-top: 20px;
}

.qbo-trang--404 {
	padding: 60px 0 80px;
}

.qbo-404 {
	max-width: 620px;
	margin: 0 auto;
	text-align: center;
}

.qbo-404__so {
	display: block;
	font-family: var(--qbo-font-serif);
	font-size: 96px;
	font-weight: 800;
	line-height: 1;
	background: linear-gradient(135deg, var(--qbo-cam), var(--qbo-vang));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.qbo-404__tieu-de {
	font-family: var(--qbo-font-serif);
	font-size: 29px;
	font-weight: 800;
	color: var(--qbo-chu);
	margin: 10px 0 12px;
}

.qbo-404__mo-ta {
	color: var(--qbo-chu-mo);
	font-size: 15.5px;
	margin-bottom: 26px;
}

.qbo-404 .qbo-o-tim {
	max-width: 460px;
	margin: 0 auto 24px;
}

.qbo-404__nut {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}

.qbo-404__hotline {
	margin-top: 24px;
	font-size: 15px;
	color: var(--qbo-chu-mo);
}

.qbo-404__hotline a {
	font-weight: 700;
	color: var(--qbo-cam);
}

/* Nút màu nâu đậm - dùng trên nền sáng khi cần nút phụ */
.qbo-btn--dam {
	background: var(--qbo-nau);
	color: #fff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14),
	            0 10px 22px -10px rgba(42, 26, 17, .8);
}

.qbo-btn--dam:hover {
	background: var(--qbo-nau-nhat);
	transform: translateY(-3px);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18),
	            0 16px 28px -12px rgba(42, 26, 17, .9);
}

/* =============================================================================
   PHẦN BÌNH LUẬN
   ========================================================================== */
.comments-area,
#comments {
	margin-top: 44px;
}

/* Khối bình luận vẫn dùng khuôn của theme cha nên bám theo các lớp cũ của nó */
#comments .block-head,
#comments .post-listing {
	margin-bottom: 18px;
}

#comments .stripe-line {
	display: none;
}

#comments .navigation {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
	font-size: 14px;
}

.comments-area .comment-reply-title,
#comments-title,
#comments h3 {
	font-family: var(--qbo-font-serif);
	font-size: 23px;
	font-weight: 800;
	color: var(--qbo-chu);
	margin-bottom: 18px;
	padding-bottom: 12px;
	border-bottom: 2px solid rgba(210, 105, 30, .22);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 12px 14px;
	margin-top: 6px;
	border: 1px solid rgba(63, 45, 33, .16);
	border-radius: 9px;
	font-family: inherit;
	font-size: 15px;
	color: var(--qbo-chu);
}

.comment-form input:focus,
.comment-form textarea:focus {
	outline: none;
	border-color: var(--qbo-cam);
	box-shadow: 0 0 0 3px rgba(210, 105, 30, .16);
}

.comment-form p {
	margin-bottom: 14px;
}

.comment-form .submit {
	padding: 14px 28px;
	border: 0;
	border-radius: 10px;
	background: linear-gradient(135deg, #e0801f 0%, #cc6716 52%, #b4530f 100%);
	color: #fff;
	font-family: inherit;
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 12px 24px -8px rgba(176, 79, 16, .62);
	transition: transform .2s ease, box-shadow .2s ease;
}

.comment-form .submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 30px -10px rgba(176, 79, 16, .72);
}

.commentlist,
.comment-list {
	display: grid;
	gap: 18px;
	margin-bottom: 32px;
}

.commentlist li,
.comment-list li {
	padding: 18px;
	border: 1px solid rgba(63, 45, 33, .09);
	border-radius: var(--qbo-bo-goc);
	background: var(--qbo-kem);
	font-size: 15px;
}

/* =============================================================================
   RESPONSIVE CHO CÁC TRANG BÊN TRONG
   ========================================================================== */
@media (max-width: 1024px) {
	.qbo-trang__inner {
		grid-template-columns: minmax(0, 1fr) 290px;
		gap: 30px;
	}

	.qbo-bai {
		grid-template-columns: 210px minmax(0, 1fr);
	}

	.qbo-ds-mon {
		grid-template-columns: repeat(3, 1fr);
		gap: 22px 18px;
	}

	.qbo-bai-viet__tieu-de {
		font-size: 28px;
	}
}

@media (max-width: 860px) {
	/* Cột bên xuống dưới phần nội dung */
	.qbo-trang__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 36px;
	}

	.qbo-cot-ben {
		position: static;
	}

	.qbo-ds-bai--nho {
		grid-template-columns: repeat(2, 1fr);
	}

	.qbo-mon-chi-tiet__tren {
		grid-template-columns: minmax(0, 1fr);
		gap: 24px;
	}

	.qbo-mon-chi-tiet__ten {
		font-size: 26px;
	}
}

@media (max-width: 620px) {
	.qbo-trang {
		padding: 24px 0 46px;
	}

	.qbo-dau-trang__chu {
		font-size: 24px;
	}

	/* Thẻ bài viết xếp dọc trên điện thoại */
	.qbo-bai {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 12px;
	}

	.qbo-bai__tieu-de {
		font-size: 17px;
	}

	.qbo-ds-bai--nho {
		grid-template-columns: 1fr;
	}

	.qbo-ds-mon {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px 14px;
	}

	/* Trên điện thoại, dải món quay về xếp 2 cột cho ảnh đủ to */
	.qbo-ds-mon--mot-dong {
		grid-auto-flow: row;
		grid-template-columns: repeat(2, 1fr);
	}

	.qbo-mon-woo__ten {
		font-size: 13.5px;
		margin-top: 12px;
	}

	.qbo-bai-viet__tieu-de {
		font-size: 23px;
	}

	.qbo-bai-viet__noi-dung {
		font-size: 16px;
	}

	.qbo-moi-goi {
		flex-direction: column;
		align-items: flex-start;
		padding: 20px;
	}

	.qbo-404__so {
		font-size: 72px;
	}

	.qbo-404__tieu-de {
		font-size: 23px;
	}

	.qbo-o-tim {
		flex-direction: column;
	}

	.qbo-o-tim .qbo-btn {
		justify-content: center;
	}
}

/* =============================================================================
   RESPONSIVE CHO THANH TRÊN, MENU VÀ CHÂN TRANG
   ========================================================================== */
@media (max-width: 1024px) {
	.qbo-nav__list     { gap: 20px; }
	.qbo-nav__item > a { font-size: 13.5px; }
	.qbo-logo__chu     { font-size: 31px; }
	.qbo-footer__grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
	/* Menu chuyển thành dạng xổ xuống */
	.qbo-menu-toggle {
		display: block;
	}

	.qbo-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--qbo-kem);
		border-bottom: 1px solid rgba(63, 45, 33, .1);
		box-shadow: 0 14px 26px rgba(63, 45, 33, .14);
		max-height: 0;
		overflow: hidden;
		transition: max-height .28s ease;
	}

	.qbo-nav.is-mo {
		max-height: 520px;
	}

	.qbo-header__inner {
		position: relative;
		flex-wrap: wrap;
		min-height: 66px;
	}

	.qbo-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 8px 20px 16px;
	}

	.qbo-nav__item > a {
		display: block;
		padding: 12px 0;
		border-bottom: 1px solid rgba(63, 45, 33, .08);
	}

	.qbo-nav__item.is-active > a {
		border-bottom-color: rgba(63, 45, 33, .08);
	}
}

@media (max-width: 620px) {
	.qbo-topbar__inner {
		justify-content: center;
		padding-top: 8px;
		padding-bottom: 8px;
		gap: 10px;
	}

	.qbo-topbar__info {
		justify-content: center;
		gap: 6px 18px;
		font-size: 12.5px;
	}

	.qbo-topbar__right {
		width: 100%;
		justify-content: center;
	}

	.qbo-btn {
		padding: 12px 20px;
		font-size: 13px;
	}

	.qbo-footer__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.qbo-footer__ban-quyen-inner {
		justify-content: center;
		text-align: center;
	}
}
