﻿
.product-list-wrapper {
    background: linear-gradient(180deg, #f8f9fb, #eef1f5);
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
    animation: fadeIn 0.6s ease-in-out;
}

    .product-list-wrapper:hover {
        background: linear-gradient(180deg, #f6f8fb, #edf0f4);
    }


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
