.lz-mini-cart {
	--bs-offcanvas-width: min(460px, 100vw);
	border: 0;
	font-family: "Plus Jakarta Sans", sans-serif;
}

.lz-cart-link {
	position: relative;
}

.lz-cart-count {
	align-items: center;
	background: #0a0a0a;
	border-radius: 50%;
	bottom: -9px;
	color: #fff;
	display: flex;
	font-size: 11px;
	font-weight: 500;
	height: 24px;
	justify-content: center;
	letter-spacing: -0.03em;
	line-height: 1;
	position: absolute;
	right: -8px;
	width: 24px;
	z-index: 2;
}

.lz-cart-count.is-empty {
	display: none;
}

.lz-mini-cart-fragment,
.lz-mini-cart-inner {
	height: 100%;
}

.lz-mini-cart-inner {
	display: flex;
	flex-direction: column;
	min-height: 0;
}

.lz-mini-cart-header {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	justify-content: space-between;
	min-height: 83px;
	padding: 20px 28px 18px;
}

.lz-mini-cart-header h2 {
	color: #0a0a0a;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.5;
	margin: 0;
}

.lz-mini-cart-close {
	align-items: center;
	background: transparent;
	border: 0;
	box-shadow: none;
	color: #0a0a0a;
	display: flex;
	font-family: Arial, sans-serif;
	font-size: 28px;
	font-weight: 300;
	height: 36px;
	justify-content: center;
	line-height: 1;
	margin-right: -8px;
	padding: 0;
	width: 36px;
}

.lz-mini-cart-items {
	flex: 1 1 auto;
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 20px 30px;
}

.lz-mini-cart-item {
	column-gap: 12px;
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr) auto;
	grid-template-rows: auto 1fr auto;
	min-height: 133px;
	position: relative;
}

.lz-mini-cart-item + .lz-mini-cart-item {
	border-top: 1px solid #ededed;
	margin-top: 28px;
	padding-top: 28px;
}

.lz-mini-cart-item.is-updating {
	opacity: 0.5;
	pointer-events: none;
}

.lz-mini-cart-image {
	align-items: center;
	background: #fafafa;
	display: flex;
	grid-column: 1;
	grid-row: 1 / 4;
	height: 133px;
	justify-content: center;
	overflow: hidden;
	width: 96px;
}

.lz-mini-cart-image img {
	height: 100%;
	margin: 0;
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
	width: 100%;
}

.lz-mini-cart-product {
	display: flex;
	flex-direction: column;
	grid-column: 2;
	grid-row: 1 / 3;
	justify-content: space-between;
	min-width: 0;
}

.lz-mini-cart-name,
.lz-mini-cart-name:hover {
	color: #0a0a0a;
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 0;
	line-height: 1.2;
	max-width: 180px;
	text-decoration: none;
}

.lz-mini-cart-price {
	color: #0a0a0a;
	font-size: 16px;
	font-weight: 500;
	grid-column: 3;
	grid-row: 1;
	line-height: 1.45;
	white-space: nowrap;
}

.lz-mini-cart-price .amount,
.lz-mini-cart-subtotal .amount {
	font-weight: inherit;
}

.lz-mini-cart-quantity {
	align-items: center;
	border: 0.8px solid #0a0a0a;
	border-radius: 22px;
	display: grid;
	grid-template-columns: 32px 39px 32px;
	height: 44px;
	margin-top: 18px;
	overflow: hidden;
	width: 105px;
}

.lz-mini-cart-quantity button {
	align-items: center;
	background: transparent;
	border: 0;
	box-shadow: none;
	display: flex;
	height: 42px;
	justify-content: center;
	padding: 0;
}

.lz-mini-cart-quantity button:disabled {
	cursor: default;
	opacity: 0.28;
}

.lz-mini-cart-quantity img {
	display: block;
	height: 12px;
	width: 12px;
}

.lz-mini-cart-quantity > span {
	color: #0a0a0a;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	text-align: center;
}

.lz-mini-cart-remove {
	align-self: end;
	background: transparent;
	border: 0;
	box-shadow: none;
	color: #0a0a0a;
	font-size: 20px;
	font-weight: 600;
	grid-column: 2 / 4;
	grid-row: 3;
	justify-self: end;
	line-height: 1.2;
	margin-top: 10px;
	padding: 0;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.lz-mini-cart-empty {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	padding-bottom: 82px;
	text-align: center;
}

.lz-mini-cart-empty p {
	color: #0a0a0a;
	font-size: 18px;
	margin: 0 0 18px;
}

.lz-mini-cart-empty a {
	background: #0a0a0a;
	border-radius: 24px;
	color: #fff;
	font-size: 15px;
	padding: 12px 24px;
	text-decoration: none;
}

.lz-mini-cart-coupon-note {
	background: #fff;
	color: #0a0a0a;
	flex: 0 0 auto;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	margin: 0;
	padding: 15px;
}

.lz-mini-cart-coupon-note span {
	display: block;
}

.lz-mini-cart-footer {
	background: #f5f5f5;
	border-top: 0.5px solid #0a0a0a;
	flex: 0 0 202px;
	padding: 34px 28px 22px;
}

.lz-mini-cart-subtotal {
	align-items: flex-start;
	color: #0a0a0a;
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}

.lz-mini-cart-subtotal > span:first-child {
	display: flex;
	align-items: baseline;
	flex-direction: row;
	gap: 4px;
}

.lz-mini-cart-subtotal strong {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25;
}

.lz-mini-cart-subtotal small {
	color: #6e6e6e;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}

.lz-mini-cart-subtotal > span:last-child {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2;
}

.lz-mini-cart-actions {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lz-mini-cart-view-cart,
.lz-mini-cart-checkout {
	align-items: center;
	border: 1px solid #0a0a0a;
	border-radius: 24px;
	display: flex;
	font-size: 16px;
	font-weight: 500;
	height: 44px;
	justify-content: center;
	line-height: 1;
	padding: 0 12px;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
	width: 100%;
}

.lz-mini-cart-view-cart {
	background: transparent;
	color: #0a0a0a;
}

.lz-mini-cart-view-cart:hover,
.lz-mini-cart-view-cart:focus-visible {
	background: #fff;
	color: #0a0a0a;
}

.lz-mini-cart-checkout {
	background: #0a0a0a;
	color: #fff;
}

.lz-mini-cart-checkout:hover,
.lz-mini-cart-checkout:focus-visible {
	background: #303030;
	color: #fff;
}

.lz-mini-cart-payments {
	align-items: center;
	display: flex;
	gap: 12px;
	height: 36px;
	justify-content: flex-start;
	margin-top: 13px;
}

.lz-mini-cart-payments > img {
	display: block;
	height: auto;
	max-height: 28px;
	max-width: 100%;
	width: auto;
}

.lz-mini-cart-payments > span {
	align-items: center;
	display: inline-flex;
	justify-content: center;
}

.lz-payment-card img {
	height: 26px;
	width: auto;
}

.lz-payment-paypal {
	gap: 2px;
}

.lz-payment-paypal img:first-child {
	height: 20px;
}

.lz-payment-paypal img:last-child {
	height: 11px;
}

.lz-payment-payshop {
	gap: 1px;
}

.lz-payment-payshop img {
	height: 16px;
	width: auto;
}

.lz-payment-klarna {
	height: 24px !important;
}

@media (max-width: 359.98px) {
	.lz-mini-cart-header,
	.lz-mini-cart-items,
	.lz-mini-cart-footer {
		padding-left: 20px;
		padding-right: 20px;
	}

	.lz-mini-cart-coupon-note {
		padding-left: 20px;
		padding-right: 20px;
	}

	.lz-mini-cart-item {
		column-gap: 12px;
		grid-template-columns: 82px minmax(0, 1fr) auto;
		min-height: 114px;
	}

	.lz-mini-cart-image {
		height: 114px;
		width: 82px;
	}

	.lz-mini-cart-name,
	.lz-mini-cart-price {
		font-size: 14px;
	}

	.lz-mini-cart-remove {
		font-size: 17px;
	}

	.lz-mini-cart-actions {
		gap: 8px;
	}

	.lz-mini-cart-view-cart,
	.lz-mini-cart-checkout {
		font-size: 14px;
		padding-left: 8px;
		padding-right: 8px;
	}

	.lz-mini-cart-payments {
		gap: 8px;
	}
}
