@import "custom-wocommerce.css";
@import "mini-cart.css";

/* Popup container */
.success-popup {
    position: fixed;
    top: 20px;
    right: -300px; /* Start off-screen */
    background-color: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    z-index: 9999;
    transition: all 0.5s ease-in-out;
}

/* Slide-in animation */
.success-popup.slide-in {
    right: 20px; /* Visible position */
}

/* Slide-out animation */
.success-popup.slide-out {
    right: -300px; /* Back off-screen */
    opacity: 0;
}
body.archive .cart__container .product__inner__btn{
	background: unset;
    color: #fff;
    border: unset;
    padding: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}
body.archive .cart__container a{
	padding:0 !important;
}
.archive ul.products li.product .ajax_add_to_cart{
  display:none !important;
}