.mu-shop-notification {
    padding: 10px;
    text-align: center;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out, padding 0.5s ease-out;
    max-height: 200px; /* Adjust based on your expected maximum height */
    opacity: 1;
}

.mu-shop-notification.mu-animate-in {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
}

.mu-shop-notification.mu-animate-in.show {
    max-height: 200px; /* Should match the value above */
    opacity: 1;
    padding-top: 10px;
    padding-bottom: 10px;
}

.mu-shop-notification.mu-animate-out {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
}

.mu-shop-notification .mu-close-notification {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-left: 10px;
}

/* Show mobile notification for screens up to 767px */
@media screen and (max-width: 767px) {
    .mu-shop-notification-desktop {
        display: none;
    }
}

/* Show desktop notification for screens 768px and above */
@media screen and (min-width: 768px) {
    .mu-shop-notification-mobile {
        display: none;
    }
}