/* 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);
}
