#mweb_abcart_popup {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 0;
	visibility: hidden
}

body.mweb-show-popup #mweb_abcart_popup {
	opacity: 1;
	visibility: visible
}

#mweb_abcart_popup .mweb-abc-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(7px);
	background: rgba(0,0,0,0.2);
}

#mweb_abcart_popup .mweb-abc-box {
	position: relative;
	background: #fff;
	width: 90%;
	max-width: 360px;
	padding: 24px;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	animation: pop 0.3s ease;
	text-align: center;
}

@keyframes pop {
	from {
		transform: scale(0.8);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

#mweb_abcart_popup h3 {
	margin: 0 0 8px;
	font-size: 15px;
	color: #333;
}

#mweb_abcart_popup p {
	font-size: 12px;
	color: #666;
	margin-bottom: 16px;
}

#mweb_abcart_popup input {
	width: 100%;
	padding: 7px 12px;
	border-radius: 9px;
	border: 1px solid #ccc;
	font-size: 15px;
	outline: none;
	transition: 0.2s;
}

#mweb_abcart_popup input:focus {
	border-color: #777;
	box-shadow: 0 0 0 3px rgb(158 158 158 / 14%);
}

#mweb_abcart_popup .btn-box {
	margin-top: 16px;
	display: flex;
	gap: 10px;
}

#mweb_abcart_popup button {
	flex: 0 0 70%;
	padding: 9px 10px;
	border: none;
	border-radius: 9px;
	font-size: 13px;
	cursor: pointer;
	transition: 0.2s;
}

#mweb_abcart_popup #mweb_popup_ok {
	background: #333;
	color: #fff;
}

#mweb_abcart_popup #mweb_popup_ok:hover {
	background: #7EDEE5;
}

#mweb_abcart_popup #mweb_popup_cancel {
	background: #d0d0d0;
	flex: 0 0 27%;
}

#mweb_abcart_popup #mweb_popup_cancel:hover {
	background: #ddd;
}
.mweb-add-lock .single_add_to_cart_button,
.mweb-add-lock .add_to_cart_button {
    pointer-events: none !important;
    cursor: not-allowed !important;
}
