.message-dialog {
    position: fixed;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    text-align: center;
    padding: 5px 10px;
    border: 1px solid #EEE;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background-color: #F9F9F9;
    box-shadow: 0px 5px 10px #AAA;
    -moz-box-shadow: 0px 5px 10px #AAA;
    -webkit-box-shadow: 0px 5px 10px #AAA;
}

.message-dialog div {
    vertical-align: middle;
    text-align: center;
    min-width: 150px;
    white-space: nowrap;
    font-size: 1rem;
}

.slide {
    background: #fff;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.8s ease, opacity 0.8s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.slide.prev {
    opacity: 0;
    transform: translateX(-100%);
    z-index: 1;
}

.product-card {
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInScale 0.3s ease forwards;
}

.product-list-wrapper.fade-in {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}