.angie-checkout-drawer-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999998;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.angie-checkout-drawer-overlay.is-active {
	opacity: 1;
	visibility: visible;
}

.angie-checkout-drawer {
	position: fixed;
	top: 0;
	right: -100%; /* Start hidden off-screen */
	width: 100%;
	max-width: 500px; /* Adjust as needed */
	height: 100vh;
	background: #fff;
	z-index: 999999;
	box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
	transition: right 0.3s ease-in-out;
	display: flex;
	flex-direction: column;
}

.angie-checkout-drawer.is-active {
	right: 0;
}

.angie-checkout-drawer-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid #eee;
	background: #f9f9f9;
}

.angie-checkout-drawer-header h2 {
	margin: 0;
	font-size: 1.5rem;
}

.angie-checkout-drawer-close {
	background: none;
	border: none;
	font-size: 2rem;
	cursor: pointer;
	padding: 0;
	line-height: 1;
	color: #666;
}

.angie-checkout-drawer-close:hover {
	color: #000;
}

.angie-checkout-drawer-content {
	padding: 20px;
	overflow-y: auto;
	flex-grow: 1;
}

/* Basic styling adjustments for WooCommerce inside the drawer */
.angie-checkout-drawer-content .woocommerce {
	font-size: 0.9rem;
}

.angie-checkout-drawer-content .woocommerce-checkout .col2-set .col-1,
.angie-checkout-drawer-content .woocommerce-checkout .col2-set .col-2 {
	float: none;
	width: 100%;
}
