/**
 * Trang danh sách SP — page-danhSachSP.html
 *
 * @package hanoi26
 */

.hanoi26-shop-archive .custom-scrollbar::-webkit-scrollbar {
	width: 4px;
}

/* Mobile-only compact shop header. Desktop keeps the original hero untouched. */
.hanoi26-shop-mobile-usps-wrap {
	display: none;
}

@media (max-width: 767px) {
	.hanoi26-shop-hero-wrap {
		margin-bottom: 0;
		background: #fff;
	}

	/* Keep the dynamic page title in the mobile hero. */
	.hanoi26-shop-hero {
		display: block;
	}

	/* The compact commitment strip below the hero replaces this desktop list. */
	.hanoi26-shop-archive .hanoi26-shop-hero__usps {
		display: none;
	}

	.hanoi26-shop-mobile-usps-wrap {
		display: block;
		padding: 1rem 0.25rem 0.875rem;
		border-bottom: 1px solid #eef0f3;
		background: #fff;
	}

	.hanoi26-shop-mobile-usps {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 0.25rem;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.hanoi26-shop-mobile-usps__item {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr);
		column-gap: 0.25rem;
		row-gap: 0.25rem;
		min-width: 0;
	}

	.hanoi26-shop-mobile-usps__icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: clamp(1.6rem, 7vw, 2.5rem);
		height: clamp(1.6rem, 7vw, 2.5rem);
		border: 1px solid #ead6b1;
		border-radius: 50%;
		color: #c99a50;
		font-size: clamp(0.625rem, 2.5vw, 0.9375rem);
	}

	.hanoi26-shop-mobile-usps__title {
		align-self: center;
		color: #111827;
		font-size: clamp(0.5rem, 2.1vw, 0.75rem);
		font-weight: 800;
		line-height: 1.2;
		text-transform: uppercase;
	}

	.hanoi26-shop-mobile-usps__desc {
		grid-column: 1 / -1;
		color: #9ca3af;
		font-size: clamp(0.48rem, 1.9vw, 0.625rem);
		font-weight: 500;
		line-height: 1.3;
	}

	.hanoi26-shop-brand-slot {
		margin-top: 0;
		margin-bottom: 0.75rem;
		padding: 0 0.25rem;
	}
}

.hanoi26-shop-archive .custom-scrollbar::-webkit-scrollbar-track {
	background: #f1f1f1;
}

.hanoi26-shop-archive .custom-scrollbar::-webkit-scrollbar-thumb {
	background: #d1d5db;
	border-radius: 4px;
}

.hanoi26-shop-archive .custom-scrollbar::-webkit-scrollbar-thumb:hover {
	background: #e53e3e;
}

.hanoi26-shop-archive .no-scrollbar::-webkit-scrollbar {
	display: none;
}

.hanoi26-shop-archive .no-scrollbar {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

/* ===== Price Filter Slider ===== */
.hanoi26-price-presets {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.hanoi26-price-preset-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.5rem;
	padding: 0.5rem 0.625rem;
	border: 1px solid #e5e7eb;
	border-radius: 0.75rem;
	background: #fff;
	color: #4b5563;
	font-size: 0.8125rem;
	font-weight: 800;
	line-height: 1.1;
	text-align: center;
	cursor: pointer;
	transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
	-webkit-tap-highlight-color: transparent;
}

.hanoi26-price-preset-btn:hover {
	border-color: #111827;
	color: #111827;
	background: #f9fafb;
}

.hanoi26-price-preset-btn.is-active {
	border-color: #111827;
	background: #111827;
	color: #fff;
	box-shadow: 0 2px 8px rgb(17 24 39 / 0.16);
}

.hanoi26-price-preset-btn:focus-visible {
	outline: 2px solid #e53e3e;
	outline-offset: 2px;
}

.slider-container {
	position: relative;
	width: 100%;
	height: 24px;
	margin-top: 0.5rem;
	margin-bottom: 1.25rem;
}

.slider-container::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 6px;
	background-color: #e5e7eb;
	border-radius: 999px;
	z-index: 0;
}

.slider-track {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	height: 6px;
	background: linear-gradient(90deg, #e53e3e 0%, #f87171 100%);
	border-radius: 999px;
	z-index: 1;
}

.range-input {
	position: absolute;
	width: 100%;
	height: 24px;
	top: 0;
	left: 0;
	background: transparent;
	pointer-events: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	z-index: 2;
	margin: 0;
	padding: 0;
}

.range-input::-webkit-slider-runnable-track {
	width: 100%;
	height: 24px;
	background: transparent;
	cursor: pointer;
}

.range-input::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	height: 24px;
	width: 24px;
	border-radius: 50%;
	background: #ffffff;
	border: 3px solid #e53e3e;
	pointer-events: auto;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(229, 62, 62, 0.35), 0 1px 3px rgba(0, 0, 0, 0.12);
	margin-top: 0;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.range-input::-webkit-slider-thumb:hover {
	transform: scale(1.08);
	box-shadow: 0 4px 12px rgba(229, 62, 62, 0.45), 0 2px 4px rgba(0, 0, 0, 0.12);
}

.range-input::-moz-range-track {
	width: 100%;
	height: 24px;
	background: transparent;
	border: none;
	cursor: pointer;
}

.range-input::-moz-range-thumb {
	height: 24px;
	width: 24px;
	border-radius: 50%;
	background: #ffffff;
	border: 3px solid #e53e3e;
	pointer-events: auto;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(229, 62, 62, 0.35), 0 1px 3px rgba(0, 0, 0, 0.12);
}

.range-input::-moz-range-thumb:hover {
	transform: scale(1.08);
}

/* ===== Price Input Fields ===== */
.hanoi26-price-inputs {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: flex-end !important;
	gap: 0.5rem !important;
	width: 100%;
}

.hanoi26-price-input-wrap {
	flex: 1 1 0 !important;
	min-width: 0 !important;
	max-width: calc(50% - 1rem);
}

.hanoi26-price-input-label {
	display: block;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #6b7280;
	margin-bottom: 0.375rem;
}

.hanoi26-price-input-field {
	position: relative;
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	height: 2.5rem;
	background: #ffffff;
	border: 2px solid #d1d5db;
	border-radius: 0.5rem;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hanoi26-price-input-field:hover {
	border-color: #9ca3af;
}

.hanoi26-price-input-field:focus-within {
	border-color: #e53e3e;
	box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.12);
}

.hanoi26-price-currency {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 0.625rem;
	padding-right: 0.25rem;
	font-size: 0.8125rem;
	font-weight: 700;
	color: #9ca3af;
	background: transparent;
	flex-shrink: 0;
}

.hanoi26-price-input {
	flex: 1 !important;
	min-width: 0 !important;
	width: 100% !important;
	height: 100%;
	padding: 0 0.625rem 0 0.25rem;
	border: none !important;
	background: transparent !important;
	font-size: 0.875rem;
	font-weight: 700;
	color: #111827;
	text-align: right;
	outline: none;
	font-variant-numeric: tabular-nums;
	box-shadow: none !important;
}

.hanoi26-price-input:focus {
	outline: none !important;
	box-shadow: none !important;
}

.hanoi26-price-input::placeholder {
	color: #d1d5db;
}

.hanoi26-price-separator {
	flex-shrink: 0 !important;
	display: flex;
	align-items: flex-end;
	height: 2.5rem;
	padding-bottom: 0.625rem;
	font-size: 1rem;
	font-weight: 600;
	color: #9ca3af;
}

.hanoi26-shop-main,
.hanoi26-shop-main > .flex,
.hanoi26-shop-main .flex-1 {
	overflow: visible;
}

.hanoi26-shop-main {
	padding-top: 0.5rem;
	padding-bottom: 2.5rem;
	background: #ffffff;
}

@media (min-width: 1024px) {
	.hanoi26-shop-main {
		padding-top: 0.75rem;
		padding-bottom: 3rem;
	}
}

/* Hero wrap + brand bar chồng lên 1/2 dưới banner */
.hanoi26-shop-hero-wrap {
	position: relative;
	z-index: 2;
}

.hanoi26-shop-hero-wrap .hanoi26-shop-hero {
	overflow: visible;
}

.hanoi26-shop-hero {
	padding-top: 1.75rem;
	padding-bottom: 2.75rem;
	background-color: #0f1115;
}

@media (min-width: 768px) {
	.hanoi26-shop-hero {
		padding-top: 2rem;
		padding-bottom: 3.25rem;
	}
}

@media (min-width: 1024px) {
	.hanoi26-shop-hero {
		padding-top: 2.25rem;
		padding-bottom: 3.5rem;
	}
}

.hanoi26-shop-brand-slot {
	position: relative;
	z-index: 30;
	width: 100%;
	margin-top: -1.5rem;
	margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
	.hanoi26-shop-brand-slot {
		margin-top: -2rem;
		margin-bottom: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.hanoi26-shop-brand-slot {
		margin-top: -2.5rem;
	}
}

.hanoi26-shop-brand-slot .hanoi26-brand-bar-wrap {
	margin-bottom: 0;
	box-shadow: 0 8px 28px rgb(0 0 0 / 0.1);
}

.hanoi26-shop-layout {
	width: 100%;
}

/* Lưới SP — không dùng Tailwind grid-cols (CDN ghi đè breakpoint 3xl) */
.hanoi26-shop-archive .hanoi26-shop-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

@media (min-width: 768px) {
	.hanoi26-shop-archive .hanoi26-shop-grid {
		gap: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.hanoi26-shop-archive .hanoi26-shop-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1400px) {
	.hanoi26-shop-archive .hanoi26-shop-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.hanoi26-shop-archive .hanoi26-shop-grid .product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-width: 0;
	padding: 0.75rem;
}

.hanoi26-shop-archive .hanoi26-shop-grid .product-card__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-height: 0;
	min-width: 0;
}

.hanoi26-shop-archive .hanoi26-shop-grid .product-card__image-wrap {
	margin-bottom: 0.625rem;
}

.hanoi26-shop-archive .hanoi26-shop-grid .product-card__swatches-slot {
	display: flex;
	align-items: flex-end;
	flex: 0 0 auto;
	min-height: 1.75rem;
	margin-bottom: 0.5rem;
}

.hanoi26-shop-archive .hanoi26-shop-grid .product-card__swatches-slot .product-card__swatches {
	margin-bottom: 0;
}

.hanoi26-shop-archive .hanoi26-shop-grid .product-card h3 {
	display: -webkit-box;
	min-height: 2.5em;
	margin-bottom: 0.25rem;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.hanoi26-shop-archive .hanoi26-shop-grid .product-card__stats-row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.25rem 0.375rem;
	margin-bottom: 0.25rem;
	font-size: 0.625rem;
	line-height: 1.2;
}

@media (min-width: 768px) {
	.hanoi26-shop-archive .hanoi26-shop-grid .product-card__stats-row {
		font-size: 0.6875rem;
	}
}

.hanoi26-shop-archive .hanoi26-shop-grid .product-card__stats-separator {
	display: inline;
}

.hanoi26-shop-archive .hanoi26-shop-grid .product-card__rating,
.hanoi26-shop-archive .hanoi26-shop-grid .product-card__sold {
	display: inline-flex;
	flex: 0 1 auto;
	align-items: center;
	width: auto;
	min-width: 0;
	white-space: nowrap;
}

.hanoi26-shop-archive .product-card__price-row--shop {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.25rem 0.5rem;
	width: 100%;
	margin-top: 0.125rem;
}

.hanoi26-shop-archive .product-card__price-row--shop .product-card__price {
	display: inline-flex;
	flex: 0 1 auto;
	align-items: baseline;
	max-width: 100%;
	white-space: nowrap;
	line-height: 1.25;
}

.hanoi26-shop-archive .product-card__price--old {
	color: #9ca3af;
	font-size: 0.6875rem;
	font-weight: 500;
	text-decoration: line-through;
}

.hanoi26-shop-archive .product-card__price--sale {
	color: #ef4444;
	font-size: 0.8125rem;
	font-weight: 800;
}

@media (min-width: 768px) {
	.hanoi26-shop-archive .product-card__price--old {
		font-size: 0.75rem;
	}

	.hanoi26-shop-archive .product-card__price--sale {
		font-size: 0.9375rem;
	}
}

@media (max-width: 767px) {
	.hanoi26-shop-archive .hanoi26-shop-grid .product-card__stats-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.125rem;
	}

	.hanoi26-shop-archive .hanoi26-shop-grid .product-card__stats-separator {
		display: none;
	}
}

.hanoi26-shop-grid .product-card__image-wrap {
	background-color: #f8fafc;
	border-color: #e5e7eb;
}

.hanoi26-shop-grid .product-card__media img,
.hanoi26-shop-grid .product-card__img--primary {
	object-fit: cover;
	object-position: center center;
}

.hanoi26-shop-grid .product-card__media img {
	transition: transform 0.35s ease;
}

.hanoi26-shop-grid .product-card.group:hover .product-card__media img,
.hanoi26-shop-grid .product-card.group:focus-within .product-card__media img {
	transform: scale(1.04);
}

.hanoi26-shop-filter-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	flex: 0 0 auto;
	min-height: 2.75rem;
	padding: 0.625rem 0.9rem;
	border: 1px solid #d1d5db;
	border-radius: 0.75rem;
	background: #fff;
	color: #111827;
	font-size: 0.75rem;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.hanoi26-shop-filter-toggle i {
	color: #e53e3e;
}

@media (max-width: 1023px) {
	body.hanoi26-filter-panel-open {
		overflow: hidden;
	}

	.hanoi26-shop-sidebar {
		display: none;
	}

	.hanoi26-shop-sidebar:has(.hanoi26-shop-filters-panel.is-open) {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 10000;
		width: 100%;
		height: 100%;
	}

	.hanoi26-shop-filters-panel.is-open {
		display: block !important;
		position: fixed;
		inset: 0;
		z-index: 10000;
	}

	.hanoi26-shop-filter-backdrop {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		border: 0;
		background: rgba(15, 23, 42, 0.55);
		backdrop-filter: blur(2px);
	}

	.hanoi26-shop-filters-dialog {
		position: absolute;
		inset: 0 0 0 auto;
		display: flex;
		flex-direction: column;
		width: min(92vw, 420px);
		max-width: 100%;
		background: #f8fafc;
		box-shadow: -12px 0 36px rgba(15, 23, 42, 0.2);
		animation: hanoi26-filter-drawer-in 0.22s ease-out;
	}

	.hanoi26-shop-filters-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex: 0 0 auto;
		min-height: 4rem;
		padding: 0.875rem 1rem;
		border-bottom: 1px solid #e5e7eb;
		background: #fff;
	}

	.hanoi26-shop-filters-header h2 {
		display: flex;
		align-items: center;
		gap: 0.625rem;
		margin: 0;
		color: #111827;
		font-size: 1rem;
		font-weight: 900;
		text-transform: uppercase;
		letter-spacing: 0.04em;
	}

	.hanoi26-shop-filters-header h2 i {
		color: #e53e3e;
	}

	.hanoi26-shop-filters-header button {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 2.5rem;
		height: 2.5rem;
		border: 1px solid #e5e7eb;
		border-radius: 999px;
		background: #fff;
		color: #111827;
		font-size: 1rem;
	}

	.hanoi26-shop-filters-scroll {
		flex: 1 1 auto;
		min-height: 0;
		overflow-y: auto;
		padding: 1rem 1rem 2rem;
		overscroll-behavior: contain;
	}

	.hanoi26-shop-toolbar__actions {
		justify-content: space-between;
	}
}

@keyframes hanoi26-filter-drawer-in {
	from {
		transform: translateX(100%);
	}
	to {
		transform: translateX(0);
	}
}

@media (min-width: 1024px) {
	.hanoi26-shop-filters-panel {
		display: block !important;
	}

	/* Bộ lọc trên brand bar vẫn hiện desktop (focus sidebar). */
	.hanoi26-shop-toolbar .hanoi26-shop-filter-toggle {
		display: none !important;
	}
}

.hanoi26-shop-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.hanoi26-shop-main .woocommerce-notices-wrapper {
	margin-bottom: 1rem;
}

.hanoi26-brand-bar-wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	width: 100%;
	min-width: 0;
	max-width: 100%;
	margin-bottom: 0.875rem;
	padding: 0.75rem 1rem 0.625rem;
	border: 1px solid #eceef1;
	border-radius: 1rem;
	background: #ffffff;
	box-shadow: 0 1px 2px rgb(0 0 0 / 0.03);
}

.hanoi26-brand-bar-wrap__brands {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	width: 100%;
	min-width: 0;
}

.hanoi26-brand-bar__filter {
	flex: 0 0 auto;
	min-height: 2.625rem;
	padding: 0.5rem 0.875rem;
	border-radius: 9999px;
	border: 1px solid #e5e7eb;
	background: #ffffff;
	color: #111827;
	box-shadow: 0 1px 2px rgb(0 0 0 / 0.04);
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.hanoi26-brand-bar__filter i {
	color: #6b7280;
	font-size: 0.8125rem;
}

.hanoi26-brand-bar__filter:hover {
	background: #f9fafb;
	border-color: #d1d5db;
	color: #111827;
}

.hanoi26-brand-bar__scroller {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
}

.hanoi26-brand-bar {
	overflow-x: auto;
	overflow-y: hidden;
	width: 100%;
	min-width: 0;
	max-width: 100%;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	scroll-snap-type: x proximity;
	scroll-behavior: smooth;
	touch-action: pan-x;
	cursor: grab;
}

.hanoi26-brand-bar.is-dragging {
	cursor: grabbing;
	scroll-snap-type: none;
	scroll-behavior: auto;
	user-select: none;
}

.hanoi26-brand-bar.is-dragging .hanoi26-brand-bar__pill {
	pointer-events: none;
}

.hanoi26-brand-bar__track {
	display: inline-flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.75rem;
	width: max-content;
	min-width: 100%;
	padding: 0.125rem 0.25rem 0.5rem;
}

.hanoi26-brand-bar__pill {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	gap: 0.625rem;
	padding: 0.625rem 1.25rem;
	border: 1px solid #e5e7eb;
	border-radius: 9999px;
	background: #fff;
	box-shadow: 0 1px 2px rgb(0 0 0 / 0.04);
	color: #4b5563;
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.hanoi26-brand-bar__pill:hover {
	border-color: #e53e3e;
	color: #e53e3e;
}

.hanoi26-brand-bar__pill--all.is-active {
	border-color: #111827;
	background: #111827;
	color: #fff;
}

/* Pill thương hiệu chỉ hiển thị avatar/logo. */
.hanoi26-brand-bar__pill--logo {
	width: 4.5rem;
	min-width: 4.5rem;
	height: 4.5rem;
	padding: 0.125rem;
	gap: 0;
	border: none;
	background: transparent;
	box-shadow: none;
}

.hanoi26-brand-bar__pill--logo:hover {
	border: none;
	background: rgba(0, 0, 0, 0.03);
}

.hanoi26-brand-bar__pill--logo.is-active {
	padding: 0;
	background: transparent;
	border: none;
	box-shadow: none;
}

.hanoi26-brand-bar__pill--logo.is-active .hanoi26-brand-bar__logo {
	width: 4rem;
	height: 4rem;
	background: #f8f0e3;
	border-color: #e53e3e;
	border-width: 2px;
	box-shadow: 0 3px 12px rgb(229 62 62 / 0.2);
}

.hanoi26-brand-bar__pill.is-active .hanoi26-brand-bar__initial {
	color: #e53e3e;
}

.hanoi26-brand-bar__label {
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.hanoi26-brand-bar__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 4rem;
	height: 4rem;
	box-sizing: border-box;
	padding: 0.625rem;
	border-radius: 50%;
	background: #f8f0e3;
	border: 1px solid #eadcc4;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hanoi26-brand-bar__pill--logo:hover .hanoi26-brand-bar__logo {
	border-color: #e53e3e;
}

.hanoi26-brand-bar__logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	mix-blend-mode: multiply;
}

.hanoi26-brand-bar__pill--logo.is-active .hanoi26-brand-bar__logo img {
	filter: none;
	opacity: 1;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	padding: 0.625rem;
	margin: 0;
	background: transparent;
}

.hanoi26-brand-bar__logo--fallback {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #f8f0e3;
}

.hanoi26-brand-bar__initial {
	font-size: 1.125rem;
	font-weight: 800;
	text-transform: uppercase;
	color: #1f2937;
}

.hanoi26-brand-bar__info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.125rem;
	text-align: center;
}

.hanoi26-brand-bar__name {
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	color: #374151;
	white-space: nowrap;
	max-width: 5rem;
	overflow: hidden;
	text-overflow: ellipsis;
}

.hanoi26-brand-bar__pill--logo:hover .hanoi26-brand-bar__name {
	color: #e53e3e;
}

.hanoi26-brand-bar__pill--logo.is-active .hanoi26-brand-bar__name {
	color: #111827;
	font-weight: 800;
}

.hanoi26-brand-bar__count {
	font-size: 0.625rem;
	font-weight: 500;
	color: #9ca3af;
}

.hanoi26-brand-bar__nav {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border: 1px solid #e5e7eb;
	border-radius: 9999px;
	background: #fff;
	color: #374151;
	box-shadow: 0 4px 14px rgb(0 0 0 / 0.08);
	transform: translateY(-50%);
	cursor: pointer;
	transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.hanoi26-brand-bar__nav:hover {
	border-color: #111827;
	color: #111827;
}

.hanoi26-brand-bar__nav--prev {
	left: -0.35rem;
}

.hanoi26-brand-bar__nav--next {
	right: -0.35rem;
}

.hanoi26-brand-bar__nav.is-hidden {
	display: none;
}

@media (max-width: 767px) {
	.hanoi26-brand-bar-wrap {
		padding: 0.5rem 0.375rem 0.375rem;
		gap: 0;
		border-radius: 0.875rem;
	}

	.hanoi26-brand-bar-wrap__brands {
		gap: 0.375rem;
		width: 100%;
	}

	.hanoi26-brand-bar-wrap .hanoi26-shop-meta-bar {
		margin-top: 0.5rem;
		padding-top: 0.5rem;
		gap: 0.5rem;
	}

	.hanoi26-brand-bar__filter {
		display: inline-flex;
		align-items: center;
		width: 3.25rem;
		height: 3.25rem;
		min-height: 3.25rem;
		padding: 0;
		justify-content: center;
		border-radius: 9999px;
		flex-shrink: 0;
	}

	.hanoi26-brand-bar__filter span {
		display: none;
	}

	.hanoi26-brand-bar__scroller {
		flex: 1 1 auto;
		min-width: 0;
	}

	.hanoi26-brand-bar__track {
		gap: 0.5rem;
		padding: 0;
	}

	.hanoi26-brand-bar__nav {
		width: 1.75rem;
		height: 1.75rem;
		font-size: 0.6875rem;
	}

	.hanoi26-brand-bar__nav--prev {
		left: 0;
	}

	.hanoi26-brand-bar__nav--next {
		right: 0;
	}

	.hanoi26-brand-bar__pill--all {
		height: 3.25rem;
		padding: 0 0.875rem;
	}

	.hanoi26-brand-bar__pill--logo {
		width: 3.25rem;
		min-width: 3.25rem;
		height: 3.25rem;
		padding: 0;
		gap: 0;
	}

	.hanoi26-brand-bar__logo {
		width: 3rem;
		height: 3rem;
	}

	.hanoi26-brand-bar__pill--logo.is-active .hanoi26-brand-bar__logo {
		width: 3rem;
		height: 3rem;
	}

	.hanoi26-brand-bar__name {
		display: none;
	}

	.hanoi26-brand-bar__count {
		display: none;
	}

	.hanoi26-brand-bar__label {
		font-size: 0.75rem;
	}
}

/* —— Sidebar danh mục (hợp nhất) —— */
.hanoi26-shop-facet--categories .hanoi26-shop-category-tree,
.hanoi26-shop-facet--categories .hanoi26-brand-tree {
	display: flex;
	flex-direction: column;
}

.hanoi26-shop-categories__panel {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 0.875rem;
	padding: 1.25rem 1rem 0.75rem;
}

.hanoi26-shop-categories__title {
	position: relative;
	margin: 0 0 0.875rem;
	padding-bottom: 0.75rem;
	font-family: var(--font-display, inherit);
	font-size: 0.9375rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #111827;
}

.hanoi26-shop-categories__title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: #e5e7eb;
}

.hanoi26-shop-categories__title::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 2.75rem;
	height: 2px;
	background: #9f1239;
	z-index: 1;
}

.hanoi26-shop-categories__tree {
	display: flex;
	flex-direction: column;
	max-height: 36rem;
	overflow-y: auto;
	padding-right: 0.25rem;
}

.hanoi26-shop-categories__tree > .hanoi26-shop-cat-item.is-top-level {
	border-bottom: 1px solid #f3f4f6;
	padding-bottom: 0.35rem;
	margin-bottom: 0.35rem;
}

.hanoi26-shop-categories__tree > .hanoi26-shop-cat-item.is-top-level:last-child {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

.hanoi26-shop-cat-item__row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	min-height: 2.25rem;
	padding: 0.25rem 0;
}

.hanoi26-shop-cat-item__link {
	flex: 1;
	min-width: 0;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.35;
	color: #6b7280;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	transition: color 0.2s ease;
}

.hanoi26-shop-cat-item__link:hover {
	color: #9f1239;
}

.hanoi26-shop-cat-item__row.is-root .hanoi26-shop-cat-item__link {
	font-size: 0.8125rem;
	font-weight: 600;
}

.hanoi26-shop-cat-item__row.is-highlighted .hanoi26-shop-cat-item__link,
.hanoi26-shop-cat-item__row.is-active .hanoi26-shop-cat-item__link {
	color: #9f1239;
	font-weight: 700;
}

.hanoi26-shop-cat-item__count {
	flex-shrink: 0;
	font-size: 0.75rem;
	font-weight: 500;
	color: #9ca3af;
}

.hanoi26-shop-cat-item__toggle {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #9ca3af;
	cursor: pointer;
	transition: color 0.2s ease;
}

.hanoi26-shop-cat-item__toggle:hover {
	color: #9f1239;
}

.hanoi26-shop-cat-item__children {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
	padding-left: 0.875rem;
}

.hanoi26-shop-cat-item__children.is-collapsed {
	display: none;
}

.hanoi26-shop-cat-item[data-depth='2'] .hanoi26-shop-cat-item__children {
	padding-left: 0.75rem;
}

.hanoi26-shop-cat-item[data-depth='3'] .hanoi26-shop-cat-item__link {
	font-size: 0.75rem;
}

/* Cây hãng sidebar (cha/con) */
.hanoi26-brand-tree {
	display: flex;
	flex-direction: column;
}

.hanoi26-brand-tree > .hanoi26-brand-item.is-top-level {
	border-bottom: 1px solid #f3f4f6;
	padding-bottom: 0.35rem;
	margin-bottom: 0.35rem;
}

.hanoi26-brand-tree > .hanoi26-brand-item.is-top-level:last-child {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

.hanoi26-brand-item__row {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	min-height: 2.125rem;
	padding: 0.2rem 0;
}

.hanoi26-brand-item__label {
	flex: 1;
	min-width: 0;
}

.hanoi26-brand-item__row.is-active .hanoi26-brand-item__name {
	color: #9f1239;
	font-weight: 700;
}

.hanoi26-brand-item__toggle {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #9ca3af;
	cursor: pointer;
	transition: color 0.2s ease, transform 0.2s ease;
}

.hanoi26-brand-item__toggle:hover {
	color: #9f1239;
}

.hanoi26-brand-item__toggle[aria-expanded='true'] i {
	transform: rotate(180deg);
}

.hanoi26-brand-item__children {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
	padding-left: 0.875rem;
}

.hanoi26-brand-item__children.is-collapsed {
	display: none;
}

.hanoi26-brand-item[data-depth='2'] .hanoi26-brand-item__children {
	padding-left: 0.75rem;
}

.hanoi26-brand-item[data-depth='3'] .hanoi26-brand-item__name {
	font-size: 0.75rem;
}

/* Bộ lọc đánh giá & chất lượng */
.hanoi26-shop-rating-stars {
	display: inline-flex;
	align-items: center;
	gap: 0.125rem;
	flex-shrink: 0;
}

.hanoi26-shop-rating-stars i {
	font-size: 0.75rem;
	color: #d1d5db;
}

.hanoi26-shop-rating-stars i.is-filled {
	color: #f59e0b;
}

.hanoi26-rating-btn.is-active .hanoi26-shop-rating-stars i.is-filled,
.hanoi26-quality-btn.is-active .hanoi26-quality-btn__icon {
	color: #e53e3e;
}

.hanoi26-quality-btn__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 0.625rem;
	background: #f9fafb;
	color: #6b7280;
	flex-shrink: 0;
}

.hanoi26-quality-btn.is-active .hanoi26-quality-btn__icon {
	background: rgba(229, 62, 62, 0.1);
	color: #e53e3e;
}

/* Giới tính — segmented toggle full width */
.hanoi26-gender-toggle {
	display: flex;
	align-items: stretch;
	width: 100%;
	padding: 0.25rem;
	border: 1px solid #e5e7eb;
	border-radius: 0.875rem;
	background: #f3f4f6;
	gap: 0.25rem;
}

.hanoi26-gender-btn {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.3125rem;
	min-width: 0;
	min-height: 3.25rem;
	padding: 0.5rem 0.375rem;
	border: 0;
	border-radius: 0.625rem;
	background: transparent;
	color: #6b7280;
	font-size: 0.75rem;
	font-weight: 800;
	line-height: 1.15;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
	-webkit-tap-highlight-color: transparent;
}

.hanoi26-gender-btn i {
	font-size: 0.875rem;
	line-height: 1;
	opacity: 0.85;
}

.hanoi26-gender-btn span {
	display: block;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hanoi26-gender-btn:hover {
	color: #111827;
	background: rgb(255 255 255 / 0.7);
}

.hanoi26-gender-btn.is-active {
	background: #111827;
	color: #fff;
	box-shadow: 0 2px 8px rgb(17 24 39 / 0.18);
}

.hanoi26-gender-btn.is-active i {
	opacity: 1;
}

.hanoi26-gender-btn:focus-visible {
	outline: 2px solid #e53e3e;
	outline-offset: 2px;
}

/* Thẻ bộ lọc đang áp dụng */
.hanoi26-shop-active-filters {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.hanoi26-shop-active-filters--bar {
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 0.75rem;
	width: 100%;
	min-width: 0;
	margin: -0.5rem 0 1rem;
	padding: 0.125rem 0;
}

.hanoi26-shop-active-filters--bar .hanoi26-shop-active-filters__list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	gap: 0.5rem;
	flex: 1 1 auto;
	min-width: 0;
}

.hanoi26-shop-active-filters__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.hanoi26-shop-active-filters__tag {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	max-width: 100%;
	height: 2rem;
	padding: 0 0.625rem 0 0.75rem;
	border-radius: 9999px;
	border: 1px solid rgba(229, 62, 62, 0.25);
	background: rgba(229, 62, 62, 0.06);
	color: #9f1239;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hanoi26-shop-active-filters__tag:hover {
	background: rgba(229, 62, 62, 0.12);
	border-color: rgba(229, 62, 62, 0.45);
	color: #e53e3e;
}

.hanoi26-shop-active-filters__label {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hanoi26-shop-active-filters__remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1rem;
	height: 1rem;
	border-radius: 9999px;
	background: rgba(229, 62, 62, 0.12);
	font-size: 0.625rem;
	flex-shrink: 0;
}

.hanoi26-shop-active-filters__clear {
	flex-shrink: 0;
	align-self: center;
	font-size: 0.6875rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #9ca3af;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.hanoi26-shop-active-filters:not(.hanoi26-shop-active-filters--bar) .hanoi26-shop-active-filters__clear {
	align-self: flex-start;
}

.hanoi26-shop-active-filters__clear:hover {
	color: #e53e3e;
}

/* Ngày vàng checkbox */
.hanoi26-ngay-vang-check {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	cursor: pointer;
}

.hanoi26-ngay-vang-check input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.hanoi26-ngay-vang-check__box {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.375rem;
	height: 1.375rem;
	border: 2px solid #d1d5db;
	border-radius: 0.375rem;
	background: #fff;
	color: transparent;
	flex-shrink: 0;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.hanoi26-ngay-vang-check input:checked + .hanoi26-ngay-vang-check__box {
	border-color: #e53e3e;
	background: #e53e3e;
	color: #fff;
}

.hanoi26-ngay-vang-check__title {
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	color: #111827;
}

.hanoi26-ngay-vang-check__desc {
	display: block;
	font-size: 0.75rem;
	color: #6b7280;
	margin-top: 0.125rem;
}

/* Widget Mới xem */
.hanoi26-shop-recently-viewed__item {
	text-decoration: none;
}

.hanoi26-shop-recently-viewed__thumb img {
	transition: transform 0.25s ease;
}

.hanoi26-shop-recently-viewed__item:hover .hanoi26-shop-recently-viewed__thumb img {
	transform: scale(1.04);
}

/* AJAX loading — làm mờ danh sách + chặn hover/click sản phẩm & bộ lọc */
.hanoi26-shop-content {
	position: relative;
}

html.hanoi26-shop-is-loading #hanoi26-shop-sidebar,
html.hanoi26-shop-is-loading #hanoi26-shop-brand-slot,
html.hanoi26-shop-is-loading .hanoi26-shop-mobile-search {
	opacity: 0.6;
	pointer-events: none;
	user-select: none;
	filter: grayscale(0.06);
	transition: opacity 0.2s ease;
}

html.hanoi26-shop-is-loading #hanoi26-shop-sidebar *,
html.hanoi26-shop-is-loading #hanoi26-shop-brand-slot *,
html.hanoi26-shop-is-loading .hanoi26-shop-mobile-search * {
	pointer-events: none !important;
}

html.hanoi26-shop-is-loading #hanoi26-shop-sidebar input,
html.hanoi26-shop-is-loading #hanoi26-shop-sidebar select,
html.hanoi26-shop-is-loading #hanoi26-shop-sidebar button,
html.hanoi26-shop-is-loading #hanoi26-shop-brand-slot input,
html.hanoi26-shop-is-loading #hanoi26-shop-brand-slot select,
html.hanoi26-shop-is-loading #hanoi26-shop-brand-slot button,
html.hanoi26-shop-is-loading .hanoi26-shop-mobile-search input {
	cursor: not-allowed;
}

.hanoi26-shop-content.is-ajax-loading #hanoi26-shop-results {
	opacity: 0.35;
	pointer-events: none;
	transition: opacity 0.2s ease;
	filter: grayscale(0.08);
	user-select: none;
}

.hanoi26-shop-content.is-ajax-loading #hanoi26-shop-results .product-card,
.hanoi26-shop-content.is-ajax-loading #hanoi26-shop-results .product-card *,
.hanoi26-shop-content.is-ajax-loading #hanoi26-shop-results a {
	pointer-events: none !important;
}

.hanoi26-shop-content.is-ajax-loading #hanoi26-shop-results .product-card:hover,
.hanoi26-shop-content.is-ajax-loading #hanoi26-shop-results .product-card:focus-within {
	position: relative;
	z-index: auto !important;
	border-color: #e5e7eb !important;
	border-width: 1px !important;
	margin: 0 !important;
	box-shadow: none !important;
}

.hanoi26-shop-content.is-ajax-loading #hanoi26-shop-results .product-card:hover .product-card__media img,
.hanoi26-shop-content.is-ajax-loading #hanoi26-shop-results .product-card:focus-within .product-card__media img {
	transform: none !important;
}

.hanoi26-shop-ajax-overlay {
	position: absolute;
	inset: 0;
	z-index: 40;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: min(28vh, 220px);
	pointer-events: auto;
	cursor: wait;
}

.hanoi26-shop-ajax-spinner {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 9999px;
	border: 3px solid rgba(17, 24, 39, 0.12);
	border-top-color: #e53e3e;
	animation: hanoi26ShopSpin 0.7s linear infinite;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	background: rgba(255, 255, 255, 0.85);
}

@keyframes hanoi26ShopSpin {
	to {
		transform: rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hanoi26-shop-ajax-spinner {
		animation: none;
		border-top-color: #e53e3e;
		opacity: 0.9;
	}

	.hanoi26-shop-content.is-ajax-loading #hanoi26-shop-results,
	html.hanoi26-shop-is-loading #hanoi26-shop-sidebar,
	html.hanoi26-shop-is-loading #hanoi26-shop-brand-slot,
	html.hanoi26-shop-is-loading .hanoi26-shop-mobile-search {
		transition: none;
	}
}

/* ===== Shop redesign: hero USP + results header + stats ===== */
.hanoi26-shop-archive .hanoi26-shop-hero__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	align-items: center;
}

.hanoi26-shop-archive .hanoi26-shop-hero__title {
	font-size: clamp(2.25rem, 7vw, 4.5rem);
}

.hanoi26-shop-archive .hanoi26-shop-hero__usps {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.625rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hanoi26-shop-archive .hanoi26-shop-hero__usp {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.75rem;
	min-height: 3.75rem;
	padding: 0.75rem 0.875rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 1.125rem;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(10px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
	animation: hanoi26-shop-usp-in 0.55s ease both;
}

.hanoi26-shop-hero__usp:nth-child(2) {
	animation-delay: 0.08s;
}

.hanoi26-shop-hero__usp:nth-child(3) {
	animation-delay: 0.16s;
}

.hanoi26-shop-hero__usp:nth-child(4) {
	animation-delay: 0.24s;
}

.hanoi26-shop-hero__usp-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 0.875rem;
	background: rgba(229, 62, 62, 0.2);
	color: #f87171;
	font-size: 1.0625rem;
}

.hanoi26-shop-hero__usp-text {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	min-width: 0;
}

.hanoi26-shop-hero__usp-title {
	color: #fff;
	font-size: 0.875rem;
	font-weight: 800;
	line-height: 1.25;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.hanoi26-shop-hero__usp-desc {
	color: #b0b7c3;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.35;
}

@keyframes hanoi26-shop-usp-in {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (min-width: 1024px) {
	.hanoi26-shop-archive .hanoi26-shop-hero__layout {
		grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
		gap: 1.25rem;
		align-items: center;
	}

	/* 1 hàng ngang 4 USP — desktop */
	.hanoi26-shop-archive .hanoi26-shop-hero__usps {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		gap: 0.625rem;
		width: 100%;
	}

	.hanoi26-shop-archive .hanoi26-shop-hero__usp {
		flex: 1 1 0;
		min-width: 0;
		min-height: 4rem;
		flex-direction: row;
		align-items: center;
		gap: 0.625rem;
		padding: 0.75rem 0.75rem;
	}

	.hanoi26-shop-archive .hanoi26-shop-hero__usp-icon {
		width: 2.625rem;
		height: 2.625rem;
		font-size: 1rem;
		flex-shrink: 0;
	}

	.hanoi26-shop-archive .hanoi26-shop-hero__usp-title {
		font-size: 0.8125rem;
		line-height: 1.3;
	}

	.hanoi26-shop-archive .hanoi26-shop-hero__usp-desc {
		font-size: 0.75rem;
		line-height: 1.35;
	}
}

.hanoi26-shop-results-header {
	display: none;
}

/* ===== Meta bar (filters + toolbar) ===== */
.hanoi26-shop-meta-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 1rem;
	width: 100%;
	margin-bottom: 0;
	padding: 0.625rem 0 0.125rem;
	border-bottom: 0;
}

.hanoi26-brand-bar-wrap .hanoi26-shop-meta-bar {
	margin-top: 0.625rem;
	padding-top: 0.625rem;
	border-top: 1px solid #f0f1f3;
}

.hanoi26-shop-meta-bar__filters {
	flex: 1 1 auto;
	min-width: 0;
}

.hanoi26-shop-meta-bar .hanoi26-shop-active-filters--bar {
	margin: 0;
	padding: 0;
	justify-content: flex-start;
	width: 100%;
}

.hanoi26-shop-meta-bar .hanoi26-shop-active-filters--bar .hanoi26-shop-active-filters__list {
	flex: 1 1 auto;
	justify-content: flex-start;
}

.hanoi26-shop-meta-bar__tools {
	display: flex;
	flex: 0 0 auto;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.5rem;
	margin-left: auto;
}

.hanoi26-shop-meta-bar--no-filters .hanoi26-shop-meta-bar__tools {
	width: 100%;
	margin-left: 0;
	justify-content: flex-end;
}

@media (max-width: 767px) {
	.hanoi26-brand-bar-wrap .hanoi26-shop-meta-bar {
		flex-wrap: wrap;
		gap: 0.625rem;
	}

	.hanoi26-shop-meta-bar__filters {
		flex: 1 1 100%;
	}

	.hanoi26-shop-meta-bar__tools {
		flex: 1 1 100%;
		margin-left: 0;
		justify-content: space-between;
	}
}

.hanoi26-shop-breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hanoi26-shop-breadcrumbs__item {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: #6b7280;
	font-size: 0.8125rem;
	font-weight: 600;
}

.hanoi26-shop-breadcrumbs__sep {
	color: #d1d5db;
}

.hanoi26-shop-breadcrumbs__link {
	color: #6b7280;
	text-decoration: none;
}

.hanoi26-shop-breadcrumbs__link:hover {
	color: #e53e3e;
}

.hanoi26-shop-breadcrumbs__current {
	color: #111827;
	font-weight: 800;
}

.hanoi26-shop-toolbar__controls {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.625rem;
}

.hanoi26-shop-toolbar__sort {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	min-height: 2.75rem;
}

.hanoi26-shop-display {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.375rem;
	flex-shrink: 0;
	min-height: 2.75rem;
	padding: 0.25rem;
	border: 1px solid #eceef1;
	border-radius: 0.625rem;
	background: #fafbfc;
	overflow: visible;
}

.hanoi26-shop-display__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
}

.hanoi26-shop-toolbar__label {
	display: none;
	font-size: 0.625rem;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #9ca3af;
	white-space: nowrap;
}

.hanoi26-shop-display__label {
	display: none;
	font-size: 0.6875rem;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}

@media (min-width: 1024px) {
	.hanoi26-shop-toolbar__label,
	.hanoi26-shop-display__label {
		display: none !important;
	}

	.hanoi26-shop-display__icon {
		display: block;
	}
}

.hanoi26-shop-display__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 2.5rem;
	height: 2.5rem;
	min-width: 2.5rem;
	min-height: 2.5rem;
	padding: 0;
	border: 0;
	border-radius: 0.5rem;
	background: transparent;
	color: #6b7280;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.hanoi26-shop-display__btn i,
.hanoi26-shop-display__icon {
	display: block;
	font-size: 0.9375rem;
	line-height: 1;
	pointer-events: none;
}

.hanoi26-shop-display__btn:hover {
	color: #111827;
	background: #eef0f3;
}

.hanoi26-shop-display__btn.is-active {
	background: #111827;
	color: #fff;
}

.hanoi26-shop-display__btn.is-active:hover {
	background: #111827;
	color: #fff;
}

/* Trust bar — 2 nhóm: trái (số SP) + phải (cam kết) */
.hanoi26-shop-trust-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 1.25rem;
	padding: 0.875rem 1.5rem;
	border: 1px solid #e5e7eb;
	border-radius: 0.875rem;
	background: #ffffff;
	box-shadow: 0 1px 2px rgb(0 0 0 / 0.03);
}

.hanoi26-shop-trust-bar__side {
	display: flex;
	align-items: center;
	min-width: 0;
}

.hanoi26-shop-trust-bar__side--start {
	flex: 0 1 auto;
	justify-content: flex-start;
}

.hanoi26-shop-trust-bar__side--end {
	flex: 0 1 auto;
	justify-content: flex-end;
	margin-left: auto;
}

.hanoi26-shop-trust-bar__trust {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hanoi26-shop-trust-bar__item {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 0.75rem;
	min-width: 0;
	padding: 0.25rem 0;
}

.hanoi26-shop-trust-bar__trust .hanoi26-shop-trust-bar__item {
	padding: 0.375rem 1.25rem;
}

.hanoi26-shop-trust-bar__trust .hanoi26-shop-trust-bar__item:not(:last-child) {
	border-right: 1px solid #e5e7eb;
}

.hanoi26-shop-trust-bar__trust .hanoi26-shop-trust-bar__item:first-child {
	padding-left: 0;
}

.hanoi26-shop-trust-bar__trust .hanoi26-shop-trust-bar__item:last-child {
	padding-right: 0;
}

.hanoi26-shop-trust-bar__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 2.25rem;
	height: 2.25rem;
	font-size: 1.375rem;
	line-height: 1;
}

.hanoi26-shop-trust-bar__icon i {
	display: block;
	line-height: 1;
}

.hanoi26-shop-trust-bar__icon--red {
	color: #e53e3e;
}

.hanoi26-shop-trust-bar__icon--gold {
	color: #f59e0b;
}

.hanoi26-shop-trust-bar__count {
	margin: 0;
	color: #6b7280;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.35;
	white-space: nowrap;
}

.hanoi26-shop-trust-bar__count strong {
	color: #111827;
	font-weight: 800;
}

.hanoi26-shop-trust-bar__text {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
	min-width: 0;
}

.hanoi26-shop-trust-bar__title {
	color: #111827;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.hanoi26-shop-trust-bar__desc {
	color: #9ca3af;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.35;
}

@media (max-width: 1023px) {
	.hanoi26-shop-trust-bar {
		flex-direction: column;
		align-items: stretch;
		gap: 0.75rem;
		padding: 0.75rem;
	}

	.hanoi26-shop-trust-bar__side--start {
		width: 100%;
		padding-bottom: 0.625rem;
		border-bottom: 1px solid #e5e7eb;
	}

	.hanoi26-shop-trust-bar__side--end {
		margin-left: 0;
		width: 100%;
	}

	.hanoi26-shop-trust-bar__trust {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: stretch;
		justify-content: space-between;
		gap: 0;
		width: 100%;
	}

	.hanoi26-shop-trust-bar__trust .hanoi26-shop-trust-bar__item {
		flex: 1 1 0;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		min-width: 0;
		padding: 0.25rem 0.375rem !important;
		border-right: 1px solid #e5e7eb;
		border-bottom: 0 !important;
		gap: 0.25rem;
		text-align: center;
	}

	.hanoi26-shop-trust-bar__trust .hanoi26-shop-trust-bar__item:first-child {
		padding-left: 0 !important;
	}

	.hanoi26-shop-trust-bar__trust .hanoi26-shop-trust-bar__item:last-child {
		padding-right: 0 !important;
		border-right: 0;
	}

	.hanoi26-shop-trust-bar__icon {
		width: 1.75rem;
		height: 1.75rem;
		font-size: 1rem;
	}

	.hanoi26-shop-trust-bar__text {
		align-items: center;
	}

	.hanoi26-shop-trust-bar__title {
		font-size: 0.75rem;
		line-height: 1.15;
	}

	.hanoi26-shop-trust-bar__desc {
		font-size: 0.625rem;
		line-height: 1.2;
	}

	.hanoi26-shop-trust-bar__count {
		font-size: 0.875rem;
		white-space: normal;
	}
}

.hanoi26-shop-archive .hanoi26-shop-grid.hanoi26-shop-grid--dense {
	gap: 1rem;
}

@media (max-width: 767px) {
	.hanoi26-shop-archive .hanoi26-shop-grid.hanoi26-shop-grid--dense {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.hanoi26-shop-archive .hanoi26-shop-grid.hanoi26-shop-grid--dense .product-card__image-wrap {
		aspect-ratio: 1 / 1;
	}
}

@media (min-width: 768px) {
	.hanoi26-shop-archive .hanoi26-shop-grid.hanoi26-shop-grid--dense {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem;
	}
}

@media (min-width: 1024px) {
	.hanoi26-shop-archive .hanoi26-shop-grid.hanoi26-shop-grid--dense {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.hanoi26-shop-facet-extra summary::-webkit-details-marker {
	display: none;
}

.hanoi26-shop-facet-extra[open] summary i {
	transform: rotate(180deg);
}

.hanoi26-shop-facet-extra summary i {
	transition: transform 0.2s ease;
}

.hanoi26-shop-sidebar.is-filter-focus .hanoi26-shop-filters-panel {
	outline: 2px solid #e53e3e;
	outline-offset: 4px;
	border-radius: 1rem;
	animation: hanoi26-shop-sidebar-pulse 1.2s ease;
}

@keyframes hanoi26-shop-sidebar-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(229, 62, 62, 0);
	}
	40% {
		box-shadow: 0 0 0 6px rgba(229, 62, 62, 0.18);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hanoi26-shop-hero__usp,
	.hanoi26-shop-sidebar.is-filter-focus .hanoi26-shop-filters-panel {
		animation: none;
	}
}

/* ===== Hero backdrop text ===== */
.hanoi26-shop-hero__backdrop {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-58%);
	z-index: 0;
	font-size: clamp(5rem, 18vw, 11rem);
	font-weight: 900;
	line-height: 0.85;
	letter-spacing: -0.04em;
	color: transparent;
	-webkit-text-stroke: 1px rgba(229, 62, 62, 0.22);
	pointer-events: none;
	user-select: none;
	white-space: nowrap;
}

.hanoi26-shop-hero__line2 {
	-webkit-text-stroke: 1.5px #e53e3e;
}

/* ===== Brand bar filter badge ===== */
.hanoi26-brand-bar__filter-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.25rem;
	height: 1.25rem;
	padding: 0 0.35rem;
	border-radius: 9999px;
	background: #e53e3e;
	color: #fff;
	font-size: 0.625rem;
	font-weight: 800;
	line-height: 1;
}

/* ===== Toolbar per-page ===== */
.hanoi26-shop-per-page {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	min-height: 2.75rem;
	padding: 0.125rem 0.5rem;
	border: 1px solid #eceef1;
	border-radius: 0.625rem;
	background: #fafbfc;
}

.hanoi26-shop-per-page__select {
	min-width: 3rem;
	min-height: 2.25rem;
	padding-right: 1.5rem;
	cursor: pointer;
}

/* ===== Sidebar accordion facets ===== */
.hanoi26-shop-facet-accordion {
	overflow: hidden;
}

.hanoi26-shop-facet-accordion__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 1.25rem 1.25rem 0.875rem;
	cursor: pointer;
	list-style: none;
	border-bottom: 1px solid #f3f4f6;
}

.hanoi26-shop-facet-accordion__summary::-webkit-details-marker {
	display: none;
}

.hanoi26-shop-facet-accordion__summary i {
	color: #9ca3af;
	font-size: 0.75rem;
	transition: transform 0.2s ease;
}

.hanoi26-shop-facet-accordion[open] .hanoi26-shop-facet-accordion__summary i {
	transform: rotate(180deg);
}

.hanoi26-shop-facet-accordion__body {
	padding: 0.875rem 1.25rem 1.25rem;
}

/* ===== Color swatches (sidebar) ===== */
.hanoi26-color-swatch {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	padding: 0;
	border: 2px solid #e5e7eb;
	border-radius: 9999px;
	background: transparent;
	cursor: pointer;
	transition: border-color 0.2s ease, transform 0.15s ease;
}

.hanoi26-color-swatch__dot {
	display: block;
	width: 1.125rem;
	height: 1.125rem;
	border-radius: 9999px;
	background: var(--swatch-color, #d1d5db);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.hanoi26-color-swatch:hover {
	border-color: #9ca3af;
	transform: scale(1.06);
}

.hanoi26-color-swatch.is-active {
	border-color: #111827;
	box-shadow: 0 0 0 2px rgba(17, 24, 39, 0.12);
}

/* ===== Active filter chips (gray pills) ===== */
.hanoi26-shop-active-filters--bar .hanoi26-shop-active-filters__tag {
	border-color: #e5e7eb;
	background: #f3f4f6;
	color: #374151;
}

.hanoi26-shop-active-filters--bar .hanoi26-shop-active-filters__tag:hover {
	border-color: #d1d5db;
	background: #e5e7eb;
	color: #111827;
}

.hanoi26-shop-active-filters--bar .hanoi26-shop-active-filters__remove {
	background: #e5e7eb;
	color: #6b7280;
}

.hanoi26-shop-active-filters--bar .hanoi26-shop-active-filters__clear {
	color: #e53e3e;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: none;
	letter-spacing: 0;
}

/* ===== Sidebar polish ===== */
.hanoi26-shop-facet-accordion {
	border-color: #eceef1;
	box-shadow: 0 1px 2px rgb(0 0 0 / 0.03);
}

.hanoi26-shop-search-form .bg-white {
	border-color: #eceef1;
}

.hanoi26-size-btn {
	width: 2.625rem;
	height: 2.625rem;
}

/* ===== Toolbar polish ===== */
.hanoi26-shop-toolbar__sort {
	padding: 0.125rem 0.5rem;
	border: 1px solid #eceef1;
	border-radius: 0.625rem;
	background: #fafbfc;
}

.hanoi26-shop-toolbar__sort .hanoi26-shop-sort-form {
	border: 0;
	padding: 0;
	background: transparent;
}

.hanoi26-shop-toolbar__sort .hanoi26-shop-sort-form select {
	min-height: 2.25rem;
}

/* ===== Hero tweaks ===== */
.hanoi26-shop-archive .hanoi26-shop-hero__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
}

@media (min-width: 768px) {
	.hanoi26-shop-archive .hanoi26-shop-hero__copy {
		gap: 0.875rem;
	}
}

@media (min-width: 1024px) {
	.hanoi26-shop-archive .hanoi26-shop-hero__copy {
		gap: 1rem;
	}
}

.hanoi26-shop-archive .hanoi26-shop-hero__badge {
	align-self: flex-start;
	width: fit-content !important;
	max-width: 100%;
	margin-bottom: 0;
}

.hanoi26-shop-archive .hanoi26-shop-hero__copy > .inline-flex {
	margin-bottom: 0;
}

.hanoi26-shop-archive .hanoi26-shop-hero__title {
	margin-bottom: 0;
	line-height: 1.05;
}

.hanoi26-shop-hero__subtitle {
	position: relative;
	max-width: 28rem;
	margin: 0;
	cursor: help;
}

.hanoi26-shop-hero__subtitle-text {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-height: 1.5;
}

.hanoi26-shop-hero__subtitle-tooltip {
	position: absolute;
	top: calc(100% + 0.5rem);
	left: 0;
	z-index: 40;
	width: min(22rem, calc(100vw - 2rem));
	padding: 0.625rem 0.75rem;
	border: 1px solid rgb(255 255 255 / 0.08);
	border-radius: 0.625rem;
	background: rgb(17 24 39 / 0.96);
	color: #f3f4f6;
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.5;
	box-shadow: 0 10px 28px rgb(0 0 0 / 0.35);
	opacity: 0;
	visibility: hidden;
	transform: translateY(0.25rem);
	transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
	pointer-events: none;
}

.hanoi26-shop-hero__subtitle:hover .hanoi26-shop-hero__subtitle-tooltip,
.hanoi26-shop-hero__subtitle:focus-visible .hanoi26-shop-hero__subtitle-tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.hanoi26-shop-hero__subtitle:focus-visible {
	outline: 2px solid rgb(229 62 62 / 0.65);
	outline-offset: 0.25rem;
	border-radius: 0.25rem;
}

.hanoi26-brand-bar__name {
	display: none;
}

.hanoi26-brand-bar__track {
	gap: 0.5rem;
}

.hanoi26-brand-bar__pill--logo:hover .hanoi26-brand-bar__logo {
	background: #eef0f3;
}

.hanoi26-brand-bar__filter-badge {
	margin-left: 0.25rem;
}

/* ===== Mobile shop layout polish ===== */
@media (max-width: 1023px) {
	.hanoi26-shop-hero-wrap {
		margin-bottom: 0.25rem;
	}

	.hanoi26-shop-hero {
		padding-top: 1.5rem;
		padding-bottom: 2.5rem;
	}

	.hanoi26-shop-brand-slot {
		margin-top: -1.25rem;
		margin-bottom: 0.875rem;
	}

	.hanoi26-shop-main {
		padding-top: 0.25rem;
		padding-bottom: 2rem;
		overflow-x: clip;
	}

	.hanoi26-shop-layout {
		gap: 0 !important;
	}

	.hanoi26-shop-content {
		width: 100%;
		min-width: 0;
	}

	.hanoi26-shop-mobile-search {
		position: relative;
		z-index: 2;
		margin-bottom: 0.875rem;
	}

	.hanoi26-shop-mobile-search .hanoi26-shop-search-form > div {
		height: 3rem;
	}

	.hanoi26-shop-archive .hanoi26-shop-hero__layout {
		gap: 1rem;
	}

	.hanoi26-shop-archive .hanoi26-shop-hero__title {
		font-size: clamp(1.75rem, 9.5vw, 2.5rem);
		margin-bottom: 0;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 0.125rem;
	}

	.hanoi26-shop-hero__backdrop {
		display: none !important;
	}

	.hanoi26-shop-hero__line2 {
		color: #e53e3e !important;
		-webkit-text-fill-color: #e53e3e !important;
		-webkit-text-stroke: 0 !important;
		text-shadow: none;
	}

	.hanoi26-shop-archive .hanoi26-shop-hero__subtitle {
		font-size: 0.8125rem;
		line-height: 1.5;
		max-width: 100%;
		cursor: default;
	}

	.hanoi26-shop-hero__subtitle-tooltip {
		display: none !important;
	}

	.hanoi26-shop-hero__subtitle-text {
		display: block;
		overflow: visible;
		-webkit-line-clamp: unset;
		-webkit-box-orient: unset;
	}

	.hanoi26-shop-archive .hanoi26-shop-hero__usps {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}

	.hanoi26-shop-archive .hanoi26-shop-hero__usp {
		min-height: 0;
		padding: 0.625rem 0.875rem;
		gap: 0.625rem;
	}

	.hanoi26-shop-archive .hanoi26-shop-hero__usp-icon {
		width: 2.25rem;
		height: 2.25rem;
		font-size: 0.9375rem;
	}

	.hanoi26-shop-archive .hanoi26-shop-hero__usp-title {
		font-size: 0.75rem;
	}

	.hanoi26-shop-archive .hanoi26-shop-hero__usp-desc {
		font-size: 0.6875rem;
	}

	.hanoi26-brand-bar-wrap {
		width: 100%;
		padding: 0.5rem 0.375rem 0.375rem;
		border-radius: 0.875rem;
	}

	.hanoi26-brand-bar-wrap__brands {
		align-items: center;
		gap: 0.375rem;
		width: 100%;
	}

	.hanoi26-brand-bar__pill--all {
		height: 3.25rem;
		padding: 0 0.875rem;
	}

	.hanoi26-brand-bar__pill--logo {
		width: 3.25rem;
		min-width: 3.25rem;
		height: 3.25rem;
		padding: 0;
	}

	.hanoi26-brand-bar__pill--logo .hanoi26-brand-bar__logo,
	.hanoi26-brand-bar__pill--logo.is-active .hanoi26-brand-bar__logo {
		width: 3rem;
		height: 3rem;
	}

	.hanoi26-brand-bar-wrap .hanoi26-shop-meta-bar {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		margin-top: 0.5rem;
		padding-top: 0.5rem;
	}

	.hanoi26-shop-meta-bar__filters {
		width: 100%;
	}

	.hanoi26-shop-meta-bar__tools {
		width: 100%;
		margin-left: 0;
	}

	.hanoi26-shop-meta-bar--no-filters .hanoi26-shop-meta-bar__tools {
		justify-content: stretch;
	}

	.hanoi26-shop-toolbar__controls {
		display: flex;
		flex-wrap: nowrap;
		align-items: stretch;
		justify-content: stretch;
		gap: 0.375rem;
		width: 100%;
	}

	.hanoi26-shop-per-page,
	.hanoi26-shop-display,
	.hanoi26-shop-toolbar__sort {
		display: flex;
		flex: 1 1 0;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		gap: 0.375rem;
		min-width: 0;
		min-height: 2.75rem;
		padding: 0.375rem 0.5rem;
	}

	.hanoi26-shop-toolbar__label {
		display: none;
	}

	.hanoi26-shop-per-page {
		justify-content: center;
	}

	.hanoi26-shop-display {
		justify-content: center;
	}

	.hanoi26-shop-display__toggle {
		display: flex;
		width: 100%;
		gap: 0.25rem;
	}

	.hanoi26-shop-display__btn {
		flex: 1 1 0;
		width: auto;
		min-width: 0;
		height: 2rem;
		min-height: 2rem;
		gap: 0.125rem;
		flex-direction: column;
		touch-action: manipulation;
		-webkit-tap-highlight-color: transparent;
	}

	.hanoi26-shop-display__icon {
		display: none;
	}

	.hanoi26-shop-display__label {
		display: inline;
	}

	.hanoi26-shop-toolbar__sort {
		max-width: none;
	}

	.hanoi26-shop-toolbar__sort .hanoi26-shop-sort-form {
		width: 100%;
		min-width: 0;
	}

	.hanoi26-shop-toolbar__sort .hanoi26-shop-sort-form select {
		width: 100%;
		max-width: none;
		min-width: 0;
		font-size: 0.8125rem;
		font-weight: 800;
		padding-right: 1.25rem;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		text-align: center;
		text-align-last: center;
	}

	.hanoi26-shop-per-page__select {
		width: 100%;
		min-width: 0;
		font-size: 0.8125rem;
		font-weight: 800;
		text-align: center;
		text-align-last: center;
		padding-right: 1.25rem;
	}

	.hanoi26-shop-archive .hanoi26-shop-grid {
		gap: 0.75rem;
	}
}

/* Resolve mobile-only spacing after the general tablet rules above. */
@media (max-width: 767px) {
	.hanoi26-shop-hero-wrap {
		margin-bottom: 0;
	}

	.hanoi26-shop-brand-slot {
		margin-top: 0;
	}

	/* Override the general tablet layout: commitments must not appear in the banner on phones. */
	.hanoi26-shop-archive .hanoi26-shop-hero__usps {
		display: none !important;
	}

	/* Let the brand controls sit flush with the page instead of in a raised card. */
	.hanoi26-shop-brand-slot .hanoi26-brand-bar-wrap {
		padding: 0.5rem 0.25rem 0.375rem;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	.hanoi26-brand-bar-wrap .hanoi26-shop-meta-bar {
		border-top-color: #eef0f3;
	}

	/* Hide the highlighted search and result-summary area on phones. */
	.hanoi26-shop-mobile-search,
	.hanoi26-shop-trust-bar {
		display: none;
	}

	/* WooCommerce renders this wrapper even when it has no notices. */
	.hanoi26-shop-main .woocommerce-notices-wrapper:empty {
		display: none;
		margin: 0;
	}
}
