.aura-sticky-cart-bar {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 50;
	padding: 10px clamp(12px, 3vw, 28px);
	border-top: 1px solid rgba(75, 28, 34, 0.12);
	background: rgba(255, 254, 250, 0.94);
	box-shadow: 0 -10px 30px rgba(43, 33, 24, 0.08);
	backdrop-filter: blur(16px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(110%);
	transition:
		transform 280ms ease,
		opacity 220ms ease,
		visibility 0s linear 280ms;
}

.aura-sticky-cart-bar.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
	transition:
		transform 280ms ease,
		opacity 220ms ease,
		visibility 0s linear 0s;
}

.aura-sticky-cart-bar__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	width: min(100%, 1280px);
	margin: 0 auto;
}

.aura-sticky-cart-bar__product {
	display: flex;
	align-items: center;
	min-width: 0;
	gap: 12px;
}

.aura-sticky-cart-bar__image {
	flex: 0 0 auto;
	width: 54px;
	height: 64px;
	overflow: hidden;
	border-radius: 8px;
	background: #faf8eb;
}

.aura-sticky-cart-bar__image img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
}

.aura-sticky-cart-bar__meta {
	min-width: 0;
}

.aura-sticky-cart-bar__title {
	margin: 0;
	overflow: hidden;
	color:  var(--aura-color-burgundy);
	font-family: var(--aura-font-body, Manrope, sans-serif);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.aura-sticky-cart-bar__price {
	margin-top: 4px;
	color:  var(--aura-color-burgundy);
	font-family: var(--aura-font-body, Manrope, sans-serif);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
}

.aura-sticky-cart-bar__price .price,
.aura-sticky-cart-bar__price ins,
.aura-sticky-cart-bar__price del {
	color: inherit;
}

.aura-sticky-cart-bar__price ins {
	text-decoration: none;
}

.aura-sticky-cart-bar__price del {
	opacity: 0.55;
}

.aura-sticky-cart-bar__actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.aura-sticky-cart-bar__quantity {
	display: inline-grid;
	grid-template-columns: 34px 42px 34px;
	align-items: stretch;
	height: 42px;
	overflow: hidden;
	border: 1px solid rgba(75, 28, 34, 0.18);
	border-radius: 999px;
	background: #fffefa;
}

.aura-sticky-cart-bar__quantity.is-hidden {
	display: none;
}

.aura-sticky-cart-bar__qty,
.aura-sticky-cart-bar__qty-btn {
	height: 100%;
	border: 0;
	background: transparent;
	color:  var(--aura-color-burgundy);
	font-family: var(--aura-font-body, Manrope, sans-serif);
}

.aura-sticky-cart-bar__qty {
	width: 42px;
	margin: 0;
	padding: 0 4px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	appearance: textfield;
}

.aura-sticky-cart-bar__qty::-webkit-outer-spin-button,
.aura-sticky-cart-bar__qty::-webkit-inner-spin-button {
	margin: 0;
	appearance: none;
}

.aura-sticky-cart-bar__qty-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	padding: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: background-color 160ms ease, color 160ms ease;
}

.aura-sticky-cart-bar__qty-btn:hover,
.aura-sticky-cart-bar__qty-btn:focus-visible {
	background: #fff;
	color: #935b54;
}

.aura-sticky-cart-bar__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 188px;
	height: 42px;
	padding: 0 22px;
	border: 1px solid  var(--aura-color-burgundy);
	border-radius: 999px;
	background:  var(--aura-color-burgundy);
	color: #fffefa;
	font-family: var(--aura-font-body, Manrope, sans-serif);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.1;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.aura-sticky-cart-bar__button:hover,
.aura-sticky-cart-bar__button:focus-visible {
	border-color: #935b54;
	background: #935b54;
	color: #fff;
}

@media (max-width: 767px) {
	.aura-sticky-cart-bar {
		padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
	}

	.aura-sticky-cart-bar__inner {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 8px;
	}

	.aura-sticky-cart-bar__product {
		gap: 10px;
		min-width: 0;
	}

	.aura-sticky-cart-bar__image {
		width: 44px;
		height: 52px;
		border-radius: 6px;
	}

	.aura-sticky-cart-bar__actions {
		display: flex;
		justify-content: flex-end;
		justify-self: end;
		max-width: 58vw;
		gap: 6px;
	}

	.aura-sticky-cart-bar__quantity {
		grid-template-columns: 28px 32px 28px;
		flex: 0 0 88px;
		width: 88px;
		height: 40px;
	}

	.aura-sticky-cart-bar__qty {
		width: 32px;
		font-size: 12px;
	}

	.aura-sticky-cart-bar__qty-btn {
		width: 28px;
		font-size: 14px;
	}

	.aura-sticky-cart-bar__button {
		width: auto;
		min-width: 104px;
		max-width: 112px;
		height: 40px;
		padding: 0 10px;
		font-size: 10px;
		white-space: normal;
	}
}

@media (max-width: 360px) {
	.aura-sticky-cart-bar__actions {
		max-width: 60vw;
	}

	.aura-sticky-cart-bar__image {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.aura-sticky-cart-bar,
	.aura-sticky-cart-bar.is-visible {
		transition:
			opacity 120ms ease,
			visibility 0s linear 120ms;
	}

	.aura-sticky-cart-bar.is-visible {
		transition:
			opacity 120ms ease,
			visibility 0s linear 0s;
	}
}
