
.related-product {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    overflow: hidden; /* Clear floats */
}

.related-product-thumbnail {
    float: left;
    width: 100px; /* Set width for the thumbnail */
    margin-left: 20px;
}

.related-product-thumbnail img {
    max-width: 100%;
    height: auto;
    display: block;
  
}

.related-product-info {
    overflow: hidden; /* Clear floats */
    margin-right: 20px;
}

.related-product-title {
    font-size: 18px;
    margin-bottom: 10px; /* Increased margin bottom */
    margin-top: 0; /* Reset margin top */
}

.related-product-price {
    font-size: 16px;
    color: #888;
    margin-top: 5px; /* Increased margin top */
}


.related-product:hover {
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}
