/* Off-canvas cart */
body.tekton-cart-offcanvas-open {
	overflow: hidden;
}

.tekton-cart-offcanvas-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 100002;
}

body.tekton-cart-offcanvas-open .tekton-cart-offcanvas-overlay {
	display: block;
}

.tekton-cart-offcanvas-panel {
	position: fixed;
	top: 0;
	right: 0;
	width: min(400px, 100vw);
	height: 100vh;
	max-height: 100dvh;
	background: var(--site-bg, #fff);
	z-index: 100003;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

body.tekton-cart-offcanvas-open .tekton-cart-offcanvas-panel {
	transform: translateX(0);
}

.tekton-cart-offcanvas-panel .tekton-cart-offcanvas-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.tekton-cart-offcanvas-panel .tekton-cart-offcanvas-inner {
	flex: 1;
	overflow-y: auto;
	padding: 16px 20px;
}

.tekton-cart-offcanvas-close {
	background: none;
	border: 0;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	padding: 4px 8px;
}
