.notification-container {
	position: fixed;
	bottom: 30px;
	left: 30px;
	z-index: 10000;
	pointer-events: none;
	text-decoration: none;
}

.notification {
	background: white;
	border-radius: 16px;
	box-shadow: 0px 0px 20px 4px #13151D0F, 0px 20px 40px -10px #13151D24;
	padding: 12px;
	width: 384px;
	max-width: calc(100vw - 60px);
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
	pointer-events: auto;
	opacity: 0;
	transform: translateY(100px);
	transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	font-family: "Open Sans", sans-serif;
}

.notification.fade-in {
	opacity: 1;
	transform: translateY(0);
}

.notification.fade-out {
	opacity: 0;
	transform: translateY(100px);
}

.notification.slide-in {
	opacity: 1;
	transform: translateX(0);
}

.notification.slide-out {
	opacity: 0;
	transform: translateX(-100%);
}

.notification.zoom-in {
	opacity: 1;
	transform: scale(1);
}

.notification.zoom-out {
	opacity: 0;
	transform: scale(0.5);
}

.notification.rotate-in {
	opacity: 1;
	transform: rotate(0deg);
}

.notification.rotate-out {
	opacity: 0;
	transform: rotate(180deg);
}

.notification .avatar {
	width: 76px;
	height: 76px;
	border-radius: 8px;
	overflow: hidden;
	flex-shrink: 0;
	/* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	font-weight: bold;
	/* border: 3px solid #f0f0f0; */
}

.notification .avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.notification .content {
	flex: 1;
	min-width: 0;
}

.notification .description {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	line-height: 22px;
	letter-spacing: 0;
	color: #13151D;
	display: flex;
	align-items: center;
	gap: 4.83px;
}

.notification .purchase-info {
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 22px;
	letter-spacing: 0;
	color: #2D60F6;

	/* Text truncation */
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.notification .purchase-info a {
	color: inherit;
}

.notification .time {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	line-height: 22px;
	letter-spacing: 0;
	color: #52535A;
	display: flex;
	align-items: center;
	gap: 6px;
}

.notification .close-btn {
	position: absolute;
	top: 6px;
	right: 6px;
	background: #F0F2F8;
	border: none;
	color: #545558;
	cursor: pointer;
	font-size: 20px;
	width: 20px;
	height: 20px;
	padding: 0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	line-height: 1;
}

.notification .close-btn:hover {
	background: #DBDFF3;
	color: #333;
	transform: rotate(90deg);
}

@media (max-width: 480px) {
	.notification-container {
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.notification {
		width: auto;
	}
}
