.commerce-auth-cart-drawer-root {
	--commerce-auth-drawer-accent: var(--ca-color-primary, var(--commerce-auth-accent, #b5842d));
	--commerce-auth-drawer-accent-deep: var(--ca-color-primary-deep, var(--commerce-auth-accent-hover, #8a621f));
	--commerce-auth-drawer-success: var(--ca-color-success, var(--commerce-auth-success, #16803c));
	--commerce-auth-drawer-text: var(--ca-color-text, var(--commerce-auth-heading, #221f1a));
	--commerce-auth-drawer-muted: var(--ca-color-muted, var(--commerce-auth-body, #756f65));
	--commerce-auth-drawer-surface: var(--ca-color-surface, var(--commerce-auth-surface, #fffdf8));
	--commerce-auth-drawer-surface-soft: var(--ca-color-surface-soft, var(--commerce-auth-surface-soft, #f8f3e9));
	--commerce-auth-drawer-border: var(--ca-color-border, var(--commerce-auth-border, #ded3c0));
	--commerce-auth-drawer-shadow: var(--ca-shadow-xl, 0 26px 70px rgb(28 22 15 / 22%));
	--commerce-auth-drawer-radius: var(--ca-radius-lg, 18px);
	--commerce-auth-drawer-focus: var(--ca-focus-ring, 0 0 0 3px color-mix(in srgb, var(--commerce-auth-drawer-accent) 24%, transparent));
	position: fixed;
	inset: 0;
	z-index: var(--ca-modal-z-index, 10020);
	pointer-events: none;
}

.commerce-auth-cart-drawer-root,
.commerce-auth-cart-drawer-root *,
.commerce-auth-cart-drawer-root *::before,
.commerce-auth-cart-drawer-root *::after {
	box-sizing: border-box;
}

.commerce-auth-cart-drawer-root.is-open {
	pointer-events: auto;
}

body.commerce-auth-cart-drawer-open {
	overflow: hidden;
	padding-inline-end: var(--commerce-auth-cart-drawer-scrollbar-gap, 0);
}

body.commerce-auth-cart-drawer-open .commerce-auth-cart-experience__confetti-canvas {
	z-index: calc(var(--ca-modal-z-index, 10020) + 10);
}

.commerce-auth-cart-drawer__backdrop {
	position: absolute;
	inset: 0;
	background: rgb(22 18 13 / 48%);
	opacity: 0;
	transition: opacity 320ms var(--ca-ease-standard, ease);
}

.commerce-auth-cart-drawer-root.is-open .commerce-auth-cart-drawer__backdrop {
	opacity: 1;
}

.commerce-auth-cart-drawer {
	position: absolute;
	inset: 0 0 0 auto;
	display: flex;
	width: min(480px, 96vw);
	height: 100dvh;
	overflow: hidden;
	color: var(--commerce-auth-drawer-text);
	background: var(--commerce-auth-drawer-surface);
	border-inline-start: 1px solid color-mix(in srgb, var(--commerce-auth-drawer-border) 88%, transparent);
	border-radius: var(--commerce-auth-drawer-radius) 0 0 var(--commerce-auth-drawer-radius);
	box-shadow: var(--commerce-auth-drawer-shadow);
	font-family: var(--ca-font-body, var(--commerce-auth-font-body, inherit));
	transform: translate3d(102%, 0, 0);
	transition: transform 420ms var(--ca-ease-standard, cubic-bezier(.22, 1, .36, 1));
	will-change: transform;
}

.commerce-auth-cart-drawer-root.is-open .commerce-auth-cart-drawer {
	transform: translate3d(0, 0, 0);
}

.commerce-auth-cart-drawer:focus {
	outline: none;
}

.commerce-auth-cart-drawer__fragment {
	position: relative;
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
	min-height: 0;
}

.commerce-auth-cart-drawer__top {
	position: relative;
	z-index: 3;
	flex: none;
	background: var(--commerce-auth-drawer-surface);
	border-bottom: 1px solid color-mix(in srgb, var(--commerce-auth-drawer-border) 76%, transparent);
	box-shadow: 0 8px 20px rgb(35 29 20 / 5%);
}

.commerce-auth-cart-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 66px;
	padding: 12px 18px;
}

.commerce-auth-cart-drawer__header h2 {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin: 0;
	color: var(--commerce-auth-drawer-text);
	font-family: var(--ca-font-heading, var(--commerce-auth-font-heading, inherit));
	font-size: 20px;
	font-weight: var(--ca-weight-bold, 700);
	line-height: 1.2;
}

.commerce-auth-cart-drawer__header h2 span {
	color: var(--commerce-auth-drawer-muted);
	font-size: 13px;
	font-weight: var(--ca-weight-semibold, 600);
}

.commerce-auth-cart-drawer__close,
.commerce-auth-cart-drawer-item__remove,
.commerce-auth-cart-drawer-summary__head button {
	display: inline-grid;
	place-items: center;
	flex: none;
	width: 40px;
	height: 40px;
	margin: 0;
	padding: 0;
	color: var(--commerce-auth-drawer-text);
	background: color-mix(in srgb, var(--commerce-auth-drawer-surface-soft) 76%, transparent);
	border: 1px solid color-mix(in srgb, var(--commerce-auth-drawer-border) 78%, transparent);
	border-radius: 50%;
	box-shadow: none;
	cursor: pointer;
	transition:
		color 180ms ease,
		background-color 180ms ease,
		border-color 180ms ease,
		transform 180ms ease;
}

.commerce-auth-cart-drawer__close:hover,
.commerce-auth-cart-drawer-item__remove:hover,
.commerce-auth-cart-drawer-summary__head button:hover {
	color: var(--commerce-auth-drawer-accent-deep);
	background: color-mix(in srgb, var(--commerce-auth-drawer-accent) 9%, var(--commerce-auth-drawer-surface));
	border-color: color-mix(in srgb, var(--commerce-auth-drawer-accent) 38%, var(--commerce-auth-drawer-border));
}

.commerce-auth-cart-drawer-root :is(button, a, input):focus-visible {
	outline: none;
	box-shadow: var(--commerce-auth-drawer-focus);
}

.commerce-auth-cart-drawer-root .commerce-auth-control-icon {
	display: block;
	width: 19px;
	height: 19px;
}

.commerce-auth-cart-experience--drawer {
	margin: 0 14px 13px;
	padding: 10px 9px 0;
	border-radius: calc(var(--commerce-auth-drawer-radius) * .65);
	background: color-mix(in srgb, var(--commerce-auth-drawer-success) 5%, var(--commerce-auth-drawer-surface));
}

.commerce-auth-cart-experience--drawer .commerce-auth-cart-experience__status {
	display: block;
	margin-bottom: 15px;
	font-size: 11px;
	line-height: 1.35;
	text-align: center;
}

.commerce-auth-cart-experience--drawer .commerce-auth-cart-experience__status strong {
	font-size: 12px;
}

.commerce-auth-cart-experience--drawer .commerce-auth-cart-experience__rail {
	height: 7px;
}

.commerce-auth-cart-experience--drawer .commerce-auth-cart-experience__marker {
	width: 17px;
	height: 17px;
}

.commerce-auth-cart-experience--drawer .commerce-auth-cart-experience__marker.is-start {
	width: 12px;
	height: 12px;
}

.commerce-auth-cart-experience--drawer .commerce-auth-cart-experience__milestones {
	height: 36px;
	margin-top: 10px;
}

.commerce-auth-cart-experience--drawer .commerce-auth-cart-experience__milestone {
	max-width: 94px;
	font-size: 8px;
}

.commerce-auth-cart-experience--drawer .commerce-auth-cart-experience__milestone strong {
	font-size: 9px;
}

.commerce-auth-cart-drawer__scroll {
	flex: 1;
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-color: color-mix(in srgb, var(--commerce-auth-drawer-muted) 44%, transparent) transparent;
	scrollbar-width: thin;
}

.commerce-auth-cart-drawer__scroll::-webkit-scrollbar {
	width: 7px;
}

.commerce-auth-cart-drawer__scroll::-webkit-scrollbar-thumb {
	background: color-mix(in srgb, var(--commerce-auth-drawer-muted) 36%, transparent);
	border-radius: 999px;
}

.commerce-auth-cart-drawer__notices:empty {
	display: none;
}

.commerce-auth-cart-drawer__notices {
	display: grid;
	gap: 8px;
	padding: 12px 16px 0;
}

.commerce-auth-cart-drawer__notices :is(.woocommerce-message, .woocommerce-info, .woocommerce-error) {
	position: static;
	display: block;
	width: auto;
	margin: 0;
	padding: 10px 12px;
	color: var(--commerce-auth-drawer-text);
	background: color-mix(in srgb, var(--commerce-auth-drawer-accent) 7%, var(--commerce-auth-drawer-surface));
	border: 1px solid color-mix(in srgb, var(--commerce-auth-drawer-accent) 28%, var(--commerce-auth-drawer-border));
	border-radius: 10px;
	font-size: 12px;
	line-height: 1.45;
}

.commerce-auth-cart-drawer__items {
	display: grid;
	padding: 4px 18px 6px;
}

.commerce-auth-cart-drawer-item {
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr);
	gap: 14px;
	padding: 16px 0;
	border-bottom: 1px solid color-mix(in srgb, var(--commerce-auth-drawer-border) 72%, transparent);
	transition: background-color 220ms ease;
}

.commerce-auth-cart-drawer-item.is-newly-added {
	animation: commerce-auth-cart-drawer-item-highlight 1.35s ease both;
}

.commerce-auth-cart-drawer-item__media {
	align-self: start;
	overflow: hidden;
	background: var(--commerce-auth-drawer-surface-soft);
	border: 1px solid color-mix(in srgb, var(--commerce-auth-drawer-border) 78%, transparent);
	border-radius: 11px;
}

.commerce-auth-cart-drawer-item__media a {
	display: block;
}

.commerce-auth-cart-drawer-item__media img {
	display: block;
	width: 100%;
	height: 82px;
	object-fit: contain;
}

.commerce-auth-cart-drawer-item__content {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.commerce-auth-cart-drawer-item__heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: 8px;
}

.commerce-auth-cart-drawer-item__heading h3 {
	margin: 0;
	font-size: 14px;
	font-weight: var(--ca-weight-semibold, 600);
	line-height: 1.32;
}

.commerce-auth-cart-drawer-item__heading h3 a {
	display: -webkit-box;
	overflow: hidden;
	color: inherit;
	text-decoration: none;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.commerce-auth-cart-drawer-item__remove {
	width: 30px;
	height: 30px;
	color: var(--commerce-auth-drawer-muted);
	background: transparent;
	border-color: transparent;
	border-radius: 8px;
}

.commerce-auth-cart-drawer-item__remove .commerce-auth-control-icon {
	width: 16px;
	height: 16px;
}

.commerce-auth-cart-drawer-item__meta {
	margin-top: 4px;
	color: var(--commerce-auth-drawer-muted);
	font-size: 11px;
	line-height: 1.35;
}

.commerce-auth-cart-drawer-item__meta :is(dl, p) {
	margin: 0;
}

.commerce-auth-cart-drawer-item__bottom {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
	padding-top: 10px;
}

.commerce-auth-cart-drawer-item__price {
	display: flex;
	align-items: baseline;
	gap: 5px;
	min-width: 0;
	font-size: 13px;
}

.commerce-auth-cart-drawer-item__price strong {
	font-weight: var(--ca-weight-bold, 700);
}

.commerce-auth-cart-drawer-item__price del {
	color: var(--commerce-auth-drawer-muted);
	font-size: 10px;
}

.commerce-auth-cart-drawer-quantity {
	display: grid;
	grid-template-columns: 30px 34px 30px;
	height: 32px;
	overflow: hidden;
	background: var(--commerce-auth-drawer-surface);
	border: 1px solid var(--commerce-auth-drawer-border);
	border-radius: 9px;
}

.commerce-auth-cart-drawer-quantity button,
.commerce-auth-cart-drawer-quantity input {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	min-height: 0;
	margin: 0;
	padding: 0;
	color: var(--commerce-auth-drawer-text);
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	font: inherit;
	text-align: center;
}

.commerce-auth-cart-drawer-quantity button {
	cursor: pointer;
}

.commerce-auth-cart-drawer-quantity button:disabled {
	cursor: not-allowed;
	opacity: .38;
}

.commerce-auth-cart-drawer-quantity input {
	-moz-appearance: textfield;
	border-inline: 1px solid color-mix(in srgb, var(--commerce-auth-drawer-border) 72%, transparent);
	font-size: 12px;
}

.commerce-auth-cart-drawer-quantity input::-webkit-inner-spin-button,
.commerce-auth-cart-drawer-quantity input::-webkit-outer-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.commerce-auth-cart-drawer-quantity .commerce-auth-control-icon {
	width: 14px;
	height: 14px;
}

.commerce-auth-cart-drawer-suggestions {
	padding: 20px 0 24px;
	background: color-mix(in srgb, var(--commerce-auth-drawer-surface-soft) 64%, var(--commerce-auth-drawer-surface));
	border-top: 1px solid color-mix(in srgb, var(--commerce-auth-drawer-border) 70%, transparent);
}

.commerce-auth-cart-drawer-suggestions > h3 {
	margin: 0 18px 13px;
	font-family: var(--ca-font-heading, var(--commerce-auth-font-heading, inherit));
	font-size: 16px;
	font-weight: var(--ca-weight-bold, 700);
	text-align: center;
}

.commerce-auth-cart-drawer-suggestions__track {
	display: grid;
	grid-auto-columns: minmax(142px, 43%);
	grid-auto-flow: column;
	gap: 10px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0 18px 8px;
	scroll-padding-inline: 18px;
	scroll-snap-type: x proximity;
}

.commerce-auth-cart-drawer-suggestion {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	background: var(--commerce-auth-drawer-surface);
	border: 1px solid var(--commerce-auth-drawer-border);
	border-radius: 12px;
	box-shadow: 0 5px 16px rgb(35 29 20 / 6%);
	scroll-snap-align: start;
}

.commerce-auth-cart-drawer-suggestion__media {
	display: block;
	padding: 7px;
	background: var(--commerce-auth-drawer-surface-soft);
}

.commerce-auth-cart-drawer-suggestion__media img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / .82;
	object-fit: contain;
}

.commerce-auth-cart-drawer-suggestion__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 6px;
	padding: 9px;
}

.commerce-auth-cart-drawer-suggestion h4 {
	margin: 0;
	font-size: 12px;
	font-weight: var(--ca-weight-semibold, 600);
	line-height: 1.3;
}

.commerce-auth-cart-drawer-suggestion h4 a {
	display: -webkit-box;
	overflow: hidden;
	color: inherit;
	text-decoration: none;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.commerce-auth-cart-drawer-suggestion__price {
	color: var(--commerce-auth-drawer-text);
	font-size: 12px;
}

.commerce-auth-cart-drawer-suggestion__price del {
	color: var(--commerce-auth-drawer-muted);
	font-size: 10px;
}

.commerce-auth-cart-drawer-suggestion__action {
	display: grid;
	place-items: center;
	min-height: 34px;
	margin-top: auto;
	padding: 7px 8px;
	color: var(--commerce-auth-drawer-text);
	background: color-mix(in srgb, var(--commerce-auth-drawer-accent) 7%, var(--commerce-auth-drawer-surface));
	border: 1px solid color-mix(in srgb, var(--commerce-auth-drawer-accent) 38%, var(--commerce-auth-drawer-border));
	border-radius: 8px;
	font-size: 11px;
	font-weight: var(--ca-weight-semibold, 600);
	text-align: center;
	text-decoration: none;
}

.commerce-auth-cart-drawer__footer {
	position: relative;
	z-index: 4;
	flex: none;
	background: color-mix(in srgb, var(--commerce-auth-drawer-surface-soft) 48%, var(--commerce-auth-drawer-surface));
	border-top: 1px solid var(--commerce-auth-drawer-border);
	box-shadow: 0 -10px 26px rgb(35 29 20 / 7%);
}

.commerce-auth-cart-drawer-summary {
	max-height: 0;
	overflow: hidden;
	background: var(--commerce-auth-drawer-surface);
	opacity: 0;
	transform: translateY(10px);
	transition:
		max-height 360ms var(--ca-ease-standard, ease),
		opacity 240ms ease,
		transform 360ms var(--ca-ease-standard, ease);
}

.commerce-auth-cart-drawer-summary.is-expanded {
	max-height: min(52dvh, 440px);
	overflow-y: auto;
	opacity: 1;
	transform: none;
}

.commerce-auth-cart-drawer-summary__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px 11px;
	border-bottom: 1px solid color-mix(in srgb, var(--commerce-auth-drawer-border) 70%, transparent);
}

.commerce-auth-cart-drawer-summary__head strong {
	font-size: 14px;
	text-transform: capitalize;
}

.commerce-auth-cart-drawer-summary__head button {
	width: 30px;
	height: 30px;
	background: transparent;
	border-color: transparent;
	border-radius: 8px;
}

.commerce-auth-cart-drawer-summary__head .commerce-auth-control-icon {
	width: 16px;
	height: 16px;
}

.commerce-auth-cart-drawer-summary__rows {
	display: grid;
	padding: 8px 16px 14px;
}

.commerce-auth-cart-drawer-summary__rows > div {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding: 7px 0;
	color: var(--commerce-auth-drawer-muted);
	border-bottom: 1px dashed color-mix(in srgb, var(--commerce-auth-drawer-border) 72%, transparent);
	font-size: 12px;
}

.commerce-auth-cart-drawer-summary__rows strong {
	color: var(--commerce-auth-drawer-text);
	font-weight: var(--ca-weight-semibold, 600);
	text-align: right;
}

.commerce-auth-cart-drawer-summary__rows .is-saving {
	color: var(--commerce-auth-drawer-success);
}

.commerce-auth-cart-drawer-summary__rows .is-grand {
	margin-top: 3px;
	padding-top: 11px;
	color: var(--commerce-auth-drawer-text);
	border-bottom: 0;
	font-size: 14px;
}

.commerce-auth-cart-drawer__checkout-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(176px, 46%);
	align-items: center;
	gap: 14px;
	min-height: 94px;
	padding: 12px 16px max(12px, env(safe-area-inset-bottom));
}

.commerce-auth-cart-drawer__price {
	display: grid;
	justify-items: start;
	min-width: 0;
}

.commerce-auth-cart-drawer__saving-badge {
	display: inline-flex;
	margin-bottom: 3px;
	padding: 2px 6px;
	color: var(--commerce-auth-drawer-success);
	background: color-mix(in srgb, var(--commerce-auth-drawer-success) 9%, var(--commerce-auth-drawer-surface));
	border: 1px solid color-mix(in srgb, var(--commerce-auth-drawer-success) 24%, transparent);
	border-radius: 999px;
	font-size: 9px;
	font-weight: var(--ca-weight-bold, 700);
	line-height: 1.3;
}

.commerce-auth-cart-drawer__price > div {
	display: flex;
	align-items: baseline;
	gap: 6px;
	min-width: 0;
}

.commerce-auth-cart-drawer__price > div strong {
	font-size: 16px;
	font-weight: var(--ca-weight-bold, 700);
	white-space: nowrap;
}

.commerce-auth-cart-drawer__price > div del {
	overflow: hidden;
	color: var(--commerce-auth-drawer-muted);
	font-size: 10px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.commerce-auth-cart-drawer__price > button {
	margin: 2px 0 0;
	padding: 0;
	color: var(--commerce-auth-drawer-muted);
	background: transparent;
	border: 0;
	box-shadow: none;
	font: inherit;
	font-size: 10px;
	text-decoration: underline;
	text-underline-offset: 2px;
	cursor: pointer;
}

.commerce-auth-cart-drawer__checkout {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 50px;
	overflow: hidden;
	padding: 12px 15px;
	color: var(--commerce-auth-drawer-accent-deep);
	background: color-mix(in srgb, var(--commerce-auth-drawer-accent) 8%, var(--commerce-auth-drawer-surface));
	border: 1px solid color-mix(in srgb, var(--commerce-auth-drawer-accent) 62%, var(--commerce-auth-drawer-border));
	border-radius: 11px;
	box-shadow: inset 0 1px 0 color-mix(in srgb, var(--commerce-auth-drawer-surface) 70%, transparent);
	font-size: 13px;
	font-weight: var(--ca-weight-bold, 700);
	letter-spacing: .08em;
	text-decoration: none;
	text-transform: uppercase;
	transition:
		background-color 190ms ease,
		border-color 190ms ease,
		transform 190ms ease;
}

.commerce-auth-cart-drawer__checkout::before {
	position: absolute;
	inset: -35% auto -35% -55%;
	z-index: 0;
	width: 42%;
	content: '';
	background: linear-gradient(105deg, transparent, color-mix(in srgb, var(--commerce-auth-drawer-surface) 82%, transparent), transparent);
	pointer-events: none;
	transform: skewX(-15deg);
}

.commerce-auth-cart-drawer__checkout > span,
.commerce-auth-cart-drawer__checkout > svg {
	position: relative;
	z-index: 1;
}

.commerce-auth-cart-drawer-root.is-open .commerce-auth-cart-drawer__checkout::before {
	animation: commerce-auth-cart-drawer-checkout-sweep 1.05s 320ms ease-out both;
}

.commerce-auth-cart-drawer__checkout:hover {
	color: var(--commerce-auth-drawer-accent-deep);
	background: color-mix(in srgb, var(--commerce-auth-drawer-accent) 13%, var(--commerce-auth-drawer-surface));
	border-color: var(--commerce-auth-drawer-accent);
	transform: translateY(-1px);
}

.commerce-auth-cart-drawer__checkout .commerce-auth-control-icon {
	width: 18px;
	height: 18px;
}

.commerce-auth-cart-drawer__empty {
	display: grid;
	place-items: center;
	min-height: 55dvh;
	padding: 44px 28px;
	text-align: center;
}

.commerce-auth-cart-drawer__empty-mark {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	color: var(--commerce-auth-drawer-accent);
	background: color-mix(in srgb, var(--commerce-auth-drawer-accent) 8%, var(--commerce-auth-drawer-surface));
	border: 1px solid color-mix(in srgb, var(--commerce-auth-drawer-accent) 28%, var(--commerce-auth-drawer-border));
	border-radius: 50%;
	transform: rotate(180deg);
}

.commerce-auth-cart-drawer__empty h3 {
	margin: 16px 0 7px;
	font-size: 18px;
}

.commerce-auth-cart-drawer__empty p {
	max-width: 300px;
	margin: 0;
	color: var(--commerce-auth-drawer-muted);
	font-size: 13px;
	line-height: 1.55;
}

.commerce-auth-cart-drawer__empty button {
	margin-top: 18px;
	padding: 10px 16px;
	color: var(--commerce-auth-drawer-accent-deep);
	background: color-mix(in srgb, var(--commerce-auth-drawer-accent) 7%, var(--commerce-auth-drawer-surface));
	border: 1px solid color-mix(in srgb, var(--commerce-auth-drawer-accent) 42%, var(--commerce-auth-drawer-border));
	border-radius: 9px;
	font: inherit;
	font-size: 12px;
	font-weight: var(--ca-weight-semibold, 600);
	cursor: pointer;
}

.commerce-auth-cart-drawer-root.is-busy .commerce-auth-cart-drawer__fragment::after {
	position: absolute;
	inset: 0;
	z-index: 8;
	content: '';
	background: color-mix(in srgb, var(--commerce-auth-drawer-surface) 42%, transparent);
	cursor: progress;
}

.commerce-auth-cart-drawer-trigger {
	display: none !important;
}

.woocommerce-message.is-commerce-auth-cart-drawer-pending {
	visibility: hidden !important;
}

.commerce-auth-cart-drawer-root .screen-reader-text,
.commerce-auth-cart-drawer__live.screen-reader-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
}

@keyframes commerce-auth-cart-drawer-item-highlight {
	0%, 100% { background: transparent; }
	18%, 58% { background: color-mix(in srgb, var(--commerce-auth-drawer-success) 8%, transparent); }
}

@keyframes commerce-auth-cart-drawer-checkout-sweep {
	0% { left: -55%; }
	100% { left: 130%; }
}

@media (max-width: 749px) {
	.commerce-auth-cart-drawer {
		width: 96vw;
	}

	.commerce-auth-cart-drawer__header {
		min-height: 60px;
		padding: 10px 14px;
	}

	.commerce-auth-cart-drawer__header h2 {
		font-size: 18px;
	}

	.commerce-auth-cart-experience--drawer {
		margin: 0 10px 10px;
	}

	.commerce-auth-cart-drawer__items {
		padding-inline: 14px;
	}

	.commerce-auth-cart-drawer-item {
		grid-template-columns: 72px minmax(0, 1fr);
		gap: 11px;
	}

	.commerce-auth-cart-drawer-item__media img {
		height: 72px;
	}

	.commerce-auth-cart-drawer__checkout-row {
		grid-template-columns: minmax(0, 1fr) minmax(154px, 47%);
		gap: 9px;
		padding-inline: 12px;
	}

	.commerce-auth-cart-drawer__checkout {
		min-height: 48px;
		padding-inline: 10px;
		font-size: 12px;
	}
}

@media (max-width: 380px) {
	.commerce-auth-cart-drawer-item__bottom {
		align-items: start;
		flex-direction: column;
	}

	.commerce-auth-cart-drawer__checkout-row {
		grid-template-columns: minmax(0, 1fr) minmax(142px, 47%);
	}

	.commerce-auth-cart-drawer__price > div strong {
		font-size: 14px;
	}
}

@media (max-height: 680px) {
	.commerce-auth-cart-experience--drawer .commerce-auth-cart-experience__milestones {
		height: 30px;
	}

	.commerce-auth-cart-drawer__checkout-row {
		min-height: 82px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.commerce-auth-cart-drawer,
	.commerce-auth-cart-drawer__backdrop,
	.commerce-auth-cart-drawer-summary,
	.commerce-auth-cart-drawer__checkout,
	.commerce-auth-cart-drawer-item {
		animation: none !important;
		transition: none !important;
	}

	.commerce-auth-cart-drawer__checkout::before {
		display: none;
	}
}

body.admin-bar .commerce-auth-cart-drawer {
	top: 32px;
	height: calc(100dvh - 32px);
}

@media (max-width: 782px) {
	body.admin-bar .commerce-auth-cart-drawer {
		top: 46px;
		height: calc(100dvh - 46px);
	}
}
