/* Cart Wrapper */
.angie-cart-wrapper-ddb67700 {
	position: relative;
	display: inline-block;
	z-index: 999;
}

.angie-cart-floating-ddb67700 {
	position: fixed;
	bottom: 30px;
	right: 30px;
}

/* Toggle Button */
.angie-cart-toggle-ddb67700 {
	background: #0A192F; /* Dark Navy */
	color: #ffffff;
	border: none;
	padding: 12px;
	border-radius: 50%;
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	transition: transform 0.2s ease, background 0.2s ease;
}

.angie-cart-toggle-ddb67700:hover {
	transform: scale(1.05);
	background: #112240;
}

.angie-cart-count-ddb67700 {
	position: absolute;
	top: -5px;
	right: -5px;
	background: #FF6B00; /* Orange */
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	min-width: 20px;
	height: 20px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Sidebar Panel */
.angie-cart-sidebar-ddb67700 {
	position: fixed;
	top: 0;
	right: -400px;
	width: 100%;
	max-width: 380px;
	height: 100vh;
	background: #ffffff;
	box-shadow: -4px 0 15px rgba(0,0,0,0.1);
	transition: right 0.3s ease-in-out;
	display: flex;
	flex-direction: column;
	z-index: 99999;
}

.angie-cart-sidebar-ddb67700.open {
	right: 0;
}

/* Overlay */
.angie-cart-overlay-ddb67700 {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.5);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 99998;
}

.angie-cart-overlay-ddb67700.open {
	opacity: 1;
	visibility: visible;
}

/* Header */
.angie-cart-sidebar-header-ddb67700 {
	padding: 20px;
	background: #0A192F;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.angie-cart-sidebar-header-ddb67700 h3 {
	margin: 0;
	font-size: 18px;
	color: #fff;
}

.angie-cart-close-ddb67700 {
	background: none;
	border: none;
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	line-height: 1;
	padding: 0;
}

.angie-cart-close-ddb67700:hover {
	color: #FF6B00;
}

/* Items Area */
.angie-mini-cart-items-ddb67700 {
	flex: 1;
	overflow-y: auto;
	position: relative;
}

.angie-cart-item-list-ddb67700 {
	list-style: none;
	margin: 0;
	padding: 0;
}

.angie-cart-item-ddb67700 {
	display: flex;
	padding: 15px 20px;
	border-bottom: 1px solid #eee;
	gap: 15px;
}

.angie-cart-item-image-ddb67700 img {
	width: 60px;
	height: auto;
	border-radius: 4px;
}

.angie-cart-item-details-ddb67700 {
	flex: 1;
}

.angie-cart-item-title-ddb67700 {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	text-decoration: none;
	margin-bottom: 5px;
}

.angie-cart-item-price-ddb67700 {
	color: #FF6B00;
	font-weight: bold;
	font-size: 14px;
	margin-bottom: 10px;
}

/* Actions */
.angie-cart-item-actions-ddb67700 {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.angie-cart-qty-ddb67700 {
	display: flex;
	align-items: center;
	border: 1px solid #ddd;
	border-radius: 4px;
	overflow: hidden;
}

.angie-qty-btn-ddb67700 {
	background: #f9f9f9;
	border: none;
	width: 28px;
	height: 28px;
	cursor: pointer;
	font-size: 16px;
	color: #555;
	display: flex;
	align-items: center;
	justify-content: center;
}

.angie-qty-btn-ddb67700:hover {
	background: #eee;
}

.angie-qty-val-ddb67700 {
	width: 30px;
	text-align: center;
	font-size: 13px;
	font-weight: bold;
}

.angie-cart-remove-ddb67700 {
	color: #e74c3c;
	font-size: 12px;
	text-decoration: none;
}

.angie-cart-remove-ddb67700:hover {
	text-decoration: underline;
}

/* Footer */
.angie-cart-footer-ddb67700 {
	padding: 20px;
	background: #f9f9f9;
	border-top: 1px solid #eee;
}

.angie-cart-total-ddb67700 {
	font-size: 16px;
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
	color: #333;
}

.angie-cart-buttons-ddb67700 {
	display: flex;
	gap: 10px;
}

.angie-cart-buttons-ddb67700 a {
	flex: 1;
	text-align: center;
	padding: 12px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: bold;
	font-size: 14px;
	transition: background 0.2s ease;
}

.angie-btn-view-cart-ddb67700 {
	background: #eee;
	color: #333;
}

.angie-btn-view-cart-ddb67700:hover {
	background: #ddd;
}

.angie-btn-checkout-ddb67700 {
	background: #0A192F;
	color: #fff;
}

.angie-btn-checkout-ddb67700:hover {
	background: #112240;
}

/* Empty */
.angie-cart-empty-ddb67700 {
	padding: 20px;
	text-align: center;
	color: #777;
}

.angie-cart-loading-ddb67700 {
	opacity: 0.5;
	pointer-events: none;
}
