:root {
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.animate-fadeInUp {
	animation: fadeInUp 0.4s ease forwards;
}
.wishlist-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wishlist-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.wishlist-card img {
	transition: transform 0.5s ease;
}
.wishlist-card:hover img {
	transform: scale(1.05);
}
.badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 4px 10px;
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 2px;
	z-index: 1;
}
.view-product-button:hover{
    color:#fff !important;
    transition: all 0.3s ease;
}
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}
.modal-overlay.active {
	opacity: 1;
	visibility: visible;
}
.modal-content {
	background: white;
	padding: 2rem;
	border-radius: 16px;
	max-width: 400px;
	width: 90%;
	text-align: center;
	transform: scale(0.9);
	transition: transform 0.3s ease;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.modal-overlay.active .modal-content {
	transform: scale(1);
}