/**
 * Chi ti?t SP ? page-chitietSP.html
 *
 * @package hanoi26
 */

.hanoi26-single-product-page .hanoi26-gallery-thumbs {
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	scroll-behavior: smooth;
	scroll-snap-type: x proximity;
	touch-action: pan-x;
	cursor: grab;
	scrollbar-width: thin;
	scrollbar-color: #d1d5db transparent;
}

.hanoi26-single-product-page .hanoi26-gallery-thumbs.is-dragging {
	cursor: grabbing;
	scroll-snap-type: none;
	scroll-behavior: auto;
	user-select: none;
}

.hanoi26-single-product-page .hanoi26-gallery-thumbs:focus-visible {
	outline: 2px solid #e53e3e;
	outline-offset: 2px;
}

.hanoi26-single-product-page .thumb-scroll::-webkit-scrollbar {
	height: 6px;
}

.hanoi26-single-product-page .thumb-scroll::-webkit-scrollbar-track {
	background: transparent;
}

.hanoi26-single-product-page .thumb-scroll::-webkit-scrollbar-thumb {
	background: #d1d5db;
	border-radius: 4px;
}

.hanoi26-single-product-page .hanoi26-main-image-frame {
	width: 100%;
	max-width: 100%;
	height: auto;
	min-height: 0;
	border: 2px solid #e5e7eb;
	border-radius: 1.5rem;
	background: #f9fafb;
	box-sizing: border-box;
	aspect-ratio: auto;
}

.hanoi26-single-product-page .hanoi26-main-image-wrap {
	position: relative;
	isolation: isolate;
	display: block;
	width: 100%;
	height: auto;
	min-height: 0;
}

.hanoi26-single-product-page #hanoi26-main-image {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
	vertical-align: top;
	object-fit: unset;
	object-position: center;
}

/* ===== Image Zoom on Hover ===== */
.hanoi26-single-product-page .hanoi26-image-zoom-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	cursor: crosshair;
}

.hanoi26-single-product-page .hanoi26-zoomable-image {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.1s ease-out;
	transform-origin: center center;
}

.hanoi26-single-product-page .hanoi26-image-zoom-container.is-zooming .hanoi26-zoomable-image {
	transform: scale(2.5);
	cursor: crosshair;
}

.hanoi26-single-product-page .hanoi26-zoom-lens {
	display: none;
	position: absolute;
	width: 120px;
	height: 120px;
	border: 3px solid rgba(229, 62, 62, 0.6);
	border-radius: 50%;
	background: rgba(229, 62, 62, 0.08);
	pointer-events: none;
	z-index: 20;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hanoi26-single-product-page .hanoi26-image-zoom-container.is-zooming .hanoi26-zoom-lens {
	display: block;
}

/* Hide zoom on mobile/touch devices */
@media (max-width: 1023px) {
	.hanoi26-single-product-page .hanoi26-image-zoom-container {
		cursor: pointer;
	}
	
	.hanoi26-single-product-page .hanoi26-image-zoom-container.is-zooming .hanoi26-zoomable-image {
		transform: none;
	}
	
	.hanoi26-single-product-page .hanoi26-zoom-lens {
		display: none !important;
	}
}

/* Zoom hint icon */
.hanoi26-single-product-page .hanoi26-image-zoom-container::after {
	content: '\f00e';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	bottom: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	font-size: 14px;
	color: #374151;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	pointer-events: none;
	z-index: 15;
	opacity: 0.8;
	transition: opacity 0.2s ease;
}

.hanoi26-single-product-page .hanoi26-image-zoom-container:hover::after {
	opacity: 0;
}

@media (max-width: 1023px) {
	.hanoi26-single-product-page .hanoi26-image-zoom-container::after {
		display: none;
	}
}

body.hanoi26-lightbox-open {
	overflow: hidden !important;
}

/* ===== Lightbox full m?n h?nh (kh?ng ph? thu?c Tailwind) ===== */
#hanoi26-image-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	width: 100vw;
	height: 100vh;
	height: 100dvh;
	max-width: 100vw;
	max-height: 100vh;
	max-height: 100dvh;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

#hanoi26-image-lightbox.hanoi26-lightbox--closed {
	display: none !important;
}

#hanoi26-image-lightbox.is-open {
	display: block !important;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

#hanoi26-image-lightbox .hanoi26-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.94);
	cursor: pointer;
}

#hanoi26-image-lightbox .hanoi26-lightbox__toolbar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.25rem;
	pointer-events: none;
}

#hanoi26-image-lightbox .hanoi26-lightbox__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	pointer-events: auto;
}

#hanoi26-image-lightbox .hanoi26-lightbox-counter {
	margin: 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	pointer-events: auto;
}

#hanoi26-image-lightbox .hanoi26-lightbox-zoom-level {
	min-width: 3rem;
	text-align: center;
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.75rem;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}

#hanoi26-image-lightbox .hanoi26-lightbox-download,
#hanoi26-image-lightbox .hanoi26-lightbox-zoom-in,
#hanoi26-image-lightbox .hanoi26-lightbox-zoom-out,
#hanoi26-image-lightbox .hanoi26-lightbox-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin: 0;
	padding: 0.5rem 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 0.5rem;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}

#hanoi26-image-lightbox .hanoi26-lightbox-zoom-in,
#hanoi26-image-lightbox .hanoi26-lightbox-zoom-out,
#hanoi26-image-lightbox .hanoi26-lightbox-close {
	padding: 0.5rem;
	min-width: 2.75rem;
	min-height: 2.75rem;
	font-size: 1.25rem;
}

#hanoi26-image-lightbox .hanoi26-lightbox-download:hover,
#hanoi26-image-lightbox .hanoi26-lightbox-zoom-in:hover,
#hanoi26-image-lightbox .hanoi26-lightbox-zoom-out:hover,
#hanoi26-image-lightbox .hanoi26-lightbox-close:hover,
#hanoi26-image-lightbox .hanoi26-lightbox-download:focus-visible,
#hanoi26-image-lightbox .hanoi26-lightbox-zoom-in:focus-visible,
#hanoi26-image-lightbox .hanoi26-lightbox-zoom-out:focus-visible,
#hanoi26-image-lightbox .hanoi26-lightbox-close:focus-visible {
	background: #e53e3e;
	border-color: #e53e3e;
	color: #fff;
	outline: none;
}

#hanoi26-image-lightbox .hanoi26-lightbox-zoom-in:disabled,
#hanoi26-image-lightbox .hanoi26-lightbox-zoom-out:disabled {
	opacity: 0.35;
	cursor: not-allowed;
	pointer-events: none;
}

#hanoi26-image-lightbox .hanoi26-lightbox-download {
	min-width: 2.75rem;
	min-height: 2.75rem;
	padding: 0.5rem 0.75rem;
	font-size: 0.875rem;
}

#hanoi26-image-lightbox .hanoi26-lightbox-download span {
	display: none;
}

@media (min-width: 640px) {
	#hanoi26-image-lightbox .hanoi26-lightbox-download {
		font-size: 0.6875rem;
	}

	#hanoi26-image-lightbox .hanoi26-lightbox-download span {
		display: inline;
	}
}

#hanoi26-image-lightbox .hanoi26-lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 6;
	width: 3.25rem;
	height: 3.25rem;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.125rem;
	transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}

#hanoi26-image-lightbox .hanoi26-lightbox-nav--prev {
	left: 1rem;
}

#hanoi26-image-lightbox .hanoi26-lightbox-nav--next {
	right: 1rem;
}

#hanoi26-image-lightbox .hanoi26-lightbox-nav:hover,
#hanoi26-image-lightbox .hanoi26-lightbox-nav:focus-visible {
	background: #e53e3e;
	border-color: #e53e3e;
	transform: translateY(-50%) scale(1.06);
	outline: none;
}

#hanoi26-image-lightbox .hanoi26-lightbox-nav.is-hidden {
	display: none !important;
}

#hanoi26-image-lightbox .hanoi26-lightbox-nav:disabled {
	opacity: 0.25;
	cursor: not-allowed;
	pointer-events: none;
}

#hanoi26-image-lightbox .hanoi26-lightbox__stage {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4.5rem 4.5rem 2rem;
	overflow: hidden;
	z-index: 2;
	pointer-events: none;
}

#hanoi26-image-lightbox .hanoi26-lightbox-viewport {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	overflow: hidden;
	pointer-events: auto;
	cursor: zoom-in;
	touch-action: none;
}

#hanoi26-image-lightbox .hanoi26-lightbox-viewport.is-zoomed {
	cursor: grab;
}

#hanoi26-image-lightbox .hanoi26-lightbox-viewport.is-dragging {
	cursor: grabbing;
	user-select: none;
}

#hanoi26-image-lightbox .hanoi26-lightbox-img {
	display: block;
	width: auto;
	height: auto;
	max-width: min(92vw, 1600px);
	max-height: min(82vh, 1200px);
	object-fit: contain;
	transform-origin: center center;
	transition: transform 0.2s ease;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
	will-change: transform;
}

#hanoi26-image-lightbox .hanoi26-lightbox-viewport.is-dragging .hanoi26-lightbox-img,
#hanoi26-image-lightbox .hanoi26-lightbox-viewport.is-zoomed .hanoi26-lightbox-img {
	transition: none;
}

@media (max-width: 1023px) {
	#hanoi26-image-lightbox {
		width: 100%;
		max-width: none;
		height: 100%;
		height: 100dvh;
	}

	#hanoi26-image-lightbox .hanoi26-lightbox__toolbar {
		padding: 0.65rem 0.75rem;
		padding-top: max(0.65rem, env(safe-area-inset-top, 0px));
		background: linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 70%, transparent 100%);
	}

	#hanoi26-image-lightbox .hanoi26-lightbox__actions {
		gap: 0.35rem;
	}

	#hanoi26-image-lightbox .hanoi26-lightbox-zoom-in,
	#hanoi26-image-lightbox .hanoi26-lightbox-zoom-out,
	#hanoi26-image-lightbox .hanoi26-lightbox-zoom-level {
		display: none !important;
	}

	#hanoi26-image-lightbox .hanoi26-lightbox-download,
	#hanoi26-image-lightbox .hanoi26-lightbox-close {
		padding: 0.45rem;
		min-width: 2.5rem;
		min-height: 2.5rem;
		font-size: 1rem;
	}

	#hanoi26-image-lightbox .hanoi26-lightbox__stage {
		position: absolute;
		inset: 0;
		display: block;
		padding: 0;
		overflow: hidden;
	}

	#hanoi26-image-lightbox .hanoi26-lightbox-viewport {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		min-width: 0;
		min-height: 0;
		max-width: none;
		cursor: default;
	}

	#hanoi26-image-lightbox .hanoi26-lightbox-img {
		display: block;
		width: 100%;
		height: 100%;
		max-width: none;
		max-height: none;
		margin: 0;
		object-fit: contain;
		box-shadow: none;
		transform: none !important;
	}

	#hanoi26-image-lightbox .hanoi26-lightbox-nav {
		width: 2.65rem;
		height: 2.65rem;
		font-size: 1rem;
	}

	#hanoi26-image-lightbox .hanoi26-lightbox-nav--prev {
		left: 0.35rem;
	}

	#hanoi26-image-lightbox .hanoi26-lightbox-nav--next {
		right: 0.35rem;
	}
}

/* ===== Mobile / tablet cart sheet (chọn size + biến thể) ===== */
.hanoi26-mobile-cart-sheet {
	position: fixed;
	inset: 0;
	z-index: 60;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.hanoi26-mobile-cart-sheet.is-open {
	pointer-events: auto;
	visibility: visible;
	opacity: 1;
}

.hanoi26-mobile-cart-sheet__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}

.hanoi26-mobile-cart-sheet__panel {
	position: relative;
	z-index: 2;
	width: 100%;
	max-height: min(88dvh, 720px);
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 1.25rem 1.25rem 0 0;
	box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
	padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
	transform: translateY(100%);
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.hanoi26-mobile-cart-sheet.is-open .hanoi26-mobile-cart-sheet__panel {
	transform: translateY(0);
}

.hanoi26-mobile-cart-sheet__handle {
	width: 2.5rem;
	height: 0.25rem;
	margin: 0.65rem auto 0;
	border-radius: 9999px;
	background: #d1d5db;
	flex-shrink: 0;
}

.hanoi26-mobile-cart-sheet__close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 9999px;
	background: #f3f4f6;
	color: #374151;
	font-size: 1rem;
	cursor: pointer;
}

.hanoi26-mobile-cart-sheet__head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 3rem 0.75rem 1rem;
	border-bottom: 1px solid #f3f4f6;
	flex-shrink: 0;
}

.hanoi26-mobile-cart-sheet__thumb-wrap {
	flex-shrink: 0;
	width: 4.5rem;
	height: 4.5rem;
	border-radius: 0.75rem;
	overflow: hidden;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
}

.hanoi26-mobile-cart-sheet__thumb {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hanoi26-mobile-cart-sheet__info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.35rem;
}

.hanoi26-mobile-cart-sheet__title {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.35;
	color: #111827;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.hanoi26-mobile-cart-sheet__price {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.hanoi26-mobile-cart-sheet__price-strike {
	font-size: 0.75rem;
	font-weight: 500;
	color: #60a5fa;
	text-decoration: line-through;
	line-height: 1.2;
}

.hanoi26-mobile-cart-sheet__price-main {
	font-family: var(--font-display, inherit);
	font-size: 1.125rem;
	font-weight: 900;
	color: #ef4444;
	line-height: 1;
}

.hanoi26-mobile-cart-sheet__price-percent {
	font-size: 0.625rem;
	font-weight: 700;
	color: #e53e3e;
	background: #fee2e2;
	padding: 0.15rem 0.4rem;
	border-radius: 0.25rem;
	line-height: 1.2;
}

.hanoi26-mobile-cart-sheet__body {
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 0.75rem 1rem 0.5rem;
}

.hanoi26-mobile-cart-sheet__attr-block {
	margin-bottom: 1.25rem;
}

.hanoi26-mobile-cart-sheet__attr-block:last-child {
	margin-bottom: 0.5rem;
}

.hanoi26-mobile-cart-sheet__attr-label {
	margin-bottom: 0.65rem;
}

.hanoi26-mobile-cart-sheet__attr-label h3 {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #111827;
}

.hanoi26-mobile-cart-sheet__size-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.hanoi26-mobile-cart-sheet__color-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.hanoi26-mobile-cart-sheet__footer {
	flex-shrink: 0;
	padding: 0.75rem 1rem 0;
}

.hanoi26-mobile-cart-sheet__action {
	display: none;
	width: 100%;
	min-height: 3.25rem;
	margin: 0;
	padding: 0.75rem 1rem;
	border: none;
	border-radius: 0.75rem;
	font-size: 0.8125rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: opacity 0.2s ease, background 0.2s ease;
}

.hanoi26-mobile-cart-sheet__action:not(.is-hidden) {
	display: inline-flex;
}

.hanoi26-mobile-cart-sheet__action--cart {
	background: #fff;
	color: #111827;
	border: 2px solid #111827;
}

.hanoi26-mobile-cart-sheet__action--buy {
	background: #e53e3e;
	color: #fff;
	box-shadow: 0 8px 25px rgba(229, 62, 62, 0.28);
}

.hanoi26-mobile-cart-sheet__action:disabled {
	opacity: 0.45;
	cursor: not-allowed;
	pointer-events: none;
}

.hanoi26-mobile-cart-sheet__action-icon--loading {
	display: none;
}

.hanoi26-mobile-cart-sheet.is-loading .hanoi26-mobile-cart-sheet__panel {
	cursor: progress;
}

.hanoi26-mobile-cart-sheet.is-loading .hanoi26-mobile-cart-sheet__head,
.hanoi26-mobile-cart-sheet.is-loading .hanoi26-mobile-cart-sheet__body {
	opacity: 0.45;
	pointer-events: none;
	user-select: none;
	transition: opacity 0.2s ease;
}

.hanoi26-mobile-cart-sheet.is-loading .hanoi26-mobile-cart-sheet__close {
	opacity: 0.4;
	pointer-events: none;
}

.hanoi26-mobile-cart-sheet.is-loading .hanoi26-mobile-cart-sheet__action:not(.is-hidden) {
	opacity: 0.72;
	cursor: wait;
}

.hanoi26-mobile-cart-sheet.is-loading .hanoi26-mobile-cart-sheet__action-icon--default {
	display: none;
}

.hanoi26-mobile-cart-sheet.is-loading .hanoi26-mobile-cart-sheet__action-icon--loading {
	display: inline-block;
}

body.hanoi26-mobile-cart-sheet-open {
	overflow: hidden !important;
}

@media (min-width: 1024px) {
	.hanoi26-mobile-cart-sheet {
		display: none !important;
	}
}

@media (max-width: 1023px) {
	.hanoi26-mobile-cart-sheet .hanoi26-size-btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 2.75rem;
		min-height: 2.75rem;
		padding: 0 0.65rem;
		margin: 0;
		border: 1px solid #e5e7eb;
		border-radius: 0.5rem;
		background: #fff;
		font-size: 0.8125rem;
		font-weight: 700;
		line-height: 1.2;
		color: #4b5563;
		cursor: pointer;
		transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
	}

	.hanoi26-mobile-cart-sheet .hanoi26-size-btn--active,
	.hanoi26-mobile-cart-sheet .hanoi26-size-btn.border-2.border-dark,
	.hanoi26-mobile-cart-sheet .hanoi26-size-btn.bg-dark {
		border-color: #0a0a0a !important;
		background-color: #0a0a0a !important;
		color: #fff !important;
	}

	.hanoi26-mobile-cart-sheet .hanoi26-size-btn:disabled,
	.hanoi26-mobile-cart-sheet .hanoi26-size-btn.hanoi26-size-btn--disabled {
		border-color: #f3f4f6;
		background-color: #f9fafb;
		color: #d1d5db;
		cursor: not-allowed;
	}

	.hanoi26-mobile-cart-sheet .hanoi26-color-btn {
		width: 3.25rem;
		height: 3.25rem;
		padding: 0;
		margin: 0;
		border: 2px solid #e5e7eb;
		border-radius: 0.875rem;
		background: #f3f4f6;
		overflow: hidden;
		cursor: pointer;
		flex-shrink: 0;
	}

	.hanoi26-mobile-cart-sheet .hanoi26-color-btn__img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.hanoi26-mobile-cart-sheet .hanoi26-color-btn--active {
		border-color: #0a0a0a;
		box-shadow: 0 0 0 2px rgba(10, 10, 10, 0.12);
	}
}

@media (min-width: 768px) {
	#hanoi26-image-lightbox .hanoi26-lightbox-nav {
		width: 3.5rem;
		height: 3.5rem;
	}

	#hanoi26-image-lightbox .hanoi26-lightbox-nav--prev {
		left: 1.5rem;
	}

	#hanoi26-image-lightbox .hanoi26-lightbox-nav--next {
		right: 1.5rem;
	}

	#hanoi26-image-lightbox .hanoi26-lightbox__stage {
		padding: 5rem 5.5rem 2.5rem;
	}
}

.hanoi26-single-product-page .hanoi26-gallery-nav {
	position: absolute;
	inset: 0;
	z-index: 20;
	pointer-events: none;
}

.hanoi26-single-product-page .hanoi26-gallery-nav__btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2.75rem;
	height: 2.75rem;
	margin: 0;
	padding: 0;
	border-radius: 9999px;
	border: 1px solid rgba(255, 255, 255, 0.85);
	background: rgba(255, 255, 255, 0.92);
	color: #111827;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	pointer-events: auto;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.hanoi26-single-product-page .hanoi26-gallery-nav__btn--prev {
	left: 0.75rem;
}

.hanoi26-single-product-page .hanoi26-gallery-nav__btn--next {
	right: 0.75rem;
}

.hanoi26-single-product-page .hanoi26-gallery-nav__btn i {
	pointer-events: none;
	font-size: 0.875rem;
}

.hanoi26-single-product-page .hanoi26-gallery-nav__btn:hover,
.hanoi26-single-product-page .hanoi26-gallery-nav__btn:focus-visible {
	background: #e53e3e;
	color: #fff;
	border-color: #e53e3e;
	transform: translateY(-50%) scale(1.06);
	box-shadow: 0 6px 18px rgba(229, 62, 62, 0.35);
	outline: none;
}

.hanoi26-single-product-page .hanoi26-gallery-nav__btn:active {
	transform: translateY(-50%) scale(0.96);
}

@media (min-width: 768px) {
	.hanoi26-single-product-page .hanoi26-gallery-nav__btn {
		width: 3rem;
		height: 3rem;
	}

	.hanoi26-single-product-page .hanoi26-gallery-nav__btn--prev {
		left: 1rem;
	}

	.hanoi26-single-product-page .hanoi26-gallery-nav__btn--next {
		right: 1rem;
	}
}

.hanoi26-single-product-page .hanoi26-main-image-wrap.hanoi26-gallery-updating #hanoi26-main-image {
	opacity: 0.72;
	transition: opacity 0.2s ease;
}

/* Vu?t / k?o ngang ?nh ch?nh */
.hanoi26-single-product-page .hanoi26-main-image-wrap {
	touch-action: pan-y;
	user-select: none;
	-webkit-user-select: none;
}

.hanoi26-single-product-page .hanoi26-main-image-wrap.is-swiping {
	cursor: grabbing;
}

.hanoi26-single-product-page .hanoi26-main-image-wrap #hanoi26-main-image {
	will-change: transform;
	user-select: none;
	-webkit-user-drag: none;
	pointer-events: none;
}

.hanoi26-single-product-page .hanoi26-gallery-nav.hidden {
	display: none !important;
}

.hanoi26-single-product-page .hanoi26-size-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
	align-items: center;
}

.hanoi26-single-product-page .hanoi26-size-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-width: 4.5rem;
	min-height: 2.75rem;
	padding: 0.55rem 1.25rem;
	margin: 0;
	border: 1px solid #e5e7eb;
	border-radius: 0.5rem;
	background: #fff;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.2;
	color: #4b5563;
	white-space: nowrap;
	cursor: pointer;
	transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}

@media (min-width: 768px) {
	.hanoi26-single-product-page .hanoi26-size-btn {
		min-width: 5rem;
		min-height: 2.875rem;
		padding: 0.6rem 1.35rem;
	}
}

.hanoi26-single-product-page .hanoi26-size-btn:hover:not(:disabled):not(.hanoi26-size-btn--disabled) {
	border-color: #111827;
	color: #111827;
}

.hanoi26-single-product-page .hanoi26-size-btn--active,
.hanoi26-single-product-page .hanoi26-size-btn.border-2.border-dark {
	border-color: #0a0a0a !important;
	background-color: #0a0a0a;
	color: #fff;
}

.hanoi26-single-product-page .hanoi26-color-btn {
	width: 4.5rem;
	height: 4.5rem;
	padding: 0;
	margin: 0;
	border: 2px solid #e5e7eb;
	border-radius: 0.875rem;
	background: #f3f4f6;
	overflow: hidden;
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
	flex-shrink: 0;
}

.hanoi26-single-product-page .hanoi26-color-btn__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	border-radius: 0;
	pointer-events: none;
	background: #f3f4f6;
}

.hanoi26-single-product-page .hanoi26-color-btn:hover:not(:disabled) {
	border-color: #0a0a0a;
	transform: translateY(-1px);
}

.hanoi26-single-product-page .hanoi26-color-btn--active {
	border-color: #0a0a0a;
	box-shadow: 0 0 0 2px rgba(10, 10, 10, 0.12);
}

.hanoi26-single-product-page .hanoi26-color-btn:disabled,
.hanoi26-single-product-page .hanoi26-color-btn.hanoi26-color-btn--disabled {
	opacity: 0.4;
	cursor: not-allowed;
	position: relative;
}

.hanoi26-single-product-page .hanoi26-color-btn--disabled::after {
	content: '';
	position: absolute;
	inset: 0;
	width: 100%;
	height: 1px;
	background: #d1d5db;
	top: 50%;
	transform: rotate(-45deg);
}

@media (min-width: 768px) {
	.hanoi26-single-product-page .hanoi26-color-btn {
		width: 5rem;
		height: 5rem;
	}
}

.hanoi26-single-product-page .hanoi26-size-btn:disabled,
.hanoi26-single-product-page .hanoi26-size-btn.hanoi26-size-btn--disabled {
	border-color: #f3f4f6;
	background-color: #f9fafb;
	color: #d1d5db;
	cursor: not-allowed;
	position: relative;
	overflow: hidden;
}

.hanoi26-single-product-page .hanoi26-size-btn--disabled::after {
	content: '';
	position: absolute;
	inset: 0;
	width: 100%;
	height: 1px;
	background: #d1d5db;
	top: 50%;
	transform: rotate(-45deg);
}

.hanoi26-single-product-page .hanoi26-variation-cart-actions {
	display: flex !important;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 1rem;
}

.hanoi26-single-product-page .hanoi26-variation-cart-actions .single_add_to_cart_button.disabled,
.hanoi26-single-product-page .hanoi26-variation-cart-actions .single_add_to_cart_button.wc-variation-selection-needed {
	opacity: 0.55;
	cursor: not-allowed;
}

.hanoi26-single-product-page .hanoi26-buy-now-btn {
	display: flex;
	width: 100%;
}

.hanoi26-single-product-page .hanoi26-buy-now-btn:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

/* Add to cart row - 3 elements in one row */
.hanoi26-single-product-page .hanoi26-add-to-cart-row {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

@media (min-width: 768px) {
	.hanoi26-single-product-page .hanoi26-add-to-cart-row {
		flex-direction: row;
		align-items: stretch;
	}

	.hanoi26-single-product-page .hanoi26-add-to-cart-row .hanoi26-qty-wrap {
		width: 110px;
		flex-shrink: 0;
	}

	.hanoi26-single-product-page .hanoi26-add-to-cart-row .single_add_to_cart_button,
	.hanoi26-single-product-page .hanoi26-add-to-cart-row .hanoi26-buy-now-btn {
		flex: 1;
		min-width: 0;
	}
}

.hanoi26-single-product-page .quantity,
.hanoi26-single-product-page .woocommerce-variation-add-to-cart .quantity,
.hanoi26-single-product-page .hanoi26-variation-cart-actions .quantity {
	display: contents;
}

.hanoi26-single-product-page .single_add_to_cart_button .hanoi26-atc-icon--loading {
	display: none;
}

.hanoi26-single-product-page .single_add_to_cart_button.loading {
	opacity: 0.8;
	pointer-events: none;
	cursor: wait;
}

.hanoi26-single-product-page .single_add_to_cart_button.loading .hanoi26-atc-icon--cart {
	display: none;
}

.hanoi26-single-product-page .single_add_to_cart_button.loading .hanoi26-atc-icon--loading {
	display: inline-block;
}

.hanoi26-single-product-page .single_add_to_cart_button.loading .hanoi26-atc-label {
	opacity: 0.75;
}

.hanoi26-single-product-page a.added_to_cart {
	display: none !important;
}

.hanoi26-single-product-page .hanoi26-qty-input {
	-moz-appearance: textfield;
}

.hanoi26-single-product-page .hanoi26-qty-input::-webkit-outer-spin-button,
.hanoi26-single-product-page .hanoi26-qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.hanoi26-single-product-page table.variations {
	border: 0;
	margin: 0;
}

.hanoi26-single-product-page .woocommerce-variation-price {
	display: none;
}

.hanoi26-single-product-page .hanoi26-product-info-details[open] {
	border-color: #fecaca;
	box-shadow: 0 8px 30px rgba(229, 62, 62, 0.08);
}

.hanoi26-single-product-page .hanoi26-product-accordion__summary {
	display: flex;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
	padding: 1rem;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.hanoi26-single-product-page .hanoi26-product-accordion__summary:hover,
.hanoi26-single-product-page .hanoi26-product-accordion__summary:focus-visible {
	color: #e53e3e;
	background-color: #fafafa;
}

.hanoi26-single-product-page .hanoi26-product-accordion[open] > .hanoi26-product-accordion__summary {
	background-color: #fafafa;
}

.hanoi26-single-product-page .hanoi26-product-accordion__hit {
	display: block;
	min-width: 0;
}

.hanoi26-single-product-page .hanoi26-product-accordion[open] .hanoi26-product-accordion__chevron {
	transform: rotate(180deg);
}

.hanoi26-single-product-page .hanoi26-product-accordion__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 0.65rem;
	color: #fff;
	font-size: 0.8rem;
	flex-shrink: 0;
}

.hanoi26-single-product-page .hanoi26-product-accordion__icon--description {
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.22);
}

.hanoi26-single-product-page .hanoi26-product-accordion__icon--info {
	background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
	box-shadow: 0 4px 12px rgba(229, 62, 62, 0.25);
}

.hanoi26-single-product-page .hanoi26-product-accordion__icon--shipping {
	background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
	box-shadow: 0 4px 12px rgba(13, 148, 136, 0.22);
}

.hanoi26-single-product-page .hanoi26-product-accordion__icon--policy {
	background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
	box-shadow: 0 4px 12px rgba(79, 70, 229, 0.22);
}

.hanoi26-single-product-page .hanoi26-product-policy-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem;
	border: 1px solid #f3f4f6;
	border-radius: 0.75rem;
	background: #fafafa;
	transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.hanoi26-single-product-page .hanoi26-product-policy-link:hover {
	border-color: #fecaca;
	background: #fff;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.hanoi26-single-product-page .hanoi26-product-policy-link__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 0.65rem;
	background: #fff;
	border: 1px solid #e5e7eb;
	color: #e53e3e;
	font-size: 0.85rem;
	flex-shrink: 0;
}

.hanoi26-single-product-page .hanoi26-product-policy-link__text {
	flex: 1;
}

.hanoi26-single-product-page .hanoi26-product-attrs {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.hanoi26-single-product-page .hanoi26-product-attr-row {
	display: grid;
	grid-template-columns: minmax(7.5rem, 34%) 1fr;
	gap: 0.75rem 1rem;
	padding: 0.95rem 0;
	border-bottom: 1px solid #f3f4f6;
}

.hanoi26-single-product-page .hanoi26-product-attr-row:last-child {
	border-bottom: 0;
	padding-bottom: 0.25rem;
}

.hanoi26-single-product-page .hanoi26-product-attr-label {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.8125rem;
	font-weight: 700;
	color: #111827;
	line-height: 1.3;
}

.hanoi26-single-product-page .hanoi26-product-attr-label i {
	width: 1.35rem;
	height: 1.35rem;
	border-radius: 0.45rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
	flex-shrink: 0;
}

.hanoi26-single-product-page .hanoi26-product-attr-row--sku .hanoi26-product-attr-label i {
	background: #f3f4f6;
	color: #111827;
}

.hanoi26-single-product-page .hanoi26-product-attr-row--brand .hanoi26-product-attr-label i {
	background: #111827;
	color: #fff;
}

.hanoi26-single-product-page .hanoi26-product-attr-row--quality .hanoi26-product-attr-label i {
	background: #fef2f2;
	color: #e53e3e;
}

.hanoi26-single-product-page .hanoi26-product-attr-row--size .hanoi26-product-attr-label i {
	background: #f3f4f6;
	color: #374151;
}

.hanoi26-single-product-page .hanoi26-product-attr-row--audience .hanoi26-product-attr-label i {
	background: #eff6ff;
	color: #2563eb;
}

.hanoi26-single-product-page .hanoi26-product-attr-row--status .hanoi26-product-attr-label i {
	background: #fff7ed;
	color: #ea580c;
}

.hanoi26-single-product-page .hanoi26-product-attr-row--default .hanoi26-product-attr-label i {
	background: #f9fafb;
	color: #6b7280;
}

.hanoi26-single-product-page .hanoi26-product-attr-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.hanoi26-single-product-page .hanoi26-product-attr-tag {
	display: inline-flex;
	align-items: center;
	padding: 0.38rem 0.8rem;
	border-radius: 9999px;
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.02em;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hanoi26-single-product-page .hanoi26-product-attr-tags--sku .hanoi26-product-attr-tag {
	background: #f9fafb;
	border: 1px solid #d1d5db;
	color: #111827;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	letter-spacing: 0.04em;
}

.hanoi26-single-product-page .hanoi26-product-attr-tags--brand .hanoi26-product-attr-tag {
	background: #111827;
	border: 1px solid #111827;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.hanoi26-single-product-page .hanoi26-product-attr-tags--quality .hanoi26-product-attr-tag {
	background: linear-gradient(180deg, #fff5f5 0%, #fee2e2 100%);
	border: 1px solid #fecaca;
	color: #b91c1c;
}

.hanoi26-single-product-page .hanoi26-product-attr-tags--size .hanoi26-product-attr-tag {
	min-width: 2.35rem;
	justify-content: center;
	padding: 0.35rem 0.55rem;
	border-radius: 0.55rem;
	background: #fff;
	border: 1px solid #d1d5db;
	color: #1f2937;
	font-variant-numeric: tabular-nums;
}

.hanoi26-single-product-page .hanoi26-product-attr-tags--audience .hanoi26-product-attr-tag {
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	color: #1d4ed8;
}

.hanoi26-single-product-page .hanoi26-product-attr-tags--status .hanoi26-product-attr-tag,
.hanoi26-single-product-page .hanoi26-product-attr-tag--status {
	background: #f3f4f6;
	border: 1px solid #e5e7eb;
	color: #374151;
}

.hanoi26-single-product-page .hanoi26-product-attr-tag--order {
	background: #fff7ed;
	border-color: #fdba74;
	color: #c2410c;
	box-shadow: 0 0 0 1px rgba(251, 146, 60, 0.15);
}

.hanoi26-single-product-page .hanoi26-product-attr-tag--stock {
	background: #ecfdf5;
	border-color: #6ee7b7;
	color: #047857;
}

.hanoi26-single-product-page .hanoi26-product-attr-tags--default .hanoi26-product-attr-tag {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	color: #374151;
}

.hanoi26-single-product-page .hanoi26-product-attr-tag:hover {
	transform: translateY(-1px);
}

/* Meta grid ? th??ng hi?u / ch?t l??ng / t?nh tr?ng */
.hanoi26-single-product-page .hanoi26-product-meta-grid {
	--hanoi26-meta-visual-size: 2.25rem;
	--hanoi26-meta-visual-radius: 0.625rem;
}

.hanoi26-single-product-page .hanoi26-product-meta-grid .hanoi26-product-meta-row {
	align-items: center;
	min-height: var(--hanoi26-meta-visual-size);
}

.hanoi26-single-product-page .hanoi26-product-meta-brand-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 0.65rem;
	background: #fff;
	border: 1px solid #e5e7eb;
	overflow: hidden;
	padding: 0;
	box-sizing: border-box;
}

.hanoi26-single-product-page .hanoi26-product-meta-grid .hanoi26-product-meta-brand-avatar {
	width: var(--hanoi26-meta-visual-size);
	height: var(--hanoi26-meta-visual-size);
	border-radius: var(--hanoi26-meta-visual-radius);
}

.hanoi26-single-product-page .hanoi26-product-meta-brand-avatar img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hanoi26-single-product-page .hanoi26-product-meta-brand-avatar--compact {
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 0.45rem;
	padding: 0;
}

.hanoi26-single-product-page .hanoi26-product-meta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 0.5rem;
	flex-shrink: 0;
	font-size: 0.75rem;
	box-sizing: border-box;
}

.hanoi26-single-product-page .hanoi26-product-meta-grid .hanoi26-product-meta-icon {
	width: var(--hanoi26-meta-visual-size);
	height: var(--hanoi26-meta-visual-size);
	border-radius: var(--hanoi26-meta-visual-radius);
	font-size: 0.875rem;
	line-height: 1;
}

.hanoi26-single-product-page .hanoi26-product-meta-icon--status {
	background: #111827;
	color: #e53e3e;
	border: 1px solid #374151;
}

.hanoi26-single-product-page .hanoi26-product-meta-icon--quality {
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	color: #b45309;
	border: 1px solid #fcd34d;
}

.hanoi26-single-product-page .hanoi26-product-meta-icon--rank-100 {
	background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
	color: #b91c1c;
	border-color: #fca5a5;
}

.hanoi26-single-product-page .hanoi26-product-meta-icon--rank-80 {
	background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
	color: #c2410c;
	border-color: #fdba74;
}

.hanoi26-single-product-page .hanoi26-product-meta-icon--rank-60 {
	background: linear-gradient(135deg, #fef9c3 0%, #fde047 100%);
	color: #a16207;
	border-color: #facc15;
}

/* Voucher ?p d?ng ? d??i n?t Mua ngay */
.hanoi26-single-product-page .hanoi26-product-vouchers {
	margin: 0.75rem 0 0;
	padding: 1rem;
	border: 1px solid #fecaca;
	border-radius: 0.75rem;
	background: linear-gradient(180deg, #fff7f7 0%, #ffffff 100%);
}

.hanoi26-single-product-page .hanoi26-product-vouchers__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

.hanoi26-single-product-page .hanoi26-product-vouchers__title {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #111827;
}

.hanoi26-single-product-page .hanoi26-product-vouchers__count {
	font-size: 0.6875rem;
	font-weight: 700;
	color: #e53e3e;
}

.hanoi26-single-product-page .hanoi26-product-vouchers__guest,
.hanoi26-single-product-page .hanoi26-product-vouchers__empty,
.hanoi26-single-product-page .hanoi26-product-vouchers__hint {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: #6b7280;
}

.hanoi26-single-product-page .hanoi26-product-vouchers__login-link {
	margin-left: 0.25rem;
	font-weight: 700;
	color: #e53e3e;
	text-decoration: none;
}

.hanoi26-single-product-page .hanoi26-product-vouchers__login-link:hover {
	text-decoration: underline;
}

.hanoi26-single-product-page .hanoi26-product-vouchers__hint {
	margin-top: 0.75rem;
	font-size: 0.75rem;
}

.hanoi26-single-product-page .hanoi26-product-vouchers__list {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.hanoi26-single-product-page .hanoi26-product-voucher-card {
	display: grid;
	grid-template-columns: 4.5rem minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.75rem;
	padding: 0.625rem 0.75rem;
	border: 1px solid #f3f4f6;
	border-radius: 0.75rem;
	background: #ffffff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.hanoi26-single-product-page .hanoi26-product-voucher-card__value {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 3.25rem;
	border-radius: 0.625rem;
	font-size: 0.6875rem;
	font-weight: 800;
	line-height: 1.1;
	text-align: center;
}

.hanoi26-single-product-page .hanoi26-product-voucher-card__value strong {
	font-size: 1.125rem;
	font-weight: 900;
	line-height: 1;
}

.hanoi26-single-product-page .hanoi26-product-voucher-card__title {
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 700;
	color: #111827;
	line-height: 1.3;
}

.hanoi26-single-product-page .hanoi26-product-voucher-card__savings {
	margin: 0.125rem 0 0;
	font-size: 0.75rem;
	font-weight: 700;
	color: #e53e3e;
}

.hanoi26-single-product-page .hanoi26-product-voucher-card__min {
	margin: 0.125rem 0 0;
	font-size: 0.6875rem;
	color: #9ca3af;
}

.hanoi26-single-product-page .hanoi26-product-voucher-card__action {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.375rem;
	min-width: 5.5rem;
}

.hanoi26-single-product-page .hanoi26-product-voucher-card__code {
	margin: 0;
	max-width: 7.5rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding: 0.2rem 0.45rem;
	border: 1px solid #fecaca;
	border-radius: 0.375rem;
	background: #fef2f2;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 0.625rem;
	font-weight: 700;
	color: #e53e3e;
}

.hanoi26-single-product-page .hanoi26-product-voucher-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 5.25rem;
	padding: 0.4rem 0.65rem;
	border: 0;
	border-radius: 0.5rem;
	background: #111827;
	color: #ffffff;
	font-size: 0.625rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.hanoi26-single-product-page .hanoi26-product-voucher-card__btn:hover {
	background: #e53e3e;
}

.hanoi26-single-product-page .hanoi26-product-voucher-card__btn:disabled {
	opacity: 0.65;
	cursor: wait;
}

/* Ghi ch? giao h?ng ? d??i n?t Mua ngay */
.hanoi26-single-product-page .hanoi26-product-delivery-note {
	margin: 0.75rem 0 0;
	padding: 0.9rem 1rem;
	border: 1px solid #d1d5db;
	border-radius: 0.75rem;
	background: #f9fafb;
}

.hanoi26-single-product-page .hanoi26-product-delivery-note__text {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.55;
	text-align: left;
	color: #4b5563;
}

.hanoi26-single-product-page .hanoi26-product-delivery-note__date {
	font-weight: 800;
	font-variant-numeric: tabular-nums;
}

.hanoi26-single-product-page .hanoi26-product-delivery-note__date--min {
	color: #15803d;
}

.hanoi26-single-product-page .hanoi26-product-delivery-note__date--max {
	color: #b91c1c;
}

.hanoi26-single-product-page .hanoi26-product-delivery-note__sep {
	margin: 0 0.15rem;
	font-weight: 700;
	color: #9ca3af;
}

/* 4 cam k?t v?ng */
.hanoi26-single-product-page .hanoi26-golden-commitments__box {
	position: relative;
	overflow: hidden;
	border: 2px solid #f59e0b;
	border-radius: 1rem;
	background: linear-gradient(145deg, #fffbeb 0%, #fef08a 38%, #fde047 100%);
	padding: 1.1rem 1rem 1rem;
	box-shadow:
		0 10px 28px rgba(245, 158, 11, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.hanoi26-single-product-page .hanoi26-golden-commitments__box::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.45), transparent 55%);
	pointer-events: none;
}

.hanoi26-single-product-page .hanoi26-golden-commitments__title {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	margin: 0 0 0.85rem;
	padding-bottom: 0.65rem;
	border-bottom: 2px solid rgba(217, 119, 6, 0.35);
	font-family: var(--font-display, inherit);
	font-size: 1rem;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #b91c1c;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.hanoi26-single-product-page .hanoi26-golden-commitments__sun {
	font-size: 0.95rem;
	color: #ea580c;
	filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.8));
}

.hanoi26-single-product-page .hanoi26-golden-commitments__list {
	position: relative;
	z-index: 1;
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.hanoi26-single-product-page .hanoi26-golden-commitments__item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.75rem 0.85rem;
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 2px 8px rgba(180, 83, 9, 0.08);
}

.hanoi26-single-product-page .hanoi26-golden-commitments__item:last-child {
	padding-bottom: 0.75rem;
}

.hanoi26-single-product-page .hanoi26-golden-commitments__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 999px;
	background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
	color: #fff;
	font-size: 0.8125rem;
	font-weight: 800;
	line-height: 1;
	border: 2px solid #fff;
	box-shadow: 0 3px 8px rgba(220, 38, 38, 0.35);
}

.hanoi26-single-product-page .hanoi26-golden-commitments__content {
	min-width: 0;
	flex: 1;
}

.hanoi26-single-product-page .hanoi26-golden-commitments__item-title {
	margin: 0 0 0.25rem;
	font-size: 0.875rem;
	font-weight: 800;
	line-height: 1.35;
	color: #111827;
}

.hanoi26-single-product-page .hanoi26-golden-commitments__item-desc {
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.5;
	color: #4b5563;
}

@media (max-width: 639px) {
	.hanoi26-single-product-page .hanoi26-product-attr-row {
		grid-template-columns: 1fr;
		gap: 0.55rem;
	}
}

.hanoi26-single-product-page .reset_variations {
	display: none !important;
}

/* Trust badges ? tr?n ??nh gi? kh?ch h?ng */
.hanoi26-single-product-page .hanoi26-product-trust-badges__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.75rem;
}

.hanoi26-single-product-page .hanoi26-product-trust-badge {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-height: 4.5rem;
	padding: 0.85rem 1rem;
	border: 1px solid #e5e7eb;
	border-radius: 0.75rem;
	background: #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.hanoi26-single-product-page .hanoi26-product-trust-badge__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 0.65rem;
	font-size: 1.25rem;
}

.hanoi26-single-product-page .hanoi26-product-trust-badge__icon--quality {
	background: #fef2f2;
	color: #dc2626;
}

.hanoi26-single-product-page .hanoi26-product-trust-badge__icon--import {
	background: #ecfdf5;
	color: #059669;
}

.hanoi26-single-product-page .hanoi26-product-trust-badge__icon--support {
	background: #eff6ff;
	color: #2563eb;
}

.hanoi26-single-product-page .hanoi26-product-trust-badge__icon--delivery {
	background: #fff7ed;
	color: #ea580c;
}

.hanoi26-single-product-page .hanoi26-product-trust-badge__icon--trend {
	background: #f0fdf4;
	color: #16a34a;
}

.hanoi26-single-product-page .hanoi26-product-trust-badge__text {
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.45;
	color: #374151;
}

@media (max-width: 1279px) {
	.hanoi26-single-product-page .hanoi26-product-trust-badges__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.hanoi26-single-product-page .hanoi26-product-trust-badges__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 479px) {
	.hanoi26-single-product-page .hanoi26-product-trust-badges__grid {
		grid-template-columns: 1fr;
	}
}

.hanoi26-single-product-page .hanoi26-product-reviews .commentlist {
	list-style: none;
	padding: 0;
	margin: 0;
}

.hanoi26-single-product-page .hanoi26-product-reviews-section .woocommerce-Reviews-title {
	display: none;
}

/* M? t? SP ? typography kh?p WP Admin editor */
.hanoi26-single-product-page .hanoi26-product-description {
	color: #4b5563;
	font-size: 1rem;
	line-height: 1.85;
	word-wrap: break-word;
}

.hanoi26-single-product-page .hanoi26-product-description > *:first-child {
	margin-top: 0;
}

.hanoi26-single-product-page .hanoi26-product-description > *:last-child {
	margin-bottom: 0;
}

.hanoi26-single-product-page .hanoi26-product-description h1,
.hanoi26-single-product-page .hanoi26-product-description h2,
.hanoi26-single-product-page .hanoi26-product-description h3,
.hanoi26-single-product-page .hanoi26-product-description h4,
.hanoi26-single-product-page .hanoi26-product-description h5,
.hanoi26-single-product-page .hanoi26-product-description h6 {
	font-family: Montserrat, sans-serif;
	color: #111827;
	font-weight: 800;
	line-height: 1.3;
	margin-top: 2rem;
	margin-bottom: 0.85rem;
}

.hanoi26-single-product-page .hanoi26-product-description h1 {
	font-size: 1.75rem;
	font-weight: 900;
}

.hanoi26-single-product-page .hanoi26-product-description h2 {
	font-size: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 0.01em;
}

.hanoi26-single-product-page .hanoi26-product-description h3 {
	font-size: 1.25rem;
}

.hanoi26-single-product-page .hanoi26-product-description h4 {
	font-size: 1.125rem;
	font-weight: 700;
}

.hanoi26-single-product-page .hanoi26-product-description h5 {
	font-size: 1rem;
	font-weight: 700;
}

.hanoi26-single-product-page .hanoi26-product-description h6 {
	font-size: 0.9375rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.hanoi26-single-product-page .hanoi26-product-description p {
	margin-bottom: 1.1rem;
	font-size: 1rem;
	line-height: 1.85;
	color: #4b5563;
}

.hanoi26-single-product-page .hanoi26-product-description strong,
.hanoi26-single-product-page .hanoi26-product-description b {
	font-weight: 700;
	color: #111827;
}

.hanoi26-single-product-page .hanoi26-product-description em,
.hanoi26-single-product-page .hanoi26-product-description i:not([class*='fa-']) {
	font-style: italic;
}

.hanoi26-single-product-page .hanoi26-product-description a {
	color: #e53e3e;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.hanoi26-single-product-page .hanoi26-product-description a:hover {
	color: #111827;
}

.hanoi26-single-product-page .hanoi26-product-description ul,
.hanoi26-single-product-page .hanoi26-product-description ol {
	margin: 0.75rem 0 1.25rem;
	padding-left: 1.5rem;
	color: #4b5563;
}

.hanoi26-single-product-page .hanoi26-product-description ul {
	list-style-type: disc;
}

.hanoi26-single-product-page .hanoi26-product-description ol {
	list-style-type: decimal;
}

.hanoi26-single-product-page .hanoi26-product-description li {
	margin-bottom: 0.45rem;
	line-height: 1.75;
}

.hanoi26-single-product-page .hanoi26-product-description li > ul,
.hanoi26-single-product-page .hanoi26-product-description li > ol {
	margin-top: 0.45rem;
	margin-bottom: 0.45rem;
}

.hanoi26-single-product-page .hanoi26-product-description blockquote {
	border-left: 4px solid #e53e3e;
	padding: 0.85rem 1.25rem;
	background: #fef2f2;
	border-radius: 0 0.75rem 0.75rem 0;
	margin: 1.5rem 0;
	font-style: italic;
	color: #374151;
}

.hanoi26-single-product-page .hanoi26-product-description img,
.hanoi26-single-product-page .hanoi26-product-description figure {
	max-width: 100%;
	height: auto;
}

.hanoi26-single-product-page .hanoi26-product-description figure {
	margin: 1.25rem 0;
}

.hanoi26-single-product-page .hanoi26-product-description table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.25rem 0;
	font-size: 0.9375rem;
}

.hanoi26-single-product-page .hanoi26-product-description th,
.hanoi26-single-product-page .hanoi26-product-description td {
	border: 1px solid #e5e7eb;
	padding: 0.6rem 0.75rem;
	text-align: left;
}

.hanoi26-single-product-page .hanoi26-product-description th {
	background: #f9fafb;
	font-weight: 700;
	color: #111827;
}

.hanoi26-single-product-page .hanoi26-product-description .has-small-font-size {
	font-size: 0.875rem !important;
}

.hanoi26-single-product-page .hanoi26-product-description .has-medium-font-size {
	font-size: 1rem !important;
}

.hanoi26-single-product-page .hanoi26-product-description .has-large-font-size {
	font-size: 1.25rem !important;
	line-height: 1.6;
}

.hanoi26-single-product-page .hanoi26-product-description .has-x-large-font-size {
	font-size: 1.5rem !important;
	line-height: 1.45;
}

.hanoi26-single-product-page .hanoi26-product-description .has-xx-large-font-size {
	font-size: 1.75rem !important;
	line-height: 1.35;
}

@media (max-width: 639px) {
	.hanoi26-single-product-page .hanoi26-product-description h1 {
		font-size: 1.5rem;
	}

	.hanoi26-single-product-page .hanoi26-product-description h2 {
		font-size: 1.25rem;
	}

	.hanoi26-single-product-page .hanoi26-product-description h3 {
		font-size: 1.125rem;
	}
}

/* Flash sale tag ? h?ng ??u PDP */
.hanoi26-single-product-page .hanoi26-pdp-flash-tag {
	box-shadow: 0 2px 8px rgba(220, 38, 38, 0.25);
}

@media (max-width: 639px) {
	.hanoi26-single-product-page .hanoi26-pdp-flash-tag {
		order: 3;
		width: 100%;
		justify-content: center;
	}
}

/* Flash sale pricing block (PDP) */
.hanoi26-single-product-page .hanoi26-pdp-flash-pricing__row {
	align-items: flex-end;
	gap: 0.625rem 0.875rem;
}

.hanoi26-single-product-page .hanoi26-pdp-flash-pricing__strike {
	color: #6b7280 !important;
	font-weight: 600;
}

.hanoi26-single-product-page .hanoi26-pdp-flash-pricing__main {
	letter-spacing: -0.02em;
	text-shadow: 0 1px 2px rgba(239, 68, 68, 0.18);
}

.hanoi26-single-product-page .hanoi26-pdp-flash-pricing__percent {
	border: 1px solid #fecaca;
	transform: translateY(-1px);
}

.hanoi26-single-product-page .hanoi26-pdp-flash-countdown {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 62px;
	padding: 0.5rem 0.75rem;
	border-radius: 0.8rem;
	border: 1px solid #1f2937;
	background: linear-gradient(155deg, #0f172a 0%, #111827 55%, #1e293b 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 20px rgba(15, 23, 42, 0.28);
}

.hanoi26-single-product-page .hanoi26-pdp-flash-countdown__label {
	font-size: 10px;
	letter-spacing: 0.08em;
	font-weight: 700;
	text-transform: uppercase;
	color: #cbd5e1 !important;
	margin: 0 0 0.25rem;
}

.hanoi26-single-product-page .hanoi26-pdp-flash-countdown__time {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.hanoi26-single-product-page .hanoi26-pdp-flash-countdown__cell {
	min-width: 2.05rem;
	padding: 0.2rem 0.45rem;
	border-radius: 0.42rem;
	border: 1px solid rgba(249, 115, 22, 0.36);
	background: #020617 !important;
	color: #f97316;
	text-align: center;
	line-height: 1.1;
	font-size: 1rem;
	font-weight: 800;
}

.hanoi26-single-product-page .hanoi26-pdp-flash-countdown__sep {
	color: #94a3b8 !important;
	font-weight: 700;
}

@media (max-width: 991px) {
	.hanoi26-single-product-page .hanoi26-pdp-flash-countdown {
		margin-left: 0;
		width: 100%;
	}
}

/* ?? Breadcrumb PDP: m?t h?ng g?n tr?n mobile/tablet ?? */
.hanoi26-breadcrumb {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	scrollbar-width: none;
}

.hanoi26-breadcrumb::-webkit-scrollbar {
	display: none;
}

.hanoi26-breadcrumb__list {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.35rem;
	margin: 0;
	padding: 0;
	list-style: none;
	min-width: min-content;
	white-space: nowrap;
}

.hanoi26-breadcrumb__item {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	margin: 0;
	padding: 0;
	max-width: none;
}

.hanoi26-breadcrumb__item--current {
	flex: 1 1 auto;
	min-width: 0;
	max-width: min(55vw, 16rem);
}

.hanoi26-breadcrumb__link,
.hanoi26-breadcrumb__current,
.hanoi26-breadcrumb__sep {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1.3;
	white-space: nowrap;
}

.hanoi26-breadcrumb__link {
	color: #9ca3af;
	text-decoration: none;
}

.hanoi26-breadcrumb__link:hover,
.hanoi26-breadcrumb__link:focus-visible {
	color: #111827;
}

.hanoi26-breadcrumb__sep {
	color: #d1d5db;
	user-select: none;
}

.hanoi26-breadcrumb__current {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #111827;
}

@media (min-width: 768px) {
	.hanoi26-breadcrumb__link,
	.hanoi26-breadcrumb__current,
	.hanoi26-breadcrumb__sep {
		font-size: 0.75rem;
		letter-spacing: 0.06em;
	}

	.hanoi26-breadcrumb__item--current {
		max-width: min(48vw, 22rem);
	}
}

@media (min-width: 1024px) {
	.hanoi26-breadcrumb {
		overflow: visible;
	}

	.hanoi26-breadcrumb__item--current {
		max-width: 28rem;
	}

	.hanoi26-breadcrumb__link,
	.hanoi26-breadcrumb__current,
	.hanoi26-breadcrumb__sep {
		font-size: 0.75rem;
		letter-spacing: 0.08em;
	}
}

/* Related products ? padding 2 b?n kh?p n?i dung trang + h?ng th? SP */
.hanoi26-related-products__inner {
	width: 100%;
	box-sizing: border-box;
	padding-left: 1rem;
	padding-right: 1rem;
}

@media (min-width: 640px) {
	.hanoi26-related-products__inner {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.hanoi26-related-products__inner {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

@media (min-width: 1280px) {
	.hanoi26-related-products__inner {
		padding-left: 3rem;
		padding-right: 3rem;
	}
}

@media (min-width: 1536px) {
	.hanoi26-related-products__inner {
		padding-left: 4rem;
		padding-right: 4rem;
	}
}

.hanoi26-related-products__header {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 2rem;
	/* Kh?p padding-inline c?a .hanoi26-carousel (ch? n?t prev/next) */
	padding-inline: 3.75rem;
}

.hanoi26-related-products__title {
	margin: 0;
	line-height: 1.1;
	min-width: 0;
}

.hanoi26-related-products__more {
	flex-shrink: 0;
	margin: 0;
	line-height: 1.1;
	align-self: center;
	white-space: nowrap;
}

@media (max-width: 767px) {
	.hanoi26-related-products__header {
		/* Mobile: carousel products kh?ng c? padding-inline */
		padding-inline: 0;
	}
}


/* Quality meta card ? Chi ti?t trigger */
.hanoi26-single-product-page .hanoi26-product-meta-card--quality {
	position: relative;
}

.hanoi26-single-product-page .hanoi26-product-meta-card__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.hanoi26-single-product-page .hanoi26-quality-guide-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin: -0.2rem -0.15rem 0 0;
	padding: 0.15rem;
	border: none;
	border-radius: 0;
	background: transparent;
	color: #9ca3af;
	font-size: 0.875rem;
	line-height: 1;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	transition: color 0.15s ease;
}

.hanoi26-single-product-page .hanoi26-quality-guide-trigger i {
	font-size: inherit;
	pointer-events: none;
}

.hanoi26-single-product-page .hanoi26-quality-guide-trigger:hover {
	background: transparent;
	border: none;
	color: #dc2626;
	transform: none;
}

.hanoi26-single-product-page .hanoi26-quality-guide-trigger:focus-visible {
	outline: 2px solid #dc2626;
	outline-offset: 2px;
	border-radius: 999px;
}

/* Quality guide modal */
.hanoi26-qg-modal {
	position: fixed;
	inset: 0;
	z-index: 80;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 0;
}

.hanoi26-qg-modal.hidden {
	display: none;
}

body.hanoi26-qg-modal-open {
	overflow: hidden;
}

.hanoi26-qg-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.55);
}

.hanoi26-qg-modal__panel {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 34rem;
	max-height: min(92vh, 40rem);
	margin: 0;
	background: #fff;
	border-radius: 1.25rem 1.25rem 0 0;
	box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.18);
	transform: translateY(1.25rem);
	opacity: 0;
	transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease;
}

.hanoi26-qg-modal__panel.is-open {
	transform: translateY(0);
	opacity: 1;
}

.hanoi26-qg-modal__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 1.25rem 1rem;
	border-bottom: 1px solid #f3f4f6;
	background:
		radial-gradient(420px 160px at 0% 0%, rgba(220, 38, 38, 0.08), transparent 70%),
		#fff;
}

.hanoi26-qg-modal__eyebrow {
	margin: 0 0 0.25rem;
	font-size: 0.625rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #dc2626;
}

.hanoi26-qg-modal__title {
	margin: 0;
	font-family: Montserrat, sans-serif;
	font-size: 1.15rem;
	font-weight: 800;
	color: #0a0a0a;
	line-height: 1.25;
}

.hanoi26-qg-modal__lead {
	margin: 0.4rem 0 0;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: #6b7280;
}

.hanoi26-qg-modal__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	flex-shrink: 0;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	background: #fff;
	color: #4b5563;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.hanoi26-qg-modal__close:hover {
	background: #111827;
	border-color: #111827;
	color: #fff;
}

.hanoi26-qg-modal__body {
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 1rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	-webkit-overflow-scrolling: touch;
}

.hanoi26-qg-tier {
	padding: 1rem;
	border: 1px solid #e5e7eb;
	border-radius: 1rem;
	background: #fafafa;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.hanoi26-qg-tier.is-current {
	border-color: #fca5a5;
	background: linear-gradient(180deg, #fff5f5 0%, #fff 70%);
	box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.08);
}

.hanoi26-qg-tier__top {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
}

.hanoi26-qg-tier__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	flex-shrink: 0;
	border-radius: 0.75rem;
	font-size: 1.05rem;
}

.hanoi26-qg-tier--rank-100 .hanoi26-qg-tier__icon {
	background: #fef2f2;
	color: #dc2626;
}

.hanoi26-qg-tier--rank-80 .hanoi26-qg-tier__icon {
	background: #fff7ed;
	color: #ea580c;
}

.hanoi26-qg-tier--rank-60 .hanoi26-qg-tier__icon {
	background: #eff6ff;
	color: #2563eb;
}

.hanoi26-qg-tier__heading {
	min-width: 0;
	flex: 1;
}

.hanoi26-qg-tier__title-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.5rem;
	margin-bottom: 0.35rem;
}

.hanoi26-qg-tier__title {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 800;
	color: #0a0a0a;
	line-height: 1.3;
}

.hanoi26-qg-tier__badge {
	display: inline-flex;
	align-items: center;
	padding: 0.15rem 0.45rem;
	border-radius: 999px;
	background: #111827;
	color: #fff;
	font-size: 0.5625rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.hanoi26-qg-tier__current {
	display: inline-flex;
	align-items: center;
	padding: 0.15rem 0.45rem;
	border-radius: 999px;
	background: #dc2626;
	color: #fff;
	font-size: 0.5625rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.hanoi26-qg-tier__summary {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.55;
	color: #4b5563;
}

.hanoi26-qg-tier__points {
	list-style: none;
	margin: 0.75rem 0 0;
	padding: 0.75rem 0 0;
	border-top: 1px dashed #e5e7eb;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.hanoi26-qg-tier__points li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.8125rem;
	line-height: 1.45;
	color: #374151;
}

.hanoi26-qg-tier__points i {
	margin-top: 0.15rem;
	color: #16a34a;
	font-size: 0.7rem;
}

.hanoi26-qg-modal__footer {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: 0.85rem 1.25rem 1.15rem;
	border-top: 1px solid #f3f4f6;
	background: #fff;
}

.hanoi26-qg-modal__note {
	margin: 0;
	font-size: 0.75rem;
	line-height: 1.45;
	color: #9ca3af;
	text-align: center;
}

.hanoi26-qg-modal__done {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 2.75rem;
	padding: 0.65rem 1rem;
	border: none;
	border-radius: 0.85rem;
	background: #0a0a0a;
	color: #fff;
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.15s ease, transform 0.15s ease;
}

.hanoi26-qg-modal__done:hover {
	background: #dc2626;
	transform: translateY(-1px);
}

@media (min-width: 640px) {
	.hanoi26-qg-modal {
		align-items: center;
		padding: 1.5rem;
	}

	.hanoi26-qg-modal__panel {
		border-radius: 1.25rem;
		max-height: min(88vh, 42rem);
		box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
		transform: translateY(0.75rem) scale(0.98);
	}

	.hanoi26-qg-modal__panel.is-open {
		transform: translateY(0) scale(1);
	}

	.hanoi26-qg-modal__footer {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.hanoi26-qg-modal__note {
		text-align: left;
		flex: 1;
	}

	.hanoi26-qg-modal__done {
		width: auto;
		min-width: 8.5rem;
	}
}
/* Product tags carousel ? c?nh ?? b?n */
.hanoi26-single-product-page .hanoi26-product-meta-top {
	flex-wrap: wrap;
	min-width: 0;
}

.hanoi26-single-product-page .hanoi26-product-tags-carousel {
	flex: 1 1 10rem;
	min-width: 0;
	max-width: 100%;
	margin-left: auto;
}

.hanoi26-single-product-page .hanoi26-product-tags-carousel__track {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0.1rem 0.15rem 0.25rem;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	cursor: grab;
	touch-action: pan-x;
}

.hanoi26-single-product-page .hanoi26-product-tags-carousel__track::-webkit-scrollbar {
	display: none;
}

.hanoi26-single-product-page .hanoi26-product-tags-carousel__track.is-dragging {
	cursor: grabbing;
	user-select: none;
	scroll-snap-type: none;
}

.hanoi26-single-product-page .hanoi26-product-tags-carousel__track.is-dragging .hanoi26-product-tags-carousel__tag {
	pointer-events: none;
}

.hanoi26-single-product-page .hanoi26-product-tags-carousel__tag {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	scroll-snap-align: start;
	max-width: 12rem;
	padding: 0.3rem 0.65rem;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	background: #f9fafb;
	color: #374151;
	font-size: 0.6875rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.hanoi26-single-product-page .hanoi26-product-tags-carousel__tag:hover {
	background: #0a0a0a;
	border-color: #0a0a0a;
	color: #fff;
}

@media (max-width: 639px) {
	.hanoi26-single-product-page .hanoi26-product-tags-carousel {
		flex: 1 1 100%;
		margin-left: 0;
		order: 5;
	}
}
