/* Cart Sidebar and Overlay */
.cart-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.8);
	z-index: 1040;
	display: none;
}

.cart-sidebar {
	position: fixed;
	top: 0;
	right: -400px;
	width: 400px;
	height: 100%;
	background-color: #fff;
	z-index: 1050;
	transition: right 0.3s ease-in-out;
	box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}

.cart-header {
	padding: 20px;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.cart-title { font-size: 18px; font-weight: bold; margin: 0; }
#cart-title-count { font-weight: normal; margin-left: 5px; }
.cart-close-btn { background: transparent; border: none; font-size: 24px; cursor: pointer; line-height: 1; }
.cart-content { padding: 20px; flex: 1; overflow-y: auto; }
#cart-items-container .card { border-radius: 0; margin-bottom: 15px; }

.cart-sidebar.active { right: 0; }
.cart-overlay.active { display: block; } 