li.related-product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin: 10px 0;
}
li.related-product-item img{
    max-height: 95px;
   
}
.related-product-image-container{
    width: 15%;
}
li.related-product-item button {
    min-width: 100px;
}
li.related-product-item p{
    margin: 0;
    width: 50%;
}
span.related-product-price {
    font-size: 14px;
    display: block;
}
span.related-product-name {
    font-size: 16px;
    font-family: "Quicksand";
    font-weight: 700;
    line-height: 16px;
    display: block;
    margin: 4px 0;
}

.custom-product-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}
.custom-product-gallery .gallery-image-item {
    width: calc(25% - 15px);
}
.custom-product-gallery .gallery-image-item img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}