/* === Minicart Wrapper === */
.custom-minicart-wrapper {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	max-width: 400px;
	height: 100%;
	background: #fff;
	z-index: 9999;
	transition: right 0.3s ease-in-out;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}

/* === When Open === */
.custom-minicart-wrapper.active {
	right: 0;
	box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

/* === Cart Items === */
.custom-cart-items {
	flex: 1;
	padding: 1rem;
	overflow-y: auto;
}

/* === Cart Summary === */
.custom-cart-summary {
	border-top: 1px solid #eee;
	padding: 1rem;
	background: #f9f9f9;
}

/* === Button Container === */
.cart-actions {
	padding: 1rem;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	background: #fff;
	border-top: 1px solid #eee;
	position: sticky;
	bottom: 0;
}

/* === Empty State === */
.custom-cart-empty {
	text-align: center;
	padding: 2rem;
	color: #999;
	font-size: 1.1rem;
}

.custom-cart-empty i {
	font-size: 2rem;
	display: block;
	margin-bottom: 0.5rem;
}


.custom-toast {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	background: #333;
	color: #fff;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.3s ease;
	z-index: 10000;
}

.custom-toast.show {
	opacity: 1;
	transform: translateY(0);
}

.custom-toast-success { background-color: #28a745; }
.custom-toast-error { background-color: #dc3545; }


#custom-minicart-trigger {

}

#custom-cart-counter.cart-counter-badge {
	position: absolute;
	top: -7px;
	right: -2px;
	background-color: #ffc10a;
	color: white;
	font-size: 12px;
	font-weight: normal;
	padding: 4px 6px;
	border-radius: 50%;
	line-height: 1;
	min-width: 20px;
	text-align: center;
	z-index: 10;
}

.cart-counter-badge:empty {
	display: none;
}


.cart-item img {border-radius: 4px!important}




.showcart a {
	color: black
}
.showcart svg {
  color: #000;
  fill: currentColor;
}

#custom-minicart-trigger {
display: flex;
align-items: center;
justify-content: center;
width: 42px;
height: 42px;
border-radius: 50%;
background: #eee;
right: 80px;
}