/* Footer — đồng bộ gradient & accent với header */

.hanoi26-site-footer {
	position: relative;
	background: var(--hanoi26-header-bg);
	color: #fff;
	padding: 3.25rem 0 2rem;
	border-top: 1px solid var(--hanoi26-header-border);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.06),
		0 -12px 40px rgba(0, 0, 0, 0.22);
}

.hanoi26-site-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--hanoi26-header-accent);
	pointer-events: none;
}

.hanoi26-site-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	margin-bottom: 2rem;
}

@media (min-width: 768px) and (max-width: 1023px) {
	.hanoi26-site-footer__grid {
		gap: 0;
	}
}

@media (min-width: 1024px) {
	.hanoi26-site-footer__grid {
		grid-template-columns: 1.15fr 1fr 1fr 0.95fr;
		gap: 2rem;
		margin-bottom: 2.75rem;
	}
}

/* —— Accordion (mobile / tablet) —— */
.hanoi26-footer-accordion {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hanoi26-footer-accordion__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	width: 100%;
	margin: 0;
	padding: 1rem 0;
	border: 0;
	background: transparent;
	color: inherit;
	text-align: left;
	cursor: pointer;
}

.hanoi26-footer-accordion__trigger .hanoi26-site-footer__title {
	margin: 0;
	flex: 1;
}

.hanoi26-footer-accordion__icon {
	flex-shrink: 0;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.55);
	transition: transform 0.25s ease, color 0.2s ease;
}

.hanoi26-footer-accordion.is-open .hanoi26-footer-accordion__icon {
	transform: rotate(180deg);
	color: var(--hanoi26-primary);
}

.hanoi26-footer-accordion__panel[hidden] {
	display: none;
}

.hanoi26-footer-accordion__panel {
	padding-bottom: 1.15rem;
}

@media (min-width: 1024px) {
	.hanoi26-footer-accordion {
		border-bottom: 0;
	}

	.hanoi26-footer-accordion__trigger {
		padding: 0;
		pointer-events: none;
		cursor: default;
	}

	.hanoi26-footer-accordion__icon {
		display: none;
	}

	.hanoi26-footer-accordion__panel {
		display: block !important;
		padding-bottom: 0;
	}

	.hanoi26-footer-accordion__panel[hidden] {
		display: block !important;
	}
}

.hanoi26-site-footer__title {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	margin: 0 0 0.875rem;
	padding-left: 0.625rem;
	border-left: 2px solid var(--hanoi26-primary);
	font-family: Montserrat, ui-sans-serif, system-ui, sans-serif;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	line-height: 1.3;
	text-transform: uppercase;
	color: #fff;
}

.hanoi26-site-footer__rule {
	margin: 0 0 1.35rem;
	border: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		rgba(229, 62, 62, 0.45) 0%,
		rgba(255, 255, 255, 0.14) 42%,
		transparent 100%
	);
}

.hanoi26-site-footer__empty {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--hanoi26-header-text);
}

/* —— Giới thiệu —— */
.hanoi26-footer-brand {
	display: inline-flex;
	margin-bottom: 1.25rem;
	text-decoration: none;
	color: inherit;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.hanoi26-footer-brand:hover {
	opacity: 0.92;
	transform: translateY(-1px);
}

.hanoi26-footer-brand__logo {
	display: block;
	width: auto;
	height: 4.5rem;
	max-width: min(100%, 14rem);
	object-fit: contain;
	filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.35));
}

@media (min-width: 640px) {
	.hanoi26-footer-brand__logo {
		height: 5.25rem;
		max-width: min(100%, 16.5rem);
	}
}

@media (min-width: 1024px) {
	.hanoi26-footer-brand__logo {
		height: 5.75rem;
		max-width: min(100%, 18rem);
	}
}

.hanoi26-site-footer__about {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.75;
	color: var(--hanoi26-header-text);
}

/* —— Đánh giá mới nhất —— */
.hanoi26-footer-reviews {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.hanoi26-footer-review {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.55rem;
	margin: 0 -0.55rem;
	border-radius: 0.5rem;
	text-decoration: none;
	color: inherit;
	transition: background-color 0.2s ease;
}

.hanoi26-footer-review:hover {
	background: rgba(255, 255, 255, 0.05);
}

.hanoi26-footer-review:hover .hanoi26-footer-review__title {
	color: var(--hanoi26-header-cart-hover);
}

.hanoi26-footer-review__thumb {
	flex-shrink: 0;
	width: 4.25rem;
	height: 4.25rem;
	object-fit: cover;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(0, 0, 0, 0.25);
}

.hanoi26-footer-review__thumb--placeholder {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.45);
	font-size: 1.1rem;
}

.hanoi26-footer-review__body {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	min-width: 0;
}

.hanoi26-footer-review__title {
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.95);
	transition: color 0.2s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hanoi26-footer-review__stars {
	line-height: 1;
}

.hanoi26-footer-review__stars-inner.hanoi26-stars--readonly i {
	color: var(--hanoi26-header-cart);
	font-size: 0.65rem;
}

.hanoi26-footer-review__author {
	font-size: 0.72rem;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.58);
}

/* —— Bài viết mới —— */
.hanoi26-footer-posts {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.hanoi26-footer-posts__link {
	position: relative;
	display: block;
	padding: 0.55rem 0 0.55rem 0.875rem;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.55;
	color: var(--hanoi26-header-text);
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	transition: color 0.2s ease, padding-left 0.2s ease;
}

.hanoi26-footer-posts__link::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	transform: translateY(-50%);
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.hanoi26-footer-posts__link:hover {
	color: var(--hanoi26-header-text-hover);
	padding-left: 1rem;
}

.hanoi26-footer-posts__link:hover::before {
	background: var(--hanoi26-primary);
	transform: translateY(-50%) scale(1.35);
}

.hanoi26-footer-posts li:last-child .hanoi26-footer-posts__link {
	border-bottom: 0;
}

/* —— Lối tắt —— */
.hanoi26-footer-shortcuts {
	margin: 0;
	padding: 0;
	list-style: none;
}

.hanoi26-footer-shortcuts__link {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.8rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	font-family: Montserrat, ui-sans-serif, system-ui, sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.35;
	text-transform: uppercase;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.88);
	transition: color 0.2s ease, padding-left 0.2s ease;
}

.hanoi26-footer-shortcuts__link:hover {
	color: var(--hanoi26-primary);
	padding-left: 0.35rem;
}

.hanoi26-footer-shortcuts__link i {
	font-size: 0.8rem;
	color: var(--hanoi26-header-cart);
	opacity: 0.95;
}

.hanoi26-footer-shortcuts li:last-child .hanoi26-footer-shortcuts__link {
	border-bottom: 0;
}

/* —— Bottom bar —— */
.hanoi26-site-footer__bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1.65rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
	.hanoi26-site-footer__bottom {
		flex-direction: row;
	}
}

.hanoi26-site-footer__copy {
	margin: 0;
	font-size: 0.72rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.48);
	text-align: center;
}

@media (min-width: 768px) {
	.hanoi26-site-footer__copy {
		text-align: left;
	}
}

.hanoi26-site-footer__payments {
	display: flex;
	gap: 0.65rem;
	font-size: 1.4rem;
	color: rgba(255, 255, 255, 0.38);
	transition: color 0.2s ease;
}

.hanoi26-site-footer__payments i:hover {
	color: rgba(255, 255, 255, 0.65);
}
.h26-premium-footer{position:relative;padding:3.75rem 0 1.5rem;background:radial-gradient(circle at 15% 0,#202020 0,transparent 25rem),#0c0c0f;color:#e8e5df;border-top:2px solid #b58d42}.h26-premium-footer a{color:inherit;text-decoration:none}.h26-premium-footer__top{display:grid;grid-template-columns:1.05fr 2.1fr;gap:4rem;padding-bottom:2.2rem;border-bottom:1px solid #2c2b2d}.h26-premium-footer__brand img{display:block;width:auto;max-width:14rem;height:4.5rem;object-fit:contain;object-position:left center}.h26-premium-footer__brand p{max-width:18rem;margin:1rem 0 1.4rem;color:#aaa8a6;font-size:.9rem;line-height:1.75}.h26-premium-footer__socials{display:flex;gap:.65rem}.h26-premium-footer__socials a{display:grid;width:2.35rem;height:2.35rem;place-items:center;border:1px solid #555157;border-radius:50%;color:#d1b071;transition:.2s}.h26-premium-footer__socials a:hover{background:#caa052;border-color:#caa052;color:#151515}.h26-premium-footer__eyebrow{margin:0 0 1.65rem;color:#d1b071;font-size:.8rem;font-weight:800;letter-spacing:.13em;text-transform:uppercase}.h26-premium-footer__commitment-grid{display:grid;grid-template-columns:repeat(4,1fr)}.h26-premium-footer__commitment-grid>div{min-height:9rem;padding:0 1.5rem;border-left:1px solid #39363a;text-align:center}.h26-premium-footer__commitment-grid>div:first-child{border-left:0}.h26-premium-footer__commitment-grid i,.h26-premium-footer__stats i{display:block;margin-bottom:.8rem;color:#d1b071;font-size:2rem}.h26-premium-footer__commitment-grid strong{display:block;font-size:.78rem;letter-spacing:.055em;text-transform:uppercase}.h26-premium-footer__commitment-grid span{display:block;margin-top:.55rem;color:#9d9a99;font-size:.82rem;line-height:1.55}.h26-premium-footer__links{display:grid;grid-template-columns:repeat(4,1fr);gap:3rem;padding:2.25rem 0}.h26-premium-footer h3{margin:0 0 1.4rem;color:#d1b071;font-size:.82rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase}.h26-premium-footer h3::after{display:block;width:2.35rem;height:1px;margin-top:.7rem;background:#caa052;content:""}.h26-premium-footer ul{margin:0;padding:0;list-style:none}.h26-premium-footer li a{display:flex;align-items:center;justify-content:space-between;padding:.43rem 0;color:#bebbbc;font-size:.88rem;transition:.2s}.h26-premium-footer li a:hover{padding-left:.25rem;color:#d1b071}.h26-premium-footer li i{font-size:.6rem}.h26-premium-footer__newsletter p{margin:0 0 1rem;color:#aaa8a6;font-size:.85rem;line-height:1.65}.h26-premium-footer__newsletter input,.h26-premium-footer__newsletter button{box-sizing:border-box;width:100%;height:3rem;border-radius:.2rem;font:inherit}.h26-premium-footer__newsletter input{padding:0 .85rem;border:1px solid #3c393c;background:#151518;color:#fff}.h26-premium-footer__newsletter button{margin-top:.65rem;border:0;background:linear-gradient(100deg,#a9792d,#e0c274);color:#151515;font-size:.78rem;font-weight:900;letter-spacing:.1em;text-transform:uppercase;cursor:pointer}.h26-premium-footer__contact-link{display:block;margin-top:1rem;color:#d1b071;font-size:.78rem}.h26-premium-footer__stats{display:grid;grid-template-columns:repeat(4,1fr);margin-bottom:1.5rem;padding:1.35rem;border:1px solid #36343a;border-radius:.4rem}.h26-premium-footer__stats>div{display:grid;grid-template-columns:3rem 1fr;column-gap:.75rem;align-items:center;padding:0 1.45rem;border-left:1px solid #36343a}.h26-premium-footer__stats>div:first-child{border-left:0}.h26-premium-footer__stats i{grid-row:span 2;margin:0;font-size:1.7rem}.h26-premium-footer__stats strong{font-size:1.4rem;font-weight:500;letter-spacing:.04em}.h26-premium-footer__stats span{color:#9d9a99;font-size:.75rem}.h26-premium-footer__bottom{display:flex;align-items:center;justify-content:space-between;padding-top:1.5rem;border-top:1px solid #2c2b2d;color:#888587;font-size:.78rem}.h26-premium-footer__bottom p{margin:0}.h26-premium-footer__bottom>div{display:flex;align-items:center;gap:1rem}.h26-premium-footer__bottom i{color:#aaa7a6;font-size:1.5rem}@media(max-width:900px){.h26-premium-footer__top{grid-template-columns:1fr;gap:2rem}.h26-premium-footer__links{grid-template-columns:repeat(2,1fr)}.h26-premium-footer__commitment-grid{grid-template-columns:repeat(2,1fr);gap:1.5rem}.h26-premium-footer__commitment-grid>div:nth-child(3){border-left:0}.h26-premium-footer__stats{grid-template-columns:repeat(2,1fr);gap:1rem}.h26-premium-footer__stats>div:nth-child(3){border-left:0}}@media(max-width:560px){.h26-premium-footer{padding-top:2.5rem}.h26-premium-footer__links,.h26-premium-footer__commitment-grid,.h26-premium-footer__stats{grid-template-columns:1fr}.h26-premium-footer__commitment-grid>div,.h26-premium-footer__stats>div{padding:0;border-left:0}.h26-premium-footer__stats{gap:1.3rem}.h26-premium-footer__bottom{align-items:flex-start;flex-direction:column}.h26-premium-footer__top{padding-bottom:1.5rem}}
.h26-premium-footer__hotline{display:inline-flex!important;align-items:center;gap:.65rem;margin-top:1.2rem;color:#d1b071!important;font-size:.76rem;line-height:1.35}.h26-premium-footer__hotline>i{display:grid;width:2rem;height:2rem;place-items:center;border:1px solid #615340;border-radius:50%;font-size:.75rem}.h26-premium-footer__hotline strong{color:#f0e5cd;font-size:.92rem;letter-spacing:.035em}
.h26-premium-footer__newsletter button:disabled{cursor:wait;opacity:.7}.h26-newsletter-popup{position:fixed;z-index:100000;inset:0;display:grid;place-items:center;padding:1rem}.h26-newsletter-popup__backdrop{position:absolute;inset:0;background:rgba(5,7,12,.72);backdrop-filter:blur(3px)}.h26-newsletter-popup__card{position:relative;width:min(100%,25rem);padding:2rem;border:1px solid #e0bd70;border-radius:1rem;background:#fffdf8;box-shadow:0 1.5rem 4rem rgba(0,0,0,.35);text-align:center;color:#13213c}.h26-newsletter-popup__icon{display:grid;width:3rem;height:3rem;place-items:center;margin:0 auto 1rem;border-radius:50%;font-size:1.5rem;font-weight:900}.h26-newsletter-popup__icon.is-success{background:#e4f6ed;color:#13764a}.h26-newsletter-popup__icon.is-error{background:#fff0ec;color:#c5412d}.h26-newsletter-popup__card h2{margin:0 0 .65rem;font-size:1.25rem;font-weight:900}.h26-newsletter-popup__card p{margin:0;color:#52627d;font-size:.92rem;line-height:1.6}.h26-newsletter-popup__card button{width:auto!important;height:auto!important;margin:1.4rem 0 0!important;padding:.75rem 1.4rem!important;border:0;border-radius:.45rem!important;background:#13213c!important;color:#fff!important;font-size:.78rem!important;font-weight:800!important;letter-spacing:.06em!important;text-transform:uppercase;cursor:pointer}
.h26-premium-footer__eyebrow{text-align:center}
.h26-premium-footer__stats>div{grid-template-columns:2.2rem max-content!important;justify-content:center;text-align:left}.h26-premium-footer__stats>div>span{white-space:nowrap}@media(max-width:560px){.h26-premium-footer__links{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:1.6rem 1.2rem!important;padding:1.6rem 0!important}.h26-premium-footer__newsletter{grid-column:1/-1}.h26-premium-footer__links h3{margin-bottom:.8rem}.h26-premium-footer li a{padding:.3rem 0;font-size:.8rem}.h26-premium-footer__commitment-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:1rem!important}.h26-premium-footer__commitment-grid>div{min-height:7.25rem!important;padding:0 .35rem!important}.h26-premium-footer__commitment-grid i{margin-bottom:.45rem;font-size:1.55rem}.h26-premium-footer__commitment-grid strong{font-size:.68rem}.h26-premium-footer__commitment-grid span{margin-top:.35rem;font-size:.72rem;line-height:1.35}.h26-premium-footer__stats{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:.75rem!important;padding:1rem!important}.h26-premium-footer__stats>div{display:grid!important;grid-template-columns:1.8rem minmax(0,1fr)!important;justify-content:initial;padding:0!important}.h26-premium-footer__stats strong{font-size:1.05rem}.h26-premium-footer__stats span{font-size:.65rem;white-space:normal}.h26-premium-footer__top{gap:1.4rem!important}.h26-premium-footer__brand p{margin:.7rem 0 1rem}.h26-premium-footer__newsletter p{font-size:.8rem}}
@media(max-width:560px){.h26-premium-footer{padding:1.75rem 0 1rem!important}.h26-premium-footer__top{display:block!important;padding-bottom:1.25rem!important;text-align:center}.h26-premium-footer__brand img{height:3.15rem!important;margin:0 auto}.h26-premium-footer__brand p{max-width:18rem!important;margin:.6rem auto .85rem!important;font-size:.75rem!important;line-height:1.5!important}.h26-premium-footer__socials{justify-content:center}.h26-premium-footer__socials a{width:2rem!important;height:2rem!important;font-size:.75rem}.h26-premium-footer__commitments{margin-top:1.35rem;padding-top:1.2rem;border-top:1px solid #2c2b2d}.h26-premium-footer__eyebrow{margin-bottom:1rem!important;font-size:.63rem!important}.h26-premium-footer__commitment-grid{gap:.65rem!important}.h26-premium-footer__commitment-grid>div{display:flex!important;min-height:0!important;align-items:center;gap:.45rem;padding:.45rem!important;border:1px solid #28262a!important;border-radius:.35rem;text-align:left}.h26-premium-footer__commitment-grid i{flex:0 0 1.3rem;margin:0!important;font-size:1.15rem!important}.h26-premium-footer__commitment-grid strong{font-size:.58rem!important;line-height:1.25}.h26-premium-footer__commitment-grid span{display:none!important}.h26-premium-footer__links{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:1rem!important;padding:1.25rem 0!important}.h26-premium-footer__links>div:nth-child(2),.h26-premium-footer__links>div:nth-child(4){display:none!important}.h26-premium-footer__links h3{margin-bottom:.6rem!important;font-size:.67rem!important}.h26-premium-footer__links h3::after{width:1.6rem!important;margin-top:.4rem!important}.h26-premium-footer__links li:nth-child(n+4){display:none!important}.h26-premium-footer li a{padding:.28rem 0!important;font-size:.72rem!important}.h26-premium-footer__stats{display:none!important}.h26-premium-footer__bottom{align-items:center!important;padding-top:.85rem!important;text-align:center}.h26-premium-footer__bottom p{font-size:.62rem!important}.h26-premium-footer__bottom>div{display:none!important}}

/* SVG icons thay FA  footer */
.h26-premium-footer .h26-icon{display:inline-flex;align-items:center;justify-content:center;line-height:1}
.h26-premium-footer .h26-icon svg{display:block;width:1em;height:1em}
.h26-premium-footer__socials .h26-icon{font-size:1rem}
.h26-premium-footer__commitment-grid .h26-icon{display:block;margin:0 auto .8rem;color:#d1b071;font-size:2rem}
.h26-premium-footer__stats .h26-icon{display:block;margin:0;color:#d1b071;font-size:1.7rem}
.h26-premium-footer li .h26-icon{font-size:.6rem;opacity:.75}
.h26-premium-footer__contact-link .h26-icon{margin-right:.35rem;vertical-align:-.1em}
.h26-pay-badge{display:inline-flex;align-items:center;justify-content:center;min-width:2.4rem;height:1.35rem;padding:0 .4rem;border:1px solid #555157;border-radius:.2rem;color:#d1b071;font-size:.62rem;font-weight:800;letter-spacing:.04em}
.hanoi26-product-accordion__icon .h26-icon{font-size:1em}
.hanoi26-product-accordion__chevron{transition:transform .2s ease}
details[open] > summary .hanoi26-product-accordion__chevron{transform:rotate(180deg)}
