
/* Popup Styles */
.scroll-popup-container {
	position: fixed;
	width: 300px;
	background-color: white;
	border-radius: 5px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
	z-index: 9999;
	padding: 15px;
	display: none;
	animation: fadeIn 0.5s;
}

.scroll-popup-container.bottom-right {
	bottom: 20px;
	right: 20px;
}

.scroll-popup-container.bottom-left {
	bottom: 20px;
	left: 20px;
}

.close-popup {
	position: absolute;
	top: 5px;
	right: 10px;
	font-size: 20px;
	cursor: pointer;
	color: #999;
}

.popup-inner {
	display: flex;
	align-items: center;
}

.popup-product-image {
	width: 80px;
	min-width: 80px;
	margin-right: 10px;
}

.popup-product-image img {
	width: 100%;
	height: auto;

}

.popup-product-info {
	flex-grow: 1;
}


.popup-product-price {
	font-weight: bold;
	margin-bottom: 10px;
	font-size: 14px;
}

.popup-product-info .quantity .minus, .popup-product-info .quantity .plus {
width: 20px;

}
.popup-product-info .quantity {
	width: 60px;
	margin: 0;
}


.popup-product-info h4{
	font-weight: 600;
	font-size: 14px;
	margin: 0;
	COLOR: black ! IMPORTANT;
	line-height: 1.2;
}
.popup-product-wrap
 {
	display: flex;
	align-items: center;
	gap: 8px;
}
.popup-product-info form {
	display: flex;
	align-items: center;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@media (max-width: 768px) {
	.scroll-popup-container {
			display: none !important; /* Never show on mobile */
	}
}


.notification-wrapper {
	position: relative;
	width: 100%;
	z-index: 9999;
	display: none;
}

.notification-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
}

.notification-content {
	flex-grow: 1;
	text-align: center;
}

.notification-close {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 18px;
	font-weight: bold;
	line-height: 1;
	padding: 5px;
	margin-left: 10px;
}

/* Анимация появления */
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(-20px); }
	to { opacity: 1; transform: translateY(0); }
}

.notification-show {
	display: block;
	animation: fadeIn 0.5s ease forwards;
}

/* Анимация исчезновения */
@keyframes fadeOut {
	from { opacity: 1; transform: translateY(0); }
	to { opacity: 0; transform: translateY(-20px); }
}

.notification-hide {
	animation: fadeOut 0.5s ease forwards;
}