./*random-products {
    margin-top: 20px;
}

.random-products h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.random-products ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.random-products li {
    flex: 1 1 21%;
    box-sizing: border-box;
    margin: 0 10px 20px;
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

.random-products li img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.random-products li p {
    margin: 5px 0;
}

.random-products li a {
    text-decoration: none;
    color: #333;
}
*/