.product-grid-related {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
	padding-bottom: 85px
}

.product-item-related {
    flex: 1 1 21%; /* You can adjust this percentage to change the width */
    text-align: center;
    padding: 10px;
	border-bottom: 1px solid #D0D0D0;
}

.product-item-related h4 {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
	text-align: left;
	text-decoration: none;
}

.product-item-related a {
	text-decoration: none;
}

.product-item-related .price {
    margin-top: 5px;
    font-size: 20px;
    color: #000;
	text-align: left;
	text-decoration: none;
}

.related-image {
    height: 395px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #D0D0D0;
    overflow: hidden;
    width: 100%;
}

.product-item-related img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

