.wcts-side-cart {
	--wcts-bg: #1c1528;
	--wcts-text: #f6f2fb;
	--wcts-muted: #c9bfd6;
	--wcts-line: #3d334f;
	--wcts-button: #d4c4e8;
	--wcts-button-text: #1a1224;
	--wcts-font: "Segoe UI", system-ui, -apple-system, sans-serif;
	position: fixed;
	inset: 0;
	z-index: 100040;
	pointer-events: none;
	font-family: var(--wcts-font);
	color: var(--wcts-text);
}

.wcts-side-cart.is-open {
	pointer-events: auto;
}

.wcts-side-cart__overlay {
	position: absolute;
	inset: 0;
	background: rgba(8, 4, 14, 0.55);
	opacity: 0;
	transition: opacity 0.22s ease;
}

.wcts-side-cart.is-open .wcts-side-cart__overlay {
	opacity: 1;
}

.wcts-side-cart__panel {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	width: min(26rem, 100%);
	height: 100%;
	background: var(--wcts-bg);
	box-shadow: -16px 0 40px rgba(0, 0, 0, 0.35);
	transform: translateX(100%);
	transition: transform 0.24s ease;
}

.wcts-side-cart.is-open .wcts-side-cart__panel {
	transform: translateX(0);
}

.wcts-side-cart__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.15rem 1.2rem;
	border-bottom: 1px solid var(--wcts-line);
}

.wcts-side-cart__header h2 {
	margin: 0;
	font-size: 1.1rem;
}

.wcts-side-cart__close {
	width: 2.2rem;
	height: 2.2rem;
	border: 0;
	border-radius: 999px;
	background: #2a2238;
	color: var(--wcts-text);
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
}

.wcts-side-cart__contents {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
}

.wcts-side-cart__items {
	flex: 1;
	overflow: auto;
	margin: 0;
	padding: 0.4rem 0;
	list-style: none;
}

.wcts-side-cart__item {
	padding: 1rem 1.2rem;
	border-bottom: 1px solid var(--wcts-line);
}

.wcts-side-cart__item-copy {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.7rem;
}

.wcts-side-cart__item-copy strong {
	font-weight: 600;
}

.wcts-side-cart__item-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.wcts-side-cart__remove {
	border: 0;
	background: transparent;
	color: var(--wcts-muted);
	font: inherit;
	font-size: 0.8rem;
	text-decoration: underline;
	cursor: pointer;
}

.wcts-side-cart__empty {
	margin: 2rem 1.2rem;
	color: var(--wcts-muted);
	text-align: center;
}

.wcts-side-cart__footer {
	padding: 1.1rem 1.2rem 1.3rem;
	border-top: 1px solid var(--wcts-line);
}

.wcts-side-cart__total {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.9rem;
	font-size: 1.05rem;
}

.wcts-side-cart__checkout {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 2.8rem;
	padding: 0.7rem 1.1rem;
	border-radius: 999px;
	background: var(--wcts-button);
	color: var(--wcts-button-text);
	font-size: 0.75rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
}

.wcts-side-cart__view {
	display: block;
	margin-top: 0.7rem;
	color: var(--wcts-muted);
	font-size: 0.88rem;
	text-align: center;
}

.wcts-side-cart__toggle {
	position: fixed;
	right: 1.1rem;
	bottom: 1.1rem;
	z-index: 100030;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.7rem 1rem;
	border: 0;
	border-radius: 999px;
	background: #d4c4e8;
	color: #1a1224;
	font: inherit;
	font-size: 0.78rem;
	font-weight: 750;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	box-shadow: 0 10px 28px rgba(8, 4, 16, 0.35);
	cursor: pointer;
}

.wcts-side-cart__count {
	display: inline-flex;
	min-width: 1.35rem;
	height: 1.35rem;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: #1a1224;
	color: #f6f2fb;
	font-size: 0.75rem;
}

.wcts-side-cart .wcts-qty {
	display: inline-flex;
	align-items: center;
	height: 2.1rem;
	border: 1px solid var(--wcts-line);
	border-radius: 999px;
	overflow: hidden;
	background: #1a1324;
}

.wcts-side-cart .wcts-qty-btn {
	width: 1.9rem;
	height: 2.1rem;
	border: 0;
	background: transparent;
	color: var(--wcts-text);
	cursor: pointer;
}

.wcts-side-cart .wcts-qty-input {
	width: 2.2rem;
	height: 2.1rem;
	border: 0;
	background: transparent;
	color: var(--wcts-text);
	text-align: center;
	font: inherit;
}

.wcts-side-cart__toggle[hidden] {
	display: none !important;
}

body.wcts-side-cart-open {
	overflow: hidden;
}
