.daze-cart-toast {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	grid-template-areas:
		"mark copy close"
		"actions actions actions";
	align-items: center;
	column-gap: 12px;
	row-gap: 15px;
	opacity: 0;
	position: fixed;
	z-index: 10001;
	top: 28px;
	right: 28px;
	width: min(390px, calc(100vw - 56px));
	padding: 17px 18px 18px;
	color: #292929;
	background: #fff;
	border: 1px solid #dedede;
	border-top: 3px solid #292929;
	box-shadow: 0 10px 28px rgba(0, 0, 0, .11);
	transform: translate3d(18px, 0, 0);
	transition: opacity .28s ease, transform .32s ease;
}

.daze-cart-toast.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.daze-cart-toast.is-leaving {
	pointer-events: none;
}

.daze-cart-toast__mark {
	grid-area: mark;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	color: #292929;
	background: #fff;
	border: 1px solid #292929;
	border-radius: 50%;
	font-size: 11px;
	line-height: 1;
}

.daze-cart-toast__copy {
	grid-area: copy;
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 3px;
}

.daze-cart-toast__label {
	font-size: 12px;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.daze-cart-toast__product {
	overflow: hidden;
	color: #777;
	font-size: 12px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.daze-cart-toast__actions {
	grid-area: actions;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 7px;
}

.daze-cart-toast__link,
.daze-cookie-notice__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 8px 13px;
	color: #292929;
	background: #fff;
	border: 1px solid #292929;
	border-radius: 0;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
}

.daze-cart-toast__link:hover,
.daze-cart-toast__link:focus-visible,
.daze-cookie-notice__button:hover,
.daze-cookie-notice__button:focus-visible {
	color: #fff;
	background: #292929;
}

.daze-cart-toast__checkout {
	color: #fff;
	background: #292929;
}

.daze-cart-toast__checkout:hover,
.daze-cart-toast__checkout:focus-visible {
	color: #292929;
	background: #fff;
}

.daze-cart-toast__close {
	grid-area: close;
	align-self: start;
	width: 25px;
	height: 25px;
	padding: 0;
	color: #777;
	background: transparent;
	border: 0;
	font-size: 21px;
	font-weight: 300;
	line-height: 1;
}

.daze-cart-toast__close:hover,
.daze-cart-toast__close:focus-visible {
	color: #292929;
	background: transparent;
}

.daze-cart-toast.is-error .daze-cart-toast__label {
	font-size: 12px;
	line-height: 1.45;
	letter-spacing: 0;
	text-transform: none;
}

.woocommerce a.added_to_cart.wc-forward {
	display: none !important;
}

.woocommerce .daze-in-cart::before,
.woocommerce .daze-in-cart::after {
	display: none !important;
	content: none !important;
}

.daze-cookie-notice {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	opacity: 0;
	position: fixed;
	z-index: 10000;
	right: 28px;
	bottom: 28px;
	left: 28px;
	max-width: 760px;
	margin: 0 auto;
	padding: 14px 16px;
	color: #292929;
	background: #fff;
	border: 1px solid #e5e5e5;
	box-shadow: 0 12px 36px rgba(0, 0, 0, .12);
	transform: translate3d(0, 18px, 0);
	transition: opacity .28s ease, transform .32s ease;
}

.daze-cookie-notice.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.daze-cookie-notice__text {
	font-size: 12px;
	line-height: 1.55;
}

.daze-cookie-notice__link {
	color: inherit;
	border-bottom: 1px solid currentColor;
	text-decoration: none;
}

.daze-cookie-notice__button {
	flex: 0 0 auto;
	color: #fff;
	background: #292929;
}

.daze-cookie-notice__button:hover,
.daze-cookie-notice__button:focus-visible {
	color: #292929;
	background: #fff;
}

@media (max-width: 767px) {
	.daze-cart-toast {
		top: max(14px, env(safe-area-inset-top));
		right: 14px;
		width: calc(100vw - 28px);
		padding: 15px;
	}

	.daze-cart-toast__actions {
		gap: 6px;
	}

	.daze-cart-toast__link {
		min-height: 32px;
		padding: 7px 9px;
	}

	.daze-cookie-notice {
		align-items: stretch;
		right: 14px;
		bottom: max(14px, env(safe-area-inset-bottom));
		left: 14px;
		flex-direction: column;
		gap: 12px;
		padding: 15px;
	}

	.daze-cookie-notice__button {
		width: 100%;
	}

}

@media (prefers-reduced-motion: reduce) {
	.daze-cart-toast,
	.daze-cookie-notice {
		transition: none;
	}
}
