MediStore – Product 1
.notification {
position: fixed;
top: 20px;
right: 20px;
background-color: #333;
color: #fff;
padding: 10px 20px;
border-radius: 5px;
display: none;
}
MediStore

Product 1
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam accumsan lorem a lorem scelerisque, vitae consequat nulla bibendum.
Price: $19.99
Add to Cart
https://code.jquery.com/jquery-3.6.0.min.js
jQuery(document).ready(function($) {
$(‘.cta-button’).click(function() {
var notification = $(‘#notification’);
notification.addClass(‘show-notification’);
setTimeout(function() {
notification.removeClass(‘show-notification’);
}, 3000);
});
});