/*
 * Header cart entry. The active brand theme supplies all public color tokens.
 * No transaction, session or customer data is stored in CSS or JavaScript.
 */
.wbc-cart-entry {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	position: relative;
}
.wbc-cart-entry__link {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 2px;
	color: inherit;
	text-decoration: none;
	position: relative;
}

.wbc-cart-entry__link:hover {
	color: inherit;
	text-decoration: none;
}

.wbc-cart-entry__link:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.wbc-cart-entry__shell {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--walkin-line, currentColor);
	border-radius: 10px;
	background: transparent;
	transition: transform .18s ease, border-color .18s ease, background-color .18s ease;
}

.wbc-cart-entry__link:hover .wbc-cart-entry__shell,
.wbc-cart-entry__link:focus-visible .wbc-cart-entry__shell {
	border-color: currentColor;
	transform: translateY(-2px);
}

.wbc-cart-icon {
	display: block;
	width: 20px;
	height: 20px;
	max-width: 20px;
	max-height: 20px;
	flex: none;
	overflow: visible;
}

.wbc-cart-entry__count {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.25rem;
	height: 1.25rem;
	padding-inline: .25rem;
	border: 2px solid var(--walkin-paper, #fff);
	border-radius: 999px;
	background: var(--walkin-ink, #181714);
	color: var(--walkin-paper, #fff);
	font-family: Arial, sans-serif;
	font-size: .68rem;
	font-weight: 700;
	line-height: 1;
	position: absolute;
	top: -1px;
	right: -3px;
}

.wbc-cart-entry.is-empty .wbc-cart-entry__count {
	display: none;
}

.wbc-cart-entry__label {
	position: absolute;
	clip-path: inset(50%);
	width: 1px;
	height: 1px;
	overflow: hidden;
	white-space: nowrap;
}

body.brand-miaoling .wbc-cart-entry__shell {
	border-color: var(--miaoling-line, var(--walkin-line, currentColor));
}

body.brand-miaoling .wbc-cart-entry__count {
	border-color: var(--miaoling-deep, var(--walkin-paper, #fff));
	background: var(--miaoling-gold, var(--walkin-gold, #cda65a));
	color: var(--miaoling-deep, #4a160f);
}

@media (prefers-reduced-motion: reduce) {
	.wbc-cart-entry__shell {
		transition: none;
	}

	.wbc-cart-entry__link:hover .wbc-cart-entry__shell,
	.wbc-cart-entry__link:focus-visible .wbc-cart-entry__shell {
		transform: none;
	}
}

@media (forced-colors: active) {
	.wbc-cart-entry__shell,
	.wbc-cart-entry__count {
		forced-color-adjust: auto;
	}
}
