/**
 * Nu?c �� 168 � Global bundle (layout + components + footer + sticky header)
 * Auto-merged for fewer HTTP requests.
 */

/* === 02-layout.css === */
/**
 * Layout — containers và page wrappers
 */

.container-168 {
	width: 100%;
	max-width: var(--container-default);
	margin: 0 auto;
	padding-left: var(--page-gutter, var(--space-md));
	padding-right: var(--page-gutter, var(--space-md));
}

/* Landing templates — gutter chống hero/nội dung dính mép màn hình */
.landing-168-wrapper,
.a168-page,
.c168-page {
	--page-gutter: clamp(18px, 4.5vw, 28px);
}

#main > .landing-168-wrapper {
	width: 100%;
	max-width: 100%;
}

.section-168 {
	padding: var(--space-md) 0;
}

/* Trang chủ */
.landing-168-wrapper,
.landing-168-wrapper * {
	box-sizing: border-box;
}

.landing-168-wrapper {
	color: var(--text-color);
	line-height: var(--line-height-base);
	background-color: var(--white);
	width: 100%;
	overflow-x: hidden;
}

/* Landing pages — kế thừa font-size từ html */
.h168-page,
.a168-page,
.c168-page {
	line-height: var(--line-height-base);
}

/* Trang giới thiệu */
.a168-page,
.gt-about-page-wrapper {
	color: var(--text-color);
	line-height: var(--line-height-base);
	width: 100%;
	overflow-x: hidden;
}

.gt-section {
	padding: var(--space-3xl) 0 !important;
	box-sizing: border-box;
}

.gt-section * {
	box-sizing: border-box;
}

.gt-container {
	max-width: var(--container-default);
	margin: 0 auto !important;
	padding: 0 var(--space-md) !important;
}

/* Trang liên hệ */
.c168-page,
.contact-page-wrapper {
	color: var(--text-color);
	line-height: var(--line-height-base);
	background-color: var(--white);
	width: 100%;
	overflow-x: hidden;
}

.contact-page-wrapper * {
	box-sizing: border-box;
}

.contact-container {
	max-width: var(--container-contact);
	margin: 0 auto !important;
	padding: 0 var(--space-md) !important;
}

/* Grid helpers */
body .grid-2-col {
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	justify-content: space-between !important;
	width: 100% !important;
	margin: 0 auto !important;
	gap: 0 !important;
}

/* === 03-components.css === */
/**
 * Components — typography blocks, buttons, lists dùng chung
 */

.section-title {
	color: var(--main-color);
	font-size: var(--font-size-2xl);
	font-weight: 800;
	line-height: var(--line-height-tight);
	margin-top: 0;
	margin-bottom: 25px;
}

.sub-title {
	color: var(--accent-color);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: var(--letter-spacing-wide);
	font-size: 14px;
	margin-bottom: var(--space-sm);
	display: block;
}

.gt-section-title {
	color: var(--main-color);
	font-size: var(--font-size-2xl);
	font-weight: 800;
	line-height: var(--line-height-tight);
	margin-top: 0;
	margin-bottom: 25px;
}

.gt-center-text {
	text-align: center;
}

.contact-section-title {
	color: var(--main-color);
	font-size: var(--font-size-xl) !important;
	font-weight: 700 !important;
	margin: 0 0 25px 0 !important;
}

.contact-center-text {
	text-align: center;
}

/* Badge */
.badge-top {
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	padding: 8px 16px;
	border-radius: var(--radius-pill);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: var(--space-md);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: var(--white);
}

/* Check list */
.check-list {
	list-style: none;
	padding: 0;
	margin: 0 0 var(--space-lg) 0;
}

.check-list li {
	margin-bottom: var(--space-sm);
	font-size: var(--font-size-md);
	color: var(--main-color);
	font-weight: 500;
	display: flex;
	align-items: center;
}

.check-list i {
	color: var(--accent-color);
	margin-right: 12px;
	font-size: 1.2rem;
}

/* Buttons */
.btn-text {
	color: var(--main-color);
	font-weight: 700;
	font-size: var(--font-size-xl);
	text-decoration: none !important;
	border-bottom: 2px solid var(--accent-color);
	padding-bottom: 2px;
	transition: all var(--transition-base);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn-text:hover {
	color: var(--accent-color);
	gap: 12px;
}

.btn-hero-primary {
	background-color: var(--accent-color);
	color: var(--white);
	padding: 14px 35px;
	border-radius: var(--radius-pill);
	font-weight: 700;
	text-decoration: none;
	transition: all var(--transition-base);
	border: 2px solid var(--accent-color);
	box-shadow: var(--shadow-accent);
}

.btn-hero-primary:hover {
	background-color: var(--accent-hover);
	border-color: var(--accent-hover);
	transform: translateY(-3px);
	color: var(--white);
}

.btn-hero-outline {
	background-color: transparent;
	color: var(--white);
	padding: 14px 35px;
	border-radius: var(--radius-pill);
	font-weight: 700;
	text-decoration: none;
	transition: all var(--transition-base);
	border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-hero-outline:hover {
	background-color: var(--white);
	color: var(--main-color);
	border-color: var(--white);
	transform: translateY(-3px);
}

.btn-prod {
	display: inline-block;
	background-color: var(--main-color);
	color: var(--white);
	padding: var(--space-xs) 25px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
	font-size: var(--font-size-md);
	transition: background var(--transition-base);
	margin-top: auto;
}

.btn-prod:hover {
	background-color: var(--accent-color);
}

.btn-cta {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: var(--space-xs) !important;
	background-color: var(--main-color) !important;
	color: var(--white) !important;
	padding: var(--space-sm) var(--space-xl) !important;
	border-radius: var(--radius-pill) !important;
	font-weight: 700 !important;
	font-size: var(--font-size-base) !important;
	text-decoration: none !important;
	border-bottom: none !important;
	border: 2px solid var(--main-color) !important;
	box-shadow: 0 5px 15px rgba(2, 27, 66, 0.2) !important;
	transition: all var(--transition-base) !important;
	line-height: 1 !important;
}

.btn-cta:hover {
	background-color: var(--accent-color) !important;
	color: var(--main-color) !important;
	border-color: var(--white) !important;
	transform: translateY(-3px);
}

.btn-cta i {
	margin-right: 0 !important;
	font-size: 1.1em;
}

.contact-submit-btn {
	display: block;
	width: 100%;
	padding: var(--space-sm) var(--space-md);
	background-color: var(--main-color);
	color: var(--white);
	border: none;
	border-radius: var(--radius-sm);
	font-size: var(--font-size-base);
	font-weight: 700;
	cursor: pointer;
	transition: background-color var(--transition-base);
}

.contact-submit-btn:hover {
	background-color: var(--accent-color);
}

/* WooCommerce — giá 0 đ → CTA Zalo (trang chi tiết) */
.single-product .price--zalo-quote {
	margin-bottom: 1em;
}

.single-product .nuocda-zalo-price-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	background: #0068ff;
	color: #fff !important;
	font-weight: 700;
	font-size: var(--font-size-base);
	border-radius: var(--radius-pill);
	text-decoration: none;
	transition: background var(--transition-base), transform var(--transition-base);
}

.single-product .nuocda-zalo-price-cta:hover {
	background: #0052cc;
	color: #fff !important;
	transform: translateY(-1px);
}

.single-product .nuocda-single-cta {
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
	margin-top: 8px;
}

.single-product .nuocda-single-cta__zalo,
.single-product .nuocda-single-cta__phone {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: var(--btn-min-height);
	padding: 14px 28px;
	border-radius: var(--radius-pill);
	font-weight: 700;
	font-size: var(--font-size-base);
	text-decoration: none;
	transition: background var(--transition-base), transform var(--transition-base);
	flex: 1 1 0;
	min-width: 0;
	white-space: nowrap;
}

.single-product .nuocda-single-cta__zalo {
	background: #0068ff;
	color: #fff !important;
}

.single-product .nuocda-single-cta__zalo:hover {
	background: #0052cc;
	color: #fff !important;
	transform: translateY(-1px);
}

.single-product .nuocda-single-cta__phone {
	background: var(--accent-color);
	color: #fff !important;
}

.single-product .nuocda-single-cta__phone:hover {
	background: var(--accent-hover);
	color: #fff !important;
	transform: translateY(-1px);
}

@media (max-width: 768px) {
	.single-product .nuocda-single-cta {
		gap: 8px;
	}

	.single-product .nuocda-single-cta__zalo,
	.single-product .nuocda-single-cta__phone {
		padding: 11px 12px;
		font-size: 0.8125rem;
		min-height: var(--btn-min-height-sm);
		gap: 0;
	}

	.single-product .nuocda-single-cta__zalo i,
	.single-product .nuocda-single-cta__phone i {
		display: none;
	}
}

/* ── H168 shared — section, nút, CTA (trang chủ / giới thiệu / liên hệ) ── */
.h168-section {
	padding: var(--h168-section-pad) 0;
}

.h168-section--alt {
	background: var(--bg-light);
}

.h168-section-head {
	margin-bottom: clamp(32px, 5vw, 48px);
	max-width: 680px;
}

.h168-section-head--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.h168-label {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent-color);
	margin-bottom: 14px;
}

.h168-heading {
	font-size: clamp(1.875rem, 4vw, 2.75rem);
	font-weight: 800;
	line-height: 1.25;
	color: var(--main-color);
	margin: 0 0 16px;
}

.h168-section-desc,
.h168-lead {
	color: var(--text-muted);
	font-size: var(--font-size-base);
	line-height: 1.75;
	margin: 0;
}

.h168-lead {
	margin-bottom: 28px;
}

.h168-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px;
	border-radius: var(--radius-pill);
	background: rgba(0, 195, 255, 0.15);
	border: 1px solid rgba(0, 195, 255, 0.35);
	color: #b8ecff;
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 24px;
}

.h168-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: var(--btn-min-height);
	padding: 16px 32px;
	border-radius: var(--radius-pill);
	font-weight: 700;
	font-size: var(--font-size-base);
	text-decoration: none;
	border: 2px solid transparent;
	transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
	cursor: pointer;
}

.h168-btn--primary {
	background: var(--accent-color);
	color: var(--white);
	box-shadow: var(--shadow-accent);
}

.h168-btn--primary:hover {
	background: var(--accent-hover);
	transform: translateY(-2px);
	color: var(--white);
}

.h168-btn--ghost {
	background: rgba(255, 255, 255, 0.12);
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.45);
	backdrop-filter: blur(4px);
}

.h168-btn--ghost:hover {
	background: var(--white);
	color: var(--main-color);
}

.h168-btn--outline {
	background: var(--white);
	color: var(--main-color);
	border-color: rgba(2, 27, 66, 0.12);
}

.h168-btn--outline:hover {
	border-color: var(--accent-color);
	color: var(--accent-color);
}

.h168-btn--zalo {
	background: #0068ff;
	color: var(--white);
}

.h168-btn--zalo:hover {
	background: #0052cc;
	color: var(--white);
}

.h168-btn--sm {
	min-height: var(--btn-min-height-sm);
	padding: 12px 24px;
	font-size: var(--font-size-sm);
}

.h168-btn--lg {
	min-height: 56px;
	padding: 18px 36px;
	font-size: var(--font-size-base);
	min-width: 220px;
}

.h168-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: var(--btn-min-height-sm);
	padding: 12px 28px;
	border-radius: var(--radius-pill);
	color: var(--main-color);
	font-weight: 700;
	font-size: var(--font-size-base);
	text-decoration: none;
	background: var(--white);
	border: 2px solid rgba(2, 27, 66, 0.12);
	box-shadow: 0 4px 14px rgba(2, 27, 66, 0.06);
	transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base), color var(--transition-base), background var(--transition-base);
}

.h168-link:hover {
	color: var(--accent-color);
	border-color: var(--accent-color);
	background: rgba(0, 195, 255, 0.06);
	box-shadow: 0 8px 22px rgba(0, 195, 255, 0.16);
	transform: translateY(-2px);
}

.h168-link i {
	font-size: 0.9em;
	transition: transform var(--transition-base);
}

.h168-link:hover i {
	transform: translateX(4px);
}

/* Lightbox — dùng chung trang chủ & giới thiệu */
.h168-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.h168-lightbox[hidden] {
	display: none !important;
}

.h168-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(2, 27, 66, 0.88);
}

.h168-lightbox__dialog {
	position: relative;
	z-index: 2;
	max-width: min(960px, 96vw);
	max-height: 90vh;
}

.h168-lightbox__img {
	display: block;
	max-width: 100%;
	max-height: 85vh;
	width: auto;
	height: auto;
	margin: 0 auto;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-lg);
}

.h168-lightbox__close {
	position: absolute;
	top: -48px;
	right: 0;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	background: var(--white);
	color: var(--main-color);
	font-size: 1.25rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
	.h168-lightbox {
		padding: 12px;
	}

	.h168-lightbox__close {
		position: fixed;
		top: 12px;
		right: 12px;
		z-index: 3;
	}
}

.h168-cta {
	position: relative;
	background: var(--main-color) var(--h168-cta-bg) center/cover no-repeat;
	text-align: center;
	overflow: hidden;
}

.h168-cta__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(2, 27, 66, 0.88), rgba(0, 95, 158, 0.82));
	z-index: 1;
}

.h168-cta__inner {
	position: relative;
	z-index: 2;
	max-width: 720px;
	margin: 0 auto;
}

.h168-cta__title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	color: var(--white);
	margin: 0 0 16px;
}

.h168-cta__desc {
	color: rgba(255, 255, 255, 0.9);
	font-size: var(--font-size-base);
	line-height: 1.7;
	margin: 0 0 32px;
}

.h168-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}

@media (max-width: 768px) {
	.h168-cta__actions {
		flex-direction: column;
	}

	.h168-btn:not(.h168-btn--blog),
	.h168-btn--lg {
		width: 100%;
		min-width: 0;
	}
}

/* Blog / tin tức — nút Xem chi tiết gọn, ghi đè OceanWP parent */
.blog-entry .h168-btn--blog {
	display: inline-block;
	width: auto !important;
	min-width: 0;
	min-height: 0;
	padding: 5px 12px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0;
	text-transform: none;
	color: var(--white) !important;
	background: var(--accent-color);
	border: none;
	border-radius: 4px;
	box-shadow: none;
	transform: none;
}

.blog-entry .h168-btn--blog:hover,
.blog-entry .h168-btn--blog:focus,
.blog-entry .h168-btn--blog:focus-visible {
	color: var(--white) !important;
	background: var(--accent-hover);
	border: none;
	box-shadow: none;
	transform: none;
}

.blog-entry.thumbnail-entry .blog-entry-comments .h168-btn--blog {
	float: none;
}

/* Sidebar — sản phẩm gọn (ảnh trái, tên + giá phải) */
#right-sidebar ul.products,
#left-sidebar ul.products,
#right-sidebar-inner ul.products,
aside.widget-area ul.products,
.sidebar-box ul.products {
	display: block !important;
	grid-template-columns: none !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
}

#right-sidebar ul.products.nuocda-product-grid,
.sidebar-box ul.products.nuocda-product-grid {
	display: block !important;
}

#right-sidebar ul.products::before,
#right-sidebar ul.products::after,
#left-sidebar ul.products::before,
#left-sidebar ul.products::after,
.sidebar-box ul.products::before,
.sidebar-box ul.products::after {
	display: none !important;
}

#right-sidebar ul.products > li.product,
#left-sidebar ul.products > li.product,
.sidebar-box ul.products > li.product {
	float: none !important;
	clear: both !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 12px 0 !important;
	border-bottom: 1px solid rgba(2, 27, 66, 0.08);
	overflow: visible !important;
}

#right-sidebar ul.products > li.product:last-child,
.sidebar-box ul.products > li.product:last-child {
	border-bottom: none;
	padding-bottom: 0 !important;
}

#right-sidebar ul.products .product-inner,
.sidebar-box ul.products .product-inner {
	display: block !important;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	transform: none !important;
	padding: 0 !important;
}

#right-sidebar ul.products .woo-entry-inner,
.sidebar-box ul.products .woo-entry-inner {
	display: block !important;
	position: relative !important;
	min-height: 72px;
	margin: 0 !important;
	padding: 0 0 0 88px !important;
	list-style: none !important;
}

#right-sidebar ul.products .woo-entry-inner > li,
.sidebar-box ul.products .woo-entry-inner > li {
	float: none !important;
	width: auto !important;
	margin: 0 0 4px !important;
	line-height: 1.4 !important;
}

#right-sidebar ul.products .woo-entry-inner li.category,
.sidebar-box ul.products .woo-entry-inner li.category {
	display: none !important;
}

#right-sidebar ul.products .woo-entry-inner li.image-wrap,
.sidebar-box ul.products .woo-entry-inner li.image-wrap {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 72px !important;
	height: 72px !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden;
	border-radius: 6px;
}

#right-sidebar ul.products .image-wrap .woo-entry-image,
#right-sidebar ul.products .image-wrap .woo-entry-image-swap,
.sidebar-box ul.products .image-wrap .woo-entry-image,
.sidebar-box ul.products .image-wrap .woo-entry-image-swap {
	display: block !important;
	position: static !important;
	width: 72px !important;
	height: 72px !important;
	aspect-ratio: auto !important;
	margin: 0 !important;
	overflow: hidden;
}

#right-sidebar ul.products .image-wrap img,
.sidebar-box ul.products .image-wrap img {
	display: block !important;
	width: 72px !important;
	height: 72px !important;
	max-width: 72px !important;
	object-fit: cover !important;
	transform: none !important;
}

#right-sidebar ul.products.list .woo-entry-image,
#right-sidebar ul.products.list .product-entry-slider-wrap,
.sidebar-box ul.products.list .woo-entry-image,
.sidebar-box ul.products.list .product-entry-slider-wrap {
	display: none !important;
}

#right-sidebar ul.products .title,
.sidebar-box ul.products .title {
	padding: 0 !important;
	margin: 0 0 4px !important;
	text-align: left !important;
}

#right-sidebar ul.products .title h2,
#right-sidebar ul.products .title h2 a,
.sidebar-box ul.products .title h2,
.sidebar-box ul.products .title h2 a {
	display: block !important;
	margin: 0 !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	line-height: 1.35 !important;
	color: var(--main-color) !important;
	text-decoration: none;
}

#right-sidebar ul.products .price-wrap,
.sidebar-box ul.products .price-wrap {
	display: block !important;
	padding: 0 !important;
	margin: 0 !important;
	text-align: left !important;
}

#right-sidebar ul.products .price-wrap .price,
.sidebar-box ul.products .price-wrap .price {
	display: block !important;
	margin: 0 !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	text-align: left !important;
	color: var(--accent-hover) !important;
}

#right-sidebar ul.products .btn-wrap,
#right-sidebar ul.products .woo-desc,
#right-sidebar ul.products .rating,
#right-sidebar ul.products .nuocda-product-card__footer,
#right-sidebar ul.products .nuocda-product-card__actions,
.sidebar-box ul.products .btn-wrap,
.sidebar-box ul.products .woo-desc,
.sidebar-box ul.products .rating,
.sidebar-box ul.products .nuocda-product-card__footer,
.sidebar-box ul.products .nuocda-product-card__actions {
	display: none !important;
}

#right-sidebar ul.product_list_widget li,
.sidebar-box ul.product_list_widget li {
	position: relative;
	min-height: 72px;
	padding: 10px 0 10px 88px !important;
	border-color: rgba(2, 27, 66, 0.08);
}

#right-sidebar ul.product_list_widget li img,
.sidebar-box ul.product_list_widget li img {
	position: absolute !important;
	top: 10px !important;
	left: 0 !important;
	width: 72px !important;
	height: 72px !important;
	max-width: 72px !important;
	object-fit: cover;
	border-radius: 6px;
	margin: 0 !important;
}

#right-sidebar ul.product_list_widget li a,
.sidebar-box ul.product_list_widget li a {
	display: block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--main-color);
	text-decoration: none;
}

#right-sidebar ul.product_list_widget li .product-title,
.sidebar-box ul.product_list_widget li .product-title {
	display: block;
	margin-top: 2px;
}

#right-sidebar ul.product_list_widget li .amount,
#right-sidebar ul.product_list_widget li .price,
.sidebar-box ul.product_list_widget li .amount,
.sidebar-box ul.product_list_widget li .price {
	display: block;
	margin-top: 4px;
	font-size: 13px;
	font-weight: 700;
	color: var(--accent-hover);
}

/* CTA cuối menu mobile */
.nuocda-mobile-menu-cta {
	padding: 16px 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nuocda-mobile-menu-cta__btn {
	width: 100%;
	justify-content: center;
	box-shadow: 0 4px 14px rgba(0, 104, 255, 0.28);
}

#mobile-dropdown .nuocda-mobile-menu-cta {
	border-top-color: rgba(2, 27, 66, 0.08);
}

#mobile-fullscreen .nuocda-mobile-menu-cta {
	padding: 20px 24px 28px;
	border-top: none;
}

#mobile-fullscreen .nuocda-mobile-menu-cta__btn {
	max-width: 320px;
	margin: 0 auto;
}

/* Bỏ viền ngoài khi click (OceanWP parent + trình duyệt mobile) */
a:focus,
a:focus-visible,
button:focus,
button:focus-visible,
input[type="button"]:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
.oceanwp-mobile-menu-icon a:focus,
.oceanwp-mobile-menu-icon a:focus-visible,
#mobile-dropdown a:focus,
#mobile-dropdown a:focus-visible,

.h168-btn:focus,
.h168-btn:focus-visible,
.nuocda-single-cta__zalo:focus,
.nuocda-single-cta__phone:focus,
.nuocda-zalo-price-cta:focus,
.nuocda-product-card__link:focus,
.nuocda-related-card__link:focus,
.contact-submit-btn:focus {
	outline: none !important;
	box-shadow: none !important;
}

a,
button,
input,
select,
textarea,
label {
	-webkit-tap-highlight-color: transparent;
}

/* === 04-footer.css === */
/**
 * Footer 168 — Đồng bộ design system trang chủ
 */

.footer-168 {
	background: linear-gradient(180deg, #021b42 0%, #011528 100%);
	color: var(--white);
	position: relative;
	margin-top: 0;
}

.footer-168__wave {
	position: absolute;
	top: -1px;
	left: 0;
	width: 100%;
	line-height: 0;
	transform: translateY(-99%);
}

.footer-168__wave svg {
	display: block;
	width: 100%;
	height: 48px;
}

.footer-168__inner {
	padding: clamp(56px, 7vw, 80px) var(--space-md) 36px;
}

.footer-168__title {
	font-size: var(--font-size-base);
	font-weight: 700;
	color: var(--white);
	margin: 0 0 18px;
	padding-bottom: 10px;
	border-bottom: 2px solid rgba(0, 195, 255, 0.35);
}

.footer-168__title--sub {
	margin-top: auto;
	padding-top: 24px;
}

/* Hàng trên */
.footer-168__top {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(24px, 3vw, 36px);
	align-items: stretch;
	margin-bottom: clamp(40px, 5vw, 56px);
	padding-bottom: clamp(40px, 5vw, 56px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-168__top > .footer-168__brand,
.footer-168__top > .footer-168__col {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	min-width: 0;
}

.footer-168__logo-text {
	display: inline-block;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--white);
	text-decoration: none;
	margin-bottom: 14px;
}

.footer-168__logo img {
	max-height: 64px;
	width: auto;
}

.footer-168__tagline {
	font-size: var(--font-size-sm);
	line-height: 1.7;
	opacity: 0.88;
	margin: 0 0 22px;
}

.footer-168__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.footer-168__chip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: var(--btn-min-height-sm);
	padding: 12px 18px;
	border-radius: var(--radius-pill);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: var(--white);
	text-decoration: none;
	font-size: var(--font-size-sm);
	font-weight: 600;
	transition: background var(--transition-base), border-color var(--transition-base);
}

.footer-168__chip:hover {
	background: rgba(0, 195, 255, 0.18);
	border-color: rgba(0, 195, 255, 0.4);
	color: var(--white);
}

.footer-168__chip--zalo {
	background: rgba(0, 104, 255, 0.22);
	border-color: rgba(0, 104, 255, 0.45);
}

.footer-168__chip i {
	color: var(--accent-color);
}

/* Thông tin pháp lý */
.footer-168__legal-list {
	margin: 0;
}

.footer-168__legal-row {
	margin-bottom: 0;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	font-size: var(--font-size-sm);
	line-height: 1.55;
}

.footer-168__legal-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.footer-168__legal-row dt {
	margin: 0 0 4px;
	font-size: var(--font-size-xs);
	font-weight: 700;
	color: var(--accent-soft);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.footer-168__legal-row dd {
	margin: 0;
	opacity: 0.92;
}

/* Liên hệ */
.footer-168__list,
.footer-168__menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-168__list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 14px;
	font-size: var(--font-size-sm);
	line-height: 1.6;
}

.footer-168__list li i {
	color: var(--accent-color);
	margin-top: 4px;
	min-width: 18px;
}

.footer-168__list a {
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
	transition: color var(--transition-base);
}

.footer-168__list a:hover {
	color: var(--accent-color);
}

.footer-168__contact .footer-168__hours {
	margin-top: auto;
	padding-top: 20px;
}

.footer-168__hours p {
	margin: 0 0 6px;
	font-size: var(--font-size-sm);
	opacity: 0.88;
	line-height: 1.6;
}

.footer-168__hours-note {
	font-size: var(--font-size-xs) !important;
	opacity: 0.6 !important;
}

.footer-168__menu li {
	margin-bottom: 0;
}

.footer-168__menu--grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 16px;
}

.footer-168__menu a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	font-size: var(--font-size-sm);
	transition: color var(--transition-base);
}

.footer-168__menu a:hover {
	color: var(--accent-color);
}

/* Form báo giá */
.footer-168__quote-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 100%;
	padding: clamp(20px, 2.5vw, 26px);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(0, 195, 255, 0.18);
	border-radius: var(--radius-md);
}

.footer-168__quote-card .footer-168__title {
	margin-bottom: 14px;
	padding-bottom: 10px;
}

.footer-168__quote p {
	font-size: var(--font-size-sm);
	opacity: 0.85;
	margin: 0 0 16px;
	line-height: 1.65;
	flex: 1;
}

.footer-168__form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	max-width: 100%;
	position: relative;
}

.footer-168__form > input[type="tel"] {
	display: block;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 14px 18px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.06);
	color: var(--white);
	font-size: var(--font-size-sm);
	box-sizing: border-box;
	outline: none;
	transition: border-color var(--transition-base);
}

.footer-168__form > input[type="tel"]:focus {
	border-color: var(--accent-color);
}

.footer-168__form > input[type="tel"]::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.footer-168__form > button {
	display: block;
	width: 100%;
	max-width: 100%;
	margin: 0;
	min-height: var(--btn-min-height-sm);
	padding: 14px 20px;
	border: none;
	border-radius: var(--radius-md);
	background: var(--accent-color);
	color: var(--white);
	font-weight: 700;
	font-size: var(--font-size-sm);
	box-sizing: border-box;
	cursor: pointer;
	transition: background var(--transition-base);
}

.footer-168__form button:hover {
	background: var(--accent-hover);
}

.nuocda-form-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.footer-168__field-error {
	border-color: #ff6b6b !important;
	box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.25);
}

.footer-168__form .form-message {
	margin-bottom: 10px;
	margin-top: 0;
	padding: 10px 12px;
	border-radius: var(--radius-md);
	font-size: var(--font-size-xs);
	font-weight: 600;
	line-height: 1.5;
}

.footer-168__form .form-message--success {
	background: rgba(40, 167, 69, 0.2);
	border: 1px solid rgba(40, 167, 69, 0.45);
	color: #b8f0c8;
}

.footer-168__form .form-message--error {
	background: rgba(220, 53, 69, 0.2);
	border: 1px solid rgba(220, 53, 69, 0.45);
	color: #ffc2c9;
}

.contact-form .form-message {
	padding: 15px;
	margin-top: 15px;
	border-radius: 8px;
	font-weight: 700;
	line-height: 1.5;
}

.contact-form .form-message--success {
	background: #d4edda;
	color: #155724;
}

.contact-form .form-message--error {
	background: #f8d7da;
	color: #721c24;
}

/* Cửa hàng */
.footer-168__stores-head {
	margin-bottom: 24px;
}

.footer-168__stores-head p {
	margin: 8px 0 0;
	font-size: var(--font-size-sm);
	opacity: 0.75;
}

.footer-168__stores-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.footer-168__store-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px 18px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-md);
	transition: background var(--transition-base), border-color var(--transition-base);
}

.footer-168__store-item:hover {
	background: rgba(0, 195, 255, 0.08);
	border-color: rgba(0, 195, 255, 0.2);
}

.footer-168__store-item > i {
	color: var(--accent-color);
	font-size: 1rem;
	margin-top: 3px;
	flex-shrink: 0;
}

.footer-168__store-item strong {
	display: block;
	font-size: var(--font-size-sm);
	font-weight: 700;
	color: var(--white);
	margin-bottom: 4px;
	line-height: 1.35;
}

.footer-168__store-item span {
	display: block;
	font-size: var(--font-size-xs);
	opacity: 0.78;
	line-height: 1.55;
}

/* Bottom */
.footer-168__bottom {
	margin-top: clamp(36px, 5vw, 48px);
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

.footer-168__bottom p {
	margin: 0 0 6px;
	font-size: var(--font-size-sm);
	opacity: 0.7;
	line-height: 1.5;
}

.footer-168__bottom-sub {
	font-size: var(--font-size-xs) !important;
	opacity: 0.5 !important;
}

/* Legacy */
.footer-168-container {
	background-color: var(--main-color);
	color: var(--white);
}

@media (max-width: 1100px) {
	.footer-168__top {
		grid-template-columns: 1fr 1fr;
	}

	.footer-168__stores-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.footer-168__top {
		grid-template-columns: 1fr;
	}

	.footer-168__title--sub {
		margin-top: 24px;
		padding-top: 0;
	}

	.footer-168__contact .footer-168__hours {
		margin-top: 16px;
		padding-top: 0;
	}

	.footer-168__stores-grid {
		grid-template-columns: 1fr;
	}

	.footer-168__chip {
		width: 100%;
		justify-content: center;
	}
}

/* === 10-sticky-header.css === */
/**
 * Sticky header & header CTA — Nước Đá 168
 */

/* CTA nằm trong #site-navigation-wrap — bên phải menu, không cạnh logo */
#site-navigation-wrap {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
}

#site-navigation-wrap #site-navigation {
	float: none;
}

.nuocda-header-cta {
	display: flex;
	align-items: center;
	margin-left: 12px;
	flex-shrink: 0;
}

.nuocda-header-cta__btn {
	white-space: nowrap;
	box-shadow: 0 4px 14px rgba(0, 104, 255, 0.28);
}

.nuocda-header-cta__btn i {
	font-size: 0.95em;
}

@media (max-width: 959px) {
	.nuocda-header-cta {
		display: none;
	}
}

#site-header {
	transition: transform 0.3s ease, background-color 0.3s ease;
	width: 100%;
	z-index: 9999;
}

#site-header.my-sticky-active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	animation: nuocda-slide-down 0.3s ease-in-out;
}

@keyframes nuocda-slide-down {
	from {
		transform: translateY(-100%);
	}
	to {
		transform: translateY(0);
	}
}

body.admin-bar #site-header.my-sticky-active {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar #site-header.my-sticky-active {
		top: 46px;
	}
}
