.products-wrapper {
    position: relative;
    top: 10px;
    display: grid;
    grid-template-columns: repeat(3,0.4fr);
    row-gap: 10px;
}
.empty-notifier {
    display: none;
    align-items: center;
    text-align: center;
    top: 20px;
    position: relative;
}

.empty-shelf-image {
    max-width: 220px;
    padding-bottom: 20px;
}
.product-container {
    overflow: hidden;
    border: 1px solid black;
    border-radius: 1px;
    width: 300px;
    cursor: pointer;
    height: 500px;
    max-height: 520px;
    padding: 10px;
    margin: 10px;
    margin-left: 30px;
    align-items: center;
    z-index: 10;
    justify-content: center;
}
.product-title {
    width: 284px;
    font-size: 17px;
    left: -10px;
    position: relative;
    width: 100%;
    margin-left: 20px;
    text-align: start;
    margin-top: 10px;
    font-weight: 700;
    margin-bottom: 5px;
}
.product-price {
    position: relative;
    left: 50px;
    font-size: 30px;
    margin: 10px;
}

.product-image {
    z-index: -10;
    width: 450px;
    left: -70px;
    height: 250px;
    position: relative;
    object-fit: contain;
}
.product-description {
    margin-top: 2px;
    text-align: start;
    position: relative;
    margin-left: 15px;
}
.last-modified {
    position: relative;
    left: 100px;
    bottom: -10px;
}

@media (max-width: 1100px) {
    .product-container {
        scale: 0.88;
        margin-left: 10px;
    }
    .products-wrapper {
        justify-content: center;
        grid-template-columns: repeat(3,0.3fr);
    }
    
}
@media (max-width: 1000px) {
    .products-wrapper {
        grid-template-columns: repeat(2,0.4fr);
        align-items: center;
        justify-content: center;
    }
    .product-container {
        scale: 1;
    }
}
@media (max-width: 800px) {
    .product-container {
        width: 250px;
        height: 4;
    }
    .product-image {
        width: 380px;
    }
    .products-wrapper 
    {
        grid-template-columns: repeat(2,0.24fr);
        row-gap: -20px;
    }
}
@media (max-width: 600px) {
    .product-container {
        width: 200px;
        height: 400px;
    }
    .product-image
     {
        position: relative;
        height: 180px;
        width: 250px;
        align-items: center;
        top: -10px;
        margin-left: 40px;
        justify-content: center;
      }
      .product-title {
        margin-top: -10px;
        font-size: 15px;
      }
}
@media (max-width: 500px) {
    .product-container {
        width: 160px;
        height: 300px;
    }
    .product-image {
        top: 0;
        margin-left: 30px;
    }
    .product-description {
        display: none;
    }
    .product-title {
        user-select: none;
        margin-top: 4px;
        font-size: 13px;
    }
    .product-price {
        position: absolute;
        bottom: 10px;
        font-size: 19px;
    }

}
@media (max-width: 400px) {
    .product-container {
        width: 145px;
        height: 290px;
    }
    .product-image {
        margin-left: 45px;
        width: 185px;
        height: 150px;
    }
    .product-title {
        margin-left: 0;
        left: 0;
        font-size: 15px;
        width: 105%;
    }
    .product-price {
        left: 30px;
    }
}