.related-products {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.related-item .related-flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.related-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* UPDATED */
.related-info {
    display: flex;
    flex-direction: column;
    gap: 4px;    
    flex: 1;                   /* allow it to take space */
}

.related-name {
    font-size: 14px;
    font-weight: 500;
    text-align: left;         /* right aligned name */
}

.related-price {
    font-size: 14px;
    font-weight: 700;          /* bold price */
    color: #000;               /* darker for emphasis */
    text-align: left;
}

.related-add {
    background: #007bdb;
    color: #fff;
    border: none;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 3px;
    cursor: pointer;
    align-self: flex-start;
}

.related-add:hover {
    background: #005fa3;
}


.related-info a.related-link {
    text-align: left;
}