.product-list{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 15px;
}
.product-list li{
    width: calc((100% - 45px) /4);
    margin-top: 0;
    display: flex;
    flex-direction: column;
    margin-right: 15px;
}
.product-list li:nth-of-type(4n){
    margin-right: 0;
}
.product-list a:nth-of-type(1){
    display: block;
    padding-bottom: 5px;
     position: relative;
}
.product-list a:nth-of-type(1):before {
    content: "";
    display: block;
    padding-top: 100%;
}
.product-list a:nth-of-type(1) img{
    height: 100%;
  object-fit:contain;
 border: 1px solid #333;
}
.product-list li img{
	position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.sub-list span {
    font-size: 14px;
    border-top: 1px solid #ccc;
    width: 100%;
    display: block;
    text-align: right;
    color: #e22f2f;
    font-weight: bold;
    padding-top: 2px;
    margin-top: auto;
}
.product-list__name{
font-weight: bold;
    font-size: 12px;
    line-height: 1.5;
    margin-top: 6px;
 margin-bottom: 5px;
}
.product-list__prices{
font-size: 14px;
    border-top: 1px solid #ccc;
    width: 100%;
    display: block;
    text-align: right;
    color: #e22f2f;
    font-weight: bold;
    padding-top: 2px;
    margin-top: auto;
}
.product-list li:nth-of-type(n+5) {
    margin-top: 20px;
}
.pagenation{
    display: flex;
    justify-content: space-between;
    background: #a4c8ea;
    margin-top: 30px;
    padding: 5px 10px;
    font-weight: bold;
    color: #050C90;
}
.pagenation-prev{
    order: 1;
}
.pagenation-next{
    order: 3;
}
.pagenation-pos{
    order: 2;
}